Imported edeneu theme.
Added svg convertor rule.
8
Jamfile
@@ -4,8 +4,8 @@
|
||||
# Part of Equinox Desktop Environment (EDE).
|
||||
# Copyright (c) 2000-2007 EDE Authors.
|
||||
#
|
||||
# This program is licensed under terms of the
|
||||
# GNU General Public License version 2 or newer.
|
||||
# This program is licenced under terms of the
|
||||
# GNU General Public Licence version 2 or newer.
|
||||
# See COPYING for details.
|
||||
|
||||
SubDir TOP ;
|
||||
@@ -20,8 +20,8 @@ SubInclude TOP edewm ;
|
||||
SubInclude TOP eiconman ;
|
||||
SubInclude TOP evoke ;
|
||||
SubInclude TOP eimage ;
|
||||
SubInclude TOP datas ;
|
||||
SubInclude TOP docs ;
|
||||
SubInclude TOP efiler ;
|
||||
SubInclude TOP etimedate ;
|
||||
SubInclude TOP edesktopconf ;
|
||||
SubInclude TOP docs ;
|
||||
SubInclude TOP datas ;
|
||||
|
||||
8
Jamrules
@@ -35,7 +35,7 @@ EDELIBLIB ?= -L/opt/ede/lib -ledelib ;
|
||||
|
||||
# fltk libraries path
|
||||
FLTKINCLUDE ?= -I/usr/local/include ;
|
||||
FLTKLIB ?= -L/usr/local/lib -lfltk_images -lpng -lz -ljpeg -lfltk -ldl -lm -lXext -lX11 ;
|
||||
FLTKLIB ?= -L/usr/local/lib -lfltk_images -lpng -lz -ljpeg -lfltk -ldl -lm -lXext -lX11 -lXpm ;
|
||||
FLTKLIB_NOIMAGES ?= -L/usr/local/lib -lfltk -ldl -lm -lXext -lX11 ;
|
||||
|
||||
# backward; efltk libraries path
|
||||
@@ -59,6 +59,9 @@ include $(TOP)/build/Program.jam ;
|
||||
include $(TOP)/build/Translation.jam ;
|
||||
include $(TOP)/build/Install.jam ;
|
||||
include $(TOP)/build/Doc.jam ;
|
||||
include $(TOP)/build/Svg.jam ;
|
||||
|
||||
BUILD_ICON_THEMES ?= ;
|
||||
|
||||
actions quietly Help
|
||||
{
|
||||
@@ -73,7 +76,10 @@ actions quietly Help
|
||||
echo " jam doc build documentation"
|
||||
echo " jam help this help"
|
||||
echo ""
|
||||
echo " jam -sBUILD_ICON_THEMES=1 build icon themes (not built by default)"
|
||||
echo ""
|
||||
}
|
||||
|
||||
Help help ;
|
||||
NotFile help ;
|
||||
Always help ;
|
||||
|
||||
73
build/Svg.jam
Normal file
@@ -0,0 +1,73 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
# Part of Equinox Desktop Environment (EDE).
|
||||
# Copyright (c) 2000-2007 EDE Authors.
|
||||
#
|
||||
# This program is licensed under terms of the
|
||||
# GNU General Public License version 2 or newer.
|
||||
# See COPYING for details.
|
||||
|
||||
SVG_CONVERTOR = "rsvg" ;
|
||||
|
||||
# SvgToPng [target-png] : [source-svg] : [width] : [height] ;
|
||||
rule SvgToPng
|
||||
{
|
||||
if ! $(SVG_CONVERTOR) {
|
||||
Echo "SVG_CONVERTOR not defined; $(1) will not be built" ;
|
||||
return ;
|
||||
}
|
||||
|
||||
LocalDepends $(1) : $(2) ;
|
||||
LocalDepends icons : $(1) ;
|
||||
LocalDepends all : $(1) ;
|
||||
|
||||
PNG_WIDTH on $(1) = $(3) ;
|
||||
PNG_HEIGHT on $(1) = $(4) ;
|
||||
|
||||
SvgToPng1 $(1) : $(2) ;
|
||||
|
||||
LocalClean clean : $(1) ;
|
||||
}
|
||||
|
||||
# SvgToPngDirectory [directory-where-to-place] : [directory-where-is-source] : [icon-sizes] ;
|
||||
rule SvgToPngDirectory
|
||||
{
|
||||
local icons source target png_ext ;
|
||||
|
||||
if ! $(SVG_CONVERTOR) {
|
||||
Echo "SVG_CONVERTOR not defined; directory $(1) will not be built" ;
|
||||
return ;
|
||||
}
|
||||
|
||||
png_ext = ".png" ;
|
||||
icons = [ Wildcard $(2) : *.svg ] ;
|
||||
|
||||
for i in $(icons) {
|
||||
# before source and target are further used
|
||||
# grist must be calculated uniquely or jam will be confused
|
||||
# e.g. if we want foo.svg to be placed in 32/foo.png and 16/foo.png
|
||||
# with different sizes, without unique grist, jam will construct only
|
||||
# 32/foo.png since it is bound to source; to skip this, source and
|
||||
# target are gristed to directory name plus jam's SOURCE_GRIST
|
||||
target = $(i:S=$(png_ext):G=$(SOURCE_GRIST)-$(1)) ;
|
||||
source = $(i:G=$(SOURCE_GRIST)-$(2)) ;
|
||||
|
||||
# where to look for source
|
||||
SEARCH on $(source) = [ FDirName $(SUBDIR) $(2) ] ;
|
||||
|
||||
# where to place target; directory will be created if
|
||||
# does not exists
|
||||
MakeLocate $(target) : [ FDirName $(SUBDIR) $(1) ] ;
|
||||
|
||||
SvgToPng $(target) : $(source) : $(3) : $(3) ;
|
||||
}
|
||||
}
|
||||
|
||||
actions SvgToPng1
|
||||
{
|
||||
$(SVG_CONVERTOR) -w $(PNG_WIDTH) -h $(PNG_HEIGHT) -f png "$(>)" "$(<)"
|
||||
}
|
||||
|
||||
NotFile icons ;
|
||||
Always icons ;
|
||||
@@ -20,3 +20,8 @@ InstallEdeIcons icons-48 : $(ICONS48) ;
|
||||
|
||||
InstallEdeConfigFiles $(CONFS) ;
|
||||
InstallEdeDesktopFiles $(PLINKS) ;
|
||||
|
||||
# For building icon themes
|
||||
if $(BUILD_ICON_THEMES) = 1 {
|
||||
SubInclude TOP datas icon-themes ;
|
||||
}
|
||||
|
||||
26
datas/icon-themes/Jamfile
Normal file
@@ -0,0 +1,26 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
# Part of Equinox Desktop Environment (EDE).
|
||||
# Copyright (c) 2000-2007 EDE Authors.
|
||||
#
|
||||
# This program is licensed under terms of the
|
||||
# GNU General Public License version 2 or newer.
|
||||
# See COPYING for details.
|
||||
|
||||
SubDir TOP datas icon-themes ;
|
||||
|
||||
# Icon theme conversion code
|
||||
# jam don't like nested loops so every subdirectory is specified
|
||||
ICON_SIZES = 16 22 32 48 64 128 ;
|
||||
|
||||
for size in $(ICON_SIZES) {
|
||||
SvgToPngDirectory [ FDirName edeneu $(size) actions ] : [ FDirName edeneu scalable actions ] : $(size) ;
|
||||
SvgToPngDirectory [ FDirName edeneu $(size) apps ] : [ FDirName edeneu scalable apps ] : $(size) ;
|
||||
SvgToPngDirectory [ FDirName edeneu $(size) categories ] : [ FDirName edeneu scalable categories ] : $(size) ;
|
||||
SvgToPngDirectory [ FDirName edeneu $(size) devices ] : [ FDirName edeneu scalable devices ] : $(size) ;
|
||||
SvgToPngDirectory [ FDirName edeneu $(size) emblems ] : [ FDirName edeneu scalable emblems ] : $(size) ;
|
||||
SvgToPngDirectory [ FDirName edeneu $(size) mimetypes ] : [ FDirName edeneu scalable mimetypes ] : $(size) ;
|
||||
SvgToPngDirectory [ FDirName edeneu $(size) places ] : [ FDirName edeneu scalable places ] : $(size) ;
|
||||
SvgToPngDirectory [ FDirName edeneu $(size) status ] : [ FDirName edeneu scalable status ] : $(size) ;
|
||||
}
|
||||
7
datas/icon-themes/edeneu/AUTHORS
Normal file
@@ -0,0 +1,7 @@
|
||||
Name: Silvestre Herrera
|
||||
Nickname: ertz
|
||||
Location: La Plata, Buenos Aires. ARGENTINA.
|
||||
E-mail: silvestre.herrera(at)gmail.com
|
||||
Website(s): http://www.silvestre.com.ar/
|
||||
|
||||
_______________________________________________
|
||||
342
datas/icon-themes/edeneu/COPYING
Normal file
@@ -0,0 +1,342 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
|
||||
|
||||
201
datas/icon-themes/edeneu/index.theme
Normal file
@@ -0,0 +1,201 @@
|
||||
#
|
||||
# Generated with mkindextheme. Edit what needs to be edited.
|
||||
#
|
||||
|
||||
[Icon Theme]
|
||||
Name = EdeNeu
|
||||
Comment = Icon theme based on Dropline Neu!
|
||||
|
||||
Directories = 128x128/apps,128x128/devices,128x128/mimetypes,128x128/emblems,128x128/actions,128x128/places,128x128/status,128x128/categories,16x16/apps,16x16/devices,16x16/mimetypes,16x16/emblems,16x16/actions,16x16/places,16x16/status,16x16/categories,22x22/apps,22x22/devices,22x22/mimetypes,22x22/emblems,22x22/actions,22x22/places,22x22/status,22x22/categories,32x32/apps,32x32/devices,32x32/mimetypes,32x32/emblems,32x32/actions,32x32/places,32x32/status,32x32/categories,48x48/apps,48x48/devices,48x48/mimetypes,48x48/emblems,48x48/actions,48x48/places,48x48/status,48x48/categories,64x64/apps,64x64/devices,64x64/mimetypes,64x64/emblems,64x64/actions,64x64/places,64x64/status,64x64/categories
|
||||
|
||||
[128x128/apps]
|
||||
Size = 128
|
||||
Context = Applications
|
||||
|
||||
[128x128/devices]
|
||||
Size = 128
|
||||
Context = Devices
|
||||
|
||||
[128x128/mimetypes]
|
||||
Size = 128
|
||||
Context = MimeTypes
|
||||
|
||||
[128x128/emblems]
|
||||
Size = 128
|
||||
Context = Emblems
|
||||
|
||||
[128x128/actions]
|
||||
Size = 128
|
||||
Context = Actions
|
||||
|
||||
[128x128/places]
|
||||
Size = 128
|
||||
Context = Places
|
||||
|
||||
[128x128/status]
|
||||
Size = 128
|
||||
Context = Status
|
||||
|
||||
[128x128/categories]
|
||||
Size = 128
|
||||
Context = Categories
|
||||
|
||||
[16x16/apps]
|
||||
Size = 16
|
||||
Context = Applications
|
||||
|
||||
[16x16/devices]
|
||||
Size = 16
|
||||
Context = Devices
|
||||
|
||||
[16x16/mimetypes]
|
||||
Size = 16
|
||||
Context = MimeTypes
|
||||
|
||||
[16x16/emblems]
|
||||
Size = 16
|
||||
Context = Emblems
|
||||
|
||||
[16x16/actions]
|
||||
Size = 16
|
||||
Context = Actions
|
||||
|
||||
[16x16/places]
|
||||
Size = 16
|
||||
Context = Places
|
||||
|
||||
[16x16/status]
|
||||
Size = 16
|
||||
Context = Status
|
||||
|
||||
[16x16/categories]
|
||||
Size = 16
|
||||
Context = Categories
|
||||
|
||||
[22x22/apps]
|
||||
Size = 22
|
||||
Context = Applications
|
||||
|
||||
[22x22/devices]
|
||||
Size = 22
|
||||
Context = Devices
|
||||
|
||||
[22x22/mimetypes]
|
||||
Size = 22
|
||||
Context = MimeTypes
|
||||
|
||||
[22x22/emblems]
|
||||
Size = 22
|
||||
Context = Emblems
|
||||
|
||||
[22x22/actions]
|
||||
Size = 22
|
||||
Context = Actions
|
||||
|
||||
[22x22/places]
|
||||
Size = 22
|
||||
Context = Places
|
||||
|
||||
[22x22/status]
|
||||
Size = 22
|
||||
Context = Status
|
||||
|
||||
[22x22/categories]
|
||||
Size = 22
|
||||
Context = Categories
|
||||
|
||||
[32x32/apps]
|
||||
Size = 32
|
||||
Context = Applications
|
||||
|
||||
[32x32/devices]
|
||||
Size = 32
|
||||
Context = Devices
|
||||
|
||||
[32x32/mimetypes]
|
||||
Size = 32
|
||||
Context = MimeTypes
|
||||
|
||||
[32x32/emblems]
|
||||
Size = 32
|
||||
Context = Emblems
|
||||
|
||||
[32x32/actions]
|
||||
Size = 32
|
||||
Context = Actions
|
||||
|
||||
[32x32/places]
|
||||
Size = 32
|
||||
Context = Places
|
||||
|
||||
[32x32/status]
|
||||
Size = 32
|
||||
Context = Status
|
||||
|
||||
[32x32/categories]
|
||||
Size = 32
|
||||
Context = Categories
|
||||
|
||||
[48x48/apps]
|
||||
Size = 48
|
||||
Context = Applications
|
||||
|
||||
[48x48/devices]
|
||||
Size = 48
|
||||
Context = Devices
|
||||
|
||||
[48x48/mimetypes]
|
||||
Size = 48
|
||||
Context = MimeTypes
|
||||
|
||||
[48x48/emblems]
|
||||
Size = 48
|
||||
Context = Emblems
|
||||
|
||||
[48x48/actions]
|
||||
Size = 48
|
||||
Context = Actions
|
||||
|
||||
[48x48/places]
|
||||
Size = 48
|
||||
Context = Places
|
||||
|
||||
[48x48/status]
|
||||
Size = 48
|
||||
Context = Status
|
||||
|
||||
[48x48/categories]
|
||||
Size = 48
|
||||
Context = Categories
|
||||
|
||||
[64x64/apps]
|
||||
Size = 64
|
||||
Context = Applications
|
||||
|
||||
[64x64/devices]
|
||||
Size = 64
|
||||
Context = Devices
|
||||
|
||||
[64x64/mimetypes]
|
||||
Size = 64
|
||||
Context = MimeTypes
|
||||
|
||||
[64x64/emblems]
|
||||
Size = 64
|
||||
Context = Emblems
|
||||
|
||||
[64x64/actions]
|
||||
Size = 64
|
||||
Context = Actions
|
||||
|
||||
[64x64/places]
|
||||
Size = 64
|
||||
Context = Places
|
||||
|
||||
[64x64/status]
|
||||
Size = 64
|
||||
Context = Status
|
||||
|
||||
[64x64/categories]
|
||||
Size = 64
|
||||
Context = Categories
|
||||
305
datas/icon-themes/edeneu/scalable/actions/address-book-new.svg
Normal file
@@ -0,0 +1,305 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="address-book-new.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7475" />
|
||||
<stop
|
||||
id="stop7481"
|
||||
offset="0.5"
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;" />
|
||||
<stop
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;"
|
||||
offset="0.75"
|
||||
id="stop7483" />
|
||||
<stop
|
||||
style="stop-color:#fff409;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7477" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2853">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.81960785"
|
||||
offset="0"
|
||||
id="stop2855" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24705882"
|
||||
offset="1"
|
||||
id="stop2857" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10532">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop10534" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop10536" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient9796">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.65625000;"
|
||||
offset="0.0000000"
|
||||
id="stop9798" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9800" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8296"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop8298"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.62400001" />
|
||||
<stop
|
||||
id="stop8300"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5359">
|
||||
<stop
|
||||
style="stop-color:#3f77b6;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5361" />
|
||||
<stop
|
||||
style="stop-color:#6494c9;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5363" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4625">
|
||||
<stop
|
||||
style="stop-color:#f4f4ee;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4627" />
|
||||
<stop
|
||||
style="stop-color:#b2b2ad;stop-opacity:1.0000000"
|
||||
offset="1.0000000"
|
||||
id="stop4629" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9796"
|
||||
id="linearGradient9802"
|
||||
x1="71.793358"
|
||||
y1="154.92252"
|
||||
x2="77.933578"
|
||||
y2="92.103325"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.338872,0,0,0.407428,4.944509,-3.793525)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10532"
|
||||
id="radialGradient10538"
|
||||
cx="53.84502"
|
||||
cy="116.42805"
|
||||
fx="53.84502"
|
||||
fy="116.42805"
|
||||
r="47.232471"
|
||||
gradientTransform="matrix(1,3.447763e-17,-8.025806e-18,0.225,-1.024164e-15,90.23174)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10532"
|
||||
id="radialGradient10542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,6.444904e-17,2.146721e-18,0.225,5.351228e-15,90.23174)"
|
||||
cx="53.84502"
|
||||
cy="116.42805"
|
||||
fx="53.84502"
|
||||
fy="116.42805"
|
||||
r="47.232471" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8296"
|
||||
id="linearGradient1969"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="60.785091"
|
||||
y1="-20.288902"
|
||||
x2="59.11517"
|
||||
y2="71.890686"
|
||||
gradientTransform="matrix(0.407428,0,0,0.407428,-9.583977,-1.874234)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5359"
|
||||
id="linearGradient1972"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="85.963097"
|
||||
y1="99.660515"
|
||||
x2="45.10701"
|
||||
y2="33.062729"
|
||||
gradientTransform="matrix(0.409778,0,0,0.403274,-9.758073,-1.738097)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4625"
|
||||
id="linearGradient1975"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.409272,0,0,0.399856,-10.46109,-1.610169)"
|
||||
x1="100.60516"
|
||||
y1="65.298889"
|
||||
x2="108.63469"
|
||||
y2="65.298889" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2853"
|
||||
id="linearGradient2859"
|
||||
x1="4.7533164"
|
||||
y1="6.4509287"
|
||||
x2="16.297083"
|
||||
y2="104.35699"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.420604,0,0,0.413744,-0.841263,-3.796576)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient7479"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="148"
|
||||
inkscape:window-y="147"
|
||||
showborder="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10542);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path10540"
|
||||
sodipodi:cx="53.84502"
|
||||
sodipodi:cy="116.42805"
|
||||
sodipodi:rx="47.232471"
|
||||
sodipodi:ry="10.627306"
|
||||
d="M 101.07749 116.42805 A 47.232471 10.627306 0 1 1 6.6125488,116.42805 A 47.232471 10.627306 0 1 1 101.07749 116.42805 z"
|
||||
transform="matrix(0.353261,4.405763e-2,-4.895288e-2,0.392512,13.18613,-4.335195)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10538);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path9804"
|
||||
sodipodi:cx="53.84502"
|
||||
sodipodi:cy="116.42805"
|
||||
sodipodi:rx="47.232471"
|
||||
sodipodi:ry="10.627306"
|
||||
d="M 101.07749 116.42805 A 47.232471 10.627306 0 1 1 6.6125488,116.42805 A 47.232471 10.627306 0 1 1 101.07749 116.42805 z"
|
||||
transform="matrix(0.404296,5.042247e-2,-5.602502e-2,0.449217,3.858902,-13.30065)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient9802);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.555163,45.085801 L 48,37.388265 L 30.07355,32 L 29.273263,41.814353 L 34.555163,45.085801 z "
|
||||
id="path9068" />
|
||||
<path
|
||||
style="fill:#638cba;fill-opacity:1;fill-rule:evenodd;stroke:#2d5c91;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.7058024,7.3276909 L 9.7058024,39.344458 L 35.499998,44.726201 L 35.499998,4.4999995 L 9.7058024,7.3276909 z "
|
||||
id="path3897" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1975);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 3.3605059,7.2663438 L 3.3605059,39.278447 L 28.973962,44 L 34,42.961255 L 34,5.84988 L 28.973962,5 L 3.3605059,7.2663438 z "
|
||||
id="path1710"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#5dc82f;fill-opacity:1;stroke:#55912d;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 29.49999,23.659772 L 32.499988,24.129442 L 32.499988,32.659772 L 29.49999,32.097272 L 29.49999,23.659772 z "
|
||||
id="path6594"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#c82f2f;fill-opacity:1;stroke:#912d2d;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 29.5,8.4999997 L 34.499996,7.5277279 L 34.499996,16.5 L 29.5,16.5 L 29.5,8.4999997 z "
|
||||
id="rect5716"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#c8c12f;fill-opacity:1;stroke:#91872d;stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 29.500012,16.347272 L 33.500014,16.379442 L 33.500014,24.597272 L 29.500012,24.347272 L 29.500012,16.347272 z "
|
||||
id="path6592"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1972);fill-opacity:1;fill-rule:evenodd;stroke:#2e639f;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.4999999,6.4523811 L 3.4999999,39.88096 L 30.500007,45.500001 L 30.500007,3.4999992 L 3.4999999,6.4523811 z "
|
||||
id="path2443" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1969);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.76150628"
|
||||
d="M 4.1595403,7.1409529 L 4.1595403,27.143899 C 12.0065,12.039632 22.983171,18.571205 29.741535,30.001456 L 29.741535,4.1473153 L 4.1595403,7.1409529 z "
|
||||
id="path7549"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2859);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.4999999,7.3117926 L 4.4999999,39.148526 L 29.500004,44.500006 L 29.500004,4.5000007 L 4.4999999,7.3117926 z "
|
||||
id="path1978" />
|
||||
<path
|
||||
style="font-size:20.10438156px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:0.64806867;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
d="M 14.904977,23.531737 C 14.904971,24.399225 15.052029,25.083337 15.346155,25.584075 C 15.64592,26.084821 16.050331,26.335191 16.55939,26.335189 C 17.062774,26.335191 17.464357,26.084821 17.76414,25.584075 C 18.063904,25.076285 18.213791,24.392172 18.213801,23.531737 C 18.213791,22.678366 18.061077,22.004832 17.755656,21.511137 C 17.455873,21.010402 17.051461,20.76003 16.54242,20.760021 C 16.044675,20.76003 15.64592,21.010402 15.346155,21.511137 C 15.052029,22.004832 14.904971,22.678366 14.904977,23.531737 M 18.383485,26.716035 C 18.213791,27.216779 17.93947,27.608205 17.560521,27.890312 C 17.187209,28.165368 16.748861,28.302897 16.245476,28.302896 C 15.272617,28.302897 14.480763,27.865629 13.86991,26.991091 C 13.2647,26.109505 12.9621,24.963441 12.962104,23.552896 C 12.9621,22.14236 13.267528,20.996295 13.878393,20.114698 C 14.489247,19.23312 15.278274,18.792326 16.245476,18.792316 C 16.748861,18.792326 17.187209,18.93338 17.560521,19.215479 C 17.93947,19.497597 18.213791,19.889021 18.383485,20.389755 L 18.383485,19.003897 L 20.156675,19.003897 L 20.156675,26.335189 C 20.85802,26.201191 21.40949,25.781556 21.811086,25.076281 C 22.212656,24.363962 22.413447,23.454163 22.413462,22.346882 C 22.413447,21.641618 22.331434,20.982191 22.167421,20.368598 C 22.00338,19.747968 21.754511,19.180225 21.420815,18.665367 C 20.883472,17.804949 20.210395,17.141993 19.401584,16.676502 C 18.598407,16.211037 17.727366,15.978297 16.788462,15.978285 C 16.132345,15.978297 15.504517,16.087615 14.904977,16.306236 C 14.305424,16.51783 13.751126,16.831675 13.242081,17.247773 C 12.404973,17.938949 11.751693,18.834642 11.28224,19.934855 C 10.818436,21.028034 10.586536,22.212886 10.586538,23.48942 C 10.586536,24.54028 10.736422,25.527657 11.036199,26.451559 C 11.341625,27.368413 11.779973,28.179474 12.351244,28.884744 C 12.91685,29.575909 13.564474,30.101336 14.294117,30.461025 C 15.029404,30.827764 15.812775,31.011135 16.644231,31.011137 C 17.356891,31.011135 18.06956,30.845396 18.78224,30.51392 C 19.494898,30.182442 20.102929,29.734595 20.606335,29.170379 L 21.514141,30.884187 C 20.807114,31.568298 20.035056,32.090197 19.197964,32.449889 C 18.366506,32.816625 17.520918,32.999997 16.6612,33 C 15.614812,32.999997 14.627822,32.767258 13.700226,32.301783 C 12.772619,31.843352 11.946829,31.173346 11.222851,30.291759 C 10.498866,29.410171 9.9473962,28.391056 9.5684389,27.234409 C 9.1894783,26.070716 8.9999989,24.822387 9,23.48942 C 8.9999989,22.205835 9.1923064,20.982191 9.5769231,19.818486 C 9.9615365,18.654798 10.510178,17.632157 11.222851,16.750556 C 11.935517,15.876033 12.764135,15.198974 13.708711,14.719376 C 14.65893,14.239807 15.643093,14.000014 16.6612,14 C 17.928158,14.000014 19.079175,14.303281 20.114254,14.9098 C 21.149308,15.509294 22.014692,16.376775 22.710408,17.51225 C 23.1346,18.203426 23.454171,18.954539 23.669118,19.76559 C 23.88969,20.569609 23.999985,21.415931 24,22.304566 C 23.999985,24.215855 23.539012,25.700449 22.617083,26.758351 C 21.695122,27.81626 20.394219,28.345213 18.714367,28.345212 L 18.383485,28.345212 L 18.383485,26.716035"
|
||||
id="text4838" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.94142259;fill:url(#radialGradient7479);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6598"
|
||||
sodipodi:cx="27.930717"
|
||||
sodipodi:cy="18.124739"
|
||||
sodipodi:rx="9.1923885"
|
||||
sodipodi:ry="9.1923885"
|
||||
d="M 37.123106 18.124739 A 9.1923885 9.1923885 0 1 1 18.738329,18.124739 A 9.1923885 9.1923885 0 1 1 37.123106 18.124739 z"
|
||||
transform="matrix(0.979071,0,0,0.979071,-2.34615,-8.745404)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
317
datas/icon-themes/edeneu/scalable/actions/appointment-new.svg
Normal file
@@ -0,0 +1,317 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="appointment-new.svg"
|
||||
inkscape:export-filename="/home/silvestre/Desktop/Neu/scalable/apps/evolution.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8358">
|
||||
<stop
|
||||
style="stop-color:#f5c548;stop-opacity:0.73725492"
|
||||
offset="0"
|
||||
id="stop8360" />
|
||||
<stop
|
||||
style="stop-color:#ffce3e;stop-opacity:0.71372551"
|
||||
offset="1"
|
||||
id="stop8362" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4934">
|
||||
<stop
|
||||
id="stop4938"
|
||||
offset="0"
|
||||
style="stop-color:#f9f9f9;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c3c3c3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4940" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="21.705061"
|
||||
x2="83.525612"
|
||||
y1="367.82727"
|
||||
x1="29.183714"
|
||||
id="linearGradient6540"
|
||||
xlink:href="#linearGradient6534"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.91358,2.206993e-7,-4.100829e-8,0.169753,4.848958,95.59596)"
|
||||
r="54.105412"
|
||||
fy="136.4689"
|
||||
fx="56.109314"
|
||||
cy="115.14162"
|
||||
cx="56.109314"
|
||||
id="radialGradient6525"
|
||||
xlink:href="#linearGradient6519"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4308">
|
||||
<stop
|
||||
id="stop4310"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.22916669;" />
|
||||
<stop
|
||||
id="stop4312"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5044"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5046"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5048"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6519"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6521"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:0.39215687" />
|
||||
<stop
|
||||
id="stop6523"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6534"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6536"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.39600000" />
|
||||
<stop
|
||||
id="stop6538"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4206"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4208"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4210"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.36909872" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4206"
|
||||
id="linearGradient5825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="59.64286"
|
||||
y1="14.832381"
|
||||
x2="59.64286"
|
||||
y2="121.82737"
|
||||
gradientTransform="matrix(0.328065,0,0,0.345482,-2.097786,-0.476988)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5044"
|
||||
id="linearGradient5827"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.356801,0,0,0.39171,-2.564881,-8.788449e-2)"
|
||||
x1="67.070114"
|
||||
y1="-3.7457006"
|
||||
x2="67.070114"
|
||||
y2="69.195572" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4308"
|
||||
id="radialGradient5829"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.33442,-8.977832e-2,8.94562e-2,0.334489,-12.98936,9.897861)"
|
||||
cx="83.842957"
|
||||
cy="105.0536"
|
||||
fx="83.842957"
|
||||
fy="105.0536"
|
||||
r="56.442806" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4934"
|
||||
id="radialGradient5831"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.406265,1.939687e-16,-2.043241e-16,0.406434,-5.70297,-4.325582)"
|
||||
cx="77.420738"
|
||||
cy="82.518806"
|
||||
fx="77.420738"
|
||||
fy="82.518806"
|
||||
r="56.442806" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8358"
|
||||
id="radialGradient8385"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.888349,-0.956685,-0.948891,1.021886,61.9953,19.79207)"
|
||||
cx="21.4375"
|
||||
cy="24.1875"
|
||||
fx="21.4375"
|
||||
fy="24.1875"
|
||||
r="9.6875" />
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;"
|
||||
offset="0.5"
|
||||
id="stop7481" />
|
||||
<stop
|
||||
id="stop7483"
|
||||
offset="0.75"
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;" />
|
||||
<stop
|
||||
id="stop7477"
|
||||
offset="1"
|
||||
style="stop-color:#fff409;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient9365"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="72"
|
||||
inkscape:window-y="111"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#linearGradient6540);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path6532"
|
||||
sodipodi:cx="67.306274"
|
||||
sodipodi:cy="70.848709"
|
||||
sodipodi:rx="56.442806"
|
||||
sodipodi:ry="56.442806"
|
||||
d="M 123.74908 70.848709 A 56.442806 56.442806 0 1 1 10.863468,70.848709 A 56.442806 56.442806 0 1 1 123.74908 70.848709 z"
|
||||
transform="matrix(0.34867,0,-9.434273e-2,0.106868,9.535079,31.41097)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient6525);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5065"
|
||||
sodipodi:cx="56.109314"
|
||||
sodipodi:cy="115.14162"
|
||||
sodipodi:rx="54.105412"
|
||||
sodipodi:ry="9.1845608"
|
||||
d="M 110.21473 115.14162 A 54.105412 9.1845608 0 1 1 2.0039024,115.14162 A 54.105412 9.1845608 0 1 1 110.21473 115.14162 z"
|
||||
transform="matrix(0.377952,0,0,0.547296,-0.78805,-20.01254)" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient5831);fill-opacity:1;fill-rule:evenodd;stroke:#1871bc;stroke-width:0.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 41.500013,23.999987 C 41.500013,35.315984 32.319802,44.499978 21.008473,44.499978 C 9.6971422,44.499978 0.51693186,35.315984 0.51693186,23.999987 C 0.51693186,12.683993 9.6971422,3.4999964 21.008473,3.4999964 C 32.319802,3.4999964 41.500013,12.683993 41.500013,23.999987 z "
|
||||
id="path1359" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient5829);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 38.593015,24.635308 C 38.593015,35.303636 30.36523,43.96199 20.227426,43.96199 C 10.08962,43.96199 1.8618376,35.303636 1.8618376,24.635308 C 1.8618376,13.966978 10.08962,5.3086244 20.227426,5.3086244 C 30.36523,5.3086244 38.593015,13.966978 38.593015,24.635308 z "
|
||||
id="path2854" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#5192ca;stroke-width:2.99999714;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 37.535883,23.999987 C 37.535883,34.211983 29.668879,42.499978 19.975611,42.499978 C 10.28234,42.499978 2.4153385,34.211983 2.4153385,23.999987 C 2.4153385,13.787993 10.28234,5.4999961 19.975611,5.4999961 C 29.668879,5.4999961 37.535883,13.787993 37.535883,23.999987 z "
|
||||
id="path5733" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5825);stroke-width:0.99999481;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.79399139;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 38.499994,23.999999 C 38.499994,34.764001 30.204408,43.500003 19.983062,43.500003 C 9.7617148,43.500003 1.4661331,34.764001 1.4661331,23.999999 C 1.4661331,13.235999 9.7617148,4.4999982 19.983062,4.4999982 C 30.204408,4.4999982 38.499994,13.235999 38.499994,23.999999 z "
|
||||
id="path3331" />
|
||||
<path
|
||||
style="opacity:0.68619247;fill:#696969;fill-opacity:0.86266097;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 19.166385,9 L 19.166385,13.25 L 21.164856,13.25 L 21.164856,9 L 19.166385,9 z M 6,22.875 L 6,25.000001 L 9.8793814,25.000001 L 9.8793814,22.875 L 6,22.875 z M 30.451859,22.875 L 30.451859,25.000001 L 34.213683,25.000001 L 34.213683,22.875 L 30.451859,22.875 z M 19.166385,35 L 19.166385,39 L 21.164856,39 L 21.164856,35 L 19.166385,35 z "
|
||||
id="rect5821"
|
||||
sodipodi:nodetypes="cccccccccccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.68619247;fill:#696969;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14.449758,12 L 12.894862,12.982863 L 13.756035,14.595767 L 15.310931,13.612903 L 14.449758,12 z M 25.573245,12 L 24.735993,13.612903 L 26.29089,14.595767 L 27.152063,12.982863 L 25.573245,12 z M 9.4023258,16.637097 L 8.4933096,18.350806 L 9.9525196,19.258065 L 10.861536,17.569557 L 9.4023258,16.637097 z M 30.548913,16.6875 L 29.089702,17.61996 L 29.998718,19.308468 L 31.457929,18.40121 L 30.548913,16.6875 z M 29.998718,29.590726 L 29.089702,31.279233 L 30.548913,32.211694 L 31.457929,30.497984 L 29.998718,29.590726 z M 9.9525196,29.641129 L 8.4933096,30.573588 L 9.4023258,32.262097 L 10.861536,31.329637 L 9.9525196,29.641129 z M 13.684271,34.404233 L 12.847018,36.017137 L 14.401916,37 L 15.263089,35.387097 L 13.684271,34.404233 z M 26.338732,34.404233 L 24.783836,35.387097 L 25.645009,37 L 27.199906,36.017137 L 26.338732,34.404233 z "
|
||||
id="rect5837" />
|
||||
<path
|
||||
style="opacity:0.96610879;fill:#414141;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 29.01564,29.942558 L 21.166329,25.013008 L 11.153591,25.028944 L 11.084617,23 L 20.42026,22.948344 L 21.627402,23.005927 L 30,28.237596 L 29.01564,29.942558 z "
|
||||
id="rect5849"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient8385);fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20,9.9999754 C 12.824001,9.9999807 7.0000009,16.271991 7,24 L 19.999997,23.999991 L 20,9.9999754 z "
|
||||
id="path7483" />
|
||||
<path
|
||||
style="color:black;fill:#4082bc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 20.5,4 C 30.754694,4.2823224 39,13.13788 39,24 C 39,34.862123 30.754694,43.717678 20.5,44 C 20.666142,44.004082 20.832881,44 21,44 C 32.039999,44 41,35.040002 41,24 C 41,12.960001 32.039999,4 21,4 C 20.832881,4 20.666142,3.9959175 20.5,4 z "
|
||||
id="path8387" />
|
||||
<path
|
||||
style="opacity:0.68619247;color:black;fill:url(#linearGradient5827);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 36.112092,16.748391 C 36.112092,23.233503 28.882954,28.496784 19.975619,28.496784 C 11.068285,28.496784 3.8391468,23.233503 3.8391468,16.748391 C 3.8391468,11.679755 11.747535,5 19.975619,5 C 29.174306,5 36.112092,11.973626 36.112092,16.748391 z "
|
||||
id="path4316" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.94142259;fill:url(#radialGradient9365);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6598"
|
||||
sodipodi:cx="27.930717"
|
||||
sodipodi:cy="18.124739"
|
||||
sodipodi:rx="9.1923885"
|
||||
sodipodi:ry="9.1923885"
|
||||
d="M 37.123106 18.124739 A 9.1923885 9.1923885 0 1 1 18.738329,18.124739 A 9.1923885 9.1923885 0 1 1 37.123106 18.124739 z"
|
||||
transform="matrix(0.979071,0,0,0.979071,9.653846,-6.745407)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
384
datas/icon-themes/edeneu/scalable/actions/bookmark-new.svg
Normal file
@@ -0,0 +1,384 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="bookmark-new.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4611">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.35193133"
|
||||
offset="0"
|
||||
id="stop4613" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4615" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2853">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.81960785"
|
||||
offset="0"
|
||||
id="stop2855" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24705882"
|
||||
offset="1"
|
||||
id="stop2857" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10532">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop10534" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop10536" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient9796">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.65625000;"
|
||||
offset="0.0000000"
|
||||
id="stop9798" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9800" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient9040">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.57291669;"
|
||||
offset="0.0000000"
|
||||
id="stop9042" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9044" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8304">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.75000000;"
|
||||
offset="0.0000000"
|
||||
id="stop8306" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop8308" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8296"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop8298"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.62400001" />
|
||||
<stop
|
||||
id="stop8300"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5359">
|
||||
<stop
|
||||
style="stop-color:#a47e51;stop-opacity:1.0000000"
|
||||
offset="0"
|
||||
id="stop5361" />
|
||||
<stop
|
||||
style="stop-color:#c99964;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop5363" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4625">
|
||||
<stop
|
||||
style="stop-color:#f4f4ee;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4627" />
|
||||
<stop
|
||||
style="stop-color:#b2b2ad;stop-opacity:1.0000000"
|
||||
offset="1.0000000"
|
||||
id="stop4629" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8304"
|
||||
id="linearGradient9066"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="53.60886"
|
||||
y1="5.6855788"
|
||||
x2="54.789669"
|
||||
y2="20.814316" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9796"
|
||||
id="linearGradient9802"
|
||||
x1="71.793358"
|
||||
y1="154.92252"
|
||||
x2="77.933578"
|
||||
y2="92.103325"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.338872,0,0,0.407428,4.944509,-3.793525)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10532"
|
||||
id="radialGradient10538"
|
||||
cx="53.84502"
|
||||
cy="116.42805"
|
||||
fx="53.84502"
|
||||
fy="116.42805"
|
||||
r="47.232471"
|
||||
gradientTransform="matrix(1,3.447763e-17,-8.025806e-18,0.225,-1.024164e-15,90.23174)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10532"
|
||||
id="radialGradient10542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,6.444904e-17,2.146721e-18,0.225,5.351228e-15,90.23174)"
|
||||
cx="53.84502"
|
||||
cy="116.42805"
|
||||
fx="53.84502"
|
||||
fy="116.42805"
|
||||
r="47.232471" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9040"
|
||||
id="linearGradient1966"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="46.051662"
|
||||
y1="36.369003"
|
||||
x2="70.385277"
|
||||
y2="42.058598"
|
||||
gradientTransform="matrix(0.407428,0,0,0.407428,-9.583977,-1.874234)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8296"
|
||||
id="linearGradient1969"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="60.785091"
|
||||
y1="-20.288902"
|
||||
x2="59.11517"
|
||||
y2="71.890686"
|
||||
gradientTransform="matrix(0.407428,0,0,0.407428,-9.583977,-1.874234)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5359"
|
||||
id="linearGradient1972"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="85.963097"
|
||||
y1="99.660515"
|
||||
x2="45.10701"
|
||||
y2="33.062729"
|
||||
gradientTransform="matrix(0.409778,0,0,0.403274,-9.758073,-1.738097)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4625"
|
||||
id="linearGradient1975"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.409272,0,0,0.399856,-10.46109,-1.610169)"
|
||||
x1="100.60516"
|
||||
y1="65.298889"
|
||||
x2="108.63469"
|
||||
y2="65.298889" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2853"
|
||||
id="linearGradient2859"
|
||||
x1="4.7533164"
|
||||
y1="6.4509287"
|
||||
x2="16.297083"
|
||||
y2="104.35699"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.420604,0,0,0.413744,-0.841263,-3.796576)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4611"
|
||||
id="radialGradient4617"
|
||||
cx="27.904215"
|
||||
cy="52.200916"
|
||||
fx="27.904215"
|
||||
fy="52.200916"
|
||||
r="32.944649"
|
||||
gradientTransform="matrix(0.54019,6.317062e-17,4.307866e-11,0.656926,-3.741588,-20.1966)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;"
|
||||
offset="0.5"
|
||||
id="stop7481" />
|
||||
<stop
|
||||
id="stop7483"
|
||||
offset="0.75"
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;" />
|
||||
<stop
|
||||
id="stop7477"
|
||||
offset="1"
|
||||
style="stop-color:#fff409;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient4130"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="26.270445"
|
||||
inkscape:cy="24.165891"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showborder="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10542);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path10540"
|
||||
sodipodi:cx="53.84502"
|
||||
sodipodi:cy="116.42805"
|
||||
sodipodi:rx="47.232471"
|
||||
sodipodi:ry="10.627306"
|
||||
d="M 101.07749 116.42805 A 47.232471 10.627306 0 1 1 6.6125488,116.42805 A 47.232471 10.627306 0 1 1 101.07749 116.42805 z"
|
||||
transform="matrix(0.353261,4.405763e-2,-4.895288e-2,0.392512,13.18613,-4.335195)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10538);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path9804"
|
||||
sodipodi:cx="53.84502"
|
||||
sodipodi:cy="116.42805"
|
||||
sodipodi:rx="47.232471"
|
||||
sodipodi:ry="10.627306"
|
||||
d="M 101.07749 116.42805 A 47.232471 10.627306 0 1 1 6.6125488,116.42805 A 47.232471 10.627306 0 1 1 101.07749 116.42805 z"
|
||||
transform="matrix(0.404296,5.042247e-2,-5.602502e-2,0.449217,3.858902,-13.30065)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient9802);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.555163,45.085801 L 48,37.388265 L 30.07355,32 L 29.273263,41.814353 L 34.555163,45.085801 z "
|
||||
id="path9068" />
|
||||
<path
|
||||
style="fill:#c99964;fill-opacity:1;fill-rule:evenodd;stroke:#8a6032;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.7058024,7.3276909 L 9.7058024,39.344458 L 35.499998,44.726201 L 35.499998,4.4999995 L 9.7058024,7.3276909 z "
|
||||
id="path3897" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1975);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 3.3605059,7.2663438 L 3.3605059,39.278447 L 28.973962,44 L 34,42.961255 L 34,5.84988 L 28.973962,5 L 3.3605059,7.2663438 z "
|
||||
id="path1710"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1972);fill-opacity:1;fill-rule:evenodd;stroke:#8a6032;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.4999999,6.4523811 L 3.4999999,39.88096 L 30.500007,45.500001 L 30.500007,3.4999992 L 3.4999999,6.4523811 z "
|
||||
id="path2443" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1969);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.1595403,7.1409529 L 4.1595403,27.143899 C 12.0065,12.039632 22.983171,18.571205 29.741535,30.001456 L 29.741535,4.1473153 L 4.1595403,7.1409529 z "
|
||||
id="path7549"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1966);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.681063,4.2020786 C 17.885176,8.0941194 19.109845,12.394384 19.092836,15.725117 C 19.075827,19.055854 17.204803,22.84583 17.068729,26.12554 L 14.182154,23.720065 L 12.738867,24.874694 L 12.612756,4.8092858 L 17.681063,4.2020786 z "
|
||||
id="path8312"
|
||||
sodipodi:nodetypes="csccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2859);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.4999999,7.3117926 L 4.4999999,39.148526 L 29.500004,44.500006 L 29.500004,4.5000007 L 4.4999999,7.3117926 z "
|
||||
id="path1978" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4617);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.7260504,7.6142714 L 4.7260504,38.290212 L 29.111474,43.446575 L 29.111474,4.905 L 4.7260504,7.6142714 z "
|
||||
id="path3736" />
|
||||
<path
|
||||
style="fill:#e41a00;fill-opacity:1;fill-rule:evenodd;stroke:#860000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.500002,3.821661 L 15.288714,1.9688315 C 13.901731,6.1070184 16.340248,10.557666 16.159524,14.765597 C 15.978801,18.973528 13.3226,20.197908 14.060609,27.499996 C 12.83728,27.405628 11.973362,26.522195 11.756385,24.849688 C 10.445433,25.116668 9.4938953,26.22202 9.0455326,27.499996 C 7.5298177,21.59768 9.5501438,18.753333 10.536501,14.527475 C 11.501079,10.394929 7.6502458,5.659298 9.8491559,2.507451 C 10.669222,1.4746146 14.172895,1.1322175 15.280492,1.9734251 C 16.138928,2.6708726 16.641565,3.1242137 17.500002,3.821661 z "
|
||||
id="path6093"
|
||||
sodipodi:nodetypes="cczccczccc" />
|
||||
<path
|
||||
style="fill:#e41a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.666337,4.4742492 L 14.27033,4.7431782 L 14.365431,2.1508779 C 15.377555,2.6006116 16.789793,3.6177741 17.666337,4.4742492 z "
|
||||
id="path7547"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#linearGradient9066);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path8302"
|
||||
sodipodi:cx="55.557194"
|
||||
sodipodi:cy="16.649446"
|
||||
sodipodi:rx="6.3173432"
|
||||
sodipodi:ry="4.9594097"
|
||||
d="M 61.874537 16.649446 A 6.3173432 4.9594097 0 1 1 49.239851,16.649446 A 6.3173432 4.9594097 0 1 1 61.874537 16.649446 z"
|
||||
transform="matrix(0.407428,-4.569305e-2,0,0.407428,-10.30562,-9.201011e-3)" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.43776826"
|
||||
d="M 9.557572,25.500006 C 9.0488062,18.066216 12.080672,17.783285 12.024583,12.449978 C 11.985186,8.7037659 7.9559822,3.7163187 12.468475,2.5945225 C 13.212184,2.4096381 14.718688,2.6742151 15.500001,2.9374832"
|
||||
id="path2861"
|
||||
sodipodi:nodetypes="cssc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.94142259;fill:url(#radialGradient4130);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6598"
|
||||
sodipodi:cx="27.930717"
|
||||
sodipodi:cy="18.124739"
|
||||
sodipodi:rx="9.1923885"
|
||||
sodipodi:ry="9.1923885"
|
||||
d="M 37.123106 18.124739 A 9.1923885 9.1923885 0 1 1 18.738329,18.124739 A 9.1923885 9.1923885 0 1 1 37.123106 18.124739 z"
|
||||
transform="matrix(0.979071,0,0,0.979071,-1.346154,-8.745407)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
575
datas/icon-themes/edeneu/scalable/actions/contact-new.svg
Normal file
|
After Width: | Height: | Size: 30 KiB |
167
datas/icon-themes/edeneu/scalable/actions/dialog-cancel.svg
Normal file
@@ -0,0 +1,167 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="dialog-cancel.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient8493">
|
||||
<stop
|
||||
id="stop8495"
|
||||
offset="0"
|
||||
style="stop-color:#b50000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop8497"
|
||||
offset="1"
|
||||
style="stop-color:#860000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6731">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6733" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.21459228"
|
||||
offset="1"
|
||||
id="stop6736" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2947">
|
||||
<stop
|
||||
style="stop-color:#f00000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2949" />
|
||||
<stop
|
||||
style="stop-color:#c50000;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop2951" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2939">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2941" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2943" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2939"
|
||||
id="linearGradient4104"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.583028,0,0,0.606295,42.48895,-11.88434)"
|
||||
x1="-36.921875"
|
||||
y1="9.6603756"
|
||||
x2="-39.676552"
|
||||
y2="64.862534" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2947"
|
||||
id="linearGradient4107"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.548553,0,0,0.585058,41.25364,-10.11685)"
|
||||
x1="-36.921875"
|
||||
y1="53.132072"
|
||||
x2="-25.876013"
|
||||
y2="85.908356" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6731"
|
||||
id="linearGradient6738"
|
||||
x1="37.404812"
|
||||
y1="1.7852055"
|
||||
x2="23.418995"
|
||||
y2="42.563885"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.926717,0,0,1,0.179476,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8493"
|
||||
id="linearGradient6742"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.624741,0,0,0.599328,46.06665,-10.96117)"
|
||||
x1="-36.921875"
|
||||
y1="53.132072"
|
||||
x2="-25.876013"
|
||||
y2="85.908356" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="843"
|
||||
inkscape:window-height="556"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient6742);fill-opacity:1.0;fill-rule:evenodd;stroke:#9f0000;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.59375,3.53125 C 7.1316342,3.6323326 5.7340619,4.1840057 4.625,5.25 C 3.3310957,6.493661 2.645209,8.1952324 2.53125,10.03125 C 2.4951703,10.555826 2.4929687,11.118368 2.5625,11.65625 C 2.7821173,13.538838 3.594044,15.446277 4.96875,17.0625 L 11.3125,24.5 L 4.96875,31.9375 C 3.5940436,33.553726 2.7821175,35.492412 2.5625,37.375 C 2.4929686,37.912882 2.4951703,38.444173 2.53125,38.96875 C 2.6452089,40.804768 3.331095,42.506334 4.625,43.75 C 8.4750476,47.025447 13.675786,45.260529 17.0625,42.21875 L 21.9375,37.03125 L 26.375,42.21875 C 28.625137,44.864211 31.771161,45.943959 34.46875,45.3125 C 36.889101,45.790841 39.358176,45.309638 41.15625,43.75 C 44.433476,40.907335 44.263129,35.631731 40.78125,31.9375 L 33.75,24.5 L 40.78125,17.0625 C 44.263129,13.368274 44.433475,8.0926548 41.15625,5.25 C 36.628678,2.1188377 30.209698,3.0754396 26.375,6.78125 L 21.9375,11.96875 L 17.0625,6.78125 C 14.838429,4.3244585 11.755743,3.4934225 8.59375,3.53125 z "
|
||||
id="path6740"
|
||||
sodipodi:nodetypes="csscccccssccccscccscccs" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4107);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.9232416,4.0159512 C 7.5006431,4.1146268 6.1453081,4.6756614 5.0662212,5.7162743 C 2.1886591,8.4912445 2.3346651,13.628333 5.3919252,17.234597 L 11.563158,24.511253 L 5.3919252,31.769622 C 2.3346644,35.375893 2.1886575,40.512975 5.0662212,43.287955 C 7.9437859,46.062917 12.722904,45.395007 15.780166,41.788735 L 20.991428,35.627351 L 26.219835,41.788735 C 29.277095,45.395007 34.056217,46.062917 36.933781,43.287955 C 39.811343,40.512975 39.665334,35.375893 36.608076,31.769622 L 30.436843,24.511253 L 36.608076,17.234597 C 39.665334,13.628332 39.811343,8.4912455 36.933781,5.7162743 C 34.056216,2.9413051 29.277095,3.6092183 26.219835,7.2154854 L 20.991428,13.376875 L 15.780166,7.2154854 C 13.869379,4.9615688 11.294238,3.8514909 8.9232416,4.0159512 z "
|
||||
id="rect2206" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4104);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.8851116,4.0155535 C 7.4624401,4.1117696 6.1070335,4.6588203 5.02789,5.6734956 C 2.1501787,8.3792982 2.2961918,13.388342 5.3536117,16.904719 L 11.525164,24 C 17.213264,17.306253 24.711733,16.678714 30.399834,24 L 36.571387,16.904719 C 39.628808,13.388341 39.774822,8.3792993 36.897108,5.6734956 C 34.019393,2.9676928 29.994473,3.5423416 26.182605,7.6716503 L 20.953927,13.679463 L 15.742394,7.6716503 C 13.275192,4.9989876 11.256232,3.855193 8.8851116,4.0155535 z "
|
||||
id="path2937"
|
||||
sodipodi:nodetypes="csccccscccc" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6738);stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 9.2171038,4.5155617 C 7.8255169,4.6118307 6.5296336,5.1965903 5.4441637,6.1744139 C 2.4931941,8.8327351 3.1166695,13.719464 6.5911178,17.411804 L 12.627821,24.510981 L 6.5911178,31.592318 C 2.6312268,35.86535 2.6293289,40.122421 5.4441637,42.829719 C 8.2589994,45.536999 12.933936,44.08091 15.924551,40.562596 L 21.022213,34.551487 L 26.136644,40.562596 C 29.127258,44.08091 33.802198,45.536999 36.617032,42.829719 C 39.431867,40.122421 38.626362,35.110633 35.635748,31.592318 L 29.599044,24.510981 L 35.635748,17.411804 C 38.746912,13.893495 39.692671,9.6635826 36.617032,6.1744139 C 33.744587,2.911172 29.293048,4.9231535 26.136644,8.5309138 L 21.022213,14.542026 L 15.924551,8.5309138 C 14.055419,6.3319704 11.536414,4.3551126 9.2171038,4.5155617 z "
|
||||
id="path4983"
|
||||
sodipodi:nodetypes="cscccscccscccscccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.8 KiB |
167
datas/icon-themes/edeneu/scalable/actions/dialog-close.svg
Normal file
@@ -0,0 +1,167 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="dialog-close.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient4980">
|
||||
<stop
|
||||
id="stop4982"
|
||||
offset="0"
|
||||
style="stop-color:#444;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4984"
|
||||
offset="1"
|
||||
style="stop-color:#181818;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8493">
|
||||
<stop
|
||||
id="stop8495"
|
||||
offset="0"
|
||||
style="stop-color:#282828;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop8497"
|
||||
offset="1"
|
||||
style="stop-color:#111;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6731">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6733" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.21459228"
|
||||
offset="1"
|
||||
id="stop6736" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2939">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2941" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2943" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2939"
|
||||
id="linearGradient4104"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.583028,0,0,0.606295,42.48895,-11.88434)"
|
||||
x1="-36.921875"
|
||||
y1="9.6603756"
|
||||
x2="-39.676552"
|
||||
y2="64.862534" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4980"
|
||||
id="linearGradient4107"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.548553,0,0,0.585058,41.25364,-10.11685)"
|
||||
x1="-36.921875"
|
||||
y1="53.132072"
|
||||
x2="-25.876013"
|
||||
y2="85.908356" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6731"
|
||||
id="linearGradient6738"
|
||||
x1="37.404812"
|
||||
y1="1.7852055"
|
||||
x2="23.418995"
|
||||
y2="42.563885"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.926717,0,0,1,0.179476,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8493"
|
||||
id="linearGradient6742"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.624741,0,0,0.599328,46.06665,-10.96117)"
|
||||
x1="-36.921875"
|
||||
y1="53.132072"
|
||||
x2="-25.876013"
|
||||
y2="85.908356" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="843"
|
||||
inkscape:window-height="556"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient6742);fill-opacity:1.0;fill-rule:evenodd;stroke:black;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.59375,3.53125 C 7.1316342,3.6323326 5.7340619,4.1840057 4.625,5.25 C 3.3310957,6.493661 2.645209,8.1952324 2.53125,10.03125 C 2.4951703,10.555826 2.4929687,11.118368 2.5625,11.65625 C 2.7821173,13.538838 3.594044,15.446277 4.96875,17.0625 L 11.3125,24.5 L 4.96875,31.9375 C 3.5940436,33.553726 2.7821175,35.492412 2.5625,37.375 C 2.4929686,37.912882 2.4951703,38.444173 2.53125,38.96875 C 2.6452089,40.804768 3.331095,42.506334 4.625,43.75 C 8.4750476,47.025447 13.675786,45.260529 17.0625,42.21875 L 21.9375,37.03125 L 26.375,42.21875 C 28.625137,44.864211 31.771161,45.943959 34.46875,45.3125 C 36.889101,45.790841 39.358176,45.309638 41.15625,43.75 C 44.433476,40.907335 44.263129,35.631731 40.78125,31.9375 L 33.75,24.5 L 40.78125,17.0625 C 44.263129,13.368274 44.433475,8.0926548 41.15625,5.25 C 36.628678,2.1188377 30.209698,3.0754396 26.375,6.78125 L 21.9375,11.96875 L 17.0625,6.78125 C 14.838429,4.3244585 11.755743,3.4934225 8.59375,3.53125 z "
|
||||
id="path6740"
|
||||
sodipodi:nodetypes="csscccccssccccscccscccs" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4107);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.9232416,4.0159512 C 7.5006431,4.1146268 6.1453081,4.6756614 5.0662212,5.7162743 C 2.1886591,8.4912445 2.3346651,13.628333 5.3919252,17.234597 L 11.563158,24.511253 L 5.3919252,31.769622 C 2.3346644,35.375893 2.1886575,40.512975 5.0662212,43.287955 C 7.9437859,46.062917 12.722904,45.395007 15.780166,41.788735 L 20.991428,35.627351 L 26.219835,41.788735 C 29.277095,45.395007 34.056217,46.062917 36.933781,43.287955 C 39.811343,40.512975 39.665334,35.375893 36.608076,31.769622 L 30.436843,24.511253 L 36.608076,17.234597 C 39.665334,13.628332 39.811343,8.4912455 36.933781,5.7162743 C 34.056216,2.9413051 29.277095,3.6092183 26.219835,7.2154854 L 20.991428,13.376875 L 15.780166,7.2154854 C 13.869379,4.9615688 11.294238,3.8514909 8.9232416,4.0159512 z "
|
||||
id="rect2206" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4104);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;opacity:0.51464435"
|
||||
d="M 8.8851116,4.0155535 C 7.4624401,4.1117696 6.1070335,4.6588203 5.02789,5.6734956 C 2.1501787,8.3792982 2.2961918,13.388342 5.3536117,16.904719 L 11.525164,24 C 17.213264,17.306253 24.711733,16.678714 30.399834,24 L 36.571387,16.904719 C 39.628808,13.388341 39.774822,8.3792993 36.897108,5.6734956 C 34.019393,2.9676928 29.994473,3.5423416 26.182605,7.6716503 L 20.953927,13.679463 L 15.742394,7.6716503 C 13.275192,4.9989876 11.256232,3.855193 8.8851116,4.0155535 z "
|
||||
id="path2937"
|
||||
sodipodi:nodetypes="csccccscccc" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6738);stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 9.2171038,4.5155617 C 7.8255169,4.6118307 6.5296336,5.1965903 5.4441637,6.1744139 C 2.4931941,8.8327351 3.1166695,13.719464 6.5911178,17.411804 L 12.627821,24.510981 L 6.5911178,31.592318 C 2.6312268,35.86535 2.6293289,40.122421 5.4441637,42.829719 C 8.2589994,45.536999 12.933936,44.08091 15.924551,40.562596 L 21.022213,34.551487 L 26.136644,40.562596 C 29.127258,44.08091 33.802198,45.536999 36.617032,42.829719 C 39.431867,40.122421 38.626362,35.110633 35.635748,31.592318 L 29.599044,24.510981 L 35.635748,17.411804 C 38.746912,13.893495 39.692671,9.6635826 36.617032,6.1744139 C 33.744587,2.911172 29.293048,4.9231535 26.136644,8.5309138 L 21.022213,14.542026 L 15.924551,8.5309138 C 14.055419,6.3319704 11.536414,4.3551126 9.2171038,4.5155617 z "
|
||||
id="path4983"
|
||||
sodipodi:nodetypes="cscccscccscccscccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.8 KiB |
219
datas/icon-themes/edeneu/scalable/actions/dialog-ok.svg
Normal file
@@ -0,0 +1,219 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="dialog-ok.svg"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="Etiquette"
|
||||
height="48"
|
||||
width="48"
|
||||
y="00"
|
||||
x="00"
|
||||
version="1.0">
|
||||
<metadata
|
||||
id="About">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:date />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="Etiquette"
|
||||
inkscape:window-y="88"
|
||||
inkscape:window-x="37"
|
||||
inkscape:window-height="555"
|
||||
inkscape:window-width="822"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<defs
|
||||
id="Gradients">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6559">
|
||||
<stop
|
||||
style="stop-color:#4ea01c;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6561" />
|
||||
<stop
|
||||
style="stop-color:#4ea01c;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6563" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#41c20c;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
id="stop6557"
|
||||
offset="0.42105263"
|
||||
style="stop-color:#3dbb09;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#2c8507;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7471">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7473" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7475" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5714">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.91416311"
|
||||
offset="0"
|
||||
id="stop5716" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.40772533"
|
||||
offset="1"
|
||||
id="stop5718" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
id="stop2203"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#479214;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop2205"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#3ee407;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient2095"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.628144,9.741484e-17,9.73775e-17,-0.612938,68.01658,48.17762)"
|
||||
x1="-93.517403"
|
||||
y1="19.253912"
|
||||
x2="-47.049515"
|
||||
y2="41.683594" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient5720"
|
||||
x1="3.4491618"
|
||||
y1="27.5676"
|
||||
x2="36.619328"
|
||||
y2="17.625456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.999096,-1.573024e-16,1.562062e-16,-0.998203,52.89913,48.98832)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7471"
|
||||
id="radialGradient7477"
|
||||
cx="18"
|
||||
cy="43.5"
|
||||
fx="18"
|
||||
fy="43.5"
|
||||
r="17"
|
||||
gradientTransform="matrix(1.264705,0,0,0.205882,-1.264705,35.54412)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient6555"
|
||||
x1="15.125"
|
||||
y1="19.010838"
|
||||
x2="15.125"
|
||||
y2="12.332324"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.662945e-16,1.059434,-1.214101,-1.905718e-16,54.5311,-1.766085)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6559"
|
||||
id="linearGradient6565"
|
||||
x1="21.743534"
|
||||
y1="17.239695"
|
||||
x2="21.743534"
|
||||
y2="20.607468"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.60305e-16,1.021276,-1.02125,-1.603009e-16,52.77302,-0.695288)" />
|
||||
</defs>
|
||||
<path
|
||||
style="fill:url(#linearGradient6555);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6565);stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 29.462152,6.9742454 L 29.462152,20.28605 C 38.980531,20.28605 42.099675,25.393641 40.470623,27.96428 C 45.11221,22.331071 46.28204,6.5110433 29.462152,6.9742454 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:0.1;fill:url(#radialGradient7477);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 43,44.5 C 43,46.432 33.368,48 21.5,48 C 9.632,48 0,46.432 0,44.5 C 0,42.568 9.632,41 21.5,41 C 33.368,41 43,42.568 43,44.5 z "
|
||||
id="path6595" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2095);fill-opacity:1;fill-rule:evenodd;stroke:#4ea01c;stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 8.500002,31.475049 L 26.512484,44.499993 L 26.512484,36.979525 C 45.727586,36.979525 51.073557,9.9432835 35.142243,7.5000014 C 49.921098,18.826716 33.055647,26.010797 26.512484,25.857562 L 26.512484,18.29687 L 8.500002,31.475049 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5720);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 10.500003,31.581672 L 25.516692,42.499993 L 25.516692,36.084819 C 43.160981,36.084819 48.863727,15.452109 37.822862,8.9017826 C 49.823497,20.301958 32.907172,27.058682 25.516692,27.058682 L 25.516692,20.268464 L 10.500003,31.581672 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.7 KiB |
264
datas/icon-themes/edeneu/scalable/actions/document-new.svg
Normal file
@@ -0,0 +1,264 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="document-new.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7475" />
|
||||
<stop
|
||||
id="stop7481"
|
||||
offset="0.5"
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;" />
|
||||
<stop
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;"
|
||||
offset="0.75"
|
||||
id="stop7483" />
|
||||
<stop
|
||||
style="stop-color:#fff409;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7477" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient4096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="77"
|
||||
inkscape:window-y="45"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.94142259;fill:url(#radialGradient4096);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6598"
|
||||
sodipodi:cx="27.930717"
|
||||
sodipodi:cy="18.124739"
|
||||
sodipodi:rx="9.1923885"
|
||||
sodipodi:ry="9.1923885"
|
||||
d="M 37.123106 18.124739 A 9.1923885 9.1923885 0 1 1 18.738329,18.124739 A 9.1923885 9.1923885 0 1 1 37.123106 18.124739 z"
|
||||
transform="matrix(0.979071,0,0,0.979071,3.653846,-3.745407)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.8 KiB |
497
datas/icon-themes/edeneu/scalable/actions/document-open.svg
Normal file
@@ -0,0 +1,497 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="document-open.svg"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/silvestre/Neu/scalable/actions/document-open.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2871">
|
||||
<stop
|
||||
style="stop-color:#ffa740;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2873" />
|
||||
<stop
|
||||
style="stop-color:#bf731a;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop2875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2865">
|
||||
<stop
|
||||
style="stop-color:#ffa740;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2867" />
|
||||
<stop
|
||||
style="stop-color:#ca6b18;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop2869" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2857">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2859" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.21960784"
|
||||
offset="1"
|
||||
id="stop2861" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient11317">
|
||||
<stop
|
||||
id="stop11319"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.48958334;" />
|
||||
<stop
|
||||
id="stop11321"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10475"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop10477"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop10479"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10465">
|
||||
<stop
|
||||
id="stop10467"
|
||||
offset="0"
|
||||
style="stop-color:#ffa740;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop10469"
|
||||
offset="1"
|
||||
style="stop-color:#d57827;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10457">
|
||||
<stop
|
||||
id="stop10459"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.32291666;" />
|
||||
<stop
|
||||
id="stop10461"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8158">
|
||||
<stop
|
||||
id="stop8160"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.73958331;" />
|
||||
<stop
|
||||
id="stop8162"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5866">
|
||||
<stop
|
||||
id="stop5868"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.61458331;" />
|
||||
<stop
|
||||
id="stop5870"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5098"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5100"
|
||||
offset="0"
|
||||
style="stop-color:#ae5b00;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5102"
|
||||
offset="1"
|
||||
style="stop-color:#ae5b00;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10457"
|
||||
id="radialGradient1351"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(2.110067,0.473919)"
|
||||
cx="24.734711"
|
||||
cy="210.29031"
|
||||
fx="24.734711"
|
||||
fy="210.29031"
|
||||
r="20.929369" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11317"
|
||||
id="linearGradient1353"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.306581,0,0,0.629477,15.21832,-1.158036e-15)"
|
||||
x1="42.721756"
|
||||
y1="178.63835"
|
||||
x2="62.504456"
|
||||
y2="157.02299" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8158"
|
||||
id="linearGradient1355"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.019804,0,0,0.980581,1.872959e-17,6)"
|
||||
x1="22.531561"
|
||||
y1="95.898132"
|
||||
x2="49.017395"
|
||||
y2="27.309816" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10465"
|
||||
id="linearGradient1357"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.095691,0,0,0.912666,1.872959e-17,4)"
|
||||
x1="39.661476"
|
||||
y1="113.42223"
|
||||
x2="41.862434"
|
||||
y2="43.16671" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5098"
|
||||
id="linearGradient1359"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.093489,0,0,0.914504,1.872959e-17,6)"
|
||||
x1="29.539867"
|
||||
y1="74.338982"
|
||||
x2="7.0335331"
|
||||
y2="73.219803" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5866"
|
||||
id="linearGradient1361"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.311889,0,0,0.76226,1.872959e-17,6)"
|
||||
x1="30.223124"
|
||||
y1="28.559177"
|
||||
x2="30.810305"
|
||||
y2="95.25663" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10475"
|
||||
id="linearGradient1363"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.830301,0,0,0.546358,1.872959e-17,4)"
|
||||
x1="34.211731"
|
||||
y1="28.907038"
|
||||
x2="37.014332"
|
||||
y2="52.198448" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10475"
|
||||
id="linearGradient2837"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.867558,0,0,0.289185,-2.059701,-6.499992)"
|
||||
x1="34.211731"
|
||||
y1="28.907038"
|
||||
x2="37.014332"
|
||||
y2="52.198448" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5866"
|
||||
id="linearGradient2840"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.624329,0,0,0.345144,-2.314271,-2.12809)"
|
||||
x1="30.223124"
|
||||
y1="28.559177"
|
||||
x2="30.810305"
|
||||
y2="95.25663" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2865"
|
||||
id="linearGradient2843"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.527789,0,0,0.427758,-1.911711,-4.317301)"
|
||||
x1="42.137558"
|
||||
y1="68.160683"
|
||||
x2="42.137558"
|
||||
y2="105.10196" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5098"
|
||||
id="linearGradient2845"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.526729,0,0,0.428621,-1.911711,-3.379913)"
|
||||
x1="29.539867"
|
||||
y1="74.338982"
|
||||
x2="7.0335331"
|
||||
y2="73.219803" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8158"
|
||||
id="linearGradient2849"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.483204,0,0,0.47061,-0.287594,-4.714333)"
|
||||
x1="22.531561"
|
||||
y1="95.898132"
|
||||
x2="49.017395"
|
||||
y2="27.309816" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2857"
|
||||
id="linearGradient2863"
|
||||
x1="17.033184"
|
||||
y1="38.662212"
|
||||
x2="56.610294"
|
||||
y2="108.22483"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.413232,0,0,0.402058,-4.298054,-2.649836)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2871"
|
||||
id="linearGradient2877"
|
||||
x1="113.84419"
|
||||
y1="76.00531"
|
||||
x2="113.84419"
|
||||
y2="101.19212"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.415746,0,0,0.415053,-3.953611,-3.858144)" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="194.2787"
|
||||
x2="134.90021"
|
||||
y1="53.314114"
|
||||
x1="134.90021"
|
||||
id="linearGradient5091"
|
||||
xlink:href="#linearGradient5085"
|
||||
inkscape:collect="always"
|
||||
gradientTransform="matrix(0.978618,0,0,0.978618,2.743695,2.790816)" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(1.44542,0,0,1.44542,-127.1499,-108.5803)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="206.33525"
|
||||
x2="189.93413"
|
||||
y1="86.200233"
|
||||
x1="128.18875"
|
||||
id="linearGradient2799"
|
||||
xlink:href="#linearGradient2793"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.921905,0,0,0.921905,9.95315,9.779038)"
|
||||
y2="191.4617"
|
||||
x2="58.776798"
|
||||
y1="8.8970003"
|
||||
x1="183.60741"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient7"
|
||||
xlink:href="#XMLID_1_"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(0.921905,0,0,0.921905,9.95315,9.779038)"
|
||||
r="163.8273"
|
||||
fy="247.7744"
|
||||
fx="121.4478"
|
||||
cy="247.7744"
|
||||
cx="121.4478"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient6"
|
||||
xlink:href="#XMLID_2_"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
fy="247.7744"
|
||||
fx="121.4478"
|
||||
r="163.8273"
|
||||
cy="247.7744"
|
||||
cx="121.4478"
|
||||
id="XMLID_2_">
|
||||
<stop
|
||||
id="stop166"
|
||||
style="stop-color:#CA002D"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop167"
|
||||
style="stop-color:#FF0000"
|
||||
offset="1" />
|
||||
</radialGradient>
|
||||
<linearGradient
|
||||
y2="191.4617"
|
||||
x2="58.776798"
|
||||
y1="8.8970003"
|
||||
x1="183.60741"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="XMLID_1_">
|
||||
<stop
|
||||
id="stop159"
|
||||
style="stop-color:#FFFFFF"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop160"
|
||||
style="stop-color:#FF0000"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient1726">
|
||||
<stop
|
||||
id="stop1727"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#fffb00;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop1728"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ff9c00;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient1733">
|
||||
<stop
|
||||
id="stop1734"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.76991153;" />
|
||||
<stop
|
||||
id="stop1735"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2068">
|
||||
<stop
|
||||
id="stop2070"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.25000000;" />
|
||||
<stop
|
||||
id="stop2072"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2793"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2795"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2797"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5085"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5087"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5089"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.60085839" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="72"
|
||||
inkscape:window-x="123"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showborder="false"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
transform="matrix(0.461536,7.970305e-2,-7.970305e-2,0.461536,6.234354,-8.204039)"
|
||||
d="M 96.354244 99.660515 A 44.162361 9.9188194 0 1 1 8.0295219,99.660515 A 44.162361 9.9188194 0 1 1 96.354244 99.660515 z"
|
||||
sodipodi:ry="9.9188194"
|
||||
sodipodi:rx="44.162361"
|
||||
sodipodi:cy="99.660515"
|
||||
sodipodi:cx="52.191883"
|
||||
id="path9697"
|
||||
style="opacity:0.60792954;fill:url(#radialGradient1351);fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
id="path2055"
|
||||
d="M 34.575041,4.5023928 L 21.951162,5.6239601 L 20.42861,9.3133249 L 6.8734599,10.420135 L 6.6517297,13.2093 L 0.50239285,13.53396 C 0.50239285,33.31114 2.7671271,37.20551 4.5231137,38.518333 L 39.260952,44.318014 L 39.260952,44.303265 L 39.379211,44.318014 C 42.032532,44.318014 45.292036,20.680098 45.292036,7.2915524 L 36.43758,8.0146686 L 34.575041,4.5023928 z "
|
||||
style="fill:url(#linearGradient2877);fill-opacity:1;fill-rule:evenodd;stroke:#833800;stroke-width:1.00478566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3578"
|
||||
d="M 10.126456,11.837705 L 9.4915145,35.746469 L 37.958071,43.008486 C 39.647915,32.414659 42.233254,24.814663 42.508486,9.4915145 L 10.126456,11.837705 z "
|
||||
style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#dcdcdc;stroke-width:0.983;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path7390"
|
||||
d="M 9.6713914,11.380176 L 9,35.635265 L 38.289732,42.899791 C 40.068337,34.571881 42.980951,21.251458 43,9 L 9.6713914,11.380176 z "
|
||||
style="fill:url(#linearGradient2849);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path8166"
|
||||
d="M 38.748563,15 C 38.005755,24.252525 37.600205,36.288903 39,43.428228 L 33.646542,42.160758 L 30,15.238465 L 38.748563,15 z "
|
||||
style="fill:black;fill-opacity:0.15999995;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path1293"
|
||||
d="M 1.5037443,14.312633 L 34.878393,12.503744 C 35.688696,23.359513 35.581128,36.214574 39.496256,43.496256 L 5.3902843,38.005089 C 2.0283695,32.477141 1.89443,23.428626 1.5037443,14.312633 z "
|
||||
style="fill:url(#linearGradient2843);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2845);stroke-width:1.00748861;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5106"
|
||||
d="M 1,14.911391 C 12.051681,14.448017 22.711228,13.947334 33.762909,13.48396 C 34.334326,21.549683 34.801174,27.227647 36,34 C 22.213497,24.946426 13.720031,21.147409 3.4176172,31.020782 C 2.4810337,25.638554 1.9365825,20.29362 1,14.911391 z "
|
||||
style="opacity:0.52719667;fill:url(#linearGradient2840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path10473"
|
||||
d="M 21,10 L 22.567165,6.0000008 L 34.097014,5 L 36,8.5000001 L 21,10 z "
|
||||
style="fill:url(#linearGradient2837);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2863);stroke-width:0.99536294;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.89699557"
|
||||
d="M 5.4230791,37.689719 C 3.6641529,37.385561 1.7551373,32.948703 1.4976814,14.96677 L 33.659286,13.497682 C 33.903029,24.472601 34.904635,37.575622 37.502319,42.3019 L 5.4230791,37.689719 z "
|
||||
id="path1961"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,550 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="document-print-preview.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4939">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.59227467"
|
||||
offset="0"
|
||||
id="stop4941" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4943" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4925">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4927" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4929" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4917">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4919" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4921" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4909"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4911"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop4913"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0.37768242" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4899">
|
||||
<stop
|
||||
style="stop-color:#ededed;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4901" />
|
||||
<stop
|
||||
style="stop-color:#b3b3b3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4903" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3554">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop3556" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3558" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2791">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2793" />
|
||||
<stop
|
||||
style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2795" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2773">
|
||||
<stop
|
||||
style="stop-color:#292929;stop-opacity:1.0000000"
|
||||
offset="0"
|
||||
id="stop2775" />
|
||||
<stop
|
||||
style="stop-color:#7b7b7b;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop2777" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3554"
|
||||
id="radialGradient3593"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.181538,-1.053844e-15,78.11116)"
|
||||
cx="60.952084"
|
||||
cy="95.436562"
|
||||
fx="60.952084"
|
||||
fy="95.436562"
|
||||
r="54.272404" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3554"
|
||||
id="radialGradient3595"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.181538,2.589942e-15,78.11116)"
|
||||
cx="60.952084"
|
||||
cy="95.436562"
|
||||
fx="60.952084"
|
||||
fy="95.436562"
|
||||
r="54.272404" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2791"
|
||||
id="linearGradient4001"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.379391,0,0,0.444929,1.028486,-4.375463e-2)"
|
||||
x1="68.487091"
|
||||
y1="32.354244"
|
||||
x2="68.014763"
|
||||
y2="43.453873" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2773"
|
||||
id="linearGradient4004"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="61.453056"
|
||||
y1="47.008877"
|
||||
x2="59.783138"
|
||||
y2="27.470812"
|
||||
gradientTransform="matrix(0.434945,0,0,0.466639,-1.763496,-1.065958)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2773"
|
||||
id="linearGradient4007"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.423124,0,0,0.455336,-8.706461e-2,1.627174)"
|
||||
x1="61.453056"
|
||||
y1="47.008877"
|
||||
x2="59.783138"
|
||||
y2="27.470812" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4899"
|
||||
id="linearGradient4905"
|
||||
x1="18.035137"
|
||||
y1="66.88092"
|
||||
x2="18.035137"
|
||||
y2="93.265663"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.41361,0,0,0.414188,-2.245099,1.051305)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4909"
|
||||
id="radialGradient4907"
|
||||
cx="79.820328"
|
||||
cy="66.749794"
|
||||
fx="79.820328"
|
||||
fy="66.749794"
|
||||
r="18.412737"
|
||||
gradientTransform="matrix(0.821624,-5.437753e-16,7.490169e-16,0.994727,-35.59557,-40.39477)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4917"
|
||||
id="linearGradient4923"
|
||||
x1="27"
|
||||
y1="60"
|
||||
x2="54.294689"
|
||||
y2="107.27579"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.419358,0,0,0.421947,-2.434193,0.390866)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4925"
|
||||
id="linearGradient4931"
|
||||
x1="73.050751"
|
||||
y1="72.5"
|
||||
x2="91.275856"
|
||||
y2="72.5"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.403946,0,0,0.424232,-1.498757,0.33621)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4939"
|
||||
id="linearGradient4945"
|
||||
x1="65.25"
|
||||
y1="64.532089"
|
||||
x2="62.5"
|
||||
y2="42"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.410181,0,0,0.399836,-2.38946,1.991784)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4939"
|
||||
id="linearGradient4949"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="82.25"
|
||||
y1="3.5320892"
|
||||
x2="84"
|
||||
y2="22.526756"
|
||||
gradientTransform="matrix(0.410975,0,0,0.410975,-1.986065,1.375303)" />
|
||||
<radialGradient
|
||||
r="4.372983"
|
||||
fy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
cx="-5.3766184"
|
||||
gradientTransform="matrix(1,-1.617901e-16,2.664349e-16,0.803279,1.664544e-14,0.985551)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4834"
|
||||
xlink:href="#linearGradient3853"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="4.372983"
|
||||
fy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
cx="-5.3766184"
|
||||
gradientTransform="matrix(1,7.794069e-17,4.096359e-16,0.803279,4.625373e-15,0.985551)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4832"
|
||||
xlink:href="#linearGradient3853"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="6.1843319"
|
||||
fy="10.198135"
|
||||
fx="-13.583885"
|
||||
cy="10.198135"
|
||||
cx="-13.583885"
|
||||
gradientTransform="matrix(1.227473,3.286404e-17,-2.130603e-16,1.227473,3.136218,-2.253726)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4830"
|
||||
xlink:href="#linearGradient3839"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="13.239027"
|
||||
x2="10.090094"
|
||||
y1="2.715862"
|
||||
x1="4.0145416"
|
||||
gradientTransform="matrix(1.081752,5.779159e-17,-1.445576e-16,1.081752,1.54434,-1.659522)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4828"
|
||||
xlink:href="#linearGradient3799"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="14.346088"
|
||||
x2="7.3838892"
|
||||
y1="3.7911859"
|
||||
x1="2.939218"
|
||||
gradientTransform="matrix(1.081752,5.779159e-17,-1.445576e-16,1.081752,1.69943,-1.581974)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4826"
|
||||
xlink:href="#linearGradient2912"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="17.483641"
|
||||
x2="10.358043"
|
||||
y1="17.483641"
|
||||
x1="6.9188247"
|
||||
gradientTransform="matrix(1.66801,8.911187e-17,-1.445576e-16,1.081752,-3.46519,-1.782494)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4824"
|
||||
xlink:href="#linearGradient2912"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="20.073732"
|
||||
x2="10.793779"
|
||||
y1="20.073732"
|
||||
x1="6.6440091"
|
||||
gradientTransform="matrix(1.081752,5.779159e-17,-1.445576e-16,1.081752,1.4895,-1.659522)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4822"
|
||||
xlink:href="#linearGradient3821"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient2912">
|
||||
<stop
|
||||
id="stop2914"
|
||||
offset="0"
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop2920" />
|
||||
<stop
|
||||
id="stop2922"
|
||||
offset="0.75"
|
||||
style="stop-color:#a5a5a5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2916"
|
||||
offset="1"
|
||||
style="stop-color:#d4d4d4;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3799"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3801"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3803"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.33725491" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3821"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3823"
|
||||
offset="0"
|
||||
style="stop-color:#d57e00;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3825"
|
||||
offset="1"
|
||||
style="stop-color:#bfb600;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
id="stop3841"
|
||||
offset="0"
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.30653265" />
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.3137255;"
|
||||
offset="0.61764705"
|
||||
id="stop3847" />
|
||||
<stop
|
||||
id="stop3843"
|
||||
offset="1"
|
||||
style="stop-color:#9ec4f0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3853">
|
||||
<stop
|
||||
id="stop3855"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.61764705"
|
||||
id="stop3861" />
|
||||
<stop
|
||||
id="stop3857"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="23"
|
||||
inkscape:window-y="63"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient3593);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3562"
|
||||
sodipodi:cx="60.952084"
|
||||
sodipodi:cy="95.436562"
|
||||
sodipodi:rx="54.272404"
|
||||
sodipodi:ry="9.8525286"
|
||||
d="M 115.22449 95.436562 A 54.272404 9.8525286 0 1 1 6.6796799,95.436562 A 54.272404 9.8525286 0 1 1 115.22449 95.436562 z"
|
||||
transform="matrix(0.392676,0,0,0.413744,-2.62295,1.541628)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient3595);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3552"
|
||||
sodipodi:cx="60.952084"
|
||||
sodipodi:cy="95.436562"
|
||||
sodipodi:rx="54.272404"
|
||||
sodipodi:ry="9.8525286"
|
||||
d="M 115.22449 95.436562 A 54.272404 9.8525286 0 1 1 6.6796799,95.436562 A 54.272404 9.8525286 0 1 1 115.22449 95.436562 z"
|
||||
transform="matrix(0.392676,0,0,0.413744,2.754102,3.199832)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4007);fill-opacity:1;fill-rule:evenodd;stroke:#474747;stroke-width:1.00297451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 37.861675,10.501487 L 19.154757,14.154258 L 14.501487,27.076423 L 16.680707,26.893129 L 15.744922,29.498513 L 34.25545,27.979797 L 38.498514,12.923574 L 37.861675,10.501487 z "
|
||||
id="path2781"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4004);fill-opacity:1;fill-rule:evenodd;stroke:#474747;stroke-width:1.01236653;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 14.506183,27.493817 L 19.299929,14.246579 L 37.893843,10.506183 L 33.535895,25.935316 L 14.506183,27.493817 z "
|
||||
id="path2771"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4001);fill-opacity:1;fill-rule:evenodd;stroke:#bfbfbf;stroke-width:0.6230554;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.311528,24.118147 C 19.282683,19.354724 20.578332,11.361266 22.818281,10.38056 C 26.342469,8.3841264 31.999512,8.4673581 36.688472,7.3115277 C 30.745139,9.9033896 32.148843,19.430238 29.34144,24.018535 C 25.667922,23.98351 20.985042,24.153174 17.311528,24.118147 z "
|
||||
id="path2789"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4949);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.53253126;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.986692,24.11483 C 19.867716,19.420194 21.104121,11.542168 23.241649,10.575624 C 26.604692,8.6080194 32.003071,8.6900488 36.477629,7.5509084 C 30.806055,10.105344 32.145572,19.494615 29.466537,24.016653 C 25.960992,23.982134 21.492236,24.149348 17.986692,24.11483 z "
|
||||
id="path4947"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4945);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.53253126;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.54475,24.114958 C 19.422144,19.54757 20.656162,11.883077 22.789565,10.942731 C 26.146117,9.0284581 31.534078,9.1082641 36,8 C 30.339372,10.485198 31.676304,19.619973 29.00244,24.019442 C 25.50366,23.985859 21.043528,24.14854 17.54475,24.114958 z "
|
||||
id="path4937"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4905);fill-opacity:1;fill-rule:evenodd;stroke:#a0a0a0;stroke-width:1.00881135;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.9333115,25.632811 C 12.746928,24.591279 21.560542,23.549746 30.374158,22.508209 C 32.013492,22.452415 41.373548,23.01038 42.748481,24.182107 C 45.233914,26.711542 44.916621,38.391599 42.748481,39.805103 C 38.888113,42.092762 34.974867,44.603602 30.374158,44.492005 C 21.560542,43.004097 12.746928,41.516191 3.9333115,40.028297 C 2.1353337,39.414531 1.9238072,26.023385 3.9333115,25.632811 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="opacity:0.81171546;fill:url(#radialGradient4907);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4931);stroke-width:1.00918937;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 30.177294,23.504595 C 28.113077,24.256338 27.997111,43.268164 30.455614,43.437929 C 33.725894,43.886534 38.039875,41.643429 42.145117,39.000215 C 43.606302,38.393965 44.336893,27.202689 41.936374,24.959583 C 39.234333,23.928966 34.653629,23.625842 30.177294,23.504595 z "
|
||||
id="path2035"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.63453818;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 7.295164,40.341401 L 7,31.950413 C 7.1011085,27.587805 22.646952,28.566465 22.643701,31.630294 L 23,43 L 7.295164,40.341401 z "
|
||||
id="path2799"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.34136544;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 7.8003702,40.013898 L 17.923468,38 L 22.737249,38.484834 L 22.808039,42.475339 L 7.8003702,40.013898 z "
|
||||
id="path2803"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.48594378;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.888073,37.954633 L 17.781886,29.483065 C 19.551659,29.739212 22.277108,30.313979 22.524875,31.657185 L 22.701853,38.441942 L 17.888073,37.954633 z "
|
||||
id="path3531"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4923);stroke-width:1.02354527;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6177603,26.557343 C 12.915719,25.631186 21.895132,24.441313 30.193091,23.515155 C 31.736508,23.465541 41.073134,23.961696 42.36762,25.003622 C 43.949732,26.947824 43.771128,37.276867 42.36762,38.790482 C 38.733114,40.824724 34.734304,43.584855 30.402768,43.485626 C 22.104812,42.162539 12.915719,40.312027 4.6177603,38.988943 C 3.4256183,38.846158 2.8851588,27.032902 4.6177603,26.557343 z "
|
||||
id="path4915"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<g
|
||||
id="g4032"
|
||||
inkscape:label="Capa 1"
|
||||
transform="matrix(0.637284,0,0,0.638538,13.95312,13.73089)">
|
||||
<g
|
||||
transform="matrix(1.533762,-1.533762,1.533762,1.533762,-9.101143,24.72685)"
|
||||
id="g4812">
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4822);fill-opacity:1;fill-rule:nonzero;stroke:#994700;stroke-width:0.72271466;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.9471055,17.532846 L 12.89525,17.532846 L 12.89525,22.577696 C 12.89525,24.88078 8.9471065,24.719083 8.9471045,22.577695 L 8.9471055,17.532846 z "
|
||||
id="rect3819"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3892"
|
||||
d="M 9.3929406,18.290792 L 12.449415,18.290792 L 12.449415,22.500433 C 12.449415,24.283376 9.3929413,24.158197 9.3929398,22.500432 L 9.3929406,18.290792 z "
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:white;stroke-width:0.72271466;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35678394;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4824);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:0.72271466;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.4924875,15.657028 L 13.395134,15.657028 L 13.395134,18.603884 L 8.4924885,18.603885 L 8.4924875,15.657028 z "
|
||||
id="rect3807" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4826);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:0.72271466;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 10.691493,-0.9058808 C 6.114123,-0.7897832 2.443137,2.973924 2.443137,7.5791083 C 2.443136,12.257391 6.249843,16.064099 10.928126,16.064098 C 15.606409,16.064098 19.379313,12.257392 19.379312,7.5791093 C 19.37931,2.9008263 15.606409,-0.9058808 10.928126,-0.9058807 C 10.855028,-0.9058807 10.76415,-0.9077236 10.691493,-0.9058808 z M 10.657688,0.75055142 C 10.745136,0.74722412 10.839868,0.75055142 10.928126,0.75055142 C 14.693779,0.75055142 17.722879,3.8134568 17.722878,7.579109 C 17.722878,11.344761 14.693779,14.407666 10.928126,14.407666 C 7.162473,14.407666 4.099568,11.344761 4.099569,7.5791087 C 4.099569,3.9017134 7.014029,0.88919332 10.657688,0.75055142 z "
|
||||
id="path2034" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4828);stroke-width:0.8027392;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 10.703193,-0.4541092 C 6.36955,-0.3441933 2.894029,3.2191117 2.894029,7.5790871 C 2.894029,12.008268 6.498044,15.612283 10.927225,15.612283 C 15.356409,15.612283 18.928418,12.008269 18.928417,7.579087 C 18.928417,3.1499056 15.356409,-0.4541092 10.927225,-0.4541092 C 10.85802,-0.4541091 10.771981,-0.4558539 10.703193,-0.4541092 z "
|
||||
id="path3797"
|
||||
sodipodi:nodetypes="cssssc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient4830);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3837"
|
||||
sodipodi:cx="-14.193548"
|
||||
sodipodi:cy="9.3271885"
|
||||
sodipodi:rx="6.1843319"
|
||||
sodipodi:ry="6.1843319"
|
||||
d="M -8.0092163 9.3271885 A 6.1843319 6.1843319 0 1 1 -20.37788,9.3271885 A 6.1843319 6.1843319 0 1 1 -8.0092163 9.3271885 z"
|
||||
transform="matrix(1.081967,0,0,1.081967,26.25954,-2.499452)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.57213931;color:black;fill:url(#radialGradient4832);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3851"
|
||||
sodipodi:cx="-5.3766184"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:ry="3.5127239"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
transform="matrix(0.965926,-0.258819,0.258819,0.965926,13.52053,-1.438038)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.38308459;color:black;fill:url(#radialGradient4834);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3865"
|
||||
sodipodi:cx="-5.3766184"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:ry="3.5127239"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
transform="matrix(0.535372,-0.143452,0.143452,0.535372,14.21676,8.131899)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 25 KiB |
364
datas/icon-themes/edeneu/scalable/actions/document-print.svg
Normal file
@@ -0,0 +1,364 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="document-print.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4939">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.59227467"
|
||||
offset="0"
|
||||
id="stop4941" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4943" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4925">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4927" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4929" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4917">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4919" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4921" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4909"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4911"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:0" />
|
||||
<stop
|
||||
id="stop4913"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0.37768242" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4899">
|
||||
<stop
|
||||
style="stop-color:#ededed;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4901" />
|
||||
<stop
|
||||
style="stop-color:#b3b3b3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4903" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3568">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.70281130"
|
||||
offset="0"
|
||||
id="stop3570" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3572" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3554">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop3556" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3558" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2791">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2793" />
|
||||
<stop
|
||||
style="stop-color:#e7e7e7;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2795" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2773">
|
||||
<stop
|
||||
style="stop-color:#292929;stop-opacity:1.0000000"
|
||||
offset="0"
|
||||
id="stop2775" />
|
||||
<stop
|
||||
style="stop-color:#7b7b7b;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop2777" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3554"
|
||||
id="radialGradient3593"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.181538,-1.053844e-15,78.11116)"
|
||||
cx="60.952084"
|
||||
cy="95.436562"
|
||||
fx="60.952084"
|
||||
fy="95.436562"
|
||||
r="54.272404" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3554"
|
||||
id="radialGradient3595"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.181538,2.589942e-15,78.11116)"
|
||||
cx="60.952084"
|
||||
cy="95.436562"
|
||||
fx="60.952084"
|
||||
fy="95.436562"
|
||||
r="54.272404" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3568"
|
||||
id="linearGradient3974"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="103.20295"
|
||||
y1="121.62363"
|
||||
x2="106.50923"
|
||||
y2="78.405907"
|
||||
gradientTransform="matrix(0.377207,0,0,0.397445,0.251964,7.082558)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2791"
|
||||
id="linearGradient4001"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.379391,0,0,0.444929,1.028486,-4.375463e-2)"
|
||||
x1="68.487091"
|
||||
y1="32.354244"
|
||||
x2="68.014763"
|
||||
y2="43.453873" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2773"
|
||||
id="linearGradient4004"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="61.453056"
|
||||
y1="47.008877"
|
||||
x2="59.783138"
|
||||
y2="27.470812"
|
||||
gradientTransform="matrix(0.434945,0,0,0.466639,-1.763496,-1.065958)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2773"
|
||||
id="linearGradient4007"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.423124,0,0,0.455336,-8.706461e-2,1.627174)"
|
||||
x1="61.453056"
|
||||
y1="47.008877"
|
||||
x2="59.783138"
|
||||
y2="27.470812" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4899"
|
||||
id="linearGradient4905"
|
||||
x1="18.035137"
|
||||
y1="66.88092"
|
||||
x2="18.035137"
|
||||
y2="93.265663"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.41361,0,0,0.414188,-2.245099,1.051305)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4909"
|
||||
id="radialGradient4907"
|
||||
cx="79.820328"
|
||||
cy="66.749794"
|
||||
fx="79.820328"
|
||||
fy="66.749794"
|
||||
r="18.412737"
|
||||
gradientTransform="matrix(0.821624,-5.437753e-16,7.490169e-16,0.994727,-35.59557,-40.39477)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4917"
|
||||
id="linearGradient4923"
|
||||
x1="27"
|
||||
y1="60"
|
||||
x2="54.294689"
|
||||
y2="107.27579"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.419358,0,0,0.421947,-2.434193,0.390866)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4925"
|
||||
id="linearGradient4931"
|
||||
x1="73.050751"
|
||||
y1="72.5"
|
||||
x2="91.275856"
|
||||
y2="72.5"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.403946,0,0,0.424232,-1.498757,0.33621)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4939"
|
||||
id="linearGradient4945"
|
||||
x1="65.25"
|
||||
y1="64.532089"
|
||||
x2="62.5"
|
||||
y2="42"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.410181,0,0,0.399836,-2.38946,1.991784)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4939"
|
||||
id="linearGradient4949"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="82.25"
|
||||
y1="3.5320892"
|
||||
x2="84"
|
||||
y2="22.526756"
|
||||
gradientTransform="matrix(0.410975,0,0,0.410975,-1.986065,1.375303)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="23"
|
||||
inkscape:window-y="63"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient3593);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3562"
|
||||
sodipodi:cx="60.952084"
|
||||
sodipodi:cy="95.436562"
|
||||
sodipodi:rx="54.272404"
|
||||
sodipodi:ry="9.8525286"
|
||||
d="M 115.22449 95.436562 A 54.272404 9.8525286 0 1 1 6.6796799,95.436562 A 54.272404 9.8525286 0 1 1 115.22449 95.436562 z"
|
||||
transform="matrix(0.392676,0,0,0.413744,-2.62295,1.541628)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient3595);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3552"
|
||||
sodipodi:cx="60.952084"
|
||||
sodipodi:cy="95.436562"
|
||||
sodipodi:rx="54.272404"
|
||||
sodipodi:ry="9.8525286"
|
||||
d="M 115.22449 95.436562 A 54.272404 9.8525286 0 1 1 6.6796799,95.436562 A 54.272404 9.8525286 0 1 1 115.22449 95.436562 z"
|
||||
transform="matrix(0.392676,0,0,0.413744,2.754102,3.199832)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4007);fill-opacity:1;fill-rule:evenodd;stroke:#474747;stroke-width:1.00297451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 37.861675,10.501487 L 19.154757,14.154258 L 14.501487,27.076423 L 16.680707,26.893129 L 15.744922,29.498513 L 34.25545,27.979797 L 38.498514,12.923574 L 37.861675,10.501487 z "
|
||||
id="path2781"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4004);fill-opacity:1;fill-rule:evenodd;stroke:#474747;stroke-width:1.01236653;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 14.506183,27.493817 L 19.299929,14.246579 L 37.893843,10.506183 L 33.535895,25.935316 L 14.506183,27.493817 z "
|
||||
id="path2771"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4001);fill-opacity:1;fill-rule:evenodd;stroke:#bfbfbf;stroke-width:0.6230554;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.311528,24.118147 C 19.282683,19.354724 20.578332,11.361266 22.818281,10.38056 C 26.342469,8.3841264 31.999512,8.4673581 36.688472,7.3115277 C 30.745139,9.9033896 32.148843,19.430238 29.34144,24.018535 C 25.667922,23.98351 20.985042,24.153174 17.311528,24.118147 z "
|
||||
id="path2789"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4949);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.53253126;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.986692,24.11483 C 19.867716,19.420194 21.104121,11.542168 23.241649,10.575624 C 26.604692,8.6080194 32.003071,8.6900488 36.477629,7.5509084 C 30.806055,10.105344 32.145572,19.494615 29.466537,24.016653 C 25.960992,23.982134 21.492236,24.149348 17.986692,24.11483 z "
|
||||
id="path4947"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4945);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.53253126;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.54475,24.114958 C 19.422144,19.54757 20.656162,11.883077 22.789565,10.942731 C 26.146117,9.0284581 31.534078,9.1082641 36,8 C 30.339372,10.485198 31.676304,19.619973 29.00244,24.019442 C 25.50366,23.985859 21.043528,24.14854 17.54475,24.114958 z "
|
||||
id="path4937"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4905);fill-opacity:1;fill-rule:evenodd;stroke:#a0a0a0;stroke-width:1.00881135;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.9333115,25.632811 C 12.746928,24.591279 21.560542,23.549746 30.374158,22.508209 C 32.013492,22.452415 41.373548,23.01038 42.748481,24.182107 C 45.233914,26.711542 44.916621,38.391599 42.748481,39.805103 C 38.888113,42.092762 34.974867,44.603602 30.374158,44.492005 C 21.560542,43.004097 12.746928,41.516191 3.9333115,40.028297 C 2.1353337,39.414531 1.9238072,26.023385 3.9333115,25.632811 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="opacity:0.81171546;fill:url(#radialGradient4907);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4931);stroke-width:1.00918937;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 30.177294,23.504595 C 28.113077,24.256338 27.997111,43.268164 30.455614,43.437929 C 33.725894,43.886534 38.039875,41.643429 42.145117,39.000215 C 43.606302,38.393965 44.336893,27.202689 41.936374,24.959583 C 39.234333,23.928966 34.653629,23.625842 30.177294,23.504595 z "
|
||||
id="path2035"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.63453818;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 7.295164,40.341401 L 7,31.950413 C 7.1011085,27.587805 22.646952,28.566465 22.643701,31.630294 L 23,43 L 7.295164,40.341401 z "
|
||||
id="path2799"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.34136544;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 7.8003702,40.013898 L 17.923468,38 L 22.737249,38.484834 L 22.808039,42.475339 L 7.8003702,40.013898 z "
|
||||
id="path2803"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.48594378;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.888073,37.954633 L 17.781886,29.483065 C 19.551659,29.739212 22.277108,30.313979 22.524875,31.657185 L 22.701853,38.441942 L 17.888073,37.954633 z "
|
||||
id="path3531"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4923);stroke-width:1.02354527;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6177603,26.557343 C 12.915719,25.631186 21.895132,24.441313 30.193091,23.515155 C 31.736508,23.465541 41.073134,23.961696 42.36762,25.003622 C 43.949732,26.947824 43.771128,37.276867 42.36762,38.790482 C 38.733114,40.824724 34.734304,43.584855 30.402768,43.485626 C 22.104812,42.162539 12.915719,40.312027 4.6177603,38.988943 C 3.4256183,38.846158 2.8851588,27.032902 4.6177603,26.557343 z "
|
||||
id="path4915"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,251 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="document-properties.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5584">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5586" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5588" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5584"
|
||||
id="linearGradient5590"
|
||||
x1="10.848184"
|
||||
y1="26.725586"
|
||||
x2="1.5189898"
|
||||
y2="36.054779"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-0.110581,0,1.017339,0,1.731396)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="82"
|
||||
inkscape:window-y="43"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
id="path2140"
|
||||
d="M 17.889457,13.003481 C 18.190812,12.994738 18.48371,13.002053 18.793551,13.030096 L 20.029147,14.064428 L 16.201814,18.285381 L 15.990859,21.631717 L 18.853824,24.03683 L 22.229109,23.283817 L 25.724939,19.447648 C 25.72494,19.447647 26.960535,20.576924 26.960535,20.576924 C 27.530248,26.227035 21.837335,31.966961 15.990859,29.195516 L 4,43 C 4.2136832,41.45053 4.5505221,36.163238 4.5691347,32.230806 L 10.897794,24.410248 C 8.8466314,18.653674 12.680316,13.154589 17.889457,13.003481 z "
|
||||
style="opacity:0.28033473;color:black;fill:url(#linearGradient5590);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:nodetypes="cccccccccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 10 KiB |
454
datas/icon-themes/edeneu/scalable/actions/document-save-as.svg
Normal file
@@ -0,0 +1,454 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="document-save-as.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4868">
|
||||
<stop
|
||||
style="stop-color:#d5d5d5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4870" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4872" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4251">
|
||||
<stop
|
||||
id="stop4253"
|
||||
offset="0"
|
||||
style="stop-color:#efefef;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4255"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#cccccc;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4241">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4243" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4231">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4233" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.29411766"
|
||||
offset="1"
|
||||
id="stop4235" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10903">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.16666669;"
|
||||
offset="0.0000000"
|
||||
id="stop10905" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop10907" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4963">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.82291675;"
|
||||
offset="0.0000000"
|
||||
id="stop4965" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4967" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4953">
|
||||
<stop
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4955" />
|
||||
<stop
|
||||
id="stop4249"
|
||||
offset="0.5"
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#a8a8a8;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4957" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10903"
|
||||
id="radialGradient10935"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.272085,5.375905e-15,81.72076)"
|
||||
cx="54.977551"
|
||||
cy="112.26688"
|
||||
fx="54.977551"
|
||||
fy="112.26688"
|
||||
r="50.027805" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10903"
|
||||
id="radialGradient10937"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.272085,-2.245599e-15,81.72076)"
|
||||
cx="54.977551"
|
||||
cy="112.26688"
|
||||
fx="54.977551"
|
||||
fy="112.26688"
|
||||
r="50.027805" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4963"
|
||||
id="linearGradient10983"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.745388"
|
||||
y1="17.003687"
|
||||
x2="52.664207"
|
||||
y2="70.376381"
|
||||
gradientTransform="matrix(0.495917,0,0,0.48272,-0.117112,-2.120034)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4953"
|
||||
id="linearGradient10986"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="41.841553"
|
||||
y1="70.063629"
|
||||
x2="46.39151"
|
||||
y2="77.22789"
|
||||
gradientTransform="matrix(0.472221,0,0,0.508383,1.993393,-4.538102)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4251"
|
||||
id="linearGradient10991"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="27.267529"
|
||||
y1="40.856087"
|
||||
x2="67.308113"
|
||||
y2="85.726936"
|
||||
gradientTransform="matrix(0.483124,0,0,0.471621,0.550004,-1.733399)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4231"
|
||||
id="linearGradient4237"
|
||||
x1="9.5"
|
||||
y1="35"
|
||||
x2="9.5"
|
||||
y2="113.51402"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.3714,0,0,0.359175,9.980202,2.56592)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4241"
|
||||
id="linearGradient4247"
|
||||
x1="21.193907"
|
||||
y1="77.509567"
|
||||
x2="26.805424"
|
||||
y2="98.452034"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.326269,0,0,0.338468,12.38627,4.311194)" />
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
style="stop-color:#479214;stop-opacity:1"
|
||||
offset="0.0000000"
|
||||
id="stop2203" />
|
||||
<stop
|
||||
style="stop-color:#3ee407;stop-opacity:1"
|
||||
offset="1.0000000"
|
||||
id="stop2205" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5714"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5716"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:0.91416311" />
|
||||
<stop
|
||||
id="stop5718"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.40772533" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
id="stop6551"
|
||||
offset="0"
|
||||
style="stop-color:#41c20c;stop-opacity:0;" />
|
||||
<stop
|
||||
style="stop-color:#3dbb09;stop-opacity:1;"
|
||||
offset="0.42105263"
|
||||
id="stop6557" />
|
||||
<stop
|
||||
id="stop6553"
|
||||
offset="1"
|
||||
style="stop-color:#2c8507;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6559"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6561"
|
||||
offset="0"
|
||||
style="stop-color:#4ea01c;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6563"
|
||||
offset="1"
|
||||
style="stop-color:#4ea01c;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient4018"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,0.75689,-0.713041,0,31.13477,-5.62054)"
|
||||
x1="3.4491618"
|
||||
y1="27.5676"
|
||||
x2="36.619328"
|
||||
y2="17.625456" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient4021"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-0.470788,-0.463846,0,31.28309,-17.10716)"
|
||||
x1="-93.517403"
|
||||
y1="19.253912"
|
||||
x2="-47.049515"
|
||||
y2="41.683594" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient4027"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.807189,0,0,0.867214,-6.151713,-6.406378)"
|
||||
x1="15.125"
|
||||
y1="19.010838"
|
||||
x2="15.125"
|
||||
y2="12.332324" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6559"
|
||||
id="linearGradient4029"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.778115,0,0,0.729465,-5.335867,-5.150607)"
|
||||
x1="21.743534"
|
||||
y1="17.239695"
|
||||
x2="21.743534"
|
||||
y2="20.607468" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4868"
|
||||
id="linearGradient6649"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.75076,0,0,0.732956,4.346519,10.41194)"
|
||||
x1="19.234043"
|
||||
y1="32.077637"
|
||||
x2="19.234043"
|
||||
y2="38.215626" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="18.545083"
|
||||
inkscape:cy="10.745637"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="29"
|
||||
inkscape:window-y="100"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10935);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path10911"
|
||||
sodipodi:cx="54.977551"
|
||||
sodipodi:cy="112.26688"
|
||||
sodipodi:rx="50.027805"
|
||||
sodipodi:ry="13.611806"
|
||||
d="M 105.00536 112.26688 A 50.027805 13.611806 0 1 1 4.9497452,112.26688 A 50.027805 13.611806 0 1 1 105.00536 112.26688 z"
|
||||
transform="matrix(0.297883,0,0,0.330595,7.525557,3.385193)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10937);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path10901"
|
||||
sodipodi:cx="54.977551"
|
||||
sodipodi:cy="112.26688"
|
||||
sodipodi:rx="50.027805"
|
||||
sodipodi:ry="13.611806"
|
||||
d="M 105.00536 112.26688 A 50.027805 13.611806 0 1 1 4.9497452,112.26688 A 50.027805 13.611806 0 1 1 105.00536 112.26688 z"
|
||||
transform="matrix(0.3598,0,0,0.367326,10.21908,1.761409)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient10991);fill-opacity:1;fill-rule:evenodd;stroke:#969696;stroke-width:1.01731706;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.50866,14.378289 L 38.625872,6.5086585 L 46.491342,7.6681338 L 46.491342,44.51025 L 38.625872,45.491342 L 12.50866,39.581289 L 12.50866,14.378289 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.41201716;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 39.014172,7 L 39.000001,45 L 46.000001,44.105475 L 46.000001,8.087509 L 39.014172,7 z "
|
||||
id="path2761"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:silver;stroke-width:1.58935583;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path4223"
|
||||
sodipodi:cx="48.17712"
|
||||
sodipodi:cy="57.623615"
|
||||
sodipodi:rx="18.656826"
|
||||
sodipodi:ry="28.339483"
|
||||
d="M 66.833946 57.623615 A 18.656826 28.339483 0 1 1 29.520294,57.623615 A 18.656826 28.339483 0 1 1 66.833946 57.623615 z"
|
||||
transform="matrix(0.436435,0,0,0.463752,5.473845,-0.223068)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient10986);fill-opacity:1;fill-rule:evenodd;stroke:#999;stroke-width:1.04423511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.940853,31.120005 C 15.505986,32.580744 16.444618,37.503239 18.944539,38.443712 C 21.688846,39.097181 29.185853,31.240065 28.423794,29.919388 C 27.494456,28.458649 22.550374,31.440163 19.613663,32.200551 C 19.05606,31.840368 19.11182,30.639752 17.940853,31.120005 z "
|
||||
id="path4225"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient10983);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 13.000001,15.094029 L 13.000001,30.142078 C 17.333334,24.632061 28.459461,14.904028 39.000001,30.712078 L 39.000001,7 L 13.000001,15.094029 z "
|
||||
id="path4961"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#5f5f5f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 42.986512,9 L 41.000001,10.438202 L 41.000001,12.835207 L 41.000001,13.164794 L 41.000001,15.561799 L 42.986512,17 L 45.000001,17 L 45.000001,13.164794 L 45.000001,12.835207 L 45.000001,9 L 42.986512,9 z "
|
||||
id="path4975"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.69599998;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.989638,12 L 41.010365,12 L 41.000001,15.732911 L 43.000001,17 L 42.989638,12 z "
|
||||
id="path6437"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<rect
|
||||
style="opacity:1;color:black;fill:black;fill-opacity:0.37999998;fill-rule:evenodd;stroke:none;stroke-width:0.27272975;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect7170"
|
||||
width="4"
|
||||
height="22"
|
||||
x="41"
|
||||
y="21"
|
||||
rx="0.39435238"
|
||||
ry="0.3509084" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.38800007;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.902911,22.424788 L 45.000001,21.100692 L 44.738067,21 L 41.362791,21.013111 C 41.274423,21.010346 41.077873,21.05347 41.016552,21.240819 L 41.000001,22.424788 L 42.902911,22.424788 z "
|
||||
id="path9405"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.38800007;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.929698,42 L 45.000001,42.912925 L 44.821716,42.995861 L 41.361144,43 C 41.26819,42.984797 41.05181,42.928127 41.000001,42.668281 L 41.000001,42 L 42.929698,42 z "
|
||||
id="path9409"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#3b3b3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.965385,12 L 45.02271,9 L 42.956156,9 L 41.000001,10.320913 L 41.007777,11.977139 L 42.965385,12 z "
|
||||
id="path9411"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<rect
|
||||
style="opacity:1;color:black;fill:#1d1d1d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect9415"
|
||||
width="2"
|
||||
height="19.638262"
|
||||
x="41"
|
||||
y="22.361738" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4237);stroke-width:1.02900898;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.71244632"
|
||||
d="M 13.514506,38.864901 L 13.514506,15.133527 L 38.485497,7.5145045 L 38.485497,44.485496 L 13.514506,38.864901 z "
|
||||
id="path3356" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4247);stroke-width:0.9362492;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18.591852,31.927136 C 16.613934,33.029256 17.457981,36.785548 19.488744,37.495134 C 21.822692,38.090783 27.889643,31.256172 27.515301,30.598204 C 27.112552,29.874545 22.091603,32.380244 19.706024,32.953942 C 19.253066,32.682188 19.135227,31.649412 18.591852,31.927136 z "
|
||||
id="path4239"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4027);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4029);stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0.50758884,11.500004 L 10.649919,11.500004 C 10.649919,4.7011665 14.541418,2.4732079 16.500001,3.6368157 C 12.208031,0.32139861 0.15467287,-0.51419316 0.50758884,11.500004 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4021);fill-opacity:1;fill-rule:evenodd;stroke:#4ea01c;stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18.643291,27.5 C 21.928864,22.988286 25.214439,18.061405 28.500012,13.549689 C 26.76059,13.588919 24.548265,13.510458 22.808842,13.549689 C 20.837499,-0.65241752 2.3092369,-4.3803993 0.50000024,7.5318719 C 9.0715742,-3.544751 14.508179,8.6456449 14.392217,13.549689 C 12.768759,13.588919 10.294069,13.510458 8.670609,13.549689 C 11.994837,18.100641 15.319064,22.94905 18.643291,27.5 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4018);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18.70079,25.7766 L 26.50001,14.529927 L 21.789838,14.529927 C 21.789838,3.8721797 8.3928894,-2.4453482 3.0531914,3.8008727 C 10.971293,-2.0990259 15.46991,8.5905007 15.46991,14.529927 L 10.619494,14.529927 L 18.70079,25.7766 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient6649);fill-opacity:1;stroke:#797b75;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect3985"
|
||||
width="27.027334"
|
||||
height="8.0625134"
|
||||
x="5.4726572"
|
||||
y="33.500023"
|
||||
rx="0.76064944"
|
||||
ry="0.71228969" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:1;fill:#255378;fill-opacity:0.44635195;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect6647"
|
||||
width="16"
|
||||
height="5"
|
||||
x="6.9726582"
|
||||
y="35.000015" />
|
||||
<path
|
||||
transform="scale(1.21529,0.822849)"
|
||||
style="font-size:5.00119257px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#242424;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
d="M 6.5827916,43.750416 L 7.6328467,43.750416 L 8.9588465,46.251012 L 8.9588465,43.750416 L 9.8501723,43.750416 L 9.8501723,47.396305 L 8.8001172,47.396305 L 7.4741174,44.895709 L 7.4741174,47.396305 L 6.5827916,47.396305 L 6.5827916,43.750416 M 12.975918,46.732084 L 11.505841,46.732084 L 11.273852,47.396305 L 10.328802,47.396305 L 11.679222,43.750416 L 12.800095,43.750416 L 14.150514,47.396305 L 13.205465,47.396305 L 12.975918,46.732084 M 11.740272,46.055653 L 12.739045,46.055653 L 12.240879,44.605112 L 11.740272,46.055653 M 14.631586,43.750416 L 15.828161,43.750416 L 16.658437,45.701565 L 17.493597,43.750416 L 18.687729,43.750416 L 18.687729,47.396305 L 17.798846,47.396305 L 17.798846,44.729654 L 16.958801,46.695454 L 16.362956,46.695454 L 15.522912,44.729654 L 15.522912,47.396305 L 14.631586,47.396305 L 14.631586,43.750416 M 19.603475,43.750416 L 22.140701,43.750416 L 22.140701,44.461035 L 20.54364,44.461035 L 20.54364,45.139908 L 22.045463,45.139908 L 22.045463,45.850526 L 20.54364,45.850526 L 20.54364,46.685686 L 22.194425,46.685686 L 22.194425,47.396305 L 19.603475,47.396305 L 19.603475,43.750416"
|
||||
id="text5770" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 21 KiB |
411
datas/icon-themes/edeneu/scalable/actions/document-save.svg
Normal file
@@ -0,0 +1,411 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="document-save.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient4251">
|
||||
<stop
|
||||
id="stop4253"
|
||||
offset="0"
|
||||
style="stop-color:#efefef;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4255"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#cccccc;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4241">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4243" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4231">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4233" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.29411766"
|
||||
offset="1"
|
||||
id="stop4235" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10903">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.16666669;"
|
||||
offset="0.0000000"
|
||||
id="stop10905" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop10907" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4963">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.82291675;"
|
||||
offset="0.0000000"
|
||||
id="stop4965" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4967" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4953">
|
||||
<stop
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4955" />
|
||||
<stop
|
||||
id="stop4249"
|
||||
offset="0.5"
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#a8a8a8;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4957" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10903"
|
||||
id="radialGradient10935"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.272085,5.375905e-15,81.72076)"
|
||||
cx="54.977551"
|
||||
cy="112.26688"
|
||||
fx="54.977551"
|
||||
fy="112.26688"
|
||||
r="50.027805" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10903"
|
||||
id="radialGradient10937"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.272085,-2.245599e-15,81.72076)"
|
||||
cx="54.977551"
|
||||
cy="112.26688"
|
||||
fx="54.977551"
|
||||
fy="112.26688"
|
||||
r="50.027805" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4963"
|
||||
id="linearGradient10983"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="42.745388"
|
||||
y1="17.003687"
|
||||
x2="52.664207"
|
||||
y2="70.376381"
|
||||
gradientTransform="matrix(0.495917,0,0,0.48272,-0.117112,-2.120034)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4953"
|
||||
id="linearGradient10986"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="41.841553"
|
||||
y1="70.063629"
|
||||
x2="46.39151"
|
||||
y2="77.22789"
|
||||
gradientTransform="matrix(0.472221,0,0,0.508383,1.993393,-4.538102)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4251"
|
||||
id="linearGradient10991"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="27.267529"
|
||||
y1="40.856087"
|
||||
x2="67.308113"
|
||||
y2="85.726936"
|
||||
gradientTransform="matrix(0.483124,0,0,0.471621,0.550004,-1.733399)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4231"
|
||||
id="linearGradient4237"
|
||||
x1="9.5"
|
||||
y1="35"
|
||||
x2="9.5"
|
||||
y2="113.51402"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.3714,0,0,0.359175,9.980202,2.56592)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4241"
|
||||
id="linearGradient4247"
|
||||
x1="21.193907"
|
||||
y1="77.509567"
|
||||
x2="26.805424"
|
||||
y2="98.452034"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.326269,0,0,0.338468,12.38627,4.311194)" />
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
style="stop-color:#479214;stop-opacity:1"
|
||||
offset="0.0000000"
|
||||
id="stop2203" />
|
||||
<stop
|
||||
style="stop-color:#3ee407;stop-opacity:1"
|
||||
offset="1.0000000"
|
||||
id="stop2205" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5714"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5716"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:0.91416311" />
|
||||
<stop
|
||||
id="stop5718"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.40772533" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
id="stop6551"
|
||||
offset="0"
|
||||
style="stop-color:#41c20c;stop-opacity:0;" />
|
||||
<stop
|
||||
style="stop-color:#3dbb09;stop-opacity:1;"
|
||||
offset="0.42105263"
|
||||
id="stop6557" />
|
||||
<stop
|
||||
id="stop6553"
|
||||
offset="1"
|
||||
style="stop-color:#2c8507;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6559"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6561"
|
||||
offset="0"
|
||||
style="stop-color:#4ea01c;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6563"
|
||||
offset="1"
|
||||
style="stop-color:#4ea01c;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient4018"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,0.75689,-0.713041,0,31.13477,-5.62054)"
|
||||
x1="3.4491618"
|
||||
y1="27.5676"
|
||||
x2="36.619328"
|
||||
y2="17.625456" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient4021"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-0.470788,-0.463846,0,31.28309,-17.10716)"
|
||||
x1="-93.517403"
|
||||
y1="19.253912"
|
||||
x2="-47.049515"
|
||||
y2="41.683594" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient4027"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.807189,0,0,0.867214,-6.151713,-6.406378)"
|
||||
x1="15.125"
|
||||
y1="19.010838"
|
||||
x2="15.125"
|
||||
y2="12.332324" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6559"
|
||||
id="linearGradient4029"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.778115,0,0,0.729465,-5.335867,-5.150607)"
|
||||
x1="21.743534"
|
||||
y1="17.239695"
|
||||
x2="21.743534"
|
||||
y2="20.607468" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10935);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path10911"
|
||||
sodipodi:cx="54.977551"
|
||||
sodipodi:cy="112.26688"
|
||||
sodipodi:rx="50.027805"
|
||||
sodipodi:ry="13.611806"
|
||||
d="M 105.00536 112.26688 A 50.027805 13.611806 0 1 1 4.9497452,112.26688 A 50.027805 13.611806 0 1 1 105.00536 112.26688 z"
|
||||
transform="matrix(0.297883,0,0,0.330595,7.525557,3.385193)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10937);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path10901"
|
||||
sodipodi:cx="54.977551"
|
||||
sodipodi:cy="112.26688"
|
||||
sodipodi:rx="50.027805"
|
||||
sodipodi:ry="13.611806"
|
||||
d="M 105.00536 112.26688 A 50.027805 13.611806 0 1 1 4.9497452,112.26688 A 50.027805 13.611806 0 1 1 105.00536 112.26688 z"
|
||||
transform="matrix(0.3598,0,0,0.367326,10.21908,1.761409)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient10991);fill-opacity:1;fill-rule:evenodd;stroke:#969696;stroke-width:1.01731706;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.50866,14.378289 L 38.625872,6.5086585 L 46.491342,7.6681338 L 46.491342,44.51025 L 38.625872,45.491342 L 12.50866,39.581289 L 12.50866,14.378289 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.41201716;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 39.014172,7 L 39.000001,45 L 46.000001,44.105475 L 46.000001,8.087509 L 39.014172,7 z "
|
||||
id="path2761"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:silver;stroke-width:1.58935583;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path4223"
|
||||
sodipodi:cx="48.17712"
|
||||
sodipodi:cy="57.623615"
|
||||
sodipodi:rx="18.656826"
|
||||
sodipodi:ry="28.339483"
|
||||
d="M 66.833946 57.623615 A 18.656826 28.339483 0 1 1 29.520294,57.623615 A 18.656826 28.339483 0 1 1 66.833946 57.623615 z"
|
||||
transform="matrix(0.436435,0,0,0.463752,5.473845,-0.223068)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient10986);fill-opacity:1;fill-rule:evenodd;stroke:#999;stroke-width:1.04423511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.940853,31.120005 C 15.505986,32.580744 16.444618,37.503239 18.944539,38.443712 C 21.688846,39.097181 29.185853,31.240065 28.423794,29.919388 C 27.494456,28.458649 22.550374,31.440163 19.613663,32.200551 C 19.05606,31.840368 19.11182,30.639752 17.940853,31.120005 z "
|
||||
id="path4225"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient10983);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 13.000001,15.094029 L 13.000001,30.142078 C 17.333334,24.632061 28.459461,14.904028 39.000001,30.712078 L 39.000001,7 L 13.000001,15.094029 z "
|
||||
id="path4961"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#5f5f5f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 42.986512,9 L 41.000001,10.438202 L 41.000001,12.835207 L 41.000001,13.164794 L 41.000001,15.561799 L 42.986512,17 L 45.000001,17 L 45.000001,13.164794 L 45.000001,12.835207 L 45.000001,9 L 42.986512,9 z "
|
||||
id="path4975"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.69599998;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.989638,12 L 41.010365,12 L 41.000001,15.732911 L 43.000001,17 L 42.989638,12 z "
|
||||
id="path6437"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<rect
|
||||
style="opacity:1;color:black;fill:black;fill-opacity:0.37999998;fill-rule:evenodd;stroke:none;stroke-width:0.27272975;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect7170"
|
||||
width="4"
|
||||
height="22"
|
||||
x="41"
|
||||
y="21"
|
||||
rx="0.39435238"
|
||||
ry="0.3509084" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.38800007;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.902911,22.424788 L 45.000001,21.100692 L 44.738067,21 L 41.362791,21.013111 C 41.274423,21.010346 41.077873,21.05347 41.016552,21.240819 L 41.000001,22.424788 L 42.902911,22.424788 z "
|
||||
id="path9405"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.38800007;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.929698,42 L 45.000001,42.912925 L 44.821716,42.995861 L 41.361144,43 C 41.26819,42.984797 41.05181,42.928127 41.000001,42.668281 L 41.000001,42 L 42.929698,42 z "
|
||||
id="path9409"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#3b3b3b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.965385,12 L 45.02271,9 L 42.956156,9 L 41.000001,10.320913 L 41.007777,11.977139 L 42.965385,12 z "
|
||||
id="path9411"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<rect
|
||||
style="opacity:1;color:black;fill:#1d1d1d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect9415"
|
||||
width="2"
|
||||
height="19.638262"
|
||||
x="41"
|
||||
y="22.361738" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4237);stroke-width:1.02900898;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.71244632"
|
||||
d="M 13.514506,38.864901 L 13.514506,15.133527 L 38.485497,7.5145045 L 38.485497,44.485496 L 13.514506,38.864901 z "
|
||||
id="path3356" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4247);stroke-width:0.9362492;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18.591852,31.927136 C 16.613934,33.029256 17.457981,36.785548 19.488744,37.495134 C 21.822692,38.090783 27.889643,31.256172 27.515301,30.598204 C 27.112552,29.874545 22.091603,32.380244 19.706024,32.953942 C 19.253066,32.682188 19.135227,31.649412 18.591852,31.927136 z "
|
||||
id="path4239"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4027);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4029);stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 0.50758884,11.500004 L 10.649919,11.500004 C 10.649919,4.7011665 14.541418,2.4732079 16.500001,3.6368157 C 12.208031,0.32139861 0.15467287,-0.51419316 0.50758884,11.500004 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4021);fill-opacity:1;fill-rule:evenodd;stroke:#4ea01c;stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18.643291,27.5 C 21.928864,22.988286 25.214439,18.061405 28.500012,13.549689 C 26.76059,13.588919 24.548265,13.510458 22.808842,13.549689 C 20.837499,-0.65241752 2.3092369,-4.3803993 0.50000024,7.5318719 C 9.0715742,-3.544751 14.508179,8.6456449 14.392217,13.549689 C 12.768759,13.588919 10.294069,13.510458 8.670609,13.549689 C 11.994837,18.100641 15.319064,22.94905 18.643291,27.5 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4018);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18.70079,25.7766 L 26.50001,14.529927 L 21.789838,14.529927 C 21.789838,3.8721797 8.3928894,-2.4453482 3.0531914,3.8008727 C 10.971293,-2.0990259 15.46991,8.5905007 15.46991,14.529927 L 10.619494,14.529927 L 18.70079,25.7766 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 18 KiB |
349
datas/icon-themes/edeneu/scalable/actions/edit-clear.svg
Normal file
@@ -0,0 +1,349 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg13623"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-clear.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4955">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4957" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4959" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6966">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.21030043"
|
||||
offset="0"
|
||||
id="stop6968" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6970" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6956">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6958" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6960" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5761">
|
||||
<stop
|
||||
style="stop-color:#969696;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5763" />
|
||||
<stop
|
||||
style="stop-color:#ddd;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5765" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5751">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop5753" />
|
||||
<stop
|
||||
id="stop5759"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5755" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5735">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.53218883"
|
||||
offset="0"
|
||||
id="stop5737" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5739" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5727">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5729" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.32618025"
|
||||
offset="1"
|
||||
id="stop5731" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5717">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5719" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5721" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5717"
|
||||
id="linearGradient5723"
|
||||
x1="55.154327"
|
||||
y1="64.572014"
|
||||
x2="55.154327"
|
||||
y2="30.337681"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.396121,0,0,0.39058,-5.812296,-1.694731)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5727"
|
||||
id="linearGradient5733"
|
||||
x1="59.008205"
|
||||
y1="48.804073"
|
||||
x2="59.008205"
|
||||
y2="17.999977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.471404,0,0,0.460047,-11.58333,-6.202082)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5751"
|
||||
id="linearGradient5757"
|
||||
x1="18.78125"
|
||||
y1="74.57222"
|
||||
x2="63.90625"
|
||||
y2="72.32222"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.387812,0,0,0.386125,-5.28359,-1.294129)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5761"
|
||||
id="linearGradient5767"
|
||||
x1="101.25"
|
||||
y1="72.75"
|
||||
x2="68.737175"
|
||||
y2="70.75"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.386462,0,0,0.386916,-5.195112,-1.570147)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6956"
|
||||
id="radialGradient6962"
|
||||
cx="66.25"
|
||||
cy="109.25"
|
||||
fx="66.25"
|
||||
fy="149.6292"
|
||||
r="57.25"
|
||||
gradientTransform="matrix(1,0,0,0.353712,-1.400139e-15,70.60699)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6966"
|
||||
id="linearGradient6972"
|
||||
x1="65"
|
||||
y1="128"
|
||||
x2="103.38376"
|
||||
y2="69.818649"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.349381,0,0,0.376136,0.724309,0.929123)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2183">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2185" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2187" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
style="stop-color:#5bdd22;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2203" />
|
||||
<stop
|
||||
style="stop-color:#60d02f;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2205" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4955"
|
||||
id="linearGradient5716"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-70.46225"
|
||||
y1="59.150021"
|
||||
x2="-70.46225"
|
||||
y2="91.51226"
|
||||
gradientTransform="matrix(0.193727,0,0,0.194412,30.15069,19.21305)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient5728"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.230385,6.160648e-2,6.173139e-2,-0.229919,31.64672,46.89936)"
|
||||
x1="-95.53125"
|
||||
y1="38.625"
|
||||
x2="-31.945671"
|
||||
y2="38.625" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2183"
|
||||
id="linearGradient5736"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.252632,0,0,0.236954,-0.494738,18.10436)"
|
||||
x1="-87.5"
|
||||
y1="-4.839344"
|
||||
x2="-63"
|
||||
y2="39.660656" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient5739"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.241845,0,0,0.229885,0.585142,18.12069)"
|
||||
x1="-95.53125"
|
||||
y1="38.625"
|
||||
x2="-31.945671"
|
||||
y2="38.625" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5735"
|
||||
id="radialGradient4846"
|
||||
cx="19.499992"
|
||||
cy="20.789114"
|
||||
fx="19.527102"
|
||||
fy="23.809175"
|
||||
r="17.499994"
|
||||
gradientTransform="matrix(1.32021,2.474953e-2,-1.185079e-2,0.632154,-5.997728,0.713646)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="53"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient6972);fill-opacity:1;stroke:none;stroke-width:3.00000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14.896213,36.537163 C 20.211088,33.685017 52.61854,35.177718 47.442005,37.955629 L 26.210797,45.478388 C 20.938535,47.604887 3.6171758,42.680624 6.2755579,40.551264 L 14.896213,36.537163 z "
|
||||
id="path6964"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.61506276;fill:url(#radialGradient6962);fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6080"
|
||||
sodipodi:cx="66.25"
|
||||
sodipodi:cy="109.25"
|
||||
sodipodi:rx="57.25"
|
||||
sodipodi:ry="20.25"
|
||||
d="M 123.5 109.25 A 57.25 20.25 0 1 1 9,109.25 A 57.25 20.25 0 1 1 123.5 109.25 z"
|
||||
transform="matrix(0.340611,0,0,0.395061,-3.065506,-4.16043)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5767);fill-opacity:1;stroke:#878787;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.5000001,10.192858 C 1.5000001,-1.5499444 37.499986,-1.2442886 37.499986,10.192858 L 34.585011,38.928238 C 33.245227,47.90076 6.3377557,47.477841 4.9979748,38.928238 L 1.5000001,10.192858 z "
|
||||
id="rect3964"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.61506276;fill:none;fill-opacity:1;stroke:url(#linearGradient5723);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.5000011,10.124602 C 2.5000011,-0.25168092 36.500023,0.17081096 36.500023,10.124602 L 33.746989,38.384427 C 32.481635,46.734163 7.0689972,46.340596 5.8036468,38.384427 L 2.5000011,10.124602 z "
|
||||
id="path5715"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4846);fill-opacity:1.0;stroke:url(#linearGradient5733);stroke-width:1.50000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 36.249987,9.5000036 C 36.249987,13.226005 28.745992,16.250006 19.499994,16.250006 C 10.253998,16.250006 2.7499996,13.226005 2.7499996,9.5000036 C 2.7499996,5.7740025 10.253998,2.750001 19.499994,2.750001 C 28.745992,2.750001 36.249987,5.7740025 36.249987,9.5000036 z "
|
||||
id="path5725" />
|
||||
<path
|
||||
style="opacity:0.84518828;fill:url(#linearGradient5739);fill-opacity:1;fill-rule:evenodd;stroke:#6ba536;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 23.499993,24.38506 C 21.18231,22.75671 18.68324,21.128358 16.365555,19.500007 C 16.385707,20.362075 16.405863,21.224143 16.426017,22.086211 C 9.1303457,23.063223 8.4249649,30.936781 8.5055793,34.499996 C 9.6946532,29.442529 13.906792,26.856323 16.426017,26.913795 C 16.44617,27.718391 16.466324,28.522989 16.486477,29.327586 C 18.824317,27.680078 21.162154,26.032569 23.499993,24.38506 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="opacity:0.84518828;fill:url(#linearGradient5736);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23,24.561375 C 20.74737,23.040917 19.100829,21.702286 16.848198,20.181827 C 16.86925,20.971676 16.890303,21.579698 16.911356,22.369545 C 14.321882,22.665738 12.136843,23.90975 11,24.857568 C 15.631579,26.417519 19.568422,26.437265 23,24.561375 z "
|
||||
id="path3015"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.84518828;fill:url(#linearGradient5728);fill-opacity:1;fill-rule:evenodd;stroke:#6ba536;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 11.499995,34.79685 C 13.270577,37.015839 15.213951,39.281034 16.984534,41.500022 C 17.196829,40.632692 17.409122,39.765361 17.621417,38.89803 C 24.833699,39.779337 27.619951,32.084294 28.499993,28.500014 C 26.00918,33.255334 21.302179,34.768944 18.917776,34.069731 C 19.114637,33.25988 19.311497,32.450029 19.50836,31.640179 C 16.838904,32.692403 14.169451,33.744627 11.499995,34.79685 z "
|
||||
id="path4945"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="opacity:0.84518828;fill:url(#linearGradient5716);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 12,35.196634 L 18.880851,32.412862 L 18.332906,34.440547 C 19.264705,34.977522 20.989667,34.866462 22,34.578018 C 19.430616,37.55864 15.209142,37.815606 12,35.196634 z "
|
||||
id="path4953"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5757);fill-opacity:1;stroke:none;stroke-width:3.00000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.327216,10 C 2.202996,10.27833 2.093968,10.563569 2,10.856711 L 5.393352,38.64558 C 6.696013,46.912442 32.861465,47.321371 34.164129,38.64558 L 37,10.856711 C 36.910207,10.562021 36.80516,10.279648 36.684904,10 L 35.921399,10 C 35.240958,13.229885 28.134128,15.779794 19.463642,15.779794 C 10.793157,15.779794 3.686329,13.229885 3.005886,10 L 2.327216,10 z "
|
||||
id="path5743" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
368
datas/icon-themes/edeneu/scalable/actions/edit-copy.svg
Normal file
@@ -0,0 +1,368 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-copy.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2065">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2067" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2069" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient5888"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient5890"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0.975845,-1.951691)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2065"
|
||||
id="linearGradient5892"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="80.507256"
|
||||
y1="19.19323"
|
||||
x2="84.654594"
|
||||
y2="10.41062" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient3958"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.266435,0,0,0.298111,1.069995,-2.412617)"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient3960"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.213043,1.222113e-15,90.55513)"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient3962"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.274959,0,0,0.269043,-1.269225,-5.010197e-2)"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient3964"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.267544,0,0,0.25654,-0.607354,-4.289707e-2)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient3966"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.719041,0,0,0.697906,0.259668,0.750233)"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient3968"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.24879,0,0,0.25704,0.993589,0.101299)"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient3984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.266435,0,0,0.298111,1.069995,-2.412617)"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient3986"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.213043,1.636712e-15,90.55513)"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient3988"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.274959,0,0,0.269043,-1.269225,-5.010197e-2)"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient3990"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.267544,0,0,0.25654,-0.607354,-4.289707e-2)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient3992"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.719041,0,0,0.697906,0.259668,0.750233)"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient3994"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.24879,0,0,0.25704,0.993589,0.101299)"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="67"
|
||||
inkscape:window-y="56"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g3950"
|
||||
transform="matrix(1,0,0,0.999894,0,3.702367e-3)"
|
||||
style="opacity:0.7">
|
||||
<path
|
||||
id="path5910"
|
||||
d="M 26.679998,34 L 35,28.763633 L 22,26 L 26.679998,34 z "
|
||||
style="fill:url(#linearGradient3958);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(0.276238,0,0,0.292703,-1.213042,-2.182352)"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
sodipodi:ry="11.954107"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:cx="60.502419"
|
||||
id="path5894"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient3960);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path1306"
|
||||
d="M 2.6039481,30.427762 C 3.1415138,22.383083 3.6790797,12.481942 2.5090833,2.9520922 L 16.928501,1.5133326 C 19.458223,1.3431567 26.79442,3.9731479 26.79442,6.2937281 C 27.869551,16.102047 27.616578,25.167782 26.60469,33.490928 L 2.6039481,30.427762 z "
|
||||
style="fill:url(#linearGradient3962);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01822066;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2039"
|
||||
d="M 17.969355,3.0519836 C 16.384764,5.3384861 16.877065,8.7756152 18.477039,10 C 21.153921,7.315204 22.953895,5.9137996 26,6.4153549 C 24.376948,4.2911206 20.827003,2.6868808 17.969355,3.0519836 z "
|
||||
style="fill:url(#linearGradient3964);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path3945"
|
||||
d="M 3.5709131,29.640345 C 4.0665461,22.086703 4.5621791,12.789913 3.4834486,3.8417533 L 16.778078,2.4908135 C 19.478156,2.3310249 26.157104,4.8004853 25.874404,6.9794204 C 26.865669,16.189054 26.632428,24.701428 25.699473,32.516542 L 3.5709131,29.640345 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3966);stroke-width:0.96694314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2037"
|
||||
d="M 16.901405,2.0384085 C 15.427891,4.329378 15.885682,7.7732224 17.373504,9 C 19.86274,6.309958 23.167419,5.5265941 26,6.0291294 C 25.349079,3.9894278 19.558738,1.6725922 16.901405,2.0384085 z "
|
||||
style="fill:url(#linearGradient3968);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g3970"
|
||||
transform="matrix(1,0,0,0.999894,13,13.00376)">
|
||||
<path
|
||||
id="path3972"
|
||||
d="M 26.679998,34 L 35,28.763633 L 22,26 L 26.679998,34 z "
|
||||
style="fill:url(#linearGradient3984);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(0.276238,0,0,0.292703,-1.213042,-2.182352)"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
sodipodi:ry="11.954107"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:cx="60.502419"
|
||||
id="path3974"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient3986);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path3976"
|
||||
d="M 2.6039481,30.427762 C 3.1415138,22.383083 3.6790797,12.481942 2.5090833,2.9520922 L 16.928501,1.5133326 C 19.458223,1.3431567 26.79442,3.9731479 26.79442,6.2937281 C 27.869551,16.102047 27.616578,25.167782 26.60469,33.490928 L 2.6039481,30.427762 z "
|
||||
style="fill:url(#linearGradient3988);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01822066;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3978"
|
||||
d="M 17.969355,3.0519836 C 16.384764,5.3384861 16.877065,8.7756152 18.477039,10 C 21.153921,7.315204 22.953895,5.9137996 26,6.4153549 C 24.376948,4.2911206 20.827003,2.6868808 17.969355,3.0519836 z "
|
||||
style="fill:url(#linearGradient3990);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path3980"
|
||||
d="M 3.5709131,29.640345 C 4.0665461,22.086703 4.5621791,12.789913 3.4834486,3.8417533 L 16.778078,2.4908135 C 19.478156,2.3310249 26.157104,4.8004853 25.874404,6.9794204 C 26.865669,16.189054 26.632428,24.701428 25.699473,32.516542 L 3.5709131,29.640345 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3992);stroke-width:0.96694314;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3982"
|
||||
d="M 16.901405,2.0384085 C 15.427891,4.329378 15.885682,7.7732224 17.373504,9 C 19.86274,6.309958 23.167419,5.5265941 26,6.0291294 C 25.349079,3.9894278 19.558738,1.6725922 16.901405,2.0384085 z "
|
||||
style="fill:url(#linearGradient3994);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
196
datas/icon-themes/edeneu/scalable/actions/edit-cut.svg
Normal file
@@ -0,0 +1,196 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
x="00"
|
||||
y="00"
|
||||
width="48"
|
||||
height="48"
|
||||
id="Etiquette"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docname="edit-cut.svg"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions">
|
||||
<metadata
|
||||
id="About">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Andrew Fitzsimon</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:date>2004-12-25</dc:date>
|
||||
<dc:title>Etiquette Icon</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by/2.0/" />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>Andrew Fitzsimon</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:prohibits
|
||||
rdf:resource="http://web.resource.org/cc/CommercialUse" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#f8f8f8"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0000000"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="76"
|
||||
inkscape:current-layer="Etiquette"
|
||||
width="48px"
|
||||
height="48px"
|
||||
grid_units="px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<defs
|
||||
id="Gradients">
|
||||
<linearGradient
|
||||
id="linearGradient3658">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.56774193;"
|
||||
offset="0.0000000"
|
||||
id="stop3659" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3660" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient1851">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.20000000;"
|
||||
offset="0.0000000"
|
||||
id="stop1852" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.064516127;"
|
||||
offset="0.50000000"
|
||||
id="stop1854" />
|
||||
<stop
|
||||
style="stop-color:#adadad;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop1853" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3970">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3971" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3972" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1851"
|
||||
id="radialGradient1191"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="-289.0914"
|
||||
cy="598.36652"
|
||||
fx="-285.65439"
|
||||
fy="552.23834"
|
||||
r="125.20509" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3970"
|
||||
id="linearGradient1192"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.339246,0.206882,-0.225212,0.458609,12.5708,-18.16013)"
|
||||
x1="62.58136"
|
||||
y1="71.153831"
|
||||
x2="73.967102"
|
||||
y2="61.201187" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3658"
|
||||
id="linearGradient1197"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.194282,0.106319,-0.149529,0.273242,162.1883,-126.1346)"
|
||||
x1="-158.57335"
|
||||
y1="628.41992"
|
||||
x2="-179.82236"
|
||||
y2="609.66907" />
|
||||
</defs>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:url(#radialGradient1191);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path3995"
|
||||
sodipodi:cx="-289.0914"
|
||||
sodipodi:cy="598.36652"
|
||||
sodipodi:rx="125.20509"
|
||||
sodipodi:ry="125.20509"
|
||||
d="M -163.88631 598.36652 A 125.20509 125.20509 0 1 1 -414.29649,598.36652 A 125.20509 125.20509 0 1 1 -163.88631 598.36652 z"
|
||||
transform="matrix(-0.143764,1.209306e-3,2.087727e-4,2.792751e-2,-14.68585,28.13871)" />
|
||||
<path
|
||||
style="fill:#d8d8d8;fill-opacity:1;fill-rule:evenodd;stroke:#848484;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 44.499981,15.499992 C 43.404145,18.345743 38.814352,24.160107 32.654615,25.872321 L 21.55176,29.924335 C 18.916372,30.863472 18.473146,27.644067 13.719607,34.280755 C 11.875799,37.260981 7.6923061,36.954755 5.5297558,35.040367 C 3.0531144,32.847921 3.3815259,29.075296 4.9445688,27.309736 C 6.9197881,25.0786 10.360894,24.684033 12.127692,26.19556 C 13.957387,27.762766 13.89227,30.11402 14.805149,29.631998 L 44.499981,15.499992 z M 11.668227,27.680243 C 10.210021,26.389367 7.9784005,26.525173 6.6874887,27.983338 C 5.3965699,29.441509 5.5323788,32.235567 6.9905838,33.526439 C 8.4487943,34.817315 10.680419,34.681519 11.971334,33.22335 C 13.262246,31.765181 13.126439,28.971121 11.668227,27.680243 z "
|
||||
id="path3996"
|
||||
sodipodi:nodetypes="cccccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1197)"
|
||||
d="M 18.988326,27.803571 L 44.361131,16.081198 C 44.361131,16.081198 39.882231,22.927888 33.426372,24.958972 C 26.970517,26.990054 21.704604,29.672325 20.903309,29.906803 L 18.988326,27.803571 z "
|
||||
id="path3997"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#dc0000;fill-opacity:1;fill-rule:evenodd;stroke:#9c0000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 21.217866,29.927987 C 18.494186,30.933505 18.746643,27.018117 13.833848,34.12391 C 11.928269,37.314789 7.6046187,36.986917 5.3696176,34.937214 C 2.8100028,32.589799 3.1494168,28.55051 4.7648255,26.660154 C 6.8062195,24.271312 10.362611,23.848857 12.188601,25.467224 C 14.079595,27.145205 14.012297,29.662654 14.955759,29.146562 L 20.716608,26.481455 L 21.217866,29.927987 z M 11.713743,27.659109 C 10.206683,26.276989 7.9002979,26.422395 6.5661375,27.983627 C 5.2319697,29.544868 5.3723285,31.93416 6.879387,33.316275 C 8.386451,34.698396 10.692841,34.553002 12.027005,32.991763 C 13.361165,31.430525 13.220808,29.041231 11.713743,27.659109 z "
|
||||
id="path3998"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
style="fill:#d5d5d5;fill-opacity:1;fill-rule:evenodd;stroke:#848484;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.606959,1.4999999 C 18.755031,4.0384707 16.270618,11.270537 18.196689,17.58398 L 20.836537,30.343653 C 21.482181,33.159858 24.505341,30.910591 21.401263,38.743134 C 19.846631,42.00734 22.423508,45.476999 25.272157,46.292501 C 28.534556,47.226437 31.611146,44.839513 32.271955,42.496121 C 33.107014,39.53477 31.545709,36.32078 29.26373,35.625265 C 26.8989,34.906036 24.904304,36.272228 24.815996,35.209434 L 20.606959,1.4999999 z M 27.749707,37.165242 C 29.670555,37.715131 30.78679,39.732586 30.241038,41.66798 C 29.69528,43.603392 27.692992,44.728086 25.772148,44.178196 C 23.851298,43.628305 22.422552,41.548351 22.968312,39.612953 C 23.51407,37.67755 25.828857,36.615352 27.749707,37.165242 z "
|
||||
id="path4000"
|
||||
sodipodi:nodetypes="cccccccccccccc" />
|
||||
<path
|
||||
style="fill:#dc0000;fill-opacity:1;fill-rule:evenodd;stroke:#9c0000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.500005,30.270561 C 21.164279,33.099505 24.274672,30.840064 21.081025,38.708038 C 19.481534,41.98701 22.132767,45.472364 25.063615,46.291555 C 28.42015,47.229716 31.585516,44.831994 32.265391,42.478002 C 33.124548,39.503255 31.51819,36.274726 29.170364,35.576066 C 26.737298,34.853582 24.685147,36.225954 24.594291,35.158353 L 23.878937,29.500007 L 20.500005,30.270561 z M 27.612654,37.123009 C 29.588929,37.675385 30.737373,39.701965 30.175873,41.646115 C 29.614366,43.590282 27.554303,44.720062 25.578033,44.167686 C 23.601757,43.615308 22.453302,41.588727 23.014809,39.644574 C 23.576316,37.700417 25.636378,36.570631 27.612654,37.123009 z "
|
||||
id="path4001"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.69230772;fill:url(#linearGradient1192);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.625;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.0566037"
|
||||
d="M 19.438564,4.2218073 C 18.749594,7.0288257 17.866052,9.8475238 18.017039,12.800406 C 18.35254,17.298085 19.45163,21.676508 20.26806,26.090513 C 20.585433,27.514409 20.555642,27.967006 20.951109,29.350554 L 23.069033,29.137872 C 22.899022,27.573261 22.954447,27.045791 22.759536,25.487445 C 21.898227,17.878011 21.036917,10.268576 20.175608,2.659141 C 19.929927,3.1800296 19.684245,3.700919 19.438564,4.2218073 z "
|
||||
id="path195"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 10 KiB |
349
datas/icon-themes/edeneu/scalable/actions/edit-delete.svg
Normal file
@@ -0,0 +1,349 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg13623"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-delete.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4955">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4957" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4959" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6966">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.21030043"
|
||||
offset="0"
|
||||
id="stop6968" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6970" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6956">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6958" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6960" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5761">
|
||||
<stop
|
||||
style="stop-color:#969696;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5763" />
|
||||
<stop
|
||||
style="stop-color:#ddd;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5765" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5751">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop5753" />
|
||||
<stop
|
||||
id="stop5759"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5755" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5735">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.53218883"
|
||||
offset="0"
|
||||
id="stop5737" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5739" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5727">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5729" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.32618025"
|
||||
offset="1"
|
||||
id="stop5731" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5717">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5719" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5721" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5717"
|
||||
id="linearGradient5723"
|
||||
x1="55.154327"
|
||||
y1="64.572014"
|
||||
x2="55.154327"
|
||||
y2="30.337681"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.396121,0,0,0.39058,-5.812296,-1.694731)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5727"
|
||||
id="linearGradient5733"
|
||||
x1="59.008205"
|
||||
y1="48.804073"
|
||||
x2="59.008205"
|
||||
y2="17.999977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.471404,0,0,0.460047,-11.58333,-6.202082)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5751"
|
||||
id="linearGradient5757"
|
||||
x1="18.78125"
|
||||
y1="74.57222"
|
||||
x2="63.90625"
|
||||
y2="72.32222"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.387812,0,0,0.386125,-5.28359,-1.294129)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5761"
|
||||
id="linearGradient5767"
|
||||
x1="101.25"
|
||||
y1="72.75"
|
||||
x2="68.737175"
|
||||
y2="70.75"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.386462,0,0,0.386916,-5.195112,-1.570147)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6956"
|
||||
id="radialGradient6962"
|
||||
cx="66.25"
|
||||
cy="109.25"
|
||||
fx="66.25"
|
||||
fy="149.6292"
|
||||
r="57.25"
|
||||
gradientTransform="matrix(1,0,0,0.353712,-1.400139e-15,70.60699)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6966"
|
||||
id="linearGradient6972"
|
||||
x1="65"
|
||||
y1="128"
|
||||
x2="103.38376"
|
||||
y2="69.818649"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.349381,0,0,0.376136,0.724309,0.929123)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2183">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2185" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2187" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
style="stop-color:#5bdd22;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2203" />
|
||||
<stop
|
||||
style="stop-color:#60d02f;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2205" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4955"
|
||||
id="linearGradient5716"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-70.46225"
|
||||
y1="59.150021"
|
||||
x2="-70.46225"
|
||||
y2="91.51226"
|
||||
gradientTransform="matrix(0.193727,0,0,0.194412,30.15069,19.21305)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient5728"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.230385,6.160648e-2,6.173139e-2,-0.229919,31.64672,46.89936)"
|
||||
x1="-95.53125"
|
||||
y1="38.625"
|
||||
x2="-31.945671"
|
||||
y2="38.625" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2183"
|
||||
id="linearGradient5736"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.252632,0,0,0.236954,-0.494738,18.10436)"
|
||||
x1="-87.5"
|
||||
y1="-4.839344"
|
||||
x2="-63"
|
||||
y2="39.660656" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient5739"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.241845,0,0,0.229885,0.585142,18.12069)"
|
||||
x1="-95.53125"
|
||||
y1="38.625"
|
||||
x2="-31.945671"
|
||||
y2="38.625" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5735"
|
||||
id="radialGradient4846"
|
||||
cx="19.499992"
|
||||
cy="20.789114"
|
||||
fx="19.527102"
|
||||
fy="23.809175"
|
||||
r="17.499994"
|
||||
gradientTransform="matrix(1.32021,2.474953e-2,-1.185079e-2,0.632154,-5.997728,0.713646)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="843"
|
||||
inkscape:window-height="556"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="53"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient6972);fill-opacity:1;stroke:none;stroke-width:3.00000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14.896213,36.537163 C 20.211088,33.685017 52.61854,35.177718 47.442005,37.955629 L 26.210797,45.478388 C 20.938535,47.604887 3.6171758,42.680624 6.2755579,40.551264 L 14.896213,36.537163 z "
|
||||
id="path6964"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.61506276;fill:url(#radialGradient6962);fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6080"
|
||||
sodipodi:cx="66.25"
|
||||
sodipodi:cy="109.25"
|
||||
sodipodi:rx="57.25"
|
||||
sodipodi:ry="20.25"
|
||||
d="M 123.5 109.25 A 57.25 20.25 0 1 1 9,109.25 A 57.25 20.25 0 1 1 123.5 109.25 z"
|
||||
transform="matrix(0.340611,0,0,0.395061,-3.065506,-4.16043)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5767);fill-opacity:1;stroke:#878787;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.5000001,10.192858 C 1.5000001,-1.5499444 37.499986,-1.2442886 37.499986,10.192858 L 34.585011,38.928238 C 33.245227,47.90076 6.3377557,47.477841 4.9979748,38.928238 L 1.5000001,10.192858 z "
|
||||
id="rect3964"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.61506276;fill:none;fill-opacity:1;stroke:url(#linearGradient5723);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.5000011,10.124602 C 2.5000011,-0.25168092 36.500023,0.17081096 36.500023,10.124602 L 33.746989,38.384427 C 32.481635,46.734163 7.0689972,46.340596 5.8036468,38.384427 L 2.5000011,10.124602 z "
|
||||
id="path5715"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4846);fill-opacity:1.0;stroke:url(#linearGradient5733);stroke-width:1.50000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 36.249987,9.5000036 C 36.249987,13.226005 28.745992,16.250006 19.499994,16.250006 C 10.253998,16.250006 2.7499996,13.226005 2.7499996,9.5000036 C 2.7499996,5.7740025 10.253998,2.750001 19.499994,2.750001 C 28.745992,2.750001 36.249987,5.7740025 36.249987,9.5000036 z "
|
||||
id="path5725" />
|
||||
<path
|
||||
style="opacity:0.84518828;fill:url(#linearGradient5739);fill-opacity:1;fill-rule:evenodd;stroke:#6ba536;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 23.499993,24.38506 C 21.18231,22.75671 18.68324,21.128358 16.365555,19.500007 C 16.385707,20.362075 16.405863,21.224143 16.426017,22.086211 C 9.1303457,23.063223 8.4249649,30.936781 8.5055793,34.499996 C 9.6946532,29.442529 13.906792,26.856323 16.426017,26.913795 C 16.44617,27.718391 16.466324,28.522989 16.486477,29.327586 C 18.824317,27.680078 21.162154,26.032569 23.499993,24.38506 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="opacity:0.84518828;fill:url(#linearGradient5736);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23,24.561375 C 20.74737,23.040917 19.100829,21.702286 16.848198,20.181827 C 16.86925,20.971676 16.890303,21.579698 16.911356,22.369545 C 14.321882,22.665738 12.136843,23.90975 11,24.857568 C 15.631579,26.417519 19.568422,26.437265 23,24.561375 z "
|
||||
id="path3015"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.84518828;fill:url(#linearGradient5728);fill-opacity:1;fill-rule:evenodd;stroke:#6ba536;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 11.499995,34.79685 C 13.270577,37.015839 15.213951,39.281034 16.984534,41.500022 C 17.196829,40.632692 17.409122,39.765361 17.621417,38.89803 C 24.833699,39.779337 27.619951,32.084294 28.499993,28.500014 C 26.00918,33.255334 21.302179,34.768944 18.917776,34.069731 C 19.114637,33.25988 19.311497,32.450029 19.50836,31.640179 C 16.838904,32.692403 14.169451,33.744627 11.499995,34.79685 z "
|
||||
id="path4945"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="opacity:0.84518828;fill:url(#linearGradient5716);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 12,35.196634 L 18.880851,32.412862 L 18.332906,34.440547 C 19.264705,34.977522 20.989667,34.866462 22,34.578018 C 19.430616,37.55864 15.209142,37.815606 12,35.196634 z "
|
||||
id="path4953"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5757);fill-opacity:1;stroke:none;stroke-width:3.00000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.327216,10 C 2.202996,10.27833 2.093968,10.563569 2,10.856711 L 5.393352,38.64558 C 6.696013,46.912442 32.861465,47.321371 34.164129,38.64558 L 37,10.856711 C 36.910207,10.562021 36.80516,10.279648 36.684904,10 L 35.921399,10 C 35.240958,13.229885 28.134128,15.779794 19.463642,15.779794 C 10.793157,15.779794 3.686329,13.229885 3.005886,10 L 2.327216,10 z "
|
||||
id="path5743" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
598
datas/icon-themes/edeneu/scalable/actions/edit-find-replace.svg
Normal file
@@ -0,0 +1,598 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-find-replace.svg"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/silvestre/Neu/scalable/actions/edit-find-replace.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient2912">
|
||||
<stop
|
||||
id="stop2914"
|
||||
offset="0"
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop2920" />
|
||||
<stop
|
||||
id="stop2922"
|
||||
offset="0.75"
|
||||
style="stop-color:#a5a5a5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2916"
|
||||
offset="1"
|
||||
style="stop-color:#d4d4d4;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3799"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3801"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3803"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.33725491" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3821"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3823"
|
||||
offset="0"
|
||||
style="stop-color:#ceba00;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3825"
|
||||
offset="1"
|
||||
style="stop-color:#f18200;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
id="stop3841"
|
||||
offset="0"
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.30653265" />
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.3137255;"
|
||||
offset="0.61764705"
|
||||
id="stop3847" />
|
||||
<stop
|
||||
id="stop3843"
|
||||
offset="1"
|
||||
style="stop-color:#9ec4f0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3853">
|
||||
<stop
|
||||
id="stop3855"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.61764705"
|
||||
id="stop3861" />
|
||||
<stop
|
||||
id="stop3857"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6739">
|
||||
<stop
|
||||
style="stop-color:#ffe000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6741" />
|
||||
<stop
|
||||
style="stop-color:#ff9500;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop6743" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2430">
|
||||
<stop
|
||||
id="stop2432"
|
||||
offset="0"
|
||||
style="stop-color:#fffce0;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2434"
|
||||
offset="1"
|
||||
style="stop-color:#e3c191;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2472">
|
||||
<stop
|
||||
id="stop2474"
|
||||
offset="0"
|
||||
style="stop-color:#ff003c;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2476"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#aa0028;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2496">
|
||||
<stop
|
||||
id="stop2498"
|
||||
offset="0"
|
||||
style="stop-color:#e2e2e2;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2500"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#979797;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2544">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.55599999"
|
||||
offset="0"
|
||||
id="stop2546" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2548" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6821"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6823"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6826"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.26180258" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2544"
|
||||
id="linearGradient4209"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.380296,0,0,0.392807,-38.82518,22.59557)"
|
||||
x1="-46.352661"
|
||||
y1="152.39613"
|
||||
x2="78.067642"
|
||||
y2="90.131828" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6739"
|
||||
id="linearGradient4211"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.009549,0,0,1.011276,-119.4154,22.6063)"
|
||||
x1="96.115021"
|
||||
y1="28.121029"
|
||||
x2="101.31535"
|
||||
y2="33.392132" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2430"
|
||||
id="linearGradient4213"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.985533,0,0,1.023857,-118.363,22.76779)"
|
||||
x1="87.762566"
|
||||
y1="40.028625"
|
||||
x2="91.002174"
|
||||
y2="42.9468" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2472"
|
||||
id="linearGradient4215"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.356844,0,0,0.358119,-41.38439,32.71276)"
|
||||
x1="-85.481979"
|
||||
y1="27.451311"
|
||||
x2="-94.657013"
|
||||
y2="43.796722" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2496"
|
||||
id="linearGradient4217"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.376014,0,0,0.380123,-43.5573,32.42624)"
|
||||
x1="-80.819405"
|
||||
y1="33.768192"
|
||||
x2="-90.566032"
|
||||
y2="44.636120" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6821"
|
||||
id="linearGradient4219"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(39.88592,-39)"
|
||||
x1="-62.187824"
|
||||
y1="88.562172"
|
||||
x2="-56.165985"
|
||||
y2="94.584015" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3821"
|
||||
id="linearGradient4262"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.337261,-1.343742,1.337261,1.343742,18.31585,22.84855)"
|
||||
x1="10.628082"
|
||||
y1="20.32057"
|
||||
x2="7.3931365"
|
||||
y2="20.264719" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2912"
|
||||
id="linearGradient4264"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.919372,-1.919374,1.244767,1.244768,15.39603,29.81732)"
|
||||
x1="6.9188247"
|
||||
y1="17.483641"
|
||||
x2="10.358043"
|
||||
y2="17.483641" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4266"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.188058,-1.190399,1.188058,1.190399,20.40016,27.63195)"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3799"
|
||||
id="linearGradient4268"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.285184,-1.287716,1.285184,1.287716,20.26331,23.81808)"
|
||||
x1="4.0145416"
|
||||
y1="2.715862"
|
||||
x2="10.090094"
|
||||
y2="13.239027" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3839"
|
||||
id="radialGradient4270"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.227473,-2.289857e-16,-7.350568e-17,1.227473,3.136218,-2.253726)"
|
||||
cx="-13.583885"
|
||||
cy="10.198135"
|
||||
fx="-13.583885"
|
||||
fy="10.198135"
|
||||
r="6.1843319" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3853"
|
||||
id="radialGradient4272"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-5.22748e-16,4.521585e-16,0.803279,6.096982e-15,0.985551)"
|
||||
cx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
fy="5.0098858"
|
||||
r="4.372983" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3853"
|
||||
id="radialGradient4274"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-2.41086e-16,8.571953e-17,0.803279,-4.880951e-16,0.985551)"
|
||||
cx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
fy="5.0098858"
|
||||
r="4.372983" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="39.082788"
|
||||
inkscape:cy="14.05784"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="82"
|
||||
inkscape:window-y="43"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<g
|
||||
id="g4221"
|
||||
transform="translate(-15.71848,-5.888058)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3819"
|
||||
d="M 51.260497,37.425356 L 56.141186,32.521007 L 62.377619,38.787673 C 65.224688,41.648543 60.144112,46.352032 57.496929,43.692023 L 51.260497,37.425356 z "
|
||||
style="color:black;fill:url(#linearGradient4262);fill-opacity:1;fill-rule:nonzero;stroke:#834f06;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35678394;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 53.274723,38.095024 L 56.796916,34.570205 L 61.647983,39.42489 C 63.702595,41.481036 60.036151,44.861496 58.125789,42.949712 L 53.274723,38.095024 z "
|
||||
id="path3892"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="rect3807"
|
||||
d="M 49.223291,36.125262 L 54.864753,30.4838 L 58.255692,33.87474 L 52.614232,39.516201 L 49.223291,36.125262 z "
|
||||
style="color:black;fill:url(#linearGradient4264);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
id="path2034"
|
||||
d="M 32.026033,13.826448 C 26.725782,19.413547 26.83594,28.263798 32.307167,33.745805 C 37.865237,39.314829 46.910415,39.314831 52.468486,33.745806 C 58.026557,28.176783 57.986398,19.154022 52.428326,13.585001 C 46.870252,8.0159795 37.865238,7.9757367 32.307167,13.54476 C 32.220322,13.631776 32.110164,13.737763 32.026033,13.826448 z M 33.953808,15.838505 C 34.053748,15.730446 34.170249,15.621638 34.275104,15.516575 C 38.748918,11.033946 45.986574,11.074188 50.460386,15.556818 C 54.934199,20.039446 54.974363,27.291361 50.500548,31.773991 C 46.026734,36.256621 38.748917,36.256621 34.275104,31.773991 C 29.906145,27.396423 29.789644,20.340952 33.953808,15.838505 z "
|
||||
style="color:black;fill:url(#linearGradient4266);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssssc"
|
||||
id="path3797"
|
||||
d="M 32.576664,14.350309 C 27.558631,19.639917 27.662923,28.018928 32.842827,33.209038 C 38.104951,38.481531 46.668509,38.481531 51.930633,33.209038 C 57.19276,27.936542 57.154736,19.394212 51.89261,14.121719 C 46.630486,8.8492258 38.104954,8.8111249 32.842827,14.083621 C 32.760608,14.166003 32.656315,14.266347 32.576664,14.350309 z "
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4268);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
transform="matrix(1.28544,-1.287972,1.28544,1.287972,48.62852,-6.602725)"
|
||||
d="M -8.0092163 9.3271885 A 6.1843319 6.1843319 0 1 1 -20.37788,9.3271885 A 6.1843319 6.1843319 0 1 1 -8.0092163 9.3271885 z"
|
||||
sodipodi:ry="6.1843319"
|
||||
sodipodi:rx="6.1843319"
|
||||
sodipodi:cy="9.3271885"
|
||||
sodipodi:cx="-14.193548"
|
||||
id="path3837"
|
||||
style="color:black;fill:url(#radialGradient4270);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.840084,-1.457935,1.455068,0.841739,34.75486,9.825286)"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
sodipodi:ry="3.5127239"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:cx="-5.3766184"
|
||||
id="path3851"
|
||||
style="opacity:0.57213931;color:black;fill:url(#radialGradient4272);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.465624,-0.808071,0.806482,0.466541,46.95166,20.38854)"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
sodipodi:ry="3.5127239"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:cx="-5.3766184"
|
||||
id="path3865"
|
||||
style="opacity:0.38308459;color:black;fill:url(#radialGradient4274);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4200"
|
||||
transform="matrix(-1,0,0,1,-2.114078,-24)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path1491"
|
||||
d="M -35.114078,69.999999 L -23.609678,68.466729 L -3.013093,60.991997 C 0.32690203,59.267061 -6.353077,56.775487 -11.363054,58.692083 L -29.361877,65.400169 L -35.114078,69.999999 z "
|
||||
style="fill:url(#linearGradient4209);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path2178"
|
||||
d="M -11.658186,41.126604 L -31.878055,61.028709 L -34.614069,69.499949 L -26.654754,67.071749 L -6.507729,47.076076 C -3.827609,43.859669 -7.654951,38.705297 -11.658186,41.126604 z "
|
||||
style="fill:url(#linearGradient4211);fill-opacity:1;fill-rule:evenodd;stroke:#cb6000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path4372"
|
||||
d="M -26.671853,66.538939 L -33.81463,68.999999 L -31.332078,61.309189 C -27.383225,59.800331 -24.958745,64.180429 -26.671853,66.538939 z "
|
||||
style="fill:url(#linearGradient4213);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5108"
|
||||
d="M -9.021302,48.999999 C -9.4011,46.823746 -11.2104,43.667185 -14.114078,44.085603 C -13.272531,43.211932 -12.430984,42.338262 -11.589447,41.464592 C -6.997238,39.404185 -4.92966,44.748136 -6.801363,46.728456 C -7.526837,47.514758 -8.208768,48.213695 -9.021302,48.999999 z "
|
||||
style="fill:url(#linearGradient4215);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5844"
|
||||
d="M -9.762726,49.999999 C -9.989754,47.158469 -12.616782,44.218578 -15.114078,44.819671 C -14.854614,44.546447 -14.595151,44.273223 -14.335698,43.999999 C -10.36571,43.999999 -9.114078,47.480878 -9.114078,49.409835 C -9.330301,49.606556 -9.546514,49.803278 -9.762726,49.999999 z "
|
||||
style="fill:url(#linearGradient4217);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3642"
|
||||
d="M -32.307719,68.383189 L -34.114078,68.999999 L -33.486259,67.072479 C -32.48762,66.694319 -31.874485,67.792089 -32.307719,68.383189 z "
|
||||
style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path6819"
|
||||
d="M -11.887021,42.41519 L -31.067954,61.634699 L -33.114088,68.187509 L -26.940105,66.031719 L -7.321969,46.54405 C -4.949019,43.958784 -8.935954,39.702855 -11.887021,42.41519 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4219);stroke-width:0.99999911;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 26 KiB |
423
datas/icon-themes/edeneu/scalable/actions/edit-find.svg
Normal file
@@ -0,0 +1,423 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-find.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient2912">
|
||||
<stop
|
||||
id="stop2914"
|
||||
offset="0"
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop2920" />
|
||||
<stop
|
||||
id="stop2922"
|
||||
offset="0.75"
|
||||
style="stop-color:#a5a5a5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2916"
|
||||
offset="1"
|
||||
style="stop-color:#d4d4d4;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3799"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3801"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3803"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.33725491" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3821"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3823"
|
||||
offset="0"
|
||||
style="stop-color:#ceba00;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3825"
|
||||
offset="1"
|
||||
style="stop-color:#f18200;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
id="stop3841"
|
||||
offset="0"
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.30653265" />
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.3137255;"
|
||||
offset="0.61764705"
|
||||
id="stop3847" />
|
||||
<stop
|
||||
id="stop3843"
|
||||
offset="1"
|
||||
style="stop-color:#9ec4f0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3853">
|
||||
<stop
|
||||
id="stop3855"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.61764705"
|
||||
id="stop3861" />
|
||||
<stop
|
||||
id="stop3857"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3839"
|
||||
id="radialGradient5793"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.227473,-1.346632e-16,-1.162586e-16,1.227473,3.136218,-2.253726)"
|
||||
cx="-13.583885"
|
||||
cy="10.198135"
|
||||
fx="-13.583885"
|
||||
fy="10.198135"
|
||||
r="6.1843319" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3853"
|
||||
id="radialGradient5795"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-3.946765e-16,3.70401e-16,0.803279,3.60989e-16,0.985551)"
|
||||
cx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
fy="5.0098858"
|
||||
r="4.372983" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3853"
|
||||
id="radialGradient5797"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-2.303795e-16,3.358905e-16,0.803279,8.51848e-15,0.985551)"
|
||||
cx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
fy="5.0098858"
|
||||
r="4.372983" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3799"
|
||||
id="linearGradient5803"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.285184,-1.287716,1.285184,1.287716,-0.476176,23.81808)"
|
||||
x1="4.0145416"
|
||||
y1="2.715862"
|
||||
x2="10.090094"
|
||||
y2="13.239027" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient5806"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientTransform="matrix(1.188058,-1.190399,1.188058,1.190399,-0.339333,27.63195)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2912"
|
||||
id="linearGradient5809"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.919372,-1.919374,1.244767,1.244768,-5.343465,29.81732)"
|
||||
x1="6.9188247"
|
||||
y1="17.483641"
|
||||
x2="10.358043"
|
||||
y2="17.483641" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3821"
|
||||
id="linearGradient5813"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.337261,-1.343742,1.337261,1.343742,-2.423637,22.84855)"
|
||||
x1="10.628082"
|
||||
y1="20.32057"
|
||||
x2="7.3931365"
|
||||
y2="20.264719" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="34.174326"
|
||||
inkscape:cy="12.140862"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="82"
|
||||
inkscape:window-y="43"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="true"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient5813);fill-opacity:1;fill-rule:nonzero;stroke:#834f06;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 30.521006,37.425356 L 35.401695,32.521007 L 41.638128,38.787673 C 44.485197,41.648543 39.404621,46.352032 36.757438,43.692023 L 30.521006,37.425356 z "
|
||||
id="rect3819"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3892"
|
||||
d="M 32.535232,38.095024 L 36.057425,34.570205 L 40.908492,39.42489 C 42.963104,41.481036 39.29666,44.861496 37.386298,42.949712 L 32.535232,38.095024 z "
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35678394;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient5809);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 28.4838,36.125262 L 34.125262,30.4838 L 37.516201,33.87474 L 31.874741,39.516201 L 28.4838,36.125262 z "
|
||||
id="rect3807" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient5806);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 11.286542,13.826448 C 5.9862915,19.413547 6.0964497,28.263798 11.567676,33.745805 C 17.125746,39.314829 26.170924,39.314831 31.728995,33.745806 C 37.287066,28.176783 37.246907,19.154022 31.688835,13.585001 C 26.130761,8.0159795 17.125747,7.9757367 11.567676,13.54476 C 11.480831,13.631776 11.370673,13.737763 11.286542,13.826448 z M 13.214317,15.838505 C 13.314257,15.730446 13.430758,15.621638 13.535613,15.516575 C 18.009427,11.033946 25.247083,11.074188 29.720895,15.556818 C 34.194708,20.039446 34.234872,27.291361 29.761057,31.773991 C 25.287243,36.256621 18.009426,36.256621 13.535613,31.773991 C 9.1666546,27.396423 9.0501535,20.340952 13.214317,15.838505 z "
|
||||
id="path2034" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5803);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 11.837173,14.350309 C 6.8191402,19.639917 6.9234327,28.018928 12.103336,33.209038 C 17.36546,38.481531 25.929018,38.481531 31.191142,33.209038 C 36.453269,27.936542 36.415245,19.394212 31.153119,14.121719 C 25.890995,8.8492258 17.365463,8.8111249 12.103336,14.083621 C 12.021117,14.166003 11.916824,14.266347 11.837173,14.350309 z "
|
||||
id="path3797"
|
||||
sodipodi:nodetypes="cssssc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient5793);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3837"
|
||||
sodipodi:cx="-14.193548"
|
||||
sodipodi:cy="9.3271885"
|
||||
sodipodi:rx="6.1843319"
|
||||
sodipodi:ry="6.1843319"
|
||||
d="M -8.0092163 9.3271885 A 6.1843319 6.1843319 0 1 1 -20.37788,9.3271885 A 6.1843319 6.1843319 0 1 1 -8.0092163 9.3271885 z"
|
||||
transform="matrix(1.28544,-1.287972,1.28544,1.287972,27.88903,-6.602725)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.57213931;color:black;fill:url(#radialGradient5795);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3851"
|
||||
sodipodi:cx="-5.3766184"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:ry="3.5127239"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
transform="matrix(0.840084,-1.457935,1.455068,0.841739,14.01537,9.825286)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.38308459;color:black;fill:url(#radialGradient5797);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3865"
|
||||
sodipodi:cx="-5.3766184"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:ry="3.5127239"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
transform="matrix(0.465624,-0.808071,0.806482,0.466541,26.21217,20.38854)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 18 KiB |
374
datas/icon-themes/edeneu/scalable/actions/edit-paste.svg
Normal file
@@ -0,0 +1,374 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg1462"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-paste.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs1464">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5036">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.68240345"
|
||||
offset="0"
|
||||
id="stop5038" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5040" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5026">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.63137257"
|
||||
offset="0"
|
||||
id="stop5028" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24705882"
|
||||
offset="1"
|
||||
id="stop5030" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4373">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.38823527"
|
||||
offset="0"
|
||||
id="stop4375" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4377" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4363">
|
||||
<stop
|
||||
style="stop-color:#f5f5f5;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4365" />
|
||||
<stop
|
||||
style="stop-color:#c7c7c7;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4367" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4343">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.44400001"
|
||||
offset="0"
|
||||
id="stop4345" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4347" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2049"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2051"
|
||||
offset="0"
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2053"
|
||||
offset="1"
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
id="stop2059"
|
||||
offset="0"
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2061"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;"
|
||||
offset="0.0000000"
|
||||
id="stop5906" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5908" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4363"
|
||||
id="linearGradient4134"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.507732,0,0,0.529296,-8.884234,-3.125)"
|
||||
x1="54.907749"
|
||||
y1="11.808118"
|
||||
x2="56.206642"
|
||||
y2="22.199263" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4343"
|
||||
id="linearGradient4144"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="51.247234"
|
||||
y1="7.5571957"
|
||||
x2="51.247234"
|
||||
y2="66.536705"
|
||||
gradientTransform="matrix(0.389189,0,0,0.38311,-2.753676,-0.614286)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4373"
|
||||
id="linearGradient4149"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.338961,0,0,0.379541,2.547174,8.075425e-2)"
|
||||
x1="91.845604"
|
||||
y1="173.42183"
|
||||
x2="98.525291"
|
||||
y2="104.9551" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5026"
|
||||
id="linearGradient5032"
|
||||
x1="3.5355337"
|
||||
y1="1.1541755"
|
||||
x2="14.849242"
|
||||
y2="41.827351"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5036"
|
||||
id="linearGradient5042"
|
||||
x1="32.615299"
|
||||
y1="5.0874572"
|
||||
x2="32.615299"
|
||||
y2="43.729534"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.5,0)" />
|
||||
<linearGradient
|
||||
id="linearGradient5912"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5914"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5916"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4959" />
|
||||
<stop
|
||||
style="stop-color:#d0d0d0;stop-opacity:1"
|
||||
offset="1.0000000"
|
||||
id="stop4961" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4820"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4822"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4824"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.57939917" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5182"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.245941,0,0,0.298111,-37.32005,10.58739)"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5184"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.216846e-14,90.55513)"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient5186"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.254814,0,0,0.260522,-39.1621,14.01216)"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient5188"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.267543,0,0,0.219891,-40.6073,14.39181)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient5190"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.656606,0,0,0.674669,-37.46044,14.80793)"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient5192"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.248791,0,0,0.220321,-39.00645,14.37254)"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata1467">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient4149);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 35.377358,46 L 45,41.183096 L 33,37 L 35.377358,46 z "
|
||||
id="path4371" />
|
||||
<path
|
||||
style="fill:#acacac;fill-opacity:1;fill-rule:evenodd;stroke:#acacac;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 15.499995,10.500002 L 26.291254,0.50000016 L 28.499991,0.75000025 L 26.228147,9.375002 L 15.499995,10.500002 z "
|
||||
id="path4353"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ff8c00;fill-opacity:1;fill-rule:evenodd;stroke:#d95e02;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.500003,7.9764877 L 32.984443,3.4999983 L 36.500004,3.7633211 L 36.500004,45.236678 L 32.984443,45.499998 L 7.500003,41.023512 L 7.500003,7.9764877 z "
|
||||
id="path1470"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4144);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8,8.3428574 L 33,4 L 33,22.004762 C 25.401962,15.188889 15.13848,14.43492 8,23 L 8,8.3428574 z "
|
||||
id="path3615"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.21999996;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 33,4 L 33,45 L 36,44.834809 L 36,4.1651894 L 33,4 z "
|
||||
id="path2203"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5032);stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 8.5000013,8.7633196 L 33.17326,4.4999973 L 35.500003,4.7507809 L 35.500003,44.249207 L 33.17326,44.499988 L 8.5000013,40.236668 L 8.5000013,8.7633196 z "
|
||||
id="path5024"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4134);fill-opacity:1;fill-rule:evenodd;stroke:#acacac;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 14.018057,10.500002 L 11.500004,3.1250007 L 26.488414,0.50000026 L 24.210176,9.375002 L 14.018057,10.500002 z "
|
||||
id="path4351"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5042);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 32.5,5.5 L 32.5,44.5"
|
||||
id="path5034" />
|
||||
<g
|
||||
id="g5174"
|
||||
transform="translate(39,-1.567498e-5)">
|
||||
<path
|
||||
id="path5910"
|
||||
d="M -13.680013,47 L -6,41.763633 L -18.00002,39 L -13.680013,47 z "
|
||||
style="fill:url(#linearGradient5182);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(0.249504,0,0,0.254259,-39.09565,14.70294)"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
sodipodi:ry="11.954107"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:cx="60.502419"
|
||||
id="path5894"
|
||||
style="color:black;fill:url(#radialGradient5184);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path1306"
|
||||
d="M -35.572694,43.524779 C -35.074514,35.73488 -34.576332,26.147312 -35.660609,16.919278 L -22.297631,15.526085 C -19.953251,15.361299 -13.154541,17.907997 -13.154541,20.155082 C -12.158179,29.652768 -12.392618,38.431386 -13.330371,46.490933 L -35.572694,43.524779 z "
|
||||
style="fill:url(#linearGradient5186);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816535;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2039"
|
||||
d="M -22.030647,17.044557 C -23.615234,19.004417 -23.122936,21.950528 -21.522965,23 C -18.84609,20.698746 -17.046123,19.497543 -14.000024,19.927447 C -15.623071,18.106675 -19.173007,16.731612 -22.030647,17.044557 z "
|
||||
style="fill:url(#linearGradient5188);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path3945"
|
||||
d="M -34.436713,42.736132 C -33.984116,35.433992 -33.53152,26.446743 -34.516583,17.796516 L -22.376336,16.490556 C -19.910707,16.336088 -13.811696,18.723327 -14.06985,20.829714 C -13.164657,29.732707 -13.377645,37.961657 -14.229592,45.516564 L -34.436713,42.736132 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5190);stroke-width:0.96689045;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2037"
|
||||
d="M -23.098608,16.032921 C -24.572123,17.99661 -24.114332,20.948477 -22.62651,22 C -20.137269,19.69425 -16.832586,19.022795 -14,19.453539 C -14.650923,17.705224 -20.44127,15.719366 -23.098608,16.032921 z "
|
||||
style="fill:url(#linearGradient5192);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
193
datas/icon-themes/edeneu/scalable/actions/edit-redo.svg
Normal file
@@ -0,0 +1,193 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-redo.svg"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="Etiquette"
|
||||
height="48"
|
||||
width="48"
|
||||
y="00"
|
||||
x="00"
|
||||
version="1.0">
|
||||
<metadata
|
||||
id="About">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:date></dc:date>
|
||||
<dc:title></dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="Etiquette"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-x="111"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<defs
|
||||
id="Gradients">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7471">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7473" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7475" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5714">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5716" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.22317597"
|
||||
offset="1"
|
||||
id="stop5718" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
id="stop2203"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ff8300;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop2205"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffc500;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2183"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2185"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2187"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2183"
|
||||
id="linearGradient2092"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.639991,0,0,0.61393,-16.11961,0.543056)"
|
||||
x1="-87.5"
|
||||
y1="-4.839344"
|
||||
x2="-63"
|
||||
y2="39.660656" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient2095"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.628798,0,0,0.613027,-15.07863,0.821842)"
|
||||
x1="-95.53125"
|
||||
y1="38.625"
|
||||
x2="-31.945671"
|
||||
y2="38.625" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient5720"
|
||||
x1="11.850758"
|
||||
y1="15.974516"
|
||||
x2="21.3125"
|
||||
y2="29.883089"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7471"
|
||||
id="radialGradient7477"
|
||||
cx="18"
|
||||
cy="43.5"
|
||||
fx="18"
|
||||
fy="43.5"
|
||||
r="17"
|
||||
gradientTransform="matrix(1.264705,0,0,0.205882,-1.264705,35.54412)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<path
|
||||
style="opacity:0.1;fill:url(#radialGradient7477);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 43,44.5 C 43,46.432 33.368,48 21.5,48 C 9.632,48 0,46.432 0,44.5 C 0,42.568 9.632,41 21.5,41 C 33.368,41 43,42.568 43,44.5 z "
|
||||
id="path6595" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2095);fill-opacity:1;fill-rule:evenodd;stroke:#dc6800;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 44.499979,17.526825 C 38.474004,13.184551 31.538921,8.8422769 25.512943,4.500003 C 25.56534,6.798854 25.460546,9.0977045 25.512943,11.396556 C 6.5442026,14.00192 5.304912,34.998093 5.5145092,44.500011 C 8.6061008,31.013418 18.962962,24.116865 25.512943,24.270122 C 25.565341,26.415715 25.460545,28.56131 25.512943,30.706905 C 31.591325,26.313544 38.421598,21.920184 44.499979,17.526825 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2092);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 43.399598,17.272641 C 37.693008,13.333258 31.736417,9.393876 26.029826,5.4544935 C 26.083158,7.5009259 25.976494,9.5473583 26.029826,11.59379 C 19.469913,12.361203 15.879962,15.584334 13,18.040053 C 24.733179,22.081757 34.706381,22.132918 43.399598,17.272641 z "
|
||||
id="path3015"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5720);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 42.500012,17.437982 L 26.578749,6.5000014 L 26.578749,12.051727 C 9.4817452,13.961405 6.5177462,31.833364 6.5177462,38.62501 C 10.695396,27.812747 19.626102,23.01102 26.578749,23.156615 L 26.578749,28.771559 L 42.500012,17.437982 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
285
datas/icon-themes/edeneu/scalable/actions/edit-select-all.svg
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-select-all.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5705">
|
||||
<stop
|
||||
style="stop-color:#2f82ae;stop-opacity:0.42489269"
|
||||
offset="0"
|
||||
id="stop5707" />
|
||||
<stop
|
||||
style="stop-color:#2f82ae;stop-opacity:0.17167382"
|
||||
offset="1"
|
||||
id="stop5709" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5705"
|
||||
id="linearGradient5711"
|
||||
x1="14.142136"
|
||||
y1="18.655069"
|
||||
x2="14.142136"
|
||||
y2="42.898212"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="22"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4826"
|
||||
d="M 8,10 L 32,9.34375 L 32,11.34375 L 8,11.87408 L 8,10 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4828"
|
||||
d="M 8.5,14.602328 L 23.75,14.07552 L 23.75,16.07552 L 8.5,16.38802 L 8.5,14.602328 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4830"
|
||||
d="M 8.75,19.547488 L 28.75,18.994791 L 28.75,20.994791 L 8.75,21.244791 L 8.75,19.547488 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4832"
|
||||
d="M 8.75,24.487285 L 20,24.184589 L 20,26.007812 L 8.75,26.007812 L 8.75,24.487285 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4834"
|
||||
d="M 8.5,29.239583 L 25,28.895833 L 25,30.895833 L 8.6767767,30.583333 L 8.5,29.239583 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4836"
|
||||
d="M 8,33.378064 L 32,33.924479 L 32,35.924479 L 8,34.986979 L 8,33.378064 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 7.625,37.958947 L 22.125,39.03125 L 22.125,41.03125 L 7.625,39.65625 L 7.625,37.958947 z "
|
||||
id="rect3950"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5711);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.5,8.4999999 C 7.7952381,22.050032 6.9944209,31.432483 6,40.75 L 24.5,42.875 L 24.625,38 L 34,38.625 L 34,31.625 L 27.375,31.5 L 27.375,26.375 L 22.5,26.375 L 22.375,23 L 30.375,23 L 30.375,16.875 L 25.875,16.875 L 25.75,13.5 L 34,13.5 L 33.375,7.3749999 L 6.5,8.4999999 z "
|
||||
id="path3957"
|
||||
sodipodi:nodetypes="ccccccccccccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
194
datas/icon-themes/edeneu/scalable/actions/edit-undo.svg
Normal file
@@ -0,0 +1,194 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="edit-undo.svg"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="Etiquette"
|
||||
height="48"
|
||||
width="48"
|
||||
y="00"
|
||||
x="00"
|
||||
version="1.0">
|
||||
<metadata
|
||||
id="About">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:date />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="Etiquette"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-x="111"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<defs
|
||||
id="Gradients">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7471">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7473" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7475" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5714">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5716" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.22317597"
|
||||
offset="1"
|
||||
id="stop5718" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
id="stop2203"
|
||||
offset="0.0000000"
|
||||
style="stop-color:red;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop2205"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#e51a1a;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2183"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2185"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2187"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2183"
|
||||
id="linearGradient2092"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.639991,0,0,0.61393,64.11961,0.543056)"
|
||||
x1="-87.5"
|
||||
y1="-4.839344"
|
||||
x2="-63"
|
||||
y2="39.660656" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient2095"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.628798,0,0,0.613027,63.07863,0.821842)"
|
||||
x1="-95.53125"
|
||||
y1="38.625"
|
||||
x2="-31.945671"
|
||||
y2="38.625" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient5720"
|
||||
x1="11.850758"
|
||||
y1="15.974516"
|
||||
x2="21.3125"
|
||||
y2="29.883089"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1,0,0,1,48,0)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7471"
|
||||
id="radialGradient7477"
|
||||
cx="18"
|
||||
cy="43.5"
|
||||
fx="18"
|
||||
fy="43.5"
|
||||
r="17"
|
||||
gradientTransform="matrix(-1.264705,0,0,0.205882,49.2647,35.54412)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<path
|
||||
style="opacity:0.1;fill:url(#radialGradient7477);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 5,44.5 C 5,46.432 14.632,48 26.5,48 C 38.368,48 48,46.432 48,44.5 C 48,42.568 38.368,41 26.5,41 C 14.632,41 5,42.568 5,44.5 z "
|
||||
id="path6595" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2095);fill-opacity:1;fill-rule:evenodd;stroke:#ab1a1a;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.500021,17.526825 C 9.525996,13.184551 16.461079,8.8422769 22.487057,4.500003 C 22.43466,6.798854 22.539454,9.0977045 22.487057,11.396556 C 41.455797,14.00192 42.695088,34.998093 42.485491,44.500011 C 39.393899,31.013418 29.037038,24.116865 22.487057,24.270122 C 22.434659,26.415715 22.539455,28.56131 22.487057,30.706905 C 16.408675,26.313544 9.578402,21.920184 3.500021,17.526825 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2092);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.600402,17.272641 C 10.306992,13.333258 16.263583,9.393876 21.970174,5.4544935 C 21.916842,7.5009259 22.023506,9.5473583 21.970174,11.59379 C 28.530087,12.361203 32.120038,15.584334 35,18.040053 C 23.266821,22.081757 13.293619,22.132918 4.600402,17.272641 z "
|
||||
id="path3015"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5720);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.499988,17.437982 L 21.421251,6.5000014 L 21.421251,12.051727 C 38.518255,13.961405 41.482254,31.833364 41.482254,38.62501 C 37.304604,27.812747 28.373898,23.01102 21.421251,23.156615 L 21.421251,28.771559 L 5.499988,17.437982 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
324
datas/icon-themes/edeneu/scalable/actions/folder-new.svg
Normal file
@@ -0,0 +1,324 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="folder-new.svg"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/silvestre/Neu/scalable/actions/folder-new.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2871">
|
||||
<stop
|
||||
style="stop-color:#ffa740;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2873" />
|
||||
<stop
|
||||
style="stop-color:#bf731a;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop2875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2865">
|
||||
<stop
|
||||
style="stop-color:#ffa740;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2867" />
|
||||
<stop
|
||||
style="stop-color:#ca6b18;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop2869" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2857">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2859" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.21960784"
|
||||
offset="1"
|
||||
id="stop2861" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10475"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop10477"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop10479"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10457">
|
||||
<stop
|
||||
id="stop10459"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.32291666;" />
|
||||
<stop
|
||||
id="stop10461"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8158">
|
||||
<stop
|
||||
id="stop8160"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.73958331;" />
|
||||
<stop
|
||||
id="stop8162"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5866">
|
||||
<stop
|
||||
id="stop5868"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.61458331;" />
|
||||
<stop
|
||||
id="stop5870"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5098"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5100"
|
||||
offset="0"
|
||||
style="stop-color:#ae5b00;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5102"
|
||||
offset="1"
|
||||
style="stop-color:#ae5b00;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10457"
|
||||
id="radialGradient1351"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(2.110067,0.473919)"
|
||||
cx="24.734711"
|
||||
cy="210.29031"
|
||||
fx="24.734711"
|
||||
fy="210.29031"
|
||||
r="20.929369" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10475"
|
||||
id="linearGradient2837"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.867558,0,0,0.289185,-2.059701,-6.499992)"
|
||||
x1="34.211731"
|
||||
y1="28.907038"
|
||||
x2="37.014332"
|
||||
y2="52.198448" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5866"
|
||||
id="linearGradient2840"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.624329,0,0,0.345144,-2.314271,-2.12809)"
|
||||
x1="30.223124"
|
||||
y1="28.559177"
|
||||
x2="30.810305"
|
||||
y2="95.25663" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2865"
|
||||
id="linearGradient2843"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.527789,0,0,0.427758,-1.911711,-4.317301)"
|
||||
x1="42.137558"
|
||||
y1="68.160683"
|
||||
x2="42.137558"
|
||||
y2="105.10196" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5098"
|
||||
id="linearGradient2845"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.526729,0,0,0.428621,-1.911711,-3.379913)"
|
||||
x1="29.539867"
|
||||
y1="74.338982"
|
||||
x2="7.0335331"
|
||||
y2="73.219803" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8158"
|
||||
id="linearGradient2849"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.483204,0,0,0.47061,-0.287594,-4.714333)"
|
||||
x1="22.531561"
|
||||
y1="95.898132"
|
||||
x2="49.017395"
|
||||
y2="27.309816" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2857"
|
||||
id="linearGradient2863"
|
||||
x1="17.033184"
|
||||
y1="38.662212"
|
||||
x2="56.610294"
|
||||
y2="108.22483"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.413232,0,0,0.402058,-4.298054,-2.649836)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2871"
|
||||
id="linearGradient2877"
|
||||
x1="113.84419"
|
||||
y1="76.00531"
|
||||
x2="113.84419"
|
||||
y2="101.19212"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.415746,0,0,0.415053,-3.953611,-3.858144)" />
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;"
|
||||
offset="0.5"
|
||||
id="stop7481" />
|
||||
<stop
|
||||
id="stop7483"
|
||||
offset="0.75"
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;" />
|
||||
<stop
|
||||
id="stop7477"
|
||||
offset="1"
|
||||
style="stop-color:#fff409;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient4064"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-x="97"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showborder="false"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
transform="matrix(0.461536,7.970305e-2,-7.970305e-2,0.461536,6.234354,-8.204039)"
|
||||
d="M 96.354244 99.660515 A 44.162361 9.9188194 0 1 1 8.0295219,99.660515 A 44.162361 9.9188194 0 1 1 96.354244 99.660515 z"
|
||||
sodipodi:ry="9.9188194"
|
||||
sodipodi:rx="44.162361"
|
||||
sodipodi:cy="99.660515"
|
||||
sodipodi:cx="52.191883"
|
||||
id="path9697"
|
||||
style="opacity:0.60792954;fill:url(#radialGradient1351);fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
id="path2055"
|
||||
d="M 34.575041,4.5023928 L 21.951162,5.6239601 L 20.42861,9.3133249 L 6.8734599,10.420135 L 6.6517297,13.2093 L 0.50239285,13.53396 C 0.50239285,33.31114 2.7671271,37.20551 4.5231137,38.518333 L 39.260952,44.318014 L 39.260952,44.303265 L 39.379211,44.318014 C 42.032532,44.318014 45.292036,20.680098 45.292036,7.2915524 L 36.43758,8.0146686 L 34.575041,4.5023928 z "
|
||||
style="fill:url(#linearGradient2877);fill-opacity:1;fill-rule:evenodd;stroke:#833800;stroke-width:1.00478566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3578"
|
||||
d="M 10.126456,11.837705 L 9.4915145,35.746469 L 37.958071,43.008486 C 39.647915,32.414659 42.233254,24.814663 42.508486,9.4915145 L 10.126456,11.837705 z "
|
||||
style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#dcdcdc;stroke-width:0.983;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path7390"
|
||||
d="M 9.6713914,11.380176 L 9,35.635265 L 38.289732,42.899791 C 40.068337,34.571881 42.980951,21.251458 43,9 L 9.6713914,11.380176 z "
|
||||
style="fill:url(#linearGradient2849);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path8166"
|
||||
d="M 38.748563,15 C 38.005755,24.252525 37.600205,36.288903 39,43.428228 L 33.646542,42.160758 L 30,15.238465 L 38.748563,15 z "
|
||||
style="fill:black;fill-opacity:0.15999995;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path1293"
|
||||
d="M 1.5037443,14.312633 L 34.878393,12.503744 C 35.688696,23.359513 35.581128,36.214574 39.496256,43.496256 L 5.3902843,38.005089 C 2.0283695,32.477141 1.89443,23.428626 1.5037443,14.312633 z "
|
||||
style="fill:url(#linearGradient2843);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2845);stroke-width:1.00748861;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5106"
|
||||
d="M 1,14.911391 C 12.051681,14.448017 22.711228,13.947334 33.762909,13.48396 C 34.334326,21.549683 34.801174,27.227647 36,34 C 22.213497,24.946426 13.720031,21.147409 3.4176172,31.020782 C 2.4810337,25.638554 1.9365825,20.29362 1,14.911391 z "
|
||||
style="opacity:0.52719667;fill:url(#linearGradient2840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path10473"
|
||||
d="M 21,10 L 22.567165,6.0000008 L 34.097014,5 L 36,8.5000001 L 21,10 z "
|
||||
style="fill:url(#linearGradient2837);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2863);stroke-width:0.99536294;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.89699557"
|
||||
d="M 5.4230791,37.689719 C 3.6641529,37.385561 1.7551373,32.948703 1.4976814,14.96677 L 33.659286,13.497682 C 33.903029,24.472601 34.904635,37.575622 37.502319,42.3019 L 5.4230791,37.689719 z "
|
||||
id="path1961"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.94142259;fill:url(#radialGradient4064);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6598"
|
||||
sodipodi:cx="27.930717"
|
||||
sodipodi:cy="18.124739"
|
||||
sodipodi:rx="9.1923885"
|
||||
sodipodi:ry="9.1923885"
|
||||
d="M 37.123106 18.124739 A 9.1923885 9.1923885 0 1 1 18.738329,18.124739 A 9.1923885 9.1923885 0 1 1 37.123106 18.124739 z"
|
||||
transform="matrix(0.979071,0,0,0.979071,11.65384,-6.745405)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
275
datas/icon-themes/edeneu/scalable/actions/format-indent-less.svg
Normal file
@@ -0,0 +1,275 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-indent-less.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4832">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4834" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4836" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4832"
|
||||
id="linearGradient4838"
|
||||
x1="17.646233"
|
||||
y1="30.6875"
|
||||
x2="6.7498207"
|
||||
y2="30.6875"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.297521,1.830214e-16,-1.830214e-16,-1.297521,41.83857,72.67401)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="22.62411"
|
||||
inkscape:cy="16.468788"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="22"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<g
|
||||
id="g3962"
|
||||
transform="matrix(1,0,2.039425e-2,1,-13.57109,-15.75)">
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20,24.414062 L 32,24.007812 L 32,26.007812 L 20,26.070312 L 20,24.414062 z "
|
||||
id="path4832"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20,29.052083 L 32,28.895833 L 32,30.895833 L 20,30.895833 L 20,29.052083 z "
|
||||
id="path4834"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20,33.455729 L 32,33.924479 L 32,35.924479 L 20,35.174479 L 20,33.455729 z "
|
||||
id="path4836"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3950"
|
||||
d="M 20,38 L 32,39.34375 L 32,41.34375 L 20,39.78125 L 20,38 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4838);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 15.704951,30.666775 L 24.808607,40.752602 L 24.808607,35.503304 L 32.755921,36.711567 C 32.33112,32.876902 32.929785,29.31105 33.080301,27.165101 L 24.808607,27.06855 L 24.808607,22.011485 L 15.704951,30.666775 z "
|
||||
id="path3957"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
275
datas/icon-themes/edeneu/scalable/actions/format-indent-more.svg
Normal file
@@ -0,0 +1,275 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-indent-more.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4832">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4834" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4836" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4832"
|
||||
id="linearGradient4838"
|
||||
x1="17.646233"
|
||||
y1="30.6875"
|
||||
x2="6.7498207"
|
||||
y2="30.6875"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.297521,0,0,1.297521,-2.008264,-11.67769)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="22"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<g
|
||||
id="g3962"
|
||||
transform="matrix(1,0,6.118274e-2,1,-1.292087,-15.75)">
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20,24.414062 L 32,24.007812 L 32,26.007812 L 20,26.070312 L 20,24.414062 z "
|
||||
id="path4832"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20,29.052083 L 32,28.895833 L 32,30.895833 L 20,30.895833 L 20,29.052083 z "
|
||||
id="path4834"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20,33.455729 L 32,33.924479 L 32,35.924479 L 20,35.174479 L 20,33.455729 z "
|
||||
id="path4836"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3950"
|
||||
d="M 20,38 L 32,39.34375 L 32,41.34375 L 20,39.78125 L 20,38 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4838);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 22.887913,30.329545 L 15.021694,19.625 L 15.021694,25.139463 L 7.0743802,24.815083 C 7.4991809,28.649748 6.900516,31.508493 6.75,33.654442 L 15.021694,34.546488 L 15.021694,39.25 L 22.887913,30.329545 z "
|
||||
id="path3957"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,298 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-justify-center.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2065">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2067" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2069" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient5888"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient5890"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0.975845,-1.951691)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2065"
|
||||
id="linearGradient5892"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="80.507256"
|
||||
y1="19.19323"
|
||||
x2="84.654594"
|
||||
y2="10.41062" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="27.641521"
|
||||
inkscape:cy="15.552639"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="22"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4826"
|
||||
d="M 8,10 L 32,9.34375 L 32,11.34375 L 8,11.34375 L 8,10 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4828"
|
||||
d="M 12.375,15.04427 L 27.625,14.07552 L 27.625,16.07552 L 12.375,16.38802 L 12.375,15.04427 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4830"
|
||||
d="M 10,19.901041 L 30,18.994791 L 30,20.994791 L 10,21.244791 L 10,19.901041 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4832"
|
||||
d="M 14.375,24.664062 L 25.625,24.007812 L 25.625,26.007812 L 14.375,26.007812 L 14.375,24.664062 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4834"
|
||||
d="M 11.75,29.239583 L 28.25,28.895833 L 28.25,30.895833 L 11.75,30.583333 L 11.75,29.239583 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4836"
|
||||
d="M 8,33.643229 L 32,33.924479 L 32,35.924479 L 8,34.986979 L 8,33.643229 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 12.75,38.3125 L 27.25,39.03125 L 27.25,41.03125 L 12.75,39.65625 L 12.75,38.3125 z "
|
||||
id="rect3950"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,298 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-justify-fill.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2065">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2067" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2069" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient5888"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient5890"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0.975845,-1.951691)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2065"
|
||||
id="linearGradient5892"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="80.507256"
|
||||
y1="19.19323"
|
||||
x2="84.654594"
|
||||
y2="10.41062" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="22"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4826"
|
||||
d="M 8,10 L 32,9.34375 L 32,11.34375 L 8,11.34375 L 8,10 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4828"
|
||||
d="M 8,15.04427 L 32,14.07552 L 32,16.07552 L 8,16.38802 L 8,15.04427 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4830"
|
||||
d="M 8,19.901041 L 32,18.994791 L 32,20.994791 L 8,21.244791 L 8,19.901041 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4832"
|
||||
d="M 8,24.664062 L 32,24.007812 L 32,26.007812 L 8,26.007812 L 8,24.664062 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4834"
|
||||
d="M 8,29.239583 L 32,28.895833 L 32,30.895833 L 8,30.583333 L 8,29.239583 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4836"
|
||||
d="M 8,33.643229 L 32,33.924479 L 32,35.924479 L 8,34.986979 L 8,33.643229 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 8,38 L 32,39.34375 L 32,41.34375 L 8,39.34375 L 8,38 z "
|
||||
id="rect3950"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,298 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-justify-left.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2065">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2067" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2069" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient5888"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient5890"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0.975845,-1.951691)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2065"
|
||||
id="linearGradient5892"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="80.507256"
|
||||
y1="19.19323"
|
||||
x2="84.654594"
|
||||
y2="10.41062" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="22"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4826"
|
||||
d="M 8,10 L 32,9.34375 L 32,11.34375 L 8,11.87408 L 8,10 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4828"
|
||||
d="M 8.5,14.602328 L 23.75,14.07552 L 23.75,16.07552 L 8.5,16.38802 L 8.5,14.602328 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4830"
|
||||
d="M 8.75,19.547488 L 28.75,18.994791 L 28.75,20.994791 L 8.75,21.244791 L 8.75,19.547488 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4832"
|
||||
d="M 8.75,24.487285 L 20,24.184589 L 20,26.007812 L 8.75,26.007812 L 8.75,24.487285 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4834"
|
||||
d="M 8.5,29.239583 L 25,28.895833 L 25,30.895833 L 8.6767767,30.583333 L 8.5,29.239583 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4836"
|
||||
d="M 8,33.378064 L 32,33.924479 L 32,35.924479 L 8,34.986979 L 8,33.378064 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 7.625,37.958947 L 22.125,39.03125 L 22.125,41.03125 L 7.625,39.65625 L 7.625,37.958947 z "
|
||||
id="rect3950"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,298 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-justify-right.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2065">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2067" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2069" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient5888"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient5890"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0.975845,-1.951691)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2065"
|
||||
id="linearGradient5892"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="80.507256"
|
||||
y1="19.19323"
|
||||
x2="84.654594"
|
||||
y2="10.41062" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="22"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4826"
|
||||
d="M 8,10 L 32,9.34375 L 32,11.34375 L 8,11.87408 L 8,10 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4828"
|
||||
d="M 16.625,14.602328 L 31.875,14.07552 L 31.875,16.07552 L 16.625,16.38802 L 16.625,14.602328 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4830"
|
||||
d="M 12,19.547488 L 32,18.994791 L 32,20.994791 L 12,21.244791 L 12,19.547488 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4832"
|
||||
d="M 20.625,24.487285 L 31.875,24.184589 L 31.875,26.007812 L 20.625,26.007812 L 20.625,24.487285 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4834"
|
||||
d="M 15,29.239583 L 31.5,28.895833 L 31.5,30.895833 L 15.176777,30.583333 L 15,29.239583 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path4836"
|
||||
d="M 7.125,33.378064 L 31.125,33.924479 L 31.125,35.924479 L 7.125,34.986979 L 7.125,33.378064 z "
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:0.40167362;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 16.5,37.958947 L 31,39.03125 L 31,41.03125 L 16.5,39.65625 L 16.5,37.958947 z "
|
||||
id="rect3950"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
229
datas/icon-themes/edeneu/scalable/actions/format-text-bold.svg
Normal file
@@ -0,0 +1,229 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-text-bold.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="40"
|
||||
inkscape:window-y="127"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="font-size:84.29850006px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:black;stroke-width:2.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Sans;opacity:0.71548117"
|
||||
d="M 14.051945,25.58431 L 14.051945,35.441154 L 18.947129,35.927316 C 20.588919,36.090371 21.80264,35.808469 22.5883,35.081608 C 23.384007,34.343739 23.781867,33.139886 23.781882,31.470043 C 23.781867,29.788202 23.384007,28.511329 22.5883,27.63942 C 21.80264,26.75652 20.588919,26.233538 18.947129,26.070472 L 14.051945,25.58431 M 14.051945,15.334318 L 14.051945,22.629059 L 18.569413,23.077708 C 20.060117,23.225772 21.168082,23.005445 21.893307,22.416728 C 22.628576,21.817028 22.996218,20.832418 22.996234,19.462895 C 22.996218,18.105421 22.628576,17.053794 21.893307,16.308008 C 21.168082,15.563265 20.060117,15.11686 18.569413,14.968789 L 14.051945,15.334318 M 11.000005,12.039926 L 18.796043,12.000005 C 21.122756,12.231107 22.91564,12.985799 24.174703,14.264085 C 25.433738,15.542418 26.063262,17.244741 26.063278,19.371059 C 26.063262,21.016886 25.740946,22.294316 25.09633,23.203349 C 24.451677,24.112413 23.504877,24.625048 22.25591,24.741258 C 23.756684,25.274742 24.920044,26.195166 25.746,27.502529 C 26.581991,28.798901 26.999993,30.360085 27.000012,32.186086 C 26.999993,34.588733 26.31507,36.37675 24.945243,37.550144 C 23.575381,38.723537 21.626375,39.184692 19.098215,38.933612 L 11.000005,38.129344 L 11.000005,12.039926"
|
||||
id="text1455"
|
||||
sodipodi:nodetypes="cccsscccccccscccccsssccssccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 10 KiB |
228
datas/icon-themes/edeneu/scalable/actions/format-text-italic.svg
Normal file
@@ -0,0 +1,228 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-text-italic.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="82"
|
||||
inkscape:window-y="43"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="font-size:53.326931px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman;opacity:0.71"
|
||||
d="M 17.968022,35.381014 L 17.752267,36 L 11,35.697527 L 11.252057,35.080167 C 11.932682,35.088004 12.390836,35.029237 12.62652,34.90387 C 13.006792,34.728347 13.303971,34.475473 13.518056,34.145251 C 13.85426,33.627943 14.25363,32.694363 14.716166,31.344508 L 19.399086,17.656011 C 19.792984,16.518317 20.028652,15.656693 20.106093,15.071136 C 20.144801,14.778389 20.125125,14.528312 20.047063,14.320907 C 19.968984,14.113545 19.827743,13.954304 19.623337,13.843182 C 19.428472,13.721205 19.020457,13.646292 18.399287,13.618443 L 18.627143,13 L 24.967981,13.284044 L 24.752228,13.903029 C 24.237402,13.868662 23.843785,13.93032 23.571376,14.087999 C 23.178559,14.296965 22.857799,14.605417 22.609101,15.013355 C 22.368447,15.421696 22.004326,16.334201 21.516733,17.750872 L 16.845913,31.439912 C 16.419489,32.700769 16.183199,33.505728 16.137043,33.854797 C 16.09981,34.136307 16.116198,34.380572 16.186205,34.587593 C 16.265759,34.783719 16.407001,34.94296 16.60993,35.065319 C 16.822406,35.176782 17.275103,35.282013 17.968022,35.381014"
|
||||
id="text2187" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.8 KiB |
@@ -0,0 +1,229 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="format-text-underline.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="77"
|
||||
inkscape:window-y="45"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="font-size:74.98667908px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:black;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Sans;opacity:0.75"
|
||||
d="M 25.905527,10.932209 L 23.339892,11.171999 L 23.339892,22.757837 C 23.339877,25.198388 22.971842,26.996036 22.23866,28.141105 C 21.505452,29.276016 20.323875,29.909644 18.688946,30.059419 C 17.045568,30.209973 15.848991,29.78911 15.115801,28.788537 C 14.3826,27.777804 14.026277,26.049639 14.026285,23.609089 L 14.026285,12.023251 L 11.460649,12.26304 L 11.460649,24.232541 C 11.460649,27.201874 12.062947,29.386785 13.27651,30.790777 C 14.4985,32.194 16.303943,32.783709 18.688946,32.565216 C 21.065503,32.347498 22.852659,31.421998 24.066236,29.795651 C 25.288215,28.168538 25.905512,25.871045 25.905527,22.901711 L 25.905527,10.932209 z M 10.5,34.543477 L 10.5,36.725559 L 27.32307,38.5 L 27.463653,35.358761 L 10.5,34.543477 z "
|
||||
id="text2191"
|
||||
sodipodi:nodetypes="cccssscccccscccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.6 KiB |
265
datas/icon-themes/edeneu/scalable/actions/go-bottom.svg
Normal file
@@ -0,0 +1,265 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg10544"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-bottom.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs10546">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6610">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6612" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.53725493"
|
||||
offset="1"
|
||||
id="stop6614" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6602">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.74901962"
|
||||
offset="0"
|
||||
id="stop6604" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6606" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2170">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.46000001"
|
||||
offset="0"
|
||||
id="stop2172" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2174" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2159">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2161" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2163" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2084">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2086" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2088" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop2790" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2792" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11290">
|
||||
<stop
|
||||
style="stop-color:#1fdc49;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11292" />
|
||||
<stop
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop11294" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2788"
|
||||
id="radialGradient2828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.175824,-6.163817e-14,81.60896)"
|
||||
cx="51.752022"
|
||||
cy="99.018867"
|
||||
fx="51.752022"
|
||||
fy="99.018867"
|
||||
r="47.094337" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2084"
|
||||
id="linearGradient2090"
|
||||
x1="-4.8199644"
|
||||
y1="44.156403"
|
||||
x2="86.398415"
|
||||
y2="61.867584"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2159"
|
||||
id="linearGradient2165"
|
||||
x1="50.514881"
|
||||
y1="-1.380053"
|
||||
x2="64.431267"
|
||||
y2="85.045822"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.413374,0,0,0.35786,-4.623609,0.604283)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2170"
|
||||
id="linearGradient2176"
|
||||
x1="73.487869"
|
||||
y1="154.91104"
|
||||
x2="78.663643"
|
||||
y2="89.624825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.34824,0,0,0.367937,-0.893814,2.023696)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4847"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.86923e-2,-0.662477,0.66372,1.226491e-2,-13.98709,52.7129)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient5723"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.544781e-2,-0.549119,0.548515,1.016626e-2,-7.697533,40.14203)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6602"
|
||||
id="linearGradient6608"
|
||||
x1="17.125"
|
||||
y1="4"
|
||||
x2="17.125"
|
||||
y2="26.175789"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6610"
|
||||
id="linearGradient6616"
|
||||
x1="11.375"
|
||||
y1="9"
|
||||
x2="21.593128"
|
||||
y2="34.860977"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="40"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata10549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5723);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:0.99741226;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 8.4659452,7.5727323 C 12.600527,1.8844807 32.014752,2.244306 35.80254,8.0793921 C 39.590326,13.914479 27.00559,32.60485 21.394848,32.500862 C 15.782773,32.396848 4.3313635,13.260985 8.4659452,7.5727323 z "
|
||||
id="path1361"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2176);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 21.63383,43.978449 C 21.63383,43.978449 42.179042,40.741397 41.998821,37.31393 C 41.8186,33.88646 10.820561,34.64812 11.000783,37.123515 C 11.181003,39.598908 16.227195,44.35928 21.63383,43.978449 z "
|
||||
id="path2168"
|
||||
sodipodi:nodetypes="cssc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2060"
|
||||
sodipodi:cx="51.752022"
|
||||
sodipodi:cy="99.018867"
|
||||
sodipodi:rx="47.094337"
|
||||
sodipodi:ry="8.280323"
|
||||
d="M 98.846359 99.018867 A 47.094337 8.280323 0 1 1 4.6576843,99.018867 A 47.094337 8.280323 0 1 1 98.846359 99.018867 z"
|
||||
transform="matrix(-0.339351,0,0,0.362305,38.54361,8.124967)" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient6608);stroke-width:0.93647546;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.2954409,8.2097856 C 13.177421,2.8690573 31.405535,3.2068991 34.961908,8.685491 C 38.51828,14.164084 26.702407,31.712568 21.434453,31.614933 C 16.165248,31.517274 5.4134612,13.550515 9.2954409,8.2097856 z "
|
||||
id="path5727"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4847);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:1.01028585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.5712161,13.420187 C 10.574187,6.557686 34.066003,6.9917918 38.649344,14.031439 C 43.232682,21.071088 28.004761,43.619791 21.215589,43.494336 C 14.424803,43.36885 0.56824381,20.28269 5.5712161,13.420187 z "
|
||||
id="path10552"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<g
|
||||
id="g2080"
|
||||
transform="matrix(0,0.33101,0.33101,0,1.391757,1.305283)"
|
||||
style="fill:url(#linearGradient2090);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient2165);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 37.948295,19.556379 C 37.193848,22.418823 37.012026,25.567217 34.127299,27.444401 C 27.376023,19.969003 12.495659,23.858195 9.988155,28 C 7.763569,25.289418 6.732993,22.789223 6.07285,19.556379 C 5.1297898,10.312695 13.49587,9 22.293493,9 C 31.091117,9 38.702743,11.423893 37.948295,19.556379 z "
|
||||
id="path2157"
|
||||
sodipodi:nodetypes="ccccsc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient6616);stroke-width:0.9541589;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.4839267,14.119066 C 11.208955,7.6378143 33.395671,8.0478031 37.72438,14.696359 C 42.053088,21.344917 27.671164,42.640915 21.259168,42.522428 C 14.845649,42.403915 1.7588966,20.600318 6.4839267,14.119066 z "
|
||||
id="path5725"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 10 KiB |
225
datas/icon-themes/edeneu/scalable/actions/go-down.svg
Normal file
@@ -0,0 +1,225 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg10544"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-down.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs10546">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6610">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6612" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.53725493"
|
||||
offset="1"
|
||||
id="stop6614" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2170">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.46000001"
|
||||
offset="0"
|
||||
id="stop2172" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2174" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2159">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2161" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2163" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2084">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2086" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2088" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop2790" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2792" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11290">
|
||||
<stop
|
||||
style="stop-color:#1fdc49;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11292" />
|
||||
<stop
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop11294" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2788"
|
||||
id="radialGradient2828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.175824,-6.386555e-14,81.60896)"
|
||||
cx="51.752022"
|
||||
cy="99.018867"
|
||||
fx="51.752022"
|
||||
fy="99.018867"
|
||||
r="47.094337" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2084"
|
||||
id="linearGradient2090"
|
||||
x1="-4.8199644"
|
||||
y1="44.156403"
|
||||
x2="86.398415"
|
||||
y2="61.867584"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2159"
|
||||
id="linearGradient2165"
|
||||
x1="50.514881"
|
||||
y1="-1.380053"
|
||||
x2="64.431267"
|
||||
y2="85.045822"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.452128,0,0,0.386112,-5.619572,-3.058537)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2170"
|
||||
id="linearGradient2176"
|
||||
x1="73.487869"
|
||||
y1="154.91104"
|
||||
x2="78.663643"
|
||||
y2="89.624825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.375733,0,0,0.396985,-1.280168,-1.527065)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4847"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.024998e-2,-0.717685,0.71903,1.3287e-2,-15.486,53.439)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6610"
|
||||
id="linearGradient6616"
|
||||
x1="11.375"
|
||||
y1="9"
|
||||
x2="21.593128"
|
||||
y2="34.860977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.088236,0,0,1.088235,-0.441177,-3.794118)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata10549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient2176);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.025975,43.739905 C 23.025975,43.739905 45.193177,40.247297 44.998728,36.54924 C 44.804279,32.85118 11.359026,33.672971 11.553476,36.343792 C 11.747924,39.014611 17.1925,44.150802 23.025975,43.739905 z "
|
||||
id="path2168"
|
||||
sodipodi:nodetypes="cssc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2060"
|
||||
sodipodi:cx="51.752022"
|
||||
sodipodi:cy="99.018867"
|
||||
sodipodi:rx="47.094337"
|
||||
sodipodi:ry="8.280323"
|
||||
d="M 98.846359 99.018867 A 47.094337 8.280323 0 1 1 4.6576843,99.018867 A 47.094337 8.280323 0 1 1 98.846359 99.018867 z"
|
||||
transform="matrix(-0.366142,0,0,0.390908,41.27074,5.055885)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4847);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:1.09447634;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.7021507,10.871869 C 11.122036,3.4374932 36.571503,3.9077745 41.536789,11.534059 C 46.502071,19.160344 30.005158,43.588106 22.650222,43.452197 C 15.293537,43.316254 0.28226419,18.306247 5.7021507,10.871869 z "
|
||||
id="path10552"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<g
|
||||
id="g2080"
|
||||
transform="matrix(0,0.357142,0.357142,0,1.185843,-2.302195)"
|
||||
style="fill:url(#linearGradient2090);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient2165);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 40.943448,17.389777 C 40.118271,20.478204 41.025787,25.066644 37.870616,27.092027 C 30.486408,19.026466 11.998244,22.882274 9.255662,27.351064 C 6.8225206,24.426489 6.8017111,20.877846 6.0796797,17.389777 C 5.0482075,7.4163286 14.198607,5.9999997 23.821008,5.9999997 C 33.44341,5.9999997 41.768624,8.6152527 40.943448,17.389777 z "
|
||||
id="path2157"
|
||||
sodipodi:nodetypes="ccccsc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6616);stroke-width:1.03834951;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.6148613,11.570749 C 11.756803,4.5176212 35.901172,4.9637855 40.611825,12.198978 C 45.322478,19.434174 29.67156,42.609232 22.693801,42.480289 C 15.714383,42.35132 1.4729167,18.623875 6.6148613,11.570749 z "
|
||||
id="path5725"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.5 KiB |
352
datas/icon-themes/edeneu/scalable/actions/go-first.svg
Normal file
@@ -0,0 +1,352 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg10544"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-first.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs10546">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4811">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4813" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.38431373"
|
||||
offset="1"
|
||||
id="stop4815" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop2790" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2792" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2052">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58800000"
|
||||
offset="0"
|
||||
id="stop2054" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11290">
|
||||
<stop
|
||||
style="stop-color:#1fdc49;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11292" />
|
||||
<stop
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop11294" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11282">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.86799997"
|
||||
offset="0"
|
||||
id="stop11284" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop11286" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient11288"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.810789,0,4.794513)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient11296"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.810789,0,4.794513)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient1317"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.891294,5.166569e-2,-3.50149e-2,1.834527,-16.59759,-37.60089)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient1320"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.891294,5.166568e-2,-3.50149e-2,1.834526,-16.59759,-37.60088)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2052"
|
||||
id="linearGradient2058"
|
||||
x1="64.104416"
|
||||
y1="179.75201"
|
||||
x2="68.312668"
|
||||
y2="83.493263"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.391183,0,0,0.467991,1.096021,-3.66822)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2788"
|
||||
id="radialGradient2794"
|
||||
cx="51.752022"
|
||||
cy="99.018867"
|
||||
fx="51.752022"
|
||||
fy="99.018867"
|
||||
r="47.094337"
|
||||
gradientTransform="matrix(1,0,0,0.175824,1.040834e-15,81.60896)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient4817"
|
||||
x1="67.536385"
|
||||
y1="20.097036"
|
||||
x2="67.536385"
|
||||
y2="86.082893"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4824"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.891294,5.166568e-2,-3.50149e-2,1.834526,-16.59759,-37.60088)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient4826"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.891294,5.166569e-2,-3.50149e-2,1.834527,-16.59759,-37.60089)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient4828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="67.536385"
|
||||
y1="20.097036"
|
||||
x2="67.536385"
|
||||
y2="86.082893" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4838"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.891294,5.166568e-2,-3.50149e-2,1.834526,-16.59759,-37.60088)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient4840"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.891294,5.166569e-2,-3.50149e-2,1.834527,-16.59759,-37.60089)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient4842"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="67.536385"
|
||||
y1="20.097036"
|
||||
x2="67.536385"
|
||||
y2="86.082893" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient3953"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="67.536385"
|
||||
y1="20.097036"
|
||||
x2="67.536385"
|
||||
y2="86.082893"
|
||||
gradientTransform="matrix(0.402826,0,0,0.406769,-4.08279,0.424906)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient3956"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.739842,2.095925e-2,-1.369723e-2,0.744214,-9.565781,-15.06452)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient3959"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.738407,2.030051e-2,-1.367065e-2,0.720822,-9.774578,-13.5832)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient4835"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="67.536385"
|
||||
y1="20.097036"
|
||||
x2="67.536385"
|
||||
y2="86.082893"
|
||||
gradientTransform="matrix(0.326615,0,0,0.338974,11.97341,4.604086)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient4839"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.624314,1.799162e-2,-1.155839e-2,0.63884,6.179898,-8.940399)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4843"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.620315,1.709517e-2,-1.148434e-2,0.607009,6.105798,-7.412166)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="48"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false" />
|
||||
<metadata
|
||||
id="metadata10549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2794);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2060"
|
||||
sodipodi:cx="51.752022"
|
||||
sodipodi:cy="99.018867"
|
||||
sodipodi:rx="47.094337"
|
||||
sodipodi:ry="8.280323"
|
||||
d="M 98.846359 99.018867 A 47.094337 8.280323 0 1 1 4.6576843,99.018867 A 47.094337 8.280323 0 1 1 98.846359 99.018867 z"
|
||||
transform="matrix(0.391183,0,0,0.467991,9.396276,-2.215055)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2058);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.40687418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 43.869453,36.922641 C 50.20183,38.211043 43.464704,44.260832 34.383102,45.441168 C 25.301502,46.621502 4.1724188,42.699896 6.1194602,40.951498 C 8.0669633,39.202684 37.537073,35.634238 43.869453,36.922641 z "
|
||||
id="path1322"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4843);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 42.89779,10.474983 C 49.323536,15.050475 48.917058,36.535028 42.325441,40.726743 C 35.733822,44.918457 14.620202,30.991692 14.737675,24.78262 C 14.855176,18.572075 36.472043,5.8994909 42.89779,10.474983 z "
|
||||
id="path4832"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4839);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 42.393987,10.955578 C 48.41663,15.440004 46.743228,27.528517 46.898378,30 C 37.073378,12.336778 15.890324,31.063947 16.000428,24.978453 C 16.110556,18.891516 36.371344,6.4711499 42.393987,10.955578 z "
|
||||
id="path4834"
|
||||
sodipodi:nodetypes="cczz" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4835);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 42.218497,11.082924 C 47.629447,14.325146 48.222862,35.990744 42.202872,39.813715 C 36.182881,43.636685 16.393153,30.496487 16.500439,24.833626 C 16.607749,19.169421 36.747548,7.8047492 42.218497,11.082924 z "
|
||||
id="path4836"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3959);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:1.00000083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 34.021642,7.6577823 C 41.670681,13.091178 41.186821,38.604083 33.340333,43.581744 C 25.493843,48.559403 0.36074507,32.02137 0.50058161,24.648099 C 0.64045138,17.273078 26.372602,2.2243857 34.021642,7.6577823 z "
|
||||
id="path10552"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3956);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 33.349622,8.1131952 C 40.486737,13.337306 38.503678,27.419757 38.687538,30.298899 C 27.044449,9.7222185 1.9415311,31.538338 2.072009,24.449073 C 2.2025179,17.358126 26.212505,2.8890843 33.349622,8.1131952 z "
|
||||
id="path11280"
|
||||
sodipodi:nodetypes="cczz" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3953);stroke-width:1.00000036;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 33.219467,8.1995089 C 39.892972,12.090176 40.62485,38.088892 33.200197,42.676457 C 25.775544,47.264021 1.3682188,31.495783 1.5005374,24.700352 C 1.6328879,17.903305 26.471965,4.2657004 33.219467,8.1995089 z "
|
||||
id="path4809"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
289
datas/icon-themes/edeneu/scalable/actions/go-home.svg
Normal file
@@ -0,0 +1,289 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="go-home.svg"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/silvestre/Neu/scalable/actions/go-home.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient5140"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5142"
|
||||
offset="0"
|
||||
style="stop-color:#2f83e2;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop5144"
|
||||
offset="1"
|
||||
style="stop-color:#145094;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5128">
|
||||
<stop
|
||||
style="stop-color:#003f88;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5130" />
|
||||
<stop
|
||||
style="stop-color:#0052ae;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop5132" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5122">
|
||||
<stop
|
||||
id="stop5124"
|
||||
offset="0"
|
||||
style="stop-color:#2c89ee;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop5126"
|
||||
offset="1"
|
||||
style="stop-color:#2664a9;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2857">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2859" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.21960784"
|
||||
offset="1"
|
||||
id="stop2861" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10475"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop10477"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop10479"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10457">
|
||||
<stop
|
||||
id="stop10459"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.32291666;" />
|
||||
<stop
|
||||
id="stop10461"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8158">
|
||||
<stop
|
||||
id="stop8160"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.73958331;" />
|
||||
<stop
|
||||
id="stop8162"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5866">
|
||||
<stop
|
||||
id="stop5868"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.61458331;" />
|
||||
<stop
|
||||
id="stop5870"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10457"
|
||||
id="radialGradient1351"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(2.110067,0.473919)"
|
||||
cx="24.734711"
|
||||
cy="210.29031"
|
||||
fx="24.734711"
|
||||
fy="210.29031"
|
||||
r="20.929369" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10475"
|
||||
id="linearGradient2837"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.867558,0,0,0.289185,-2.059701,-6.499992)"
|
||||
x1="34.211731"
|
||||
y1="28.907038"
|
||||
x2="37.014332"
|
||||
y2="52.198448" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5866"
|
||||
id="linearGradient2840"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.624329,0,0,0.345144,-2.314271,-2.12809)"
|
||||
x1="30.223124"
|
||||
y1="28.559177"
|
||||
x2="30.810305"
|
||||
y2="95.25663" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5122"
|
||||
id="linearGradient2843"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.527789,0,0,0.427758,-1.911711,-4.317301)"
|
||||
x1="42.137558"
|
||||
y1="68.160683"
|
||||
x2="42.137558"
|
||||
y2="105.10196" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5128"
|
||||
id="linearGradient2845"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.526729,0,0,0.428621,-1.911711,-3.379913)"
|
||||
x1="29.539867"
|
||||
y1="74.338982"
|
||||
x2="7.0335331"
|
||||
y2="73.219803" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8158"
|
||||
id="linearGradient2849"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.483204,0,0,0.47061,-0.287594,-4.714333)"
|
||||
x1="22.531561"
|
||||
y1="95.898132"
|
||||
x2="49.017395"
|
||||
y2="27.309816" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2857"
|
||||
id="linearGradient2863"
|
||||
x1="17.033184"
|
||||
y1="38.662212"
|
||||
x2="56.610294"
|
||||
y2="108.22483"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.413232,0,0,0.402058,-4.298054,-2.649836)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5140"
|
||||
id="linearGradient2877"
|
||||
x1="113.84419"
|
||||
y1="76.00531"
|
||||
x2="113.84419"
|
||||
y2="101.19212"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.415746,0,0,0.415053,-3.953611,-3.858144)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="61"
|
||||
inkscape:window-x="97"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showborder="false"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
transform="matrix(0.461536,7.970305e-2,-7.970305e-2,0.461536,6.234354,-8.204039)"
|
||||
d="M 96.354244 99.660515 A 44.162361 9.9188194 0 1 1 8.0295219,99.660515 A 44.162361 9.9188194 0 1 1 96.354244 99.660515 z"
|
||||
sodipodi:ry="9.9188194"
|
||||
sodipodi:rx="44.162361"
|
||||
sodipodi:cy="99.660515"
|
||||
sodipodi:cx="52.191883"
|
||||
id="path9697"
|
||||
style="opacity:0.60792954;fill:url(#radialGradient1351);fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
id="path2055"
|
||||
d="M 34.575041,4.5023928 L 21.951162,5.6239601 L 20.42861,9.3133249 L 6.8734599,10.420135 L 6.6517297,13.2093 L 0.50239285,13.53396 C 0.50239285,33.31114 2.7671271,37.20551 4.5231137,38.518333 L 39.260952,44.318014 L 39.260952,44.303265 L 39.379211,44.318014 C 42.032532,44.318014 45.292036,20.680098 45.292036,7.2915524 L 36.43758,8.0146686 L 34.575041,4.5023928 z "
|
||||
style="fill:url(#linearGradient2877);fill-opacity:1;fill-rule:evenodd;stroke:#003d83;stroke-width:1.00478566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3578"
|
||||
d="M 10.126456,11.837705 L 9.4915145,35.746469 L 37.958071,43.008486 C 39.647915,32.414659 42.233254,24.814663 42.508486,9.4915145 L 10.126456,11.837705 z "
|
||||
style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#dcdcdc;stroke-width:0.983;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path7390"
|
||||
d="M 9.6713914,11.380176 L 9,35.635265 L 38.289732,42.899791 C 40.068337,34.571881 42.980951,21.251458 43,9 L 9.6713914,11.380176 z "
|
||||
style="fill:url(#linearGradient2849);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path8166"
|
||||
d="M 38.748563,15 C 38.005755,24.252525 37.600205,36.288903 39,43.428228 L 33.646542,42.160758 L 30,15.238465 L 38.748563,15 z "
|
||||
style="fill:black;fill-opacity:0.15999995;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path1293"
|
||||
d="M 1.5037443,14.312633 L 34.878393,12.503744 C 35.688696,23.359513 35.581128,36.214574 39.496256,43.496256 L 5.3902843,38.005089 C 2.0283695,32.477141 1.89443,23.428626 1.5037443,14.312633 z "
|
||||
style="fill:url(#linearGradient2843);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2845);stroke-width:1.007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5106"
|
||||
d="M 1,14.911391 C 12.051681,14.448017 22.711228,13.947334 33.762909,13.48396 C 34.334326,21.549683 34.801174,27.227647 36,34 C 22.213497,24.946426 13.720031,21.147409 3.4176172,31.020782 C 2.4810337,25.638554 1.9365825,20.29362 1,14.911391 z "
|
||||
style="opacity:0.52719667;fill:url(#linearGradient2840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path10473"
|
||||
d="M 21,10 L 22.567165,6.0000008 L 34.097014,5 L 36,8.5000001 L 21,10 z "
|
||||
style="fill:url(#linearGradient2837);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2863);stroke-width:0.99536294;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.89699557"
|
||||
d="M 5.4230791,37.689719 C 3.6641529,37.385561 1.7551373,32.948703 1.4976814,14.96677 L 33.659286,13.497682 C 33.903029,24.472601 34.904635,37.575622 37.502319,42.3019 L 5.4230791,37.689719 z "
|
||||
id="path1961"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
id="path12097"
|
||||
d="M 15.336633,17 L 6,28.979889 L 10.220461,28.921164 L 11.009903,36.672857 L 8.8031263,36.482 L 8.9148494,37.304151 L 27.416376,40 L 27.330029,38.24375 L 23.640925,37.891399 L 22.730031,28.833076 L 29,28.891802 L 15.336633,17 z M 13.8033,30.800362 L 18.798021,30.903131 L 19.572275,37.495006 L 14.592738,37.025206 L 13.8033,30.800362 z "
|
||||
style="fill:white;fill-opacity:0.57333332;fill-rule:evenodd;stroke:none;stroke-width:1.09212577;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
219
datas/icon-themes/edeneu/scalable/actions/go-jump.svg
Normal file
@@ -0,0 +1,219 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-jump.svg"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="Etiquette"
|
||||
height="48"
|
||||
width="48"
|
||||
y="00"
|
||||
x="00"
|
||||
version="1.0">
|
||||
<metadata
|
||||
id="About">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:date />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="Etiquette"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-x="111"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<defs
|
||||
id="Gradients">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6559">
|
||||
<stop
|
||||
style="stop-color:#4ea01c;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6561" />
|
||||
<stop
|
||||
style="stop-color:#4ea01c;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6563" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#41c20c;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
id="stop6557"
|
||||
offset="0.42105263"
|
||||
style="stop-color:#3dbb09;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#2c8507;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7471">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7473" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7475" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5714">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.91416311"
|
||||
offset="0"
|
||||
id="stop5716" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.40772533"
|
||||
offset="1"
|
||||
id="stop5718" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
id="stop2203"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#479214;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop2205"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#3ee407;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient2095"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-0.620703,-0.613027,0,48.67605,-15.31157)"
|
||||
x1="-93.517403"
|
||||
y1="19.253912"
|
||||
x2="-47.049515"
|
||||
y2="41.683594" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient5720"
|
||||
x1="3.4491618"
|
||||
y1="27.5676"
|
||||
x2="36.619328"
|
||||
y2="17.625456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.001019,-0.997079,0,49.47891,-0.54112)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7471"
|
||||
id="radialGradient7477"
|
||||
cx="18"
|
||||
cy="43.5"
|
||||
fx="18"
|
||||
fy="43.5"
|
||||
r="17"
|
||||
gradientTransform="matrix(1.264705,0,0,0.205882,-1.264705,35.54412)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient6555"
|
||||
x1="15.125"
|
||||
y1="19.010838"
|
||||
x2="15.125"
|
||||
y2="12.332324"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.059434,0,0,1.214101,-1.230368,-2.568934)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6559"
|
||||
id="linearGradient6565"
|
||||
x1="21.743534"
|
||||
y1="17.239695"
|
||||
x2="21.743534"
|
||||
y2="20.607468"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.021276,0,0,1.02125,-0.159571,-0.810852)" />
|
||||
</defs>
|
||||
<path
|
||||
style="fill:url(#linearGradient6555);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6565);stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 7.5099624,22.500018 L 20.821767,22.500018 C 20.821767,12.981639 25.929358,9.8624948 28.499997,11.491547 C 22.866788,6.8499599 7.0467603,5.6801305 7.5099624,22.500018 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:0.1;fill:url(#radialGradient7477);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 43,44.5 C 43,46.432 33.368,48 21.5,48 C 9.632,48 0,46.432 0,44.5 C 0,42.568 9.632,41 21.5,41 C 33.368,41 43,42.568 43,44.5 z "
|
||||
id="path6595" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2095);fill-opacity:1;fill-rule:evenodd;stroke:#4ea01c;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 31.971063,43.500019 C 36.313337,37.551622 40.655611,31.44858 44.997885,25.500181 C 42.699034,25.551903 39.775183,25.448458 37.476332,25.500181 C 34.870968,6.7756439 10.383678,1.4678215 7.9925577,17.173363 C 19.320906,2.5695686 26.506023,19.034524 26.352766,25.500181 C 24.207173,25.551904 20.936578,25.448457 18.790983,25.500181 C 23.184344,31.500309 27.577704,37.499891 31.971063,43.500019 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5720);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 32.091859,41.939636 L 42.997889,26.502659 L 36.589937,26.502659 C 34.685837,9.3882334 14.107564,3.3768116 9.437501,14.564174 C 20.450265,2.5404349 27.573961,19.09795 27.573961,26.502659 L 20.791387,26.502659 L 32.091859,41.939636 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.8 KiB |
249
datas/icon-themes/edeneu/scalable/actions/go-last.svg
Normal file
@@ -0,0 +1,249 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg10544"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-last.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs10546">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4811">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4813" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.38431373"
|
||||
offset="1"
|
||||
id="stop4815" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop2790" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2792" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2052">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58800000"
|
||||
offset="0"
|
||||
id="stop2054" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11290">
|
||||
<stop
|
||||
style="stop-color:#1fdc49;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11292" />
|
||||
<stop
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop11294" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11282">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.86799997"
|
||||
offset="0"
|
||||
id="stop11284" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop11286" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2052"
|
||||
id="linearGradient2058"
|
||||
x1="64.104416"
|
||||
y1="179.75201"
|
||||
x2="68.312668"
|
||||
y2="83.493263"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.387711,0,0,0.415493,47.85398,1.206275)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2788"
|
||||
id="radialGradient2794"
|
||||
cx="51.752022"
|
||||
cy="99.018867"
|
||||
fx="51.752022"
|
||||
fy="99.018867"
|
||||
r="47.094337"
|
||||
gradientTransform="matrix(1,0,0,0.175824,1.040834e-15,81.60896)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4865"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.620315,1.709517e-2,-1.148434e-2,0.607009,6.105798,-7.412166)"
|
||||
x1="49.555012"
|
||||
y1="43.560822"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient4867"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.624314,1.799162e-2,-1.155839e-2,0.63884,6.179898,-8.940399)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient4869"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.326615,0,0,0.338974,11.97341,4.604086)"
|
||||
x1="75.190659"
|
||||
y1="23.784636"
|
||||
x2="67.536385"
|
||||
y2="86.082893" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4871"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.738407,2.030051e-2,-1.367065e-2,0.720822,-9.774578,-13.5832)"
|
||||
x1="47.93972"
|
||||
y1="42.468285"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient4873"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.739842,2.095925e-2,-1.369723e-2,0.744214,-9.565781,-15.06452)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient4875"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.402826,0,0,0.406769,-4.08279,0.424906)"
|
||||
x1="67.536385"
|
||||
y1="20.097036"
|
||||
x2="67.536385"
|
||||
y2="86.082893" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="48"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false" />
|
||||
<metadata
|
||||
id="metadata10549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2794);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2060"
|
||||
sodipodi:cx="51.752022"
|
||||
sodipodi:cy="99.018867"
|
||||
sodipodi:rx="47.094337"
|
||||
sodipodi:ry="8.280323"
|
||||
d="M 98.846359 99.018867 A 47.094337 8.280323 0 1 1 4.6576843,99.018867 A 47.094337 8.280323 0 1 1 98.846359 99.018867 z"
|
||||
transform="matrix(0.391183,0,0,0.467991,9.396276,-2.215055)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2058);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.40687418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.4602292,37.243745 C -0.81593849,38.387617 5.8613855,43.758755 14.862374,44.806683 C 23.863361,45.85461 44.804893,42.372921 42.875134,40.820654 C 40.944918,39.268018 11.736399,36.099872 5.4602292,37.243745 z "
|
||||
id="path1322"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<g
|
||||
id="g4845"
|
||||
transform="matrix(-1,0,0,1,48.00002,0)">
|
||||
<path
|
||||
sodipodi:nodetypes="czzz"
|
||||
id="path4832"
|
||||
d="M 42.89779,10.474983 C 49.323536,15.050475 48.917058,36.535028 42.325441,40.726743 C 35.733822,44.918457 14.620202,30.991692 14.737675,24.78262 C 14.855176,18.572075 36.472043,5.8994909 42.89779,10.474983 z "
|
||||
style="fill:url(#linearGradient4865);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cczz"
|
||||
id="path4834"
|
||||
d="M 42.393987,10.955578 C 48.41663,15.440004 46.743228,27.528517 46.898378,30 C 37.073378,12.336778 15.890324,31.063947 16.000428,24.978453 C 16.110556,18.891516 36.371344,6.4711499 42.393987,10.955578 z "
|
||||
style="fill:url(#linearGradient4867);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="czzz"
|
||||
id="path4836"
|
||||
d="M 42.218497,11.082924 C 47.629447,14.325146 48.222862,35.990744 42.202872,39.813715 C 36.182881,43.636685 16.393153,30.496487 16.500439,24.833626 C 16.607749,19.169421 36.747548,7.8047492 42.218497,11.082924 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4869);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="czzz"
|
||||
id="path10552"
|
||||
d="M 34.021642,7.6577823 C 41.670681,13.091178 41.186821,38.604083 33.340333,43.581744 C 25.493843,48.559403 0.36074507,32.02137 0.50058161,24.648099 C 0.64045138,17.273078 26.372602,2.2243857 34.021642,7.6577823 z "
|
||||
style="fill:url(#linearGradient4871);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:1.00000083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cczz"
|
||||
id="path11280"
|
||||
d="M 33.349622,8.1131952 C 40.486737,13.337306 38.503678,27.419757 38.687538,30.298899 C 27.044449,9.7222185 1.9415311,31.538338 2.072009,24.449073 C 2.2025179,17.358126 26.212505,2.8890843 33.349622,8.1131952 z "
|
||||
style="fill:url(#linearGradient4873);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="czzz"
|
||||
id="path4809"
|
||||
d="M 33.219467,8.1995089 C 39.892972,12.090176 40.62485,38.088892 33.200197,42.676457 C 25.775544,47.264021 1.3682188,31.495783 1.5005374,24.700352 C 1.6328879,17.903305 26.471965,4.2657004 33.219467,8.1995089 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4875);stroke-width:1.00000036;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 10 KiB |
200
datas/icon-themes/edeneu/scalable/actions/go-next.svg
Normal file
@@ -0,0 +1,200 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg10544"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-next.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs10546">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4811">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4813" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.38431373"
|
||||
offset="1"
|
||||
id="stop4815" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop2790" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2792" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2052">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58800000"
|
||||
offset="0"
|
||||
id="stop2054" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11290">
|
||||
<stop
|
||||
style="stop-color:#1fdc49;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11292" />
|
||||
<stop
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop11294" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11282">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.86799997"
|
||||
offset="0"
|
||||
id="stop11284" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop11286" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient1317"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.781904,2.230769e-2,1.447595e-2,0.792093,58.1239,-18.48409)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient1320"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.776274,2.136895e-2,1.43717e-2,0.758761,58.30148,-16.6402)"
|
||||
x1="52.205608"
|
||||
y1="42.471607"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2052"
|
||||
id="linearGradient2058"
|
||||
x1="64.104416"
|
||||
y1="179.75201"
|
||||
x2="68.312668"
|
||||
y2="83.493263"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.410725,0,0,0.46743,49.51647,-4.267947)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2788"
|
||||
id="radialGradient2794"
|
||||
cx="51.752022"
|
||||
cy="99.018867"
|
||||
fx="51.752022"
|
||||
fy="99.018867"
|
||||
r="47.094337"
|
||||
gradientTransform="matrix(1,0,0,0.175824,1.772888e-15,81.60896)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient4817"
|
||||
x1="67.536385"
|
||||
y1="20.097036"
|
||||
x2="67.536385"
|
||||
y2="86.082893"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.424599,0,0,0.429368,52.38456,-1.968158)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="48"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata10549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2794);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2060"
|
||||
sodipodi:cx="51.752022"
|
||||
sodipodi:cy="99.018867"
|
||||
sodipodi:rx="47.094337"
|
||||
sodipodi:ry="8.280323"
|
||||
d="M 98.846359 99.018867 A 47.094337 8.280323 0 1 1 4.6576843,99.018867 A 47.094337 8.280323 0 1 1 98.846359 99.018867 z"
|
||||
transform="matrix(-0.410725,0,0,0.49137,40.59867,-4.66397)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2058);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.40687418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6062642,36.274216 C -2.0424508,37.561067 5.0312332,43.603598 14.566511,44.782518 C 24.101788,45.961438 46.286385,42.044538 44.242079,40.298238 C 42.197287,38.551519 11.254981,34.987354 4.6062642,36.274216 z "
|
||||
id="path1322"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1320);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.259308,5.7187267 C 4.2180122,11.438089 4.7266862,38.293768 12.975555,43.533415 C 21.224427,48.773052 47.646395,31.364606 47.499387,23.603268 C 47.352344,15.840089 20.300604,-0.00063700575 12.259308,5.7187267 z "
|
||||
id="path10552"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1317);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.768659,6.1848146 C 5.2257832,11.745027 7.3215842,26.733499 7.1272712,29.79788 C 19.432295,7.8973568 45.96237,31.117058 45.824474,23.571691 C 45.686545,16.024535 20.311536,0.6246008 12.768659,6.1848146 z "
|
||||
id="path11280"
|
||||
sodipodi:nodetypes="cczz" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4817);stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 13.065985,6.2383739 C 6.0317532,10.345194 5.2603152,37.788308 13.086297,42.630742 C 20.912278,47.473177 46.638905,30.828906 46.499434,23.655946 C 46.359929,16.48128 20.178211,2.0860177 13.065985,6.2383739 z "
|
||||
id="path4809"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.6 KiB |
200
datas/icon-themes/edeneu/scalable/actions/go-previous.svg
Normal file
@@ -0,0 +1,200 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg10544"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-previous.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs10546">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4811">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4813" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.38431373"
|
||||
offset="1"
|
||||
id="stop4815" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop2790" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2792" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2052">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58800000"
|
||||
offset="0"
|
||||
id="stop2054" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11290">
|
||||
<stop
|
||||
style="stop-color:#1fdc49;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11292" />
|
||||
<stop
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop11294" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11282">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.86799997"
|
||||
offset="0"
|
||||
id="stop11284" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop11286" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11282"
|
||||
id="linearGradient1317"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.781904,2.230769e-2,-1.447595e-2,0.792093,-10.1239,-18.48409)"
|
||||
x1="39.072777"
|
||||
y1="12.679243"
|
||||
x2="48.6469"
|
||||
y2="66.242584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient1320"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.776274,2.136895e-2,-1.43717e-2,0.758761,-10.30148,-16.6402)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2052"
|
||||
id="linearGradient2058"
|
||||
x1="64.104416"
|
||||
y1="179.75201"
|
||||
x2="68.312668"
|
||||
y2="83.493263"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.410725,0,0,0.46743,-1.516468,-4.267947)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2788"
|
||||
id="radialGradient2794"
|
||||
cx="51.752022"
|
||||
cy="99.018867"
|
||||
fx="51.752022"
|
||||
fy="99.018867"
|
||||
r="47.094337"
|
||||
gradientTransform="matrix(1,0,0,0.175824,2.241263e-15,81.60896)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4811"
|
||||
id="linearGradient4817"
|
||||
x1="67.536385"
|
||||
y1="20.097036"
|
||||
x2="67.536385"
|
||||
y2="86.082893"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.424599,0,0,0.429368,-4.38456,-1.968158)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="48"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata10549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2794);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2060"
|
||||
sodipodi:cx="51.752022"
|
||||
sodipodi:cy="99.018867"
|
||||
sodipodi:rx="47.094337"
|
||||
sodipodi:ry="8.280323"
|
||||
d="M 98.846359 99.018867 A 47.094337 8.280323 0 1 1 4.6576843,99.018867 A 47.094337 8.280323 0 1 1 98.846359 99.018867 z"
|
||||
transform="matrix(0.410725,0,0,0.49137,7.401327,-4.66397)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2058);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.40687418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 43.393734,36.274216 C 50.042449,37.561067 42.968765,43.603598 33.433487,44.782518 C 23.89821,45.961438 1.7136132,42.044538 3.7579196,40.298238 C 5.8027116,38.551519 36.745017,34.987354 43.393734,36.274216 z "
|
||||
id="path1322"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1320);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 35.74069,5.7187267 C 43.781986,11.438089 43.273312,38.293768 35.024443,43.533415 C 26.775571,48.773052 0.35360365,31.364606 0.50061124,23.603268 C 0.6476537,15.840089 27.699394,-0.00063700575 35.74069,5.7187267 z "
|
||||
id="path10552"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1317);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 35.231339,6.1848146 C 42.774215,11.745027 40.678414,26.733499 40.872727,29.79788 C 28.567703,7.8973568 2.0376286,31.117058 2.1755241,23.571691 C 2.3134531,16.024535 27.688462,0.6246008 35.231339,6.1848146 z "
|
||||
id="path11280"
|
||||
sodipodi:nodetypes="cczz" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4817);stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 34.934013,6.2383739 C 41.968245,10.345194 42.739683,37.788308 34.913701,42.630742 C 27.08772,47.473177 1.3610928,30.828906 1.5005644,23.655946 C 1.640069,16.48128 27.821787,2.0860177 34.934013,6.2383739 z "
|
||||
id="path4809"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.6 KiB |
266
datas/icon-themes/edeneu/scalable/actions/go-top.svg
Normal file
@@ -0,0 +1,266 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg10544"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-top.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs10546">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4832">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.61802578"
|
||||
offset="0"
|
||||
id="stop4834" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4836" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6610">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6612" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.53725493"
|
||||
offset="1"
|
||||
id="stop6614" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6602">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.74901962"
|
||||
offset="0"
|
||||
id="stop6604" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6606" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2170">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.46000001"
|
||||
offset="0"
|
||||
id="stop2172" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2174" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2084">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2086" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2088" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop2790" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2792" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11290">
|
||||
<stop
|
||||
style="stop-color:#1fdc49;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11292" />
|
||||
<stop
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop11294" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2788"
|
||||
id="radialGradient2828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.175824,-6.163817e-14,81.60896)"
|
||||
cx="51.752022"
|
||||
cy="99.018867"
|
||||
fx="51.752022"
|
||||
fy="99.018867"
|
||||
r="47.094337" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2084"
|
||||
id="linearGradient2090"
|
||||
x1="-4.8199644"
|
||||
y1="44.156403"
|
||||
x2="86.398415"
|
||||
y2="61.867584"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2170"
|
||||
id="linearGradient2176"
|
||||
x1="73.487869"
|
||||
y1="154.91104"
|
||||
x2="78.663643"
|
||||
y2="89.624825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.34824,0,0,0.367937,-0.893814,2.023696)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4847"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.86923e-2,0.662477,0.66372,-1.226491e-2,-13.98709,-5.7129)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient5723"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.544781e-2,0.549119,0.548515,-1.016626e-2,-7.697533,6.85797)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6602"
|
||||
id="linearGradient6608"
|
||||
x1="8.9759321"
|
||||
y1="10.658385"
|
||||
x2="21.100155"
|
||||
y2="0.23790067"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,47)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6610"
|
||||
id="linearGradient6616"
|
||||
x1="15.747671"
|
||||
y1="45.670807"
|
||||
x2="23.381948"
|
||||
y2="14.289549"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,0,47)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4832"
|
||||
id="linearGradient4838"
|
||||
x1="17.590061"
|
||||
y1="4.5702972"
|
||||
x2="17.590061"
|
||||
y2="23.617346"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="45"
|
||||
inkscape:window-y="40"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata10549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient2176);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 21.63383,43.978449 C 21.63383,43.978449 42.179042,40.741397 41.998821,37.31393 C 41.8186,33.88646 10.820561,34.64812 11.000783,37.123515 C 11.181003,39.598908 16.227195,44.35928 21.63383,43.978449 z "
|
||||
id="path2168"
|
||||
sodipodi:nodetypes="cssc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5723);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:0.99741226;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 8.4659452,39.427268 C 12.600527,45.11552 32.014752,44.755694 35.80254,38.920608 C 39.590326,33.085521 27.00559,14.39515 21.394848,14.499138 C 15.782773,14.603152 4.3313635,33.739015 8.4659452,39.427268 z "
|
||||
id="path1361"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2060"
|
||||
sodipodi:cx="51.752022"
|
||||
sodipodi:cy="99.018867"
|
||||
sodipodi:rx="47.094337"
|
||||
sodipodi:ry="8.280323"
|
||||
d="M 98.846359 99.018867 A 47.094337 8.280323 0 1 1 4.6576843,99.018867 A 47.094337 8.280323 0 1 1 98.846359 99.018867 z"
|
||||
transform="matrix(-0.339351,0,0,0.362305,38.54361,8.124967)" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6608);stroke-width:0.93647546;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.2954409,38.790215 C 13.177421,44.130943 31.405535,43.793101 34.961908,38.314509 C 38.51828,32.835916 26.702407,15.287432 21.434453,15.385067 C 16.165248,15.482726 5.4134612,33.449485 9.2954409,38.790215 z "
|
||||
id="path5727"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4847);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:1.01028585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.5712161,33.579813 C 10.574187,40.442314 34.066003,40.008209 38.649344,32.968561 C 43.232682,25.928912 28.004761,3.3802093 21.215589,3.5056643 C 14.424803,3.6311503 0.56824381,26.71731 5.5712161,33.579813 z "
|
||||
id="path10552"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<g
|
||||
id="g2080"
|
||||
transform="matrix(0,-0.33101,0.33101,0,1.391757,45.69472)"
|
||||
style="fill:url(#linearGradient2090);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6616);stroke-width:0.9541589;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.4839267,32.880934 C 11.208955,39.362186 33.395671,38.952197 37.72438,32.303641 C 42.053088,25.655083 27.671164,4.3590853 21.259168,4.4775723 C 14.845649,4.5960853 1.7588966,26.399682 6.4839267,32.880934 z "
|
||||
id="path5725"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4838);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1.01028585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 21.25,4 C 16.973165,4.0790311 9.8425991,13.542914 6.65625,22 C 14.168255,15.510826 24.887639,16.861914 37.15625,22 C 33.575271,13.521992 25.625373,3.9191488 21.25,4 z "
|
||||
id="path3951"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 10 KiB |
224
datas/icon-themes/edeneu/scalable/actions/go-up.svg
Normal file
@@ -0,0 +1,224 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg10544"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="go-up.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs10546">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4822">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.7081545"
|
||||
offset="0"
|
||||
id="stop4824" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4826" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6610">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6612" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.53725493"
|
||||
offset="1"
|
||||
id="stop6614" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2170">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.46000001"
|
||||
offset="0"
|
||||
id="stop2172" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2174" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2084">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2086" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2088" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2788">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop2790" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2792" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11290">
|
||||
<stop
|
||||
style="stop-color:#1fdc49;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop11292" />
|
||||
<stop
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop11294" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2788"
|
||||
id="radialGradient2828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.175824,-6.386555e-14,81.60896)"
|
||||
cx="51.752022"
|
||||
cy="99.018867"
|
||||
fx="51.752022"
|
||||
fy="99.018867"
|
||||
r="47.094337" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2084"
|
||||
id="linearGradient2090"
|
||||
x1="-4.8199644"
|
||||
y1="44.156403"
|
||||
x2="86.398415"
|
||||
y2="61.867584"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2170"
|
||||
id="linearGradient2176"
|
||||
x1="73.487869"
|
||||
y1="154.91104"
|
||||
x2="78.663643"
|
||||
y2="89.624825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.375733,0,0,0.396985,-1.280168,-1.527065)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4847"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.024998e-2,0.717685,0.71903,-1.3287e-2,-15.486,-4.439)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6610"
|
||||
id="linearGradient6616"
|
||||
x1="16.1719"
|
||||
y1="43.000015"
|
||||
x2="28.495985"
|
||||
y2="13.567402"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.088236,0,0,-1.088235,-0.441177,52.79412)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4822"
|
||||
id="linearGradient4828"
|
||||
x1="21.163227"
|
||||
y1="7.0241718"
|
||||
x2="21.163227"
|
||||
y2="25.576252"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata10549">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient2176);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.025975,43.739905 C 23.025975,43.739905 45.193177,40.247297 44.998728,36.54924 C 44.804279,32.85118 11.359026,33.672971 11.553476,36.343792 C 11.747924,39.014611 17.1925,44.150802 23.025975,43.739905 z "
|
||||
id="path2168"
|
||||
sodipodi:nodetypes="cssc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2060"
|
||||
sodipodi:cx="51.752022"
|
||||
sodipodi:cy="99.018867"
|
||||
sodipodi:rx="47.094337"
|
||||
sodipodi:ry="8.280323"
|
||||
d="M 98.846359 99.018867 A 47.094337 8.280323 0 1 1 4.6576843,99.018867 A 47.094337 8.280323 0 1 1 98.846359 99.018867 z"
|
||||
transform="matrix(-0.366142,0,0,0.390908,41.27074,5.055885)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4847);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:1.09447634;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.7021507,38.128131 C 11.122036,45.562507 36.571503,45.092225 41.536789,37.465941 C 46.502071,29.839656 30.005158,5.4118939 22.650222,5.5478029 C 15.293537,5.6837459 0.28226419,30.693753 5.7021507,38.128131 z "
|
||||
id="path10552"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<g
|
||||
id="g2080"
|
||||
transform="matrix(0,0.357142,0.357142,0,1.185843,-2.302195)"
|
||||
style="fill:url(#linearGradient2090);fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6616);stroke-width:1.03834951;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.6148613,37.429251 C 11.756803,44.482379 35.901172,44.036214 40.611825,36.801022 C 45.322478,29.565826 29.67156,6.3907679 22.693801,6.5197109 C 15.714383,6.6486799 1.4729167,30.376125 6.6148613,37.429251 z "
|
||||
id="path5725"
|
||||
sodipodi:nodetypes="czzz" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4828);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1.09447634;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.65625,6 C 18.601942,6.074919 12.196349,13.903217 8.3125,22 C 17.673278,15.554746 27.984264,18.849119 38.28125,22 C 33.937817,13.852136 26.806225,5.9233142 22.65625,6 z "
|
||||
id="path3944"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.2 KiB |
247
datas/icon-themes/edeneu/scalable/actions/help-about.svg
Normal file
@@ -0,0 +1,247 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
viewBox="0 0 256 256"
|
||||
overflow="visible"
|
||||
enable-background="new 0 0 256 256"
|
||||
xml:space="preserve"
|
||||
id="svg153"
|
||||
sodipodi:version="0.32"
|
||||
sodipodi:docname="help-about.svg"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"><metadata
|
||||
id="metadata1">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</cc:Work>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</metadata>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<defs
|
||||
id="defs185"><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3332"><stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3334" /><stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39055794"
|
||||
offset="1"
|
||||
id="stop3336" /></linearGradient><linearGradient
|
||||
id="linearGradient2068"><stop
|
||||
style="stop-color:#000000;stop-opacity:0.25000000;"
|
||||
offset="0.0000000"
|
||||
id="stop2070" /><stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2072" /></linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2058"><stop
|
||||
style="stop-color:#000000;stop-opacity:0.40000001"
|
||||
offset="0"
|
||||
id="stop2060" /><stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2062" /></linearGradient><linearGradient
|
||||
id="linearGradient1733">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.76991153;"
|
||||
offset="0.0000000"
|
||||
id="stop1734" />
|
||||
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop1735" />
|
||||
|
||||
</linearGradient><linearGradient
|
||||
id="linearGradient1726">
|
||||
<stop
|
||||
style="stop-color:#fffb00;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop1727" />
|
||||
|
||||
|
||||
|
||||
<stop
|
||||
style="stop-color:#ff9c00;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop1728" />
|
||||
|
||||
|
||||
|
||||
</linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1726"
|
||||
id="linearGradient1729"
|
||||
gradientTransform="matrix(1.123462,0,0,1.095832,109.2091,110.1538)"
|
||||
x1="-92.666512"
|
||||
y1="13.852016"
|
||||
x2="65.537048"
|
||||
y2="-66.763206"
|
||||
gradientUnits="userSpaceOnUse" /><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1733"
|
||||
id="linearGradient1736"
|
||||
gradientTransform="matrix(1.043949,0,0,0.992671,0.32662,-1.918617)"
|
||||
x1="113.35806"
|
||||
y1="27.176409"
|
||||
x2="183.60414"
|
||||
y2="168.9727"
|
||||
gradientUnits="userSpaceOnUse" /><radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2068"
|
||||
id="radialGradient2074"
|
||||
cx="134.22906"
|
||||
cy="230.49648"
|
||||
fx="134.22906"
|
||||
fy="230.49648"
|
||||
r="104.69867"
|
||||
gradientTransform="matrix(1,0,0,0.179487,0,189.1253)"
|
||||
gradientUnits="userSpaceOnUse" /><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3332"
|
||||
id="linearGradient3338"
|
||||
x1="82.550873"
|
||||
y1="45.260372"
|
||||
x2="149.66541"
|
||||
y2="207.01248"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.052747,0,0,1.048268,-4.944189,-2.791577)" /><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2058"
|
||||
id="linearGradient4824"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="26.264706"
|
||||
y1="55.960724"
|
||||
x2="32.493938"
|
||||
y2="29.247835" /></defs>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="843"
|
||||
inkscape:window-height="556"
|
||||
inkscape:window-x="94"
|
||||
inkscape:window-y="64"
|
||||
inkscape:current-layer="svg153"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<path
|
||||
transform="translate(-2.684581,1.342291)"
|
||||
style="color:black;fill:url(#radialGradient2074);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.43375301;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.4;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;opacity:0.7"
|
||||
d="M 238.92773,230.49648 C 238.92773,240.8697 192.02273,249.28854 134.22906,249.28854 C 76.435399,249.28854 29.530396,240.8697 29.530396,230.49648 C 29.530396,220.12325 76.435399,211.70441 134.22906,211.70441 C 192.02273,211.70441 238.92773,220.12325 238.92773,230.49648 z "
|
||||
id="path2066" /><g
|
||||
id="Layer_2"
|
||||
transform="matrix(0.969291,0,0,0.969291,9.644135,15.8837)"
|
||||
style="stroke:black">
|
||||
<path
|
||||
d="M 256,256 L 0,256 L 0,0 L 256,0 L 256,256 z "
|
||||
id="path183"
|
||||
style="fill:none;stroke:none" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</g>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<path
|
||||
style="fill:url(#linearGradient4824);fill-opacity:1;stroke:none;stroke-width:5.28000021;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.8"
|
||||
d="M 38.8125 28 L 26.90625 33.9375 L 10.375 34.9375 L 18.03125 39.5 L 10 46 L 26.625 42.875 L 38.1875 45.90625 L 40.8125 39.40625 L 48 37.21875 L 48 34.3125 L 41.03125 33.875 L 38.8125 28 z "
|
||||
transform="scale(5.333333,5.333333)"
|
||||
id="path1102" />
|
||||
|
||||
|
||||
|
||||
<path
|
||||
style="fill:url(#linearGradient1729);fill-opacity:1;stroke:#ff9800;stroke-width:5.33333349;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 204.13171,241.29814 L 129.35059,202.01344 L 55.273836,242.66668 L 68.742551,157.88034 L 7.9999984,98.480474 L 91.105251,85.364341 L 127.64105,7.9999593 L 165.53419,84.680075 L 248.8571,96.266134 L 189.17111,156.77318 L 204.13171,241.29814 z "
|
||||
id="path1725" />
|
||||
|
||||
|
||||
|
||||
<path
|
||||
style="fill:url(#linearGradient1736);fill-opacity:1;stroke:none;stroke-width:5.7209754;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 71.13535,154.66667 L 16,100.59508 L 93.638034,88.56676 L 127.83648,16 L 165.11149,87.894761 L 240.85036,99.273128 C 227.38816,110.26939 223.74228,121.26564 210.28008,132.26191 C 128.31601,105.62228 99.72567,121.44696 71.13535,154.66667 z "
|
||||
id="path1107"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient3338);stroke-width:5.3333354;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.77682405"
|
||||
d="M 196.72866,230.78885 L 128.83716,196.02105 L 61.585148,232.00004 L 73.81298,156.96232 L 18.666676,102.27771 L 94.643071,90.509431 L 127.95062,18.666671 L 163.01817,90.266795 L 237.33347,100.26951 L 183.14638,155.98245 L 196.72866,230.78885 z "
|
||||
id="path3331"
|
||||
sodipodi:nodetypes="ccccccccccc" /></svg>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
164
datas/icon-themes/edeneu/scalable/actions/list-add.svg
Normal file
@@ -0,0 +1,164 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
viewBox="0 0 256 256"
|
||||
overflow="visible"
|
||||
enable-background="new 0 0 256 256"
|
||||
xml:space="preserve"
|
||||
id="svg153"
|
||||
sodipodi:version="0.32"
|
||||
sodipodi:docname="list-add.svg"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"><metadata
|
||||
id="metadata1">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</cc:Work>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</metadata>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<defs
|
||||
id="defs185"><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5085"><stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5087" /><stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.60085839"
|
||||
offset="1"
|
||||
id="stop5089" /></linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2793"><stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2795" /><stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2797" /></linearGradient><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2793"
|
||||
id="linearGradient2799"
|
||||
x1="128.18875"
|
||||
y1="86.200233"
|
||||
x2="189.93413"
|
||||
y2="206.33525"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.463366,0,0,1.470674,-137.9572,-121.1299)" /><linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5085"
|
||||
id="linearGradient5091"
|
||||
x1="134.90021"
|
||||
y1="53.314114"
|
||||
x2="134.90021"
|
||||
y2="194.2787"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.092463,0,0,1.081621,-12.35209,-13.17197)" /></defs>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26"
|
||||
inkscape:current-layer="svg153"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<path
|
||||
style="color:black;fill:#13d913;fill-opacity:1;fill-rule:evenodd;stroke:#0aa30a;stroke-width:5.3333354;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 98.719698,29.333341 L 98.719698,98.694632 L 29.333349,98.694632 L 29.333349,157.31747 L 98.719698,157.31747 L 98.719698,226.66666 L 157.34408,226.66666 L 157.34408,157.31747 L 226.66682,157.31747 L 226.66682,98.694632 L 157.34408,98.694632 L 157.34408,29.333341 L 98.719698,29.333341 z "
|
||||
id="rect1332"
|
||||
sodipodi:nodetypes="ccccccccccccc" /><path
|
||||
style="color:black;fill:url(#linearGradient2799);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:11.3726759;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 101.54538,32 L 101.54538,101.40361 L 32.025623,101.40361 L 32.025623,154.66667 L 88.660799,154.66667 C 107.95873,117.4994 172.5536,111.43573 208,101.40361 L 154.61222,101.40361 L 154.61222,32 L 101.54538,32 z "
|
||||
id="path2791"
|
||||
sodipodi:nodetypes="ccccccccc" /><path
|
||||
style="opacity:0.76987448;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5091);stroke-width:5.33333397;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 104.06462,34.666675 L 104.06462,104.06371 L 34.666666,104.06371 L 34.666666,152.01278 L 104.06462,152.01278 L 104.06462,221.33335 L 152.01316,221.33335 L 152.01316,152.01278 L 221.28281,152.01278 L 221.28281,104.06371 L 152.01316,104.06371 L 152.01316,34.666675 L 104.06462,34.666675 z "
|
||||
id="path4210"
|
||||
sodipodi:nodetypes="ccccccccccccc" /></svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
143
datas/icon-themes/edeneu/scalable/actions/list-remove.svg
Normal file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="list-remove.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4805">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4807" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4809" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4794">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.79607844"
|
||||
offset="0"
|
||||
id="stop4796" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.32549021"
|
||||
offset="1"
|
||||
id="stop4798" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4794"
|
||||
id="linearGradient4800"
|
||||
x1="18.6875"
|
||||
y1="17.804411"
|
||||
x2="18.6875"
|
||||
y2="26.501329"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4805"
|
||||
id="linearGradient4811"
|
||||
x1="23.25"
|
||||
y1="17.73012"
|
||||
x2="23.25"
|
||||
y2="26.912659"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="42.015264"
|
||||
inkscape:cy="24.618294"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="64"
|
||||
inkscape:window-y="37" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="opacity:1;fill:black;fill-opacity:0.19742491;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect5688"
|
||||
width="43"
|
||||
height="11"
|
||||
x="4"
|
||||
y="20"
|
||||
rx="3.8194444"
|
||||
ry="3.8194444" />
|
||||
<rect
|
||||
style="opacity:1;fill:black;fill-opacity:0.19742491;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4813"
|
||||
width="42"
|
||||
height="10"
|
||||
x="4"
|
||||
y="20"
|
||||
rx="3.3472221"
|
||||
ry="3.3472221" />
|
||||
<rect
|
||||
style="opacity:1;fill:#dc0000;fill-opacity:1;stroke:#9c0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect3917"
|
||||
width="41"
|
||||
height="9"
|
||||
x="3.5"
|
||||
y="19.5"
|
||||
rx="2"
|
||||
ry="2" />
|
||||
<rect
|
||||
style="opacity:1;fill:none;fill-opacity:1.0;stroke:url(#linearGradient4800);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4792"
|
||||
width="39.000011"
|
||||
height="7.000001"
|
||||
x="4.5"
|
||||
y="20.50001"
|
||||
rx="1.0555558"
|
||||
ry="1.0555558" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4811);fill-opacity:1.0;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 5.5277777,20 L 42.472222,20 C 43.318611,20 44,20.681389 44,21.527778 L 44,24.017067 L 4,24.017067 L 4,21.527778 C 4,20.681389 4.6813888,20 5.5277777,20 z "
|
||||
id="rect4802"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
370
datas/icon-themes/edeneu/scalable/actions/mail-forward.svg
Normal file
@@ -0,0 +1,370 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="mail-forward.svg">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8448">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8450" />
|
||||
<stop
|
||||
style="stop-color:#cecece;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8452" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7493"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7495"
|
||||
offset="0"
|
||||
style="stop-color:#9a9a9a;stop-opacity:0.81568629" />
|
||||
<stop
|
||||
id="stop7497"
|
||||
offset="1"
|
||||
style="stop-color:#686868;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7463">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7465" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7467" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6569">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6571" />
|
||||
<stop
|
||||
style="stop-color:#c4c4c4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6557">
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6559" />
|
||||
<stop
|
||||
style="stop-color:#cacaca;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6561" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#f5f5f5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7538"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7540"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient7555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872"
|
||||
gradientTransform="matrix(0.953212,0,0,1,8.208847e-2,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient7561"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.02464,0,0,0.994048,-9.648473e-2,0.270811)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8448"
|
||||
id="linearGradient8454"
|
||||
x1="33.872341"
|
||||
y1="13.361703"
|
||||
x2="33.872341"
|
||||
y2="25.492441"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient8456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.87501,-0.245431,0.246258,0.962063,0.236188,-5.708788e-8)"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.264705,0,0,0.205882,-1.264705,35.54412)"
|
||||
r="17"
|
||||
fy="43.5"
|
||||
fx="18"
|
||||
cy="43.5"
|
||||
cx="18"
|
||||
id="radialGradient7477"
|
||||
xlink:href="#linearGradient7471"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="3.4782896"
|
||||
x2="22.233736"
|
||||
y1="47.382812"
|
||||
x1="22.233736"
|
||||
id="linearGradient5720"
|
||||
xlink:href="#linearGradient5714"
|
||||
inkscape:collect="always"
|
||||
gradientTransform="matrix(0.978259,0,0,-0.98122,0.538241,48.704)" />
|
||||
<linearGradient
|
||||
y2="38.625"
|
||||
x2="-31.945671"
|
||||
y1="38.625"
|
||||
x1="-84.582184"
|
||||
gradientTransform="matrix(-0.626197,0,0,-0.613027,-14.83216,48.1782)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient2095"
|
||||
xlink:href="#linearGradient2201"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="39.660656"
|
||||
x2="-63"
|
||||
y1="-4.1462164"
|
||||
x1="-69.015701"
|
||||
gradientTransform="matrix(-0.631387,0,0,0.624402,-14.71907,15.26568)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient2092"
|
||||
xlink:href="#linearGradient2183"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2183">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2185" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2187" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
style="stop-color:#ff8300;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop2203" />
|
||||
<stop
|
||||
style="stop-color:#ffc500;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2205" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5714"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5716"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5718"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.22317597" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7471"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7473"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:current-layer="g3999"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="84"
|
||||
inkscape:window-y="90"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#linearGradient7561);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651161,17.666656 C 2.4651161,17.666656 18.654739,1.5000001 23.982569,1.5000001 C 29.491431,1.5000001 45.50002,17.666656 45.50002,17.666656 L 45.50002,43.776608 L 42.520506,45.500012 L 2.4651161,42.308523 L 2.4651161,17.666656 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="czccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient8456);fill-opacity:1;stroke:#c6c6c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953316,20.935076 L 33.468134,12.499987 L 39.500025,36.064921 L 9.4272224,42.031924 L 3.3953316,20.935076 z "
|
||||
id="rect6567"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient7555);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651177,18.171482 C 2.4651177,17.423073 4.1900548,17.192726 5.1118011,18.171482 C 9.0354466,22.341089 12.229746,30.055122 15.241463,31.879287 C 19.05685,34.190227 25.55437,33.991136 29.041056,31.879287 C 32.249139,29.936185 35.405099,22.876998 39.833041,18.171482 C 40.700603,17.250261 42.500017,17.302446 42.500017,18.171482 L 42.500017,45.500004 L 2.4651177,42.351068 L 2.4651177,18.171482 z "
|
||||
id="rect3925"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.395347,19.12352 C 3.395347,18.428568 4.0845015,18.464675 4.9618063,19.37352 C 8.6962763,23.245299 11.97472,31.283332 14.841228,32.9772 C 18.47266,35.123074 26.085832,34.938204 29.40441,32.9772 C 32.457817,31.172891 35.759308,24.180429 39.973761,19.81102 C 40.799493,18.9556 41.499994,18.316557 41.499994,19.12352 L 41.499994,44.500013 L 3.395347,41.436183 L 3.395347,19.12352 z "
|
||||
id="path6565"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953466,17.931804 C 3.4162732,18.130607 17.963593,4.032047 23.154777,2.5441943 C 28.032521,2.5441943 41.499994,17.931804 41.499994,17.931804 L 41.499994,44.500002 L 3.3953466,41.436172 L 3.3953466,17.931804 z "
|
||||
id="path6582"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
id="g7479"
|
||||
transform="matrix(0.930232,0,0,1,0.139535,0)">
|
||||
<path
|
||||
id="path6586"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7538);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6588"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7540);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g7483"
|
||||
transform="matrix(-0.930232,0,0,1,44.97047,0)">
|
||||
<path
|
||||
id="path7485"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7542);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path7487"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7544);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient8454);fill-opacity:1.0;stroke:none;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:1"
|
||||
d="M 24,2 C 23.410136,2 22.66791,2.2019884 21.84375,2.5625 C 22.080153,2.5094367 22.296677,2.5 22.5,2.5 C 27.492357,2.4999999 42,18.09375 42,18.09375 L 42,44.957446 L 42.326738,45.055334 L 45,43.468085 L 45,17.8125 C 45,17.8125 29.376384,2 24,2 z "
|
||||
id="path7564"
|
||||
sodipodi:nodetypes="ccscccccc" />
|
||||
<g
|
||||
id="g3999"
|
||||
transform="matrix(0.795455,0,0,0.793104,10,9.931009)">
|
||||
<path
|
||||
id="path6595"
|
||||
d="M 43,44.5 C 43,46.432 33.368,48 21.5,48 C 9.632,48 0,46.432 0,44.5 C 0,42.568 9.632,41 21.5,41 C 33.368,41 43,42.568 43,44.5 z "
|
||||
style="opacity:0.1;fill:url(#radialGradient7477);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path1381"
|
||||
d="M 44.499976,31.473218 C 38.49893,35.815492 31.592537,40.157766 25.591489,44.50004 C 25.643669,42.201189 25.539309,39.902339 25.591489,37.603487 C 6.7012222,34.998123 5.4670586,14.00195 5.6757887,4.5000324 C 8.7545904,17.986625 19.068605,24.883178 25.591489,24.729921 C 25.64367,22.584328 25.539308,20.438733 25.591489,18.293138 C 31.644725,22.686499 38.446741,27.079859 44.499976,31.473218 z "
|
||||
style="fill:url(#linearGradient2095);fill-opacity:1;fill-rule:evenodd;stroke:#dc6800;stroke-width:1.25900519;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3015"
|
||||
d="M 43.304535,31.475796 C 37.674663,27.469223 32.493592,24.267461 26.86372,20.260888 C 26.916335,22.342225 26.811105,23.99077 26.86372,26.072107 C 21.651431,25.727355 17.773893,24.850679 14.680763,21.289225 C 14.249604,38.037326 34.728188,36.41897 43.304535,31.475796 z "
|
||||
style="fill:url(#linearGradient2092);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path4839"
|
||||
d="M 42.11428,31.593509 L 26.539153,42.326078 L 26.539153,36.878611 C 9.8138477,35.004797 6.9142876,17.468468 6.9142876,10.804366 C 11.001113,21.413578 19.73766,26.12513 26.539153,25.98227 L 26.539153,20.472772 L 42.11428,31.593509 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5720);stroke-width:1.25900483;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.84100418" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
298
datas/icon-themes/edeneu/scalable/actions/mail-message-new.svg
Normal file
@@ -0,0 +1,298 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="mail-message-new.svg">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8448">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8450" />
|
||||
<stop
|
||||
style="stop-color:#cecece;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8452" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7493"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7495"
|
||||
offset="0"
|
||||
style="stop-color:#9a9a9a;stop-opacity:0.81568629" />
|
||||
<stop
|
||||
id="stop7497"
|
||||
offset="1"
|
||||
style="stop-color:#686868;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7463">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7465" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7467" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6569">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6571" />
|
||||
<stop
|
||||
style="stop-color:#c4c4c4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6557">
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6559" />
|
||||
<stop
|
||||
style="stop-color:#cacaca;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6561" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#f5f5f5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7538"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7540"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient7555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872"
|
||||
gradientTransform="matrix(0.953212,0,0,1,8.208847e-2,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient7561"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.02464,0,0,0.994048,-9.648473e-2,0.270811)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8448"
|
||||
id="linearGradient8454"
|
||||
x1="33.872341"
|
||||
y1="13.361703"
|
||||
x2="33.872341"
|
||||
y2="25.492441"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient8456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.87501,-0.245431,0.246258,0.962063,0.236188,-5.708788e-8)"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
id="stop4018"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;"
|
||||
offset="0.5"
|
||||
id="stop7481" />
|
||||
<stop
|
||||
id="stop7483"
|
||||
offset="0.75"
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;" />
|
||||
<stop
|
||||
id="stop7477"
|
||||
offset="1"
|
||||
style="stop-color:#fff409;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient4087"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="5"
|
||||
inkscape:window-y="66"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#linearGradient7561);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651161,17.666656 C 2.4651161,17.666656 18.654739,1.5000001 23.982569,1.5000001 C 29.491431,1.5000001 45.50002,17.666656 45.50002,17.666656 L 45.50002,43.776608 L 42.520506,45.500012 L 2.4651161,42.308523 L 2.4651161,17.666656 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="czccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient8456);fill-opacity:1;stroke:#c6c6c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953316,20.935076 L 33.468134,12.499987 L 39.500025,36.064921 L 9.4272224,42.031924 L 3.3953316,20.935076 z "
|
||||
id="rect6567"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient7555);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651177,18.171482 C 2.4651177,17.423073 4.1900548,17.192726 5.1118011,18.171482 C 9.0354466,22.341089 12.229746,30.055122 15.241463,31.879287 C 19.05685,34.190227 25.55437,33.991136 29.041056,31.879287 C 32.249139,29.936185 35.405099,22.876998 39.833041,18.171482 C 40.700603,17.250261 42.500017,17.302446 42.500017,18.171482 L 42.500017,45.500004 L 2.4651177,42.351068 L 2.4651177,18.171482 z "
|
||||
id="rect3925"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.395347,19.12352 C 3.395347,18.428568 4.0845015,18.464675 4.9618063,19.37352 C 8.6962763,23.245299 11.97472,31.283332 14.841228,32.9772 C 18.47266,35.123074 26.085832,34.938204 29.40441,32.9772 C 32.457817,31.172891 35.759308,24.180429 39.973761,19.81102 C 40.799493,18.9556 41.499994,18.316557 41.499994,19.12352 L 41.499994,44.500013 L 3.395347,41.436183 L 3.395347,19.12352 z "
|
||||
id="path6565"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953466,17.931804 C 3.4162732,18.130607 17.963593,4.032047 23.154777,2.5441943 C 28.032521,2.5441943 41.499994,17.931804 41.499994,17.931804 L 41.499994,44.500002 L 3.3953466,41.436172 L 3.3953466,17.931804 z "
|
||||
id="path6582"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
id="g7479"
|
||||
transform="matrix(0.930232,0,0,1,0.139535,0)">
|
||||
<path
|
||||
id="path6586"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7538);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6588"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7540);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g7483"
|
||||
transform="matrix(-0.930232,0,0,1,44.97047,0)">
|
||||
<path
|
||||
id="path7485"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7542);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path7487"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7544);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient8454);fill-opacity:1.0;stroke:none;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:1"
|
||||
d="M 24,2 C 23.410136,2 22.66791,2.2019884 21.84375,2.5625 C 22.080153,2.5094367 22.296677,2.5 22.5,2.5 C 27.492357,2.4999999 42,18.09375 42,18.09375 L 42,44.957446 L 42.326738,45.055334 L 45,43.468085 L 45,17.8125 C 45,17.8125 29.376384,2 24,2 z "
|
||||
id="path7564"
|
||||
sodipodi:nodetypes="ccscccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#radialGradient4087);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6598"
|
||||
sodipodi:cx="27.930717"
|
||||
sodipodi:cy="18.124739"
|
||||
sodipodi:rx="9.1923885"
|
||||
sodipodi:ry="9.1923885"
|
||||
d="M 37.123106 18.124739 A 9.1923885 9.1923885 0 1 1 18.738329,18.124739 A 9.1923885 9.1923885 0 1 1 37.123106 18.124739 z"
|
||||
transform="matrix(0.979071,0,0,0.979071,4.653843,-3.745407)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
508
datas/icon-themes/edeneu/scalable/actions/mail-reply-all.svg
Normal file
@@ -0,0 +1,508 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="mail-reply-all.svg">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5766">
|
||||
<stop
|
||||
style="stop-color:#2ba01c;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5768" />
|
||||
<stop
|
||||
style="stop-color:#2ba01c;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop5770" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5758">
|
||||
<stop
|
||||
id="stop5760"
|
||||
offset="0"
|
||||
style="stop-color:#21c20c;stop-opacity:0" />
|
||||
<stop
|
||||
style="stop-color:#1ebb09;stop-opacity:1;"
|
||||
offset="0.42105263"
|
||||
id="stop5762" />
|
||||
<stop
|
||||
id="stop5764"
|
||||
offset="1"
|
||||
style="stop-color:#158507;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5744">
|
||||
<stop
|
||||
id="stop5746"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#229214;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop5748"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#21e407;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8448">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8450" />
|
||||
<stop
|
||||
style="stop-color:#cecece;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8452" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7493"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7495"
|
||||
offset="0"
|
||||
style="stop-color:#9a9a9a;stop-opacity:0.81568629" />
|
||||
<stop
|
||||
id="stop7497"
|
||||
offset="1"
|
||||
style="stop-color:#686868;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7463">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7465" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7467" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6569">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6571" />
|
||||
<stop
|
||||
style="stop-color:#c4c4c4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6557">
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6559" />
|
||||
<stop
|
||||
style="stop-color:#cacaca;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6561" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#f5f5f5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7538"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7540"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient7555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872"
|
||||
gradientTransform="matrix(0.953212,0,0,1,8.208847e-2,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient7561"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.02464,0,0,0.994048,-9.648473e-2,0.270811)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8448"
|
||||
id="linearGradient8454"
|
||||
x1="33.872341"
|
||||
y1="13.361703"
|
||||
x2="33.872341"
|
||||
y2="25.492441"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient8456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.87501,-0.245431,0.246258,0.962063,0.236188,-5.708788e-8)"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(1.021276,0,0,1.02125,-0.159571,-0.810852)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="20.607468"
|
||||
x2="21.743534"
|
||||
y1="17.239695"
|
||||
x1="21.743534"
|
||||
id="linearGradient6565"
|
||||
xlink:href="#linearGradient6559"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(1.059434,0,0,1.214101,-1.230368,-2.568934)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="12.332324"
|
||||
x2="15.125"
|
||||
y1="19.010838"
|
||||
x1="15.125"
|
||||
id="linearGradient6555"
|
||||
xlink:href="#linearGradient3992"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.264705,0,0,0.205882,-1.264705,35.54412)"
|
||||
r="17"
|
||||
fy="43.5"
|
||||
fx="18"
|
||||
cy="43.5"
|
||||
cx="18"
|
||||
id="radialGradient7477"
|
||||
xlink:href="#linearGradient7471"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0,1.001019,-0.997079,0,49.47891,-0.54112)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="17.625456"
|
||||
x2="36.619328"
|
||||
y1="27.5676"
|
||||
x1="3.4491618"
|
||||
id="linearGradient5720"
|
||||
xlink:href="#linearGradient5714"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="41.683594"
|
||||
x2="-47.049515"
|
||||
y1="19.253912"
|
||||
x1="-93.517403"
|
||||
gradientTransform="matrix(0,-0.620703,-0.613027,0,48.67605,-15.31157)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient2095"
|
||||
xlink:href="#linearGradient2201"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
style="stop-color:#144f92;stop-opacity:1"
|
||||
offset="0.0000000"
|
||||
id="stop2203" />
|
||||
<stop
|
||||
style="stop-color:#076fe4;stop-opacity:1"
|
||||
offset="1.0000000"
|
||||
id="stop2205" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5714"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5716"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:0.91416311" />
|
||||
<stop
|
||||
id="stop5718"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.40772533" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7471"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7473"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3992">
|
||||
<stop
|
||||
id="stop3994"
|
||||
offset="0"
|
||||
style="stop-color:#0c62c2;stop-opacity:0" />
|
||||
<stop
|
||||
style="stop-color:#095dbb;stop-opacity:1;"
|
||||
offset="0.42105263"
|
||||
id="stop6557" />
|
||||
<stop
|
||||
id="stop3997"
|
||||
offset="1"
|
||||
style="stop-color:#074285;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6559"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3989"
|
||||
offset="0"
|
||||
style="stop-color:#1c5aa0;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop6563"
|
||||
offset="1"
|
||||
style="stop-color:#1c5aa0;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5758"
|
||||
id="linearGradient3988"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.059434,0,0,1.214101,-1.230368,-2.568934)"
|
||||
x1="15.125"
|
||||
y1="19.010838"
|
||||
x2="15.125"
|
||||
y2="12.332324" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5766"
|
||||
id="linearGradient3990"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.021276,0,0,1.02125,-0.159571,-0.810852)"
|
||||
x1="21.743534"
|
||||
y1="17.239695"
|
||||
x2="21.743534"
|
||||
y2="20.607468" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7471"
|
||||
id="radialGradient3992"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.102002,0,0,0.205882,4.429913,35.54412)"
|
||||
cx="18"
|
||||
cy="43.5"
|
||||
fx="18"
|
||||
fy="43.5"
|
||||
r="17" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5744"
|
||||
id="linearGradient3994"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,-0.620703,-0.613027,0,48.67605,-15.31157)"
|
||||
x1="-93.517403"
|
||||
y1="19.253912"
|
||||
x2="-47.049515"
|
||||
y2="41.683594" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient3996"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1.001019,-0.997079,0,49.47891,-0.54112)"
|
||||
x1="3.4491618"
|
||||
y1="27.5676"
|
||||
x2="36.619328"
|
||||
y2="17.625456" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="99"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#linearGradient7561);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651161,17.666656 C 2.4651161,17.666656 18.654739,1.5000001 23.982569,1.5000001 C 29.491431,1.5000001 45.50002,17.666656 45.50002,17.666656 L 45.50002,43.776608 L 42.520506,45.500012 L 2.4651161,42.308523 L 2.4651161,17.666656 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="czccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient8456);fill-opacity:1;stroke:#c6c6c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953316,20.935076 L 33.468134,12.499987 L 39.500025,36.064921 L 9.4272224,42.031924 L 3.3953316,20.935076 z "
|
||||
id="rect6567"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient7555);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651177,18.171482 C 2.4651177,17.423073 4.1900548,17.192726 5.1118011,18.171482 C 9.0354466,22.341089 12.229746,30.055122 15.241463,31.879287 C 19.05685,34.190227 25.55437,33.991136 29.041056,31.879287 C 32.249139,29.936185 35.405099,22.876998 39.833041,18.171482 C 40.700603,17.250261 42.500017,17.302446 42.500017,18.171482 L 42.500017,45.500004 L 2.4651177,42.351068 L 2.4651177,18.171482 z "
|
||||
id="rect3925"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.395347,19.12352 C 3.395347,18.428568 4.0845015,18.464675 4.9618063,19.37352 C 8.6962763,23.245299 11.97472,31.283332 14.841228,32.9772 C 18.47266,35.123074 26.085832,34.938204 29.40441,32.9772 C 32.457817,31.172891 35.759308,24.180429 39.973761,19.81102 C 40.799493,18.9556 41.499994,18.316557 41.499994,19.12352 L 41.499994,44.500013 L 3.395347,41.436183 L 3.395347,19.12352 z "
|
||||
id="path6565"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953466,17.931804 C 3.4162732,18.130607 17.963593,4.032047 23.154777,2.5441943 C 28.032521,2.5441943 41.499994,17.931804 41.499994,17.931804 L 41.499994,44.500002 L 3.3953466,41.436172 L 3.3953466,17.931804 z "
|
||||
id="path6582"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
id="g7479"
|
||||
transform="matrix(0.930232,0,0,1,0.139535,0)">
|
||||
<path
|
||||
id="path6586"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7538);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6588"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7540);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g7483"
|
||||
transform="matrix(-0.930232,0,0,1,44.97047,0)">
|
||||
<path
|
||||
id="path7485"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7542);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path7487"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7544);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient8454);fill-opacity:1.0;stroke:none;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:1"
|
||||
d="M 24,2 C 23.410136,2 22.66791,2.2019884 21.84375,2.5625 C 22.080153,2.5094367 22.296677,2.5 22.5,2.5 C 27.492357,2.4999999 42,18.09375 42,18.09375 L 42,44.957446 L 42.326738,45.055334 L 45,43.468085 L 45,17.8125 C 45,17.8125 29.376384,2 24,2 z "
|
||||
id="path7564"
|
||||
sodipodi:nodetypes="ccscccccc" />
|
||||
<g
|
||||
id="g3978"
|
||||
transform="matrix(-0.723077,0,0,0.761099,41,9.467239)"
|
||||
style="opacity:0.8">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3980"
|
||||
d="M 7.5099624,22.500018 L 20.821767,22.500018 C 20.821767,12.981639 25.929358,9.8624948 28.499997,11.491547 C 22.866788,6.8499599 7.0467603,5.6801305 7.5099624,22.500018 z "
|
||||
style="fill:url(#linearGradient3988);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient3990);stroke-width:1.34799159px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path3984"
|
||||
d="M 31.971063,43.500019 C 36.313337,37.551622 40.655611,31.44858 44.997885,25.500181 C 42.699034,25.551903 39.775183,25.448458 37.476332,25.500181 C 34.870968,6.7756439 10.383678,1.4678215 7.9925577,17.173363 C 19.320906,2.5695686 26.506023,19.034524 26.352766,25.500181 C 24.207173,25.551904 20.936578,25.448457 18.790983,25.500181 C 23.184344,31.500309 27.577704,37.499891 31.971063,43.500019 z "
|
||||
style="fill:url(#linearGradient3994);fill-opacity:1;fill-rule:evenodd;stroke:#217d15;stroke-width:1.34799099;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3982"
|
||||
d="M 43,44.5 C 43,46.432 34.607149,48 24.265957,48 C 13.924766,48 5.5319143,46.432 5.5319143,44.5 C 5.5319143,42.568 13.924766,41 24.265957,41 C 34.607149,41 43,42.568 43,44.5 z "
|
||||
style="opacity:0.1;fill:url(#radialGradient3992);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path3986"
|
||||
d="M 32.091859,41.939636 L 42.997889,26.502659 L 36.589937,26.502659 C 34.685837,9.3882334 14.107564,3.3768116 9.437501,14.564174 C 20.450265,2.5404349 27.573961,19.09795 27.573961,26.502659 L 20.791387,26.502659 L 32.091859,41.939636 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3996);stroke-width:1.34799123;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g4013"
|
||||
transform="matrix(-0.90035,0,0,0.935649,41.01385,-1.911187)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path4015"
|
||||
d="M 7.5099624,22.500018 L 20.821767,22.500018 C 20.821767,12.981639 25.929358,9.8624948 28.499997,11.491547 C 22.866788,6.8499599 7.0467603,5.6801305 7.5099624,22.500018 z "
|
||||
style="fill:url(#linearGradient6555);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6565);stroke-width:1.0895263px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6595"
|
||||
d="M 43,44.5 C 43,46.432 33.368,48 21.5,48 C 9.632,48 0,46.432 0,44.5 C 0,42.568 9.632,41 21.5,41 C 33.368,41 43,42.568 43,44.5 z "
|
||||
style="opacity:0.1;fill:url(#radialGradient7477);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path1381"
|
||||
d="M 31.971063,43.500019 C 36.313337,37.551622 40.655611,31.44858 44.997885,25.500181 C 42.699034,25.551903 39.775183,25.448458 37.476332,25.500181 C 34.870968,6.7756439 10.383678,1.4678215 7.9925577,17.173363 C 19.320906,2.5695686 26.506023,19.034524 26.352766,25.500181 C 24.207173,25.551904 20.936578,25.448457 18.790983,25.500181 C 23.184344,31.500309 27.577704,37.499891 31.971063,43.500019 z "
|
||||
style="fill:url(#linearGradient2095);fill-opacity:1;fill-rule:evenodd;stroke:#1c5aa0;stroke-width:1.08952582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path4839"
|
||||
d="M 32.091859,41.939636 L 42.997889,26.502659 L 36.589937,26.502659 C 34.685837,9.3882334 14.107564,3.3768116 9.437501,14.564174 C 20.450265,2.5404349 27.573961,19.09795 27.573961,26.502659 L 20.791387,26.502659 L 32.091859,41.939636 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5720);stroke-width:1.08952594;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 20 KiB |
395
datas/icon-themes/edeneu/scalable/actions/mail-reply-sender.svg
Normal file
@@ -0,0 +1,395 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="mail-reply-sender.svg">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8448">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8450" />
|
||||
<stop
|
||||
style="stop-color:#cecece;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8452" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7493"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7495"
|
||||
offset="0"
|
||||
style="stop-color:#9a9a9a;stop-opacity:0.81568629" />
|
||||
<stop
|
||||
id="stop7497"
|
||||
offset="1"
|
||||
style="stop-color:#686868;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7463">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7465" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7467" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6569">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6571" />
|
||||
<stop
|
||||
style="stop-color:#c4c4c4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6557">
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6559" />
|
||||
<stop
|
||||
style="stop-color:#cacaca;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6561" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#f5f5f5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7538"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7540"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient7555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872"
|
||||
gradientTransform="matrix(0.953212,0,0,1,8.208847e-2,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient7561"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.02464,0,0,0.994048,-9.648473e-2,0.270811)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8448"
|
||||
id="linearGradient8454"
|
||||
x1="33.872341"
|
||||
y1="13.361703"
|
||||
x2="33.872341"
|
||||
y2="25.492441"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient8456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.87501,-0.245431,0.246258,0.962063,0.236188,-5.708788e-8)"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(1.021276,0,0,1.02125,-0.159571,-0.810852)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="20.607468"
|
||||
x2="21.743534"
|
||||
y1="17.239695"
|
||||
x1="21.743534"
|
||||
id="linearGradient6565"
|
||||
xlink:href="#linearGradient6559"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(1.059434,0,0,1.214101,-1.230368,-2.568934)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="12.332324"
|
||||
x2="15.125"
|
||||
y1="19.010838"
|
||||
x1="15.125"
|
||||
id="linearGradient6555"
|
||||
xlink:href="#linearGradient3992"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.264705,0,0,0.205882,-1.264705,35.54412)"
|
||||
r="17"
|
||||
fy="43.5"
|
||||
fx="18"
|
||||
cy="43.5"
|
||||
cx="18"
|
||||
id="radialGradient7477"
|
||||
xlink:href="#linearGradient7471"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0,1.001019,-0.997079,0,49.47891,-0.54112)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="17.625456"
|
||||
x2="36.619328"
|
||||
y1="27.5676"
|
||||
x1="3.4491618"
|
||||
id="linearGradient5720"
|
||||
xlink:href="#linearGradient5714"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="41.683594"
|
||||
x2="-47.049515"
|
||||
y1="19.253912"
|
||||
x1="-93.517403"
|
||||
gradientTransform="matrix(0,-0.620703,-0.613027,0,48.67605,-15.31157)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient2095"
|
||||
xlink:href="#linearGradient2201"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
style="stop-color:#144f92;stop-opacity:1"
|
||||
offset="0.0000000"
|
||||
id="stop2203" />
|
||||
<stop
|
||||
style="stop-color:#076fe4;stop-opacity:1"
|
||||
offset="1.0000000"
|
||||
id="stop2205" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5714"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5716"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:0.91416311" />
|
||||
<stop
|
||||
id="stop5718"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.40772533" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7471"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7473"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3992">
|
||||
<stop
|
||||
id="stop3994"
|
||||
offset="0"
|
||||
style="stop-color:#0c62c2;stop-opacity:0" />
|
||||
<stop
|
||||
style="stop-color:#095dbb;stop-opacity:1;"
|
||||
offset="0.42105263"
|
||||
id="stop6557" />
|
||||
<stop
|
||||
id="stop3997"
|
||||
offset="1"
|
||||
style="stop-color:#074285;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6559"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3989"
|
||||
offset="0"
|
||||
style="stop-color:#1c5aa0;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop6563"
|
||||
offset="1"
|
||||
style="stop-color:#1c5aa0;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="5"
|
||||
inkscape:window-y="66"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#linearGradient7561);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651161,17.666656 C 2.4651161,17.666656 18.654739,1.5000001 23.982569,1.5000001 C 29.491431,1.5000001 45.50002,17.666656 45.50002,17.666656 L 45.50002,43.776608 L 42.520506,45.500012 L 2.4651161,42.308523 L 2.4651161,17.666656 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="czccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient8456);fill-opacity:1;stroke:#c6c6c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953316,20.935076 L 33.468134,12.499987 L 39.500025,36.064921 L 9.4272224,42.031924 L 3.3953316,20.935076 z "
|
||||
id="rect6567"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient7555);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651177,18.171482 C 2.4651177,17.423073 4.1900548,17.192726 5.1118011,18.171482 C 9.0354466,22.341089 12.229746,30.055122 15.241463,31.879287 C 19.05685,34.190227 25.55437,33.991136 29.041056,31.879287 C 32.249139,29.936185 35.405099,22.876998 39.833041,18.171482 C 40.700603,17.250261 42.500017,17.302446 42.500017,18.171482 L 42.500017,45.500004 L 2.4651177,42.351068 L 2.4651177,18.171482 z "
|
||||
id="rect3925"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.395347,19.12352 C 3.395347,18.428568 4.0845015,18.464675 4.9618063,19.37352 C 8.6962763,23.245299 11.97472,31.283332 14.841228,32.9772 C 18.47266,35.123074 26.085832,34.938204 29.40441,32.9772 C 32.457817,31.172891 35.759308,24.180429 39.973761,19.81102 C 40.799493,18.9556 41.499994,18.316557 41.499994,19.12352 L 41.499994,44.500013 L 3.395347,41.436183 L 3.395347,19.12352 z "
|
||||
id="path6565"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953466,17.931804 C 3.4162732,18.130607 17.963593,4.032047 23.154777,2.5441943 C 28.032521,2.5441943 41.499994,17.931804 41.499994,17.931804 L 41.499994,44.500002 L 3.3953466,41.436172 L 3.3953466,17.931804 z "
|
||||
id="path6582"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
id="g7479"
|
||||
transform="matrix(0.930232,0,0,1,0.139535,0)">
|
||||
<path
|
||||
id="path6586"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7538);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6588"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7540);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g7483"
|
||||
transform="matrix(-0.930232,0,0,1,44.97047,0)">
|
||||
<path
|
||||
id="path7485"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7542);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path7487"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7544);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient8454);fill-opacity:1.0;stroke:none;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:1"
|
||||
d="M 24,2 C 23.410136,2 22.66791,2.2019884 21.84375,2.5625 C 22.080153,2.5094367 22.296677,2.5 22.5,2.5 C 27.492357,2.4999999 42,18.09375 42,18.09375 L 42,44.957446 L 42.326738,45.055334 L 45,43.468085 L 45,17.8125 C 45,17.8125 29.376384,2 24,2 z "
|
||||
id="path7564"
|
||||
sodipodi:nodetypes="ccscccccc" />
|
||||
<g
|
||||
id="g4013"
|
||||
transform="matrix(-0.90035,0,0,0.935649,46,-1.911187)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path4015"
|
||||
d="M 7.5099624,22.500018 L 20.821767,22.500018 C 20.821767,12.981639 25.929358,9.8624948 28.499997,11.491547 C 22.866788,6.8499599 7.0467603,5.6801305 7.5099624,22.500018 z "
|
||||
style="fill:url(#linearGradient6555);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6565);stroke-width:1.0895263px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6595"
|
||||
d="M 43,44.5 C 43,46.432 33.368,48 21.5,48 C 9.632,48 0,46.432 0,44.5 C 0,42.568 9.632,41 21.5,41 C 33.368,41 43,42.568 43,44.5 z "
|
||||
style="opacity:0.1;fill:url(#radialGradient7477);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path1381"
|
||||
d="M 31.971063,43.500019 C 36.313337,37.551622 40.655611,31.44858 44.997885,25.500181 C 42.699034,25.551903 39.775183,25.448458 37.476332,25.500181 C 34.870968,6.7756439 10.383678,1.4678215 7.9925577,17.173363 C 19.320906,2.5695686 26.506023,19.034524 26.352766,25.500181 C 24.207173,25.551904 20.936578,25.448457 18.790983,25.500181 C 23.184344,31.500309 27.577704,37.499891 31.971063,43.500019 z "
|
||||
style="fill:url(#linearGradient2095);fill-opacity:1;fill-rule:evenodd;stroke:#1c5aa0;stroke-width:1.08952582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path4839"
|
||||
d="M 32.091859,41.939636 L 42.997889,26.502659 L 36.589937,26.502659 C 34.685837,9.3882334 14.107564,3.3768116 9.437501,14.564174 C 20.450265,2.5404349 27.573961,19.09795 27.573961,26.502659 L 20.791387,26.502659 L 32.091859,41.939636 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5720);stroke-width:1.08952594;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
670
datas/icon-themes/edeneu/scalable/actions/mail-send-receive.svg
Normal file
@@ -0,0 +1,670 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="mail-send-receive.svg">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5069">
|
||||
<stop
|
||||
style="stop-color:#848484;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5071" />
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5073" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5061">
|
||||
<stop
|
||||
style="stop-color:#868686;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5063" />
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5065" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8448">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8450" />
|
||||
<stop
|
||||
style="stop-color:#cecece;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8452" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7493"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7495"
|
||||
offset="0"
|
||||
style="stop-color:#9a9a9a;stop-opacity:0.81568629" />
|
||||
<stop
|
||||
id="stop7497"
|
||||
offset="1"
|
||||
style="stop-color:#686868;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7463">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7465" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7467" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6569">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6571" />
|
||||
<stop
|
||||
style="stop-color:#c4c4c4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6557">
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6559" />
|
||||
<stop
|
||||
style="stop-color:#cacaca;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6561" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#f5f5f5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7538"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7540"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient7555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872"
|
||||
gradientTransform="matrix(0.709584,0,0,0.744541,0.691158,0.383188)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient7561"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.762735,0,0,0.745535,0.558279,0.578108)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8448"
|
||||
id="linearGradient8454"
|
||||
x1="33.872341"
|
||||
y1="13.361703"
|
||||
x2="33.872341"
|
||||
y2="25.492441"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.738857,0,0,0.743229,0.751426,0.513541)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient8456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.65137,-0.182733,0.183318,0.716295,0.805872,0.383188)"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient3999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.762735,0,0,0.745535,0.558279,0.578108)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient4001"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.65137,-0.182733,0.183318,0.716295,0.805872,0.383188)"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient4003"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.709584,0,0,0.744541,0.691158,0.383188)"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient4005"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient4007"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient4009"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient4011"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8448"
|
||||
id="linearGradient4013"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.738857,0,0,0.743229,0.751426,0.513541)"
|
||||
x1="33.872341"
|
||||
y1="13.361703"
|
||||
x2="33.872341"
|
||||
y2="25.492441" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(1.074674,9.239634e-3,1.434146e-2,1.031419,-2.704549e-2,-2.164751)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="34.860977"
|
||||
x2="21.593128"
|
||||
y1="9"
|
||||
x1="11.375"
|
||||
id="linearGradient6616"
|
||||
xlink:href="#linearGradient6610"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="74.78167"
|
||||
x2="43.730457"
|
||||
y1="46.576817"
|
||||
x1="37.520218"
|
||||
gradientTransform="matrix(9.49694e-3,-0.724888,0.764682,2.126833e-2,-16.8286,54.08685)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient4847"
|
||||
xlink:href="#linearGradient11290"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.375733,-4.185018e-17,7.364385e-17,0.396985,-1.280168,-1.527065)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="89.624825"
|
||||
x2="78.663643"
|
||||
y1="154.91104"
|
||||
x1="73.487869"
|
||||
id="linearGradient2176"
|
||||
xlink:href="#linearGradient2170"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.46046,-5.128727e-17,6.80259e-17,0.366701,-6.397538,-1.529729)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="85.045822"
|
||||
x2="64.431267"
|
||||
y1="-1.380053"
|
||||
x1="50.514881"
|
||||
id="linearGradient2165"
|
||||
xlink:href="#linearGradient2159"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="61.867584"
|
||||
x2="86.398415"
|
||||
y1="44.156403"
|
||||
x1="-4.8199644"
|
||||
id="linearGradient2090"
|
||||
xlink:href="#linearGradient2084"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient11290"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop11292"
|
||||
offset="0"
|
||||
style="stop-color:#1fdc49;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop11294"
|
||||
offset="1"
|
||||
style="stop-color:#17af3a;stop-opacity:1.0000000" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2084"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2086"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2088"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2159"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2161"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2163"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2170"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2172"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.46000001" />
|
||||
<stop
|
||||
id="stop2174"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6610"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6612"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6614"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.53725493" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="25.576252"
|
||||
x2="21.163227"
|
||||
y1="7.0241718"
|
||||
x1="21.163227"
|
||||
id="linearGradient4828"
|
||||
xlink:href="#linearGradient4822"
|
||||
inkscape:collect="always"
|
||||
gradientTransform="matrix(1.030819,7.279174e-17,-1.90258e-16,1,-0.569203,0.602846)" />
|
||||
<linearGradient
|
||||
id="linearGradient4822"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4824"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:0.7081545" />
|
||||
<stop
|
||||
id="stop4826"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2170"
|
||||
id="linearGradient4174"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.375733,2.653257e-17,-7.552957e-17,0.396985,-1.280168,-1.527065)"
|
||||
x1="73.487869"
|
||||
y1="154.91104"
|
||||
x2="78.663643"
|
||||
y2="89.624825" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11290"
|
||||
id="linearGradient4178"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.088095e-2,-0.717685,0.741435,1.3287e-2,-16.11022,53.439)"
|
||||
x1="37.520218"
|
||||
y1="46.576817"
|
||||
x2="43.730457"
|
||||
y2="74.78167" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2084"
|
||||
id="linearGradient4180"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-4.8199644"
|
||||
y1="44.156403"
|
||||
x2="86.398415"
|
||||
y2="61.867584" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6610"
|
||||
id="linearGradient4182"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.041137,2.468868e-3,3.712908e-3,0.999194,1.099015,-1.138425)"
|
||||
x1="11.375"
|
||||
y1="9"
|
||||
x2="21.593128"
|
||||
y2="34.860977" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5061"
|
||||
id="linearGradient5067"
|
||||
x1="15.375006"
|
||||
y1="8.5"
|
||||
x2="22.865885"
|
||||
y2="12.849585"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5069"
|
||||
id="linearGradient5075"
|
||||
x1="2.2500055"
|
||||
y1="14.687499"
|
||||
x2="4.5295424"
|
||||
y2="18.635773"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="21.701974"
|
||||
inkscape:cy="11.976459"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="6"
|
||||
inkscape:window-y="66"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3959"
|
||||
transform="translate(-5.357628e-6,4.576279e-7)">
|
||||
<path
|
||||
sodipodi:nodetypes="czccccc"
|
||||
id="path5674"
|
||||
d="M 2.4651173,13.624992 C 2.4651173,13.624992 14.516562,1.4999999 18.482562,1.4999999 C 22.583321,1.4999999 34.500005,13.624992 34.500005,13.624992 L 34.500005,33.207454 L 32.282076,34.500007 L 2.4651173,32.106391 L 2.4651173,13.624992 z "
|
||||
style="fill:url(#linearGradient7561);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect6567"
|
||||
d="M 3.1575824,15.97021 L 25.544198,9.6899408 L 30.034422,27.235 L 7.6478063,31.677679 L 3.1575824,15.97021 z "
|
||||
style="fill:url(#linearGradient8456);fill-opacity:1;stroke:#c6c6c6;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccssccccc"
|
||||
id="rect3925"
|
||||
d="M 2.4651181,13.912601 C 2.4651181,13.35538 3.7491855,13.183877 4.4353463,13.912601 C 7.3561629,17.017045 9.7340441,22.760459 11.976008,24.118624 C 14.816236,25.839214 19.653081,25.690982 22.248619,24.118624 C 24.636761,22.671905 26.986101,17.416051 30.282323,13.912601 C 30.928149,13.226715 32.267658,13.265568 32.267658,13.912601 L 32.267658,34.259806 L 2.4651181,31.915295 L 2.4651181,13.912601 z "
|
||||
style="fill:url(#linearGradient7555);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccssccccc"
|
||||
id="path6565"
|
||||
d="M 3.5000006,14.621153 C 3.5000006,14.104142 4.0064042,14.131005 4.651064,14.80714 C 7.3952216,17.687552 9.8042827,23.667451 11.910646,24.927605 C 14.57909,26.52403 20.173389,26.386495 22.611941,24.927605 C 24.855642,23.585289 27.281639,18.383243 30.378496,15.132619 C 30.98526,14.496228 31.500001,14.020812 31.500001,14.621153 L 31.500001,33.500009 L 3.5000006,31.220671 L 3.5000006,14.621153 z "
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path6582"
|
||||
d="M 3.5,13.869479 C 3.5153772,14.016369 14.205017,3.5993317 18.019595,2.4999984 C 21.603852,2.4999984 31.500001,13.869479 31.500001,13.869479 L 31.500001,33.499989 L 3.5,31.236209 L 3.5,13.869479 z "
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.692478,0,0,0.744541,0.733921,0.383188)"
|
||||
id="g7479">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7538);stroke-width:1.39268458px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,41 L 15,32"
|
||||
id="path6586" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7540);stroke-width:1.39268458px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
id="path6588" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.692478,0,0,0.744541,34.10669,0.383188)"
|
||||
id="g7483">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7542);stroke-width:1.39268458px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,41 L 15,32"
|
||||
id="path7485" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7544);stroke-width:1.39268458px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
id="path7487" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccscccccc"
|
||||
id="path7564"
|
||||
d="M 18.483999,2 C 18.048173,2 17.499775,2.1501237 16.890838,2.4180666 C 17.065506,2.3786284 17.225486,2.3716148 17.375714,2.3716148 C 21.064352,2.3716147 31.783429,13.961352 31.783429,13.961352 L 31.783429,33.927246 L 32.024841,34 L 34,32.820309 L 34,13.752318 C 34,13.752318 22.456379,2 18.483999,2 z "
|
||||
style="opacity:1;fill:url(#linearGradient8454);fill-opacity:1;stroke:none;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g3973"
|
||||
transform="translate(10.99999,12)">
|
||||
<path
|
||||
sodipodi:nodetypes="czccccc"
|
||||
id="path3975"
|
||||
d="M 2.4651173,13.624992 C 2.4651173,13.624992 14.516562,1.4999999 18.482562,1.4999999 C 22.583321,1.4999999 34.500005,13.624992 34.500005,13.624992 L 34.500005,33.207454 L 32.282076,34.500007 L 2.4651173,32.106391 L 2.4651173,13.624992 z "
|
||||
style="fill:url(#linearGradient3999);fill-opacity:1.0;stroke:url(#linearGradient5067);stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3977"
|
||||
d="M 3.1575824,15.97021 L 25.544198,9.6899408 L 30.034422,27.235 L 7.6478063,31.677679 L 3.1575824,15.97021 z "
|
||||
style="fill:url(#linearGradient4001);fill-opacity:1;stroke:#c6c6c6;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccssccccc"
|
||||
id="path3979"
|
||||
d="M 2.4651181,13.912601 C 2.4651181,13.35538 3.7491855,13.183877 4.4353463,13.912601 C 7.3561629,17.017045 9.7340441,22.760459 11.976008,24.118624 C 14.816236,25.839214 19.653081,25.690982 22.248619,24.118624 C 24.636761,22.671905 26.986101,17.416051 30.282323,13.912601 C 30.928149,13.226715 32.267658,13.265568 32.267658,13.912601 L 32.267658,34.259806 L 2.4651181,31.915295 L 2.4651181,13.912601 z "
|
||||
style="fill:url(#linearGradient4003);fill-opacity:1.0;stroke:url(#linearGradient5075);stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccssccccc"
|
||||
id="path3981"
|
||||
d="M 3.5000006,14.621153 C 3.5000006,14.104142 4.0064042,14.131005 4.651064,14.80714 C 7.3952216,17.687552 9.8042827,23.667451 11.910646,24.927605 C 14.57909,26.52403 20.173389,26.386495 22.611941,24.927605 C 24.855642,23.585289 27.281639,18.383243 30.378496,15.132619 C 30.98526,14.496228 31.500001,14.020812 31.500001,14.621153 L 31.500001,33.500009 L 3.5000006,31.220671 L 3.5000006,14.621153 z "
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path3983"
|
||||
d="M 3.5,13.869479 C 3.5153772,14.016369 14.205017,3.5993317 18.019595,2.4999984 C 21.603852,2.4999984 31.500001,13.869479 31.500001,13.869479 L 31.500001,33.499989 L 3.5,31.236209 L 3.5,13.869479 z "
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.692478,0,0,0.744541,0.733921,0.383188)"
|
||||
id="g3985">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4005);stroke-width:1.39268458px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,41 L 15,32"
|
||||
id="path3987" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4007);stroke-width:1.39268458px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
id="path3989" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.692478,0,0,0.744541,34.10669,0.383188)"
|
||||
id="g3991">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4009);stroke-width:1.39268458px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6,41 L 15,32"
|
||||
id="path3993" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4011);stroke-width:1.39268458px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
id="path3995" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccscccccc"
|
||||
id="path3997"
|
||||
d="M 18.483999,2 C 18.048173,2 17.499775,2.1501237 16.890838,2.4180666 C 17.065506,2.3786284 17.225486,2.3716148 17.375714,2.3716148 C 21.064352,2.3716147 31.783429,13.961352 31.783429,13.961352 L 31.783429,33.927246 L 32.024841,34 L 34,32.820309 L 34,13.752318 C 34,13.752318 22.456379,2 18.483999,2 z "
|
||||
style="opacity:1;fill:url(#linearGradient4013);fill-opacity:1;stroke:none;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g4074"
|
||||
inkscape:label="Layer 1"
|
||||
transform="matrix(0.268554,0.266311,-0.340785,0.339423,20.96689,19.47691)">
|
||||
<path
|
||||
sodipodi:nodetypes="cssc"
|
||||
id="path2168"
|
||||
d="M 23.025975,43.739905 C 23.025975,43.739905 45.193177,40.247297 44.998728,36.54924 C 44.804279,32.85118 11.359026,33.672971 11.553476,36.343792 C 11.747924,39.014611 17.1925,44.150802 23.025975,43.739905 z "
|
||||
style="fill:url(#linearGradient2176);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="czzz"
|
||||
id="path10552"
|
||||
d="M 4.9846022,11.310507 C 10.622287,3.8583482 37.687601,4.6111221 43.094466,12.370466 C 48.501327,20.12981 31.371646,44.630313 23.549727,44.412762 C 15.725949,44.195159 -0.65308395,18.762667 4.9846022,11.310507 z "
|
||||
style="fill:url(#linearGradient4847);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:2.56614232;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
style="fill:url(#linearGradient2090);fill-opacity:1;stroke:none"
|
||||
transform="matrix(0,0.357142,0.357142,0,1.185843,-2.302195)"
|
||||
id="g2080" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccsc"
|
||||
id="path2157"
|
||||
d="M 41.023615,17.890569 C 40.18323,20.823729 41.107471,25.181491 37.894152,27.10505 C 30.373857,19.444976 11.544965,23.106937 8.7518386,27.351064 C 6.2738557,24.573519 6.2526626,21.20328 5.5173246,17.890569 C 4.4668428,8.4185248 13.78588,7.0734003 23.585616,7.0734003 C 33.385355,7.0734003 41.863998,9.5571744 41.023615,17.890569 z "
|
||||
style="color:black;fill:url(#linearGradient2165);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
sodipodi:nodetypes="czzz"
|
||||
id="path5725"
|
||||
d="M 7.1435581,12.457835 C 12.128477,5.8166031 35.977873,6.4444705 40.725178,13.341914 C 45.472482,20.239361 30.322001,42.071575 23.42949,41.890121 C 16.535339,41.708626 2.1586358,19.099062 7.1435581,12.457835 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6616);stroke-width:2.43454742;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g4161"
|
||||
inkscape:label="Layer 1"
|
||||
transform="matrix(0.261863,0.257184,-0.327175,0.322564,26.60325,-2.735592)">
|
||||
<path
|
||||
sodipodi:nodetypes="cssc"
|
||||
id="path4163"
|
||||
d="M 23.025975,43.739905 C 23.025975,43.739905 45.193177,40.247297 44.998728,36.54924 C 44.804279,32.85118 11.359026,33.672971 11.553476,36.343792 C 11.747924,39.014611 17.1925,44.150802 23.025975,43.739905 z "
|
||||
style="fill:url(#linearGradient4174);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="czzz"
|
||||
id="path4167"
|
||||
d="M 5.7381359,38.128131 C 11.3269,45.562507 37.569352,45.092225 42.689352,37.465941 C 47.809348,29.839656 30.798404,5.4118939 23.214295,5.5478029 C 15.628382,5.6837459 0.14937024,30.693753 5.7381359,38.128131 z "
|
||||
style="fill:url(#linearGradient4178);fill-opacity:1;fill-rule:evenodd;stroke:#007f0a;stroke-width:2.66540003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
style="fill:url(#linearGradient4180);fill-opacity:1;stroke:none"
|
||||
transform="matrix(0,0.357142,0.357142,0,1.185843,-2.302195)"
|
||||
id="g4169" />
|
||||
<path
|
||||
sodipodi:nodetypes="czzz"
|
||||
id="path4171"
|
||||
d="M 7.9903145,36.727989 C 12.933775,43.215682 36.03165,42.860799 40.513738,36.22829 C 44.995829,29.595776 29.943215,8.2814333 23.267894,8.3839956 C 16.590989,8.486578 3.0468499,30.240295 7.9903145,36.727989 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4182);stroke-width:2.52871251;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3944"
|
||||
d="M 22.785294,6.6028459 C 18.606035,6.6777649 12.003027,14.506063 7.999482,22.602846 C 17.648751,16.157592 28.277513,19.451965 38.891843,22.602846 C 34.414549,14.454982 27.063167,6.5261601 22.785294,6.6028459 z "
|
||||
style="fill:url(#linearGradient4828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.09447634;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 28 KiB |
232
datas/icon-themes/edeneu/scalable/actions/process-stop.svg
Normal file
@@ -0,0 +1,232 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2178"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="process-stop.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs2180">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5693">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5695" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.61373389"
|
||||
offset="1"
|
||||
id="stop5697" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5685">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5687" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5689" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4405">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.28400001"
|
||||
offset="0"
|
||||
id="stop4407" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4409" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4395">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.61600000"
|
||||
offset="0"
|
||||
id="stop4397" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4399" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3659">
|
||||
<stop
|
||||
style="stop-color:#ff5252;stop-opacity:1"
|
||||
offset="0.0000000"
|
||||
id="stop3661" />
|
||||
<stop
|
||||
style="stop-color:#c70000;stop-opacity:1"
|
||||
offset="1.0000000"
|
||||
id="stop3663" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3651">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.81199998"
|
||||
offset="0"
|
||||
id="stop3653" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3655" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3651"
|
||||
id="linearGradient3657"
|
||||
x1="29.225218"
|
||||
y1="-30.715849"
|
||||
x2="63.482479"
|
||||
y2="89.35849"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.388855,0,0,0.408279,-2.185575,-2.289743)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4395"
|
||||
id="linearGradient4401"
|
||||
x1="91.773582"
|
||||
y1="168.02156"
|
||||
x2="96.603775"
|
||||
y2="99.588814"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378212,0,0,0.375606,-2.53656,1.804783)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4405"
|
||||
id="radialGradient4411"
|
||||
cx="66.932617"
|
||||
cy="115.2345"
|
||||
fx="66.932617"
|
||||
fy="115.2345"
|
||||
r="51.061996"
|
||||
gradientTransform="matrix(1,0,0,0.141892,1.839674e-15,98.88366)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5685"
|
||||
id="linearGradient5691"
|
||||
x1="110.75846"
|
||||
y1="70.425117"
|
||||
x2="67.375198"
|
||||
y2="70.425117"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.404603,0,0,0.388856,-1.395568,-0.990539)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5693"
|
||||
id="linearGradient5699"
|
||||
x1="20.5"
|
||||
y1="17.263254"
|
||||
x2="42.5"
|
||||
y2="108.23312"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.423333,0,0,0.428593,-3.333909,-3.541792)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3659"
|
||||
id="radialGradient4818"
|
||||
cx="70.482483"
|
||||
cy="88.052559"
|
||||
fx="70.482483"
|
||||
fy="88.052559"
|
||||
r="51.647038"
|
||||
gradientTransform="matrix(0.451366,-5.842289e-17,5.840065e-17,0.451538,-5.381981,-5.841196)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="3"
|
||||
inkscape:window-y="71"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false" />
|
||||
<metadata
|
||||
id="metadata2183">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient4411);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path4403"
|
||||
sodipodi:cx="66.932617"
|
||||
sodipodi:cy="115.2345"
|
||||
sodipodi:rx="51.061996"
|
||||
sodipodi:ry="7.2452831"
|
||||
d="M 117.99461 115.2345 A 51.061996 7.2452831 0 1 1 15.870621,115.2345 A 51.061996 7.2452831 0 1 1 117.99461 115.2345 z"
|
||||
transform="matrix(0.378212,0,0,0.375606,-2.53656,1.804783)" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4401);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 48.0036,40.241819 L 43.176053,43.492844 L 28.696361,45.780582 L 13.042583,45.763713 L 5.3819971,43.453794 L 10.209544,40.202767 L 24.689237,37.915029 L 40.343015,37.931898 L 48.0036,40.241819 z "
|
||||
id="path3667"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient4818);fill-opacity:1;fill-rule:evenodd;stroke:#8b0000;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 44.500011,15.913138 L 44.409935,33.279406 L 32.075572,45.499991 L 14.715926,45.40988 L 2.5000005,33.070812 L 2.5900776,15.704545 L 14.92444,3.483958 L 32.284084,3.5740696 L 44.500011,15.913138 z "
|
||||
id="path2186"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="opacity:1;color:black;fill:white;fill-opacity:0.93133042;fill-rule:evenodd;stroke:none;stroke-width:2.53128338;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 15.715672,13.008138 C 15.07769,12.955894 14.420813,13.155479 13.892471,13.611089 L 12.773509,14.571047 C 11.716824,15.482266 11.593071,17.077715 12.491814,18.149071 L 17.828398,24.511767 L 12.491814,30.882396 C 11.593071,31.953752 11.716824,33.549201 12.773509,34.460422 L 13.892471,35.428312 C 14.949156,36.339532 16.522759,36.206126 17.421501,35.134771 L 22.07732,29.581297 L 26.73314,35.134771 C 27.631883,36.206126 29.21331,36.339532 30.269995,35.428312 L 31.381135,34.460422 C 32.437817,33.549201 32.569397,31.953752 31.670654,30.882396 L 26.326243,24.511767 L 31.670654,18.149071 C 32.569397,17.077715 32.437817,15.482266 31.381135,14.571047 L 30.269995,13.611089 C 29.21331,12.699868 27.631883,12.825341 26.73314,13.896694 L 22.07732,19.450171 L 17.421501,13.896694 C 16.972132,13.361018 16.353658,13.060385 15.715672,13.008138 z "
|
||||
id="rect1323" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient3657);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 42,16.113206 L 41.916356,28 C 30.185854,17.213503 15.696204,14.828174 3,27.796709 L 3.0836429,15.909914 L 15.684035,4 L 30.656643,4.0878204 L 42,16.113206 z "
|
||||
id="path2915"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5699);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 41.499992,16.787382 L 41.418498,32.610455 L 30.258835,44.499979 L 15.181175,44.414194 L 3.4999982,32.667188 L 3.5814966,16.172132 L 15.439683,4.4999995 L 30.447493,4.585788 L 41.499992,16.787382 z "
|
||||
id="path4808"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5691);stroke-width:2.00000072;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.43347641;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 43.000034,16.53698 L 42.916389,32.656648 L 31.801936,44.000005 L 15.343367,43.916362 L 4.0000008,32.463028 L 4.0836441,16.343359 L 15.536987,5 L 32.063333,5.0836427 L 43.000034,16.53698 z "
|
||||
id="path5683"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
593
datas/icon-themes/edeneu/scalable/actions/system-lock-screen.svg
Normal file
@@ -0,0 +1,593 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="system-lock-screen.svg"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="svg12101"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5882">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5884" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.49785408"
|
||||
offset="1"
|
||||
id="stop5886" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4999">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5001" />
|
||||
<stop
|
||||
style="stop-color:#00488a;stop-opacity:0.81568629"
|
||||
offset="1"
|
||||
id="stop5003" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4991">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4993" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4995" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4981">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4983" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4985" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4971">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4973" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.32941177"
|
||||
offset="1"
|
||||
id="stop4975" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4961">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4963" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.16738197"
|
||||
offset="1"
|
||||
id="stop4965" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2217">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.61600000"
|
||||
offset="0"
|
||||
id="stop2219" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2221" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2199">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2201" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2203" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2181">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.42399997"
|
||||
offset="0"
|
||||
id="stop2183" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2185" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2163">
|
||||
<stop
|
||||
style="stop-color:#ffb93e;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2165" />
|
||||
<stop
|
||||
style="stop-color:#d79c34;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2167" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2145"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2147"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.54000002" />
|
||||
<stop
|
||||
id="stop2149"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2140">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.87199998"
|
||||
offset="0"
|
||||
id="stop2142" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2144" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2110">
|
||||
<stop
|
||||
style="stop-color:#686868;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2112" />
|
||||
<stop
|
||||
style="stop-color:#2d2d2d;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2114" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient21288">
|
||||
<stop
|
||||
id="stop21290"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.71875000;" />
|
||||
<stop
|
||||
id="stop21292"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient19750">
|
||||
<stop
|
||||
id="stop19752"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.13541667;" />
|
||||
<stop
|
||||
id="stop19754"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16695">
|
||||
<stop
|
||||
id="stop16697"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#d2d2d2;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop16703"
|
||||
offset="0.50000000"
|
||||
style="stop-color:#b5b5b5;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop16699"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#e2e2e2;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient15921">
|
||||
<stop
|
||||
id="stop15923"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.69791669;" />
|
||||
<stop
|
||||
id="stop15925"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient14393">
|
||||
<stop
|
||||
id="stop14395"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#00aee4;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop14397"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#0085cd;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient21288"
|
||||
id="linearGradient1349"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.857066,0,0,0.150912,2.209062e-17,2.053121)"
|
||||
x1="20.323792"
|
||||
y1="331.23621"
|
||||
x2="37.489967"
|
||||
y2="241.84418" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient19750"
|
||||
id="radialGradient1351"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(2.245984,0.445239)"
|
||||
cx="24.376842"
|
||||
cy="252.11171"
|
||||
fx="24.376842"
|
||||
fy="252.11171"
|
||||
r="25.267321" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15921"
|
||||
id="linearGradient2098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.326989,0,0,0.348518,2.980843,2.691526)"
|
||||
x1="2.3425686"
|
||||
y1="-6.7369881"
|
||||
x2="50.190037"
|
||||
y2="52.214569" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient14393"
|
||||
id="radialGradient2101"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.323909,0,0,0.364287,2.190563,2.434251)"
|
||||
cx="31.560766"
|
||||
cy="37.778625"
|
||||
fx="31.560766"
|
||||
fy="37.778625"
|
||||
r="33.42374" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16695"
|
||||
id="linearGradient2108"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.491035,4.501878e-2,-4.267428e-2,0.465461,0.858471,-13.02487)"
|
||||
x1="39.650043"
|
||||
y1="94.938591"
|
||||
x2="37.900795"
|
||||
y2="113.51712" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2110"
|
||||
id="linearGradient2116"
|
||||
x1="59.498844"
|
||||
y1="122.69814"
|
||||
x2="67.379585"
|
||||
y2="89.817665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.359641,0,0,0.359641,2.209062e-17,2.053121)" />
|
||||
<linearGradient
|
||||
id="linearGradient7470">
|
||||
<stop
|
||||
id="stop7472"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#da8200;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop7474"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#975a00;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2140"
|
||||
id="linearGradient4039"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="83.085045"
|
||||
y1="132.94974"
|
||||
x2="91.570328"
|
||||
y2="111.20621"
|
||||
gradientTransform="matrix(0.457362,0,0,0.458691,-2.693542,-9.697049)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2145"
|
||||
id="linearGradient4066"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.255842,0,0,0.259608,13.49265,15.49261)"
|
||||
x1="41.748001"
|
||||
y1="21.793085"
|
||||
x2="42.081985"
|
||||
y2="105.95706" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2181"
|
||||
id="linearGradient4072"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.259137,0,0,0.230112,13.62488,18.43492)"
|
||||
x1="117.60885"
|
||||
y1="82.89299"
|
||||
x2="70.376381"
|
||||
y2="84.782288" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2163"
|
||||
id="linearGradient4075"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.243864,0,0,0.233943,15.25391,18.10772)"
|
||||
x1="9.0540819"
|
||||
y1="82.89299"
|
||||
x2="99.580605"
|
||||
y2="82.89299" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7470"
|
||||
id="linearGradient4077"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.243864,0,0,0.233943,15.25391,18.10772)"
|
||||
x1="7.7103319"
|
||||
y1="82.89299"
|
||||
x2="100.92435"
|
||||
y2="82.89299" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2199"
|
||||
id="linearGradient4080"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.243418,0,0,0.220372,14.39509,16.85343)"
|
||||
x1="95.185448"
|
||||
y1="34.484478"
|
||||
x2="81.492096"
|
||||
y2="38.158298" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2217"
|
||||
id="linearGradient4083"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.258466,0,0,0.232371,13.24294,16.4535)"
|
||||
x1="50.765572"
|
||||
y1="40.663181"
|
||||
x2="34.901329"
|
||||
y2="34.317482" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4961"
|
||||
id="linearGradient4967"
|
||||
x1="19.622213"
|
||||
y1="25.991302"
|
||||
x2="30.566313"
|
||||
y2="46.304565"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4971"
|
||||
id="linearGradient4977"
|
||||
x1="34.559845"
|
||||
y1="30.145554"
|
||||
x2="34.559845"
|
||||
y2="44.828697"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4981"
|
||||
id="linearGradient4987"
|
||||
x1="26.383921"
|
||||
y1="18.389904"
|
||||
x2="27.983469"
|
||||
y2="24.359499"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4991"
|
||||
id="linearGradient4997"
|
||||
x1="31.643028"
|
||||
y1="5.0432639"
|
||||
x2="31.643028"
|
||||
y2="40.581196"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4999"
|
||||
id="linearGradient5005"
|
||||
x1="27.753941"
|
||||
y1="30.145554"
|
||||
x2="9.3895664"
|
||||
y2="14.609607"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5882"
|
||||
id="linearGradient5888"
|
||||
x1="11.667261"
|
||||
y1="9.5510693"
|
||||
x2="11.667261"
|
||||
y2="38.191074"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
borderlayer="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
transform="matrix(0.359641,0,0,0.359641,0.719282,2.232941)"
|
||||
d="M 111.5 112.25 A 56.75 11.25 0 1 1 -2,112.25 A 56.75 11.25 0 1 1 111.5 112.25 z"
|
||||
sodipodi:ry="11.25"
|
||||
sodipodi:rx="56.75"
|
||||
sodipodi:cy="112.25"
|
||||
sodipodi:cx="54.75"
|
||||
id="path18990"
|
||||
style="fill:url(#radialGradient1351);fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1349);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 28.052005,41.973281 L 34.525545,40.354901 L 42.97711,41.343911 L 46.03406,39.455801 L 18.971068,37.208041 L 28.052005,41.973281 z "
|
||||
id="path20528" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2108);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2116);stroke-width:0.72012359;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="M 23.714488,18.330801 C 23.714488,18.330801 30.108301,39.865931 27.833257,41.706701 C 27.088551,42.378471 24.146676,43.731151 20.696732,45.037261 C 14.340314,45.033251 9.2004398,44.799211 5.8642504,41.656511 L 5.9471959,40.202701 C 8.3885407,39.728291 18.011442,39.237181 18.792515,38.486921 C 20.415534,36.927921 15.995619,18.078535 15.995619,18.078535 L 23.714488,18.330801 z "
|
||||
id="path15935"
|
||||
sodipodi:nodetypes="ccccczcc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.20666665;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 20.689661,43.119461 C 22.827076,42.592281 25.124848,41.959271 27.00481,40.625091 C 27.557596,40.073141 26.915749,35.133081 26.109283,32.317221 C 26.426091,32.476831 26.742898,32.636451 27.059705,32.796061 C 27.45176,35.202311 28.494752,40.285861 27.642951,41.387901 C 27.157416,41.918391 23.73819,43.554641 20.57709,44.675951 L 20.689661,43.119461 z "
|
||||
id="path18223"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:white;fill-opacity:0.6533333;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.2908067,40.505811 C 9.1095696,42.266531 13.360682,43.501821 20.660997,43.125291 L 20.55843,44.683031 C 12.751072,44.718431 8.9244771,43.840371 6.2346462,41.506291 L 6.2908067,40.505811 z "
|
||||
id="path17463"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ddd;fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.5000055,10.515606 L 31.919854,3.4999991 L 34.500031,4.1377817 L 34.500031,35.516679 L 31.919854,35.771791 L 4.5000055,33.645842 L 4.5000055,10.515606 z "
|
||||
id="path12111"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.14666664;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 31.465278,4.0915306 L 31.545745,35.240961 L 33.906121,35.039241 L 34,4.5798996 L 31.465278,4.0915306 z "
|
||||
id="path12873"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient2101);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5005);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.499998,12.565745 L 7.499998,30.712289 L 28.500001,31.500003 L 28.500001,7.4999983 L 7.499998,12.565745 z "
|
||||
id="path13633"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2098);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8,12.976693 C 8.0893998,18.423409 8.1787994,23.870119 8.2681992,29.316841 C 12.240102,20.593799 16.058748,12.285486 28,10.861599 C 27.987228,9.9077326 27.974457,8.9538658 27.961685,8 C 21.307791,9.658898 14.653895,11.317796 8,12.976693 z "
|
||||
id="path15161"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4039);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 39.187247,46.258478 L 48,42.690701 L 38.459588,40.663553 L 39.187247,46.258478 z "
|
||||
id="path1410" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4997);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 31.5,4.0883883 L 31.5,35.088388"
|
||||
id="path4989" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5888);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.4999985,11.021737 L 31.091834,4.4999991 L 33.499996,5.0928846 L 33.499996,34.26284 L 31.091834,34.499993 L 5.4999985,32.523701 L 5.4999985,11.021737 z "
|
||||
id="path5007"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:#757575;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.522132,30.5 C 19.522132,30.5 18.680481,18.05541 27.37758,17.518079 C 35.988358,16.980747 36.441558,28.608594 36.441558,28.608594 L 32.2117,28.350675 C 32.2117,28.350675 31.649735,20.82674 27.463903,21.386863 C 23.398019,21.930937 23.600287,29.296379 23.600287,29.296379 L 19.522132,30.5 z "
|
||||
id="path7480"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4083);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.429128,28.269533 C 22.594666,28.37301 21.760205,28.554097 20.925743,28.657575 C 21.645105,25.734324 22.796089,20.541027 26.623102,21.032547 C 24.644851,21.756892 23.249289,24.557263 23.429128,28.269533 z "
|
||||
id="path8208"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4080);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.069178,27.028878 C 33.85238,24.673652 33.249421,22.355226 33.032628,20 C 34.577289,21.453616 35.674809,24.011245 36,27.120879 C 35.241218,27.047278 34.827955,27.102478 34.069178,27.028878 z "
|
||||
id="path8218"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4987);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.519601,30.500003 C 20.519601,30.500003 19.774406,19.012676 27.474788,18.516677 C 35.098741,18.020678 35.500003,28.754088 35.500003,28.754088 L 33.301697,28.648591 C 33.301697,28.648591 32.406388,20.200811 27.46283,20.408488 C 22.563465,20.616166 22.671978,30.361239 22.671978,30.361239 L 20.519601,30.500003 z "
|
||||
id="path4979"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4075);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4077);stroke-width:0.9999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.499993,30.041429 C 21.704178,28.586548 28.84553,27.518408 34.431911,27.499993 C 36.639589,27.61049 38.328938,28.052479 39.499969,28.494467 L 39.499969,45.953038 C 38.444124,46.800183 36.581996,47.150092 34.431911,47.5 C 28.672756,47.389499 21.992135,46.560774 17.499993,44.848062 L 17.499993,30.041429 z "
|
||||
id="path5270"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4072);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.025631,47 L 34.003996,28 C 36.2968,28.153142 37.226481,28.402351 39,28.882122 L 39,45.673803 C 37.882799,46.365647 36.116493,46.673215 34.025631,47 z "
|
||||
id="path6008"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<g
|
||||
id="g8247"
|
||||
transform="matrix(0.258466,0,0,0.259217,13.24294,14.55384)">
|
||||
<path
|
||||
sodipodi:nodetypes="csccccsc"
|
||||
id="path8238"
|
||||
d="M 40.73975,78.292968 C 36.932299,78.292968 33.840106,82.815614 33.840106,88.396407 C 33.840106,92.772927 35.75462,96.469749 38.411036,97.875694 L 35.616582,113.93783 L 46.315342,115.97894 L 43.201531,97.807428 C 45.788859,96.349402 47.639394,92.700278 47.639394,88.396407 C 47.639394,82.815614 44.5472,78.292968 40.73975,78.292968 z "
|
||||
style="opacity:1;color:black;fill:black;fill-opacity:0.49200003;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccccsc"
|
||||
id="path8245"
|
||||
d="M 42.950424,79.484971 C 39.929313,79.484971 37.475738,83.781927 37.475738,89.084224 C 37.475738,93.242344 38.994855,96.754687 41.102651,98.090472 L 38.70832,114.56023 L 46.36425,115.98591 L 43.133742,97.958381 C 45.18672,96.573114 47.754163,92.829013 47.754163,88.739915 C 47.754163,83.437618 45.971536,79.484971 42.950424,79.484971 z "
|
||||
style="opacity:1;color:black;fill:black;fill-opacity:0.83999999;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient4066);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 18,30.492774 C 18,34.076589 18.021364,37.768786 18.021364,41.352599 C 21.211394,35.398843 27.135738,32.219655 34,43 C 34,37.999998 34,33.000001 34,28 C 30.404093,28 23.433022,28.563584 18,30.492774 z "
|
||||
id="path8228"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4967);stroke-width:0.99999964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18.500004,30.787291 C 22.321996,29.477898 28.814145,28.516573 33.892682,28.499998 C 35.899666,28.599446 37.43544,28.997236 38.500015,29.395025 L 38.500015,45.107732 C 37.540154,45.870162 35.847308,46.18508 33.892682,46.499997 C 28.657078,46.400546 22.583775,45.654694 18.500004,44.113254 L 18.500004,30.787291 z "
|
||||
id="path4959"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4977);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.5,29.5 L 34.5,46.5"
|
||||
id="path4969" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 25 KiB |
272
datas/icon-themes/edeneu/scalable/actions/system-log-out.svg
Normal file
@@ -0,0 +1,272 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
sodipodi:docname="system-log-out.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7752">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.36909872"
|
||||
offset="0"
|
||||
id="stop7754" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7756" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5996">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19313304"
|
||||
offset="0"
|
||||
id="stop5998" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6000" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5104">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5106" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5108" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4197">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4199" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4201" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4187">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4189" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.27843139"
|
||||
offset="1"
|
||||
id="stop4191" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4176">
|
||||
<stop
|
||||
style="stop-color:#f85151;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4178" />
|
||||
<stop
|
||||
style="stop-color:#d00303;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4180" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4187"
|
||||
id="linearGradient4193"
|
||||
x1="75.787148"
|
||||
y1="3.4719357"
|
||||
x2="57.994637"
|
||||
y2="98.832764"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368526,0,0,0.418326,-0.562223,-4.56978)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4197"
|
||||
id="radialGradient4203"
|
||||
cx="62.970509"
|
||||
cy="48.729244"
|
||||
fx="62.970509"
|
||||
fy="33.755856"
|
||||
r="32.085793"
|
||||
gradientTransform="matrix(0.401619,0,0,0.303437,-5.176437,0.949767)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4176"
|
||||
id="radialGradient4227"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="67.655052"
|
||||
cy="76.752853"
|
||||
fx="67.655052"
|
||||
fy="76.752853"
|
||||
r="49.918098"
|
||||
gradientTransform="matrix(0.422178,0,0,0.453069,-1.832154,-2.941694)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5104"
|
||||
id="radialGradient5113"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.34868,0,0,7.72303e-2,1.743401,34.75497)"
|
||||
cx="52.5"
|
||||
cy="114"
|
||||
fx="50.669872"
|
||||
fy="145.41862"
|
||||
r="57.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5996"
|
||||
id="linearGradient6002"
|
||||
x1="17.101027"
|
||||
y1="141.30928"
|
||||
x2="111.17001"
|
||||
y2="86.99852"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378285,0,0,0.378285,-0.189143,-0.32181)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7752"
|
||||
id="linearGradient7758"
|
||||
x1="113.84499"
|
||||
y1="63.299728"
|
||||
x2="36.392986"
|
||||
y2="63.299728"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.402129,0,0,0.408368,-0.380985,-3.877643)" />
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient2444">
|
||||
<stop
|
||||
id="stop2445"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.50847459;" />
|
||||
<stop
|
||||
id="stop2446"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2437">
|
||||
<stop
|
||||
id="stop2438"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.38135594;" />
|
||||
<stop
|
||||
id="stop2439"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="33.493656"
|
||||
x2="72.694733"
|
||||
y1="-59.204693"
|
||||
x1="69.163368"
|
||||
gradientTransform="scale(1.00639,0.993651)"
|
||||
id="linearGradient2443"
|
||||
xlink:href="#linearGradient2444"
|
||||
inkscape:collect="always" />
|
||||
</defs>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="53"
|
||||
inkscape:window-y="120"
|
||||
showborder="false"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient6002);fill-opacity:1;stroke:none;stroke-width:3.00000095;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 47.144342,41.66428 C 43.957506,44.41418 32.792911,46.64597 22.22338,46.64597 C 11.65385,46.64597 5.6621049,44.41418 8.8489433,41.66428 C 12.035786,38.91439 23.200376,36.68259 33.769906,36.68259 C 44.339437,36.68259 50.331186,38.91439 47.144342,41.66428 z "
|
||||
id="path5119" />
|
||||
<path
|
||||
style="opacity:0.43096236;fill:url(#radialGradient5113);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 40.098219,43.55926 C 40.098219,46.01055 31.116218,48 20.049109,48 C 8.9820009,48 -1.2548031e-16,46.01055 -1.2548031e-16,43.55926 C -1.2548031e-16,41.10797 8.9820009,39.11852 20.049109,39.11852 C 31.116218,39.11852 40.098219,41.10797 40.098219,43.55926 z "
|
||||
id="path4229" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4227);fill-opacity:1;stroke:#8c0404;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 42.499982,24.499993 C 42.499982,36.643987 33.315985,46.499979 21.999991,46.499979 C 10.683995,46.499979 1.5,36.643987 1.5,24.499993 C 1.5,12.355997 10.683995,2.5000016 21.999991,2.5000016 C 33.315985,2.5000016 42.499982,12.355997 42.499982,24.499993 z "
|
||||
id="path3305" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient7758);stroke-width:2.00000048;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 41.000006,24.50001 C 41.000006,35.816011 32.455408,45.000012 21.927238,45.000012 C 11.39907,45.000012 2.8544709,35.816011 2.8544709,24.50001 C 2.8544709,13.184004 11.39907,4.0000015 21.927238,4.0000015 C 32.455408,4.0000015 41.000006,13.184004 41.000006,24.50001 z "
|
||||
id="path6877" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4193);stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 39.499999,24.500001 C 39.499999,36.091998 31.212,45.499994 21,45.499994 C 10.787999,45.499994 2.5000001,36.091998 2.5000001,24.500001 C 2.5000001,12.907998 10.787999,3.4999994 21,3.4999994 C 31.212,3.4999994 39.499999,12.907998 39.499999,24.500001 z "
|
||||
id="path4185" />
|
||||
<g
|
||||
id="g171"
|
||||
style="stroke:black"
|
||||
transform="matrix(0.378285,0,0,0.378285,-54.35064,16.39493)" />
|
||||
<g
|
||||
style="stroke:white;stroke-width:4.89438963;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="matrix(0.143997,0,0,0.163303,-101.6889,-22.50914)"
|
||||
id="g1811">
|
||||
<path
|
||||
style="fill:white;stroke:white;stroke-width:4.89438963;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path596"
|
||||
d="M 880.40024,217.24795 L 880.40024,243.40268 C 896.45863,254.30582 907.02911,272.71192 907.02911,293.54126 C 907.02911,326.93608 879.86015,354.10408 846.46534,354.10408 C 813.07051,354.10408 781.03287,326.93608 781.03287,293.54126 C 781.03287,272.71096 795.77746,244.89965 812.53042,240.7152 L 812.53042,219.93543 C 783.34926,232.96643 764.35069,260.24477 764.35069,294.21409 C 764.35069,340.2585 805.98417,374.35947 852.02955,374.35947 C 898.07492,374.35947 932.75313,338.91476 932.75313,292.87035 C 932.75313,258.90103 919.31877,229.60708 880.40024,217.24795 z "
|
||||
sodipodi:nodetypes="ccsssccsssc" />
|
||||
<path
|
||||
style="fill:white;stroke:white;stroke-width:4.89438963;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path598"
|
||||
d="M 862.23789,324.53196 L 830.69276,322.51635 L 830.69276,210.18225 L 862.23789,207.49477 L 862.23789,324.53196 z "
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.5690377;fill:url(#radialGradient4203);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.27843137"
|
||||
d="M 33,15.736021 C 33,21.110307 27.226951,25.472047 20.113729,25.472047 C 13.000508,25.472047 7.2274582,21.110307 7.2274582,15.736021 C 7.2274582,10.361737 13.000508,6 20.113729,6 C 27.226951,6 33,10.361737 33,15.736021 z "
|
||||
id="path4195" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
322
datas/icon-themes/edeneu/scalable/actions/system-search.svg
Normal file
@@ -0,0 +1,322 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="system-search.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient8363">
|
||||
<stop
|
||||
id="stop8365"
|
||||
offset="0"
|
||||
style="stop-color:#aaa;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#dbdbdb;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop8367" />
|
||||
<stop
|
||||
id="stop8369"
|
||||
offset="0.75"
|
||||
style="stop-color:#8e8e8e;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop8371"
|
||||
offset="1"
|
||||
style="stop-color:#a8a8a8;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7482">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7484" />
|
||||
<stop
|
||||
style="stop-color:gray;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop7486" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3853">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3855" />
|
||||
<stop
|
||||
id="stop3861"
|
||||
offset="0.61764705"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3857" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.30653265"
|
||||
offset="0"
|
||||
id="stop3841" />
|
||||
<stop
|
||||
id="stop3847"
|
||||
offset="0.61764705"
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.3137255;" />
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3843" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3821">
|
||||
<stop
|
||||
style="stop-color:#d57e00;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3823" />
|
||||
<stop
|
||||
style="stop-color:#bfb600;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3825" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3799">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3801" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.44313726"
|
||||
offset="1"
|
||||
id="stop3803" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2912">
|
||||
<stop
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2914" />
|
||||
<stop
|
||||
id="stop2920"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#a5a5a5;stop-opacity:1;"
|
||||
offset="0.75"
|
||||
id="stop2922" />
|
||||
<stop
|
||||
style="stop-color:#d4d4d4;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3799"
|
||||
id="linearGradient3953"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.614663,-1.663048,1.614663,1.663048,-9.275704,20.20955)"
|
||||
x1="14.607078"
|
||||
y1="6.4781427"
|
||||
x2="7.7626853"
|
||||
y2="13.879766" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2912"
|
||||
id="linearGradient3959"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.52541,-2.549984,1.6378,1.653738,-18.0081,27.61456)"
|
||||
x1="6.9188247"
|
||||
y1="17.483641"
|
||||
x2="10.358043"
|
||||
y2="17.483641" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3821"
|
||||
id="linearGradient3963"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.677012,-1.685581,1.677012,1.685581,-11.81476,19.36691)"
|
||||
x1="6.6440091"
|
||||
y1="20.073732"
|
||||
x2="10.793779"
|
||||
y2="20.073732" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3853"
|
||||
id="radialGradient3965"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-8.420189e-17,2.255455e-16,0.803279,1.094962e-14,0.985551)"
|
||||
cx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
fy="5.0098858"
|
||||
r="4.372983" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3853"
|
||||
id="radialGradient3967"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,1.323542e-16,1.812598e-16,0.803279,2.864913e-15,0.985551)"
|
||||
cx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
fy="5.0098858"
|
||||
r="4.372983" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3839"
|
||||
id="radialGradient3969"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.227473,-7.846193e-17,-2.511663e-16,1.227473,3.136218,-2.253726)"
|
||||
cx="-13.583885"
|
||||
cy="10.198135"
|
||||
fx="-13.583885"
|
||||
fy="10.198135"
|
||||
r="6.1843319" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8363"
|
||||
id="linearGradient5727"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.759161,-1.66975,1.759161,1.66975,-9.884412,20.09135)"
|
||||
x1="2.939218"
|
||||
y1="3.7911859"
|
||||
x2="7.3838892"
|
||||
y2="14.346088" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2912"
|
||||
id="linearGradient6605"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.578895,-1.624194,1.578895,1.624194,-8.323852,20.0842)"
|
||||
x1="2.939218"
|
||||
y1="3.7911859"
|
||||
x2="7.3838892"
|
||||
y2="14.346088" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7482"
|
||||
id="linearGradient7488"
|
||||
x1="-14.412675"
|
||||
y1="15.501576"
|
||||
x2="-14.412678"
|
||||
y2="6.0857162"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="44.954798"
|
||||
inkscape:cy="9.5147186"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="123"
|
||||
inkscape:window-y="124"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false"
|
||||
showgrid="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient5727);fill-opacity:1.0;fill-rule:nonzero;stroke:#505050;stroke-width:0.99999964;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 18.5 1.5 C 13.899687 1.486955 9.2927136 3.2643922 5.78125 6.875 C 5.671517 6.987831 5.5438047 7.135005 5.4375 7.25 C 2.5074948 10.419536 0.88315896 14.396313 0.5625 18.46875 C 0.51287601 19.050527 0.4920198 19.635399 0.5 20.21875 C 0.55893287 24.885558 2.3246542 29.539558 5.78125 33.09375 C 9.4763131 36.893144 14.400592 38.667406 19.25 38.46875 C 24.502404 38.666643 29.810389 36.892453 33.8125 33.09375 C 41.420391 25.872536 41.389145 14.158713 33.78125 6.9375 C 29.977303 3.3268938 24.983492 1.513045 20 1.5 C 19.740573 1.4993209 19.478048 1.5222188 19.21875 1.53125 C 18.978545 1.5207398 18.740326 1.5006815 18.5 1.5 z M 18.6875 5.5625 C 22.16091 5.7257926 25.600019 7.1000197 28.25 9.75 C 33.903292 15.403292 33.903291 24.596709 28.25 30.25 C 25.60002 32.89998 22.163956 34.303126 18.6875 34.46875 C 14.926735 34.299981 11.210559 32.896381 8.34375 30.25 C 2.2195728 24.596708 2.2195731 15.403291 8.34375 9.75 C 11.210558 7.1036191 14.930011 5.7288965 18.6875 5.5625 z "
|
||||
id="path5725" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient3963);fill-opacity:1;fill-rule:nonzero;stroke:#994700;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 29.500005,37.651973 L 35.620711,31.499991 L 43.441612,39.360855 C 47.012023,42.94951 40.640644,48.849535 37.320903,45.512837 L 29.500005,37.651973 z "
|
||||
id="rect3819"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3892"
|
||||
d="M 31.499995,38.261263 L 36.206859,33.500012 L 42.689559,40.057619 C 45.435229,42.835016 40.535595,47.401267 37.982693,44.81887 L 31.499995,38.261263 z "
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:white;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35678394;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient3959);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 26.244688,36.718379 C 29.658941,35.038995 31.347686,33.166602 33.178058,30.797883 C 33.615281,30.048378 34.940743,27.789867 36.430472,29.354364 C 37.677511,30.869129 40.722107,33.51022 38.894993,34.153979 C 35.465188,34.153979 31.610767,39.295849 32.195669,41.47873 C 30.749641,42.65715 27.982033,38.787145 26.244688,36.718379 z "
|
||||
id="rect3807"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient6605);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 18.497297,2.0000705 C 14.024476,1.9873814 9.5451798,3.7163249 6.1310322,7.2284246 C 6.0243404,7.3381772 5.9001674,7.4813359 5.7968089,7.5931935 C -0.71474215,14.640191 -0.59056856,25.817403 6.1310322,32.731849 C 12.959324,39.75605 24.065655,39.75605 30.893946,32.731849 C 37.722239,25.707652 37.691857,14.313416 30.863562,7.2892194 C 27.449414,3.7771213 22.970118,2.0127596 18.497297,2.0000705 z M 18.011154,5.9213361 C 21.615819,5.9213361 25.228779,7.2754597 27.977087,10.024986 C 33.473706,15.524039 33.473705,24.466633 27.977087,29.965686 C 22.480471,35.464738 13.541837,35.464738 8.0452207,29.965686 C 2.5486036,24.466632 2.5486034,15.524038 8.0452207,10.024986 C 10.79353,7.2754597 14.406489,5.9213361 18.011154,5.9213361 z "
|
||||
id="path2034" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3953);stroke-width:1.11072791;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 6.1943809,7.9822044 C -0.11010981,14.813579 0.020919828,25.634826 6.5287798,32.337702 C 13.139938,39.146971 23.898909,39.146971 30.510069,32.337702 C 37.121232,25.528428 37.073459,14.496257 30.462297,7.6869874 C 23.851139,0.87771684 13.139942,0.82851068 6.5287793,7.6377853 C 6.4254815,7.7441787 6.2944523,7.8737698 6.1943809,7.9822044 z "
|
||||
id="path3797"
|
||||
sodipodi:nodetypes="cssssc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient3969);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3837"
|
||||
sodipodi:cx="-14.193548"
|
||||
sodipodi:cy="9.3271885"
|
||||
sodipodi:rx="6.1843319"
|
||||
sodipodi:ry="6.1843319"
|
||||
d="M -8.0092163 9.3271885 A 6.1843319 6.1843319 0 1 1 -20.37788,9.3271885 A 6.1843319 6.1843319 0 1 1 -8.0092163 9.3271885 z"
|
||||
transform="matrix(1.60098,-1.60098,1.60098,1.60098,25.79095,-17.65622)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.57213931;color:black;fill:url(#radialGradient3967);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3851"
|
||||
sodipodi:cx="-5.3766184"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:ry="3.5127239"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
transform="matrix(1.001035,-1.866799,1.733844,1.077798,9.195824,1.56329)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.38308459;color:black;fill:url(#radialGradient3965);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3865"
|
||||
sodipodi:cx="-5.3766184"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:ry="3.5127239"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
transform="matrix(0.600622,-1.041154,1.040306,0.601112,23.5175,15.39412)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:none;fill-opacity:1.0;fill-rule:nonzero;stroke:url(#linearGradient7488);stroke-width:0.48496726;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path6607"
|
||||
sodipodi:cx="-14.193548"
|
||||
sodipodi:cy="9.3271885"
|
||||
sodipodi:rx="6.1843319"
|
||||
sodipodi:ry="6.1843319"
|
||||
d="M -8.0092163 9.3271885 A 6.1843319 6.1843319 0 1 1 -20.37788,9.3271885 A 6.1843319 6.1843319 0 1 1 -8.0092163 9.3271885 z"
|
||||
transform="matrix(1.650606,-1.650607,1.650606,1.650607,26.03244,-18.82348)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
381
datas/icon-themes/edeneu/scalable/actions/system-shutdown.svg
Normal file
@@ -0,0 +1,381 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="system-shutdown.svg"
|
||||
inkscape:export-filename="/home/silvestre/Desktop/PrometheanFX2/32x32/trigger.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6629">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6631" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6633" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4864">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4866" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4868" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4854">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.33905581"
|
||||
offset="0"
|
||||
id="stop4856" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4858" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4844">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4846" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24892704"
|
||||
offset="1"
|
||||
id="stop4848" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5747">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.60944206"
|
||||
offset="0"
|
||||
id="stop5749" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5751" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4850">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.49356222"
|
||||
offset="0"
|
||||
id="stop4852" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4854" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4840">
|
||||
<stop
|
||||
style="stop-color:#eaeaea;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4842" />
|
||||
<stop
|
||||
style="stop-color:#dedede;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4844" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4832">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4834" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.21030043"
|
||||
offset="1"
|
||||
id="stop4836" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4824">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.3004292"
|
||||
offset="0"
|
||||
id="stop4826" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4828" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4814">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4816" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.33476394"
|
||||
offset="1"
|
||||
id="stop4818" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4804">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4806" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.4509804"
|
||||
offset="1"
|
||||
id="stop4808" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4794">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.58798283"
|
||||
offset="0"
|
||||
id="stop4796" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4798" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4794"
|
||||
id="linearGradient4800"
|
||||
x1="28.435675"
|
||||
y1="13.32626"
|
||||
x2="22.403994"
|
||||
y2="13.32626"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.720636,0,0,1.535714,-5.736524,-1.071428)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4804"
|
||||
id="linearGradient4810"
|
||||
x1="23.087534"
|
||||
y1="2.2917771"
|
||||
x2="23.087534"
|
||||
y2="28.692877"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.528688,0,0,1.528794,-1.424168,-2.128217)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4814"
|
||||
id="linearGradient4820"
|
||||
x1="2.2068965"
|
||||
y1="2.5464191"
|
||||
x2="11.289124"
|
||||
y2="28.265253"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.590908,0,0,1.555556,-2.06818,-1.388888)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4824"
|
||||
id="linearGradient4830"
|
||||
x1="22.323608"
|
||||
y1="24.445623"
|
||||
x2="10.972977"
|
||||
y2="16.914621"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.538461,0,0,1.55,-1.5,-1.024996)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4832"
|
||||
id="radialGradient4838"
|
||||
cx="8.9257374"
|
||||
cy="12.387712"
|
||||
fx="8.9257374"
|
||||
fy="12.387712"
|
||||
r="7.0000024"
|
||||
gradientTransform="matrix(2.28474,-7.866722e-16,1.171223e-15,3.452814,-8.161089,-27.00854)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4840"
|
||||
id="linearGradient4846"
|
||||
x1="5.5172415"
|
||||
y1="5.0928383"
|
||||
x2="5.5172415"
|
||||
y2="27.867596"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.541667,0,0,1.517241,-1.354168,-0.775862)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4850"
|
||||
id="linearGradient4856"
|
||||
x1="5.4323606"
|
||||
y1="10.779841"
|
||||
x2="13.926297"
|
||||
y2="13.841417"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.833333,0,0,1.559813,-4.916671,-1.375691)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5747"
|
||||
id="linearGradient5753"
|
||||
x1="26.537334"
|
||||
y1="32.927628"
|
||||
x2="28.088388"
|
||||
y2="26.931528"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.589869,0,0,1.378185,-3.156843,3.167199)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4844"
|
||||
id="linearGradient4852"
|
||||
x1="16.1875"
|
||||
y1="33.625404"
|
||||
x2="16.1875"
|
||||
y2="14.296127"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.95061,0,0.666763)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4854"
|
||||
id="linearGradient4860"
|
||||
x1="18.340582"
|
||||
y1="16.180195"
|
||||
x2="18.340582"
|
||||
y2="29.705418"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.95061,0,0.666763)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4864"
|
||||
id="linearGradient4870"
|
||||
x1="20.13031"
|
||||
y1="31.007202"
|
||||
x2="21.9021"
|
||||
y2="32.778992"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6629"
|
||||
id="linearGradient6635"
|
||||
x1="17.854446"
|
||||
y1="34.214714"
|
||||
x2="17.854446"
|
||||
y2="30.596979"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="21.830684"
|
||||
inkscape:cy="23.364826"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="92"
|
||||
inkscape:window-y="96"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5753);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 37.455128,45 L 48,40.378185 L 35,39 L 37.455128,45 z "
|
||||
id="path4872"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4846);fill-opacity:1;fill-rule:evenodd;stroke:#a2a2a2;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 2.4999999,4.5344814 L 34.67392,1.4999996 L 39.500007,3.0172405 L 39.500007,43.982745 L 34.67392,45.499986 L 2.4999999,42.465504 L 2.4999999,4.5344814 z "
|
||||
id="path3917"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="opacity:0.70711299;fill:url(#linearGradient4800);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 33.838094,2 L 33.838094,45 L 39,43.464286 L 39,3.5357143 L 33.838094,2 z "
|
||||
id="path4792" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4810);stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.5,2.6299383 L 34.5,44.5"
|
||||
id="path4802"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4820);stroke-width:1.00000024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 3.4999986,5.3965551 L 33.934773,2.5000021 L 38.499989,3.9482786 L 38.499989,43.051742 L 33.934773,44.500018 L 3.4999986,41.603465 L 3.4999986,5.3965551 z "
|
||||
id="path4812"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4838);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4830);stroke-width:1.00000048px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8.4999994,37.650636 L 28.499989,38.500008 L 28.499989,7.5000027 L 8.4999994,9.0469255 L 8.4999994,37.650636 z "
|
||||
id="path4822"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4856);stroke-width:1.00000024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 12.499997,11.897201 L 23.499996,11.500007 L 23.499996,34.50001 L 12.499997,33.970417 L 12.499997,11.897201 z "
|
||||
id="path4848"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#d71717;fill-opacity:1;fill-rule:evenodd;stroke:#891616;stroke-width:1.00000024px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 13.904569,12.88278 L 22.500001,12.499999 L 22.500001,33.476215 L 15.729717,33.476215 C 14.906728,33.098839 11.406326,31.416718 10.466322,29.986201 C 12.534681,25.645113 13.904569,20.318179 13.904569,12.88278 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4860);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4852);stroke-width:0.99999934px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 14.993101,13.89422 L 21.102254,13.49999 C 20.923238,19.666344 20.981879,25.865083 18.706347,30.187496 C 16.111838,30.51149 14.088408,30.437004 11.633194,29.62564 C 12.876597,26.668273 14.639548,21.48909 14.993101,13.89422 z "
|
||||
id="path4842"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4870);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.75536484"
|
||||
d="M 19,30 L 22,33"
|
||||
id="path4862" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6635);fill-opacity:1.0;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.75536481"
|
||||
d="M 10.9375,29.71875 C 13.740586,30.506393 16.523718,31.122347 19.657709,31 L 22,33 L 15.632964,33 C 13.89865,31.976903 12.097371,30.905974 10.9375,29.71875 z "
|
||||
id="rect5745"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
197
datas/icon-themes/edeneu/scalable/actions/view-refresh.svg
Normal file
@@ -0,0 +1,197 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="view-refresh.svg"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="Etiquette"
|
||||
height="48"
|
||||
width="48"
|
||||
y="00"
|
||||
x="00"
|
||||
version="1.0">
|
||||
<metadata
|
||||
id="About">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:date />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="Etiquette"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-x="111"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<defs
|
||||
id="Gradients">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7471">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7473" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7475" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5714">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5716" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.40772533"
|
||||
offset="1"
|
||||
id="stop5718" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
id="stop2203"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#479214;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop2205"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#3ee407;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7471"
|
||||
id="radialGradient7477"
|
||||
cx="18"
|
||||
cy="43.5"
|
||||
fx="18"
|
||||
fy="43.5"
|
||||
r="17"
|
||||
gradientTransform="matrix(1.264705,0,0,0.205882,-1.264705,35.54412)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient3947"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.507947,-0.897211,0.879789,-0.518004,12.50419,66.60834)"
|
||||
x1="41.028126"
|
||||
y1="20.863903"
|
||||
x2="13.924223"
|
||||
y2="11.38804" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient3950"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.313181,0.545847,0.535736,-0.311248,20.88659,78.70054)"
|
||||
x1="-38.201668"
|
||||
y1="13.049702"
|
||||
x2="-79.709045"
|
||||
y2="18.544086" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient3953"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.515568,0.897211,-0.892989,0.518005,35.37575,-17.60839)"
|
||||
x1="8.7257576"
|
||||
y1="25.099516"
|
||||
x2="36.619328"
|
||||
y2="17.625456" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient3956"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.313181,-0.545847,-0.535736,0.311248,27.11797,-29.70825)"
|
||||
x1="-93.517403"
|
||||
y1="19.253912"
|
||||
x2="-47.049515"
|
||||
y2="41.683594" />
|
||||
</defs>
|
||||
<path
|
||||
style="opacity:0.1;fill:url(#radialGradient7477);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 43,44.5 C 43,46.432 33.368,48 21.5,48 C 9.632,48 0,46.432 0,44.5 C 0,42.568 9.632,41 21.5,41 C 33.368,41 43,42.568 43,44.5 z "
|
||||
id="path6595" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3956);fill-opacity:1;fill-rule:evenodd;stroke:#438a16;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 42.193021,30.49229 C 42.986505,23.056585 43.701963,15.484885 44.495446,8.049179 C 42.512533,9.261843 39.90513,10.65538 37.922218,11.868044 C 26.197726,-3.2755477 7.7430525,4.4079595 3.5045613,17.079562 C 13.629684,3.7829504 25.072757,11.752011 28.201122,17.515735 C 26.352145,18.650587 23.441715,20.220172 21.592736,21.355026 C 28.459591,24.40094 35.326169,27.446375 42.193021,30.49229 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3953);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 41.370747,29.062492 L 43.250032,9.9354312 L 37.698539,13.139507 C 27.178551,-1.2108934 11.254752,4.2496947 6.5000017,12.485163 C 17.232406,4.9129101 26.169241,11.510099 29.623788,17.823511 L 23.861783,21.347213 L 41.370747,29.062492 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3950);fill-opacity:1;fill-rule:evenodd;stroke:#438a16;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.811538,18.5 C 5.0180535,25.935705 4.3025965,33.507405 3.509113,40.943111 C 5.4920258,39.730447 8.0994288,38.33691 10.082341,37.124246 C 21.806833,52.267838 40.261506,44.58433 44.499998,31.912728 C 34.374875,45.20934 22.931802,37.240279 19.803437,31.476555 C 21.652414,30.341703 24.562844,28.772118 26.411823,27.637264 C 19.544968,24.59135 12.67839,21.545915 5.811538,18.5 z "
|
||||
id="path3938"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3947);stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.664931,19.999991 L 4.7500014,39.252036 L 10.404164,35.922962 C 20.768652,50.27335 35.845735,44.236928 40.953121,36.827305 C 30.379355,44.399551 21.763042,37.552368 18.359559,31.238961 L 24.344275,27.715264 L 6.664931,19.999991 z "
|
||||
id="path3940"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.9 KiB |
238
datas/icon-themes/edeneu/scalable/actions/window-new.svg
Normal file
@@ -0,0 +1,238 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="window-new.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5712">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.64806867"
|
||||
offset="0"
|
||||
id="stop5714" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24892704"
|
||||
offset="1"
|
||||
id="stop5716" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5702">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5704" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.39055794"
|
||||
offset="1"
|
||||
id="stop5706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5692">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.81960785"
|
||||
offset="0"
|
||||
id="stop5694" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.40784314"
|
||||
offset="1"
|
||||
id="stop5696" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4806">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.49785408"
|
||||
offset="0"
|
||||
id="stop4808" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4810" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4793">
|
||||
<stop
|
||||
style="stop-color:#f9f9f9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4795" />
|
||||
<stop
|
||||
style="stop-color:#dcdcdc;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4797" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5712"
|
||||
id="linearGradient3954"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.238473,0,0,1.280394,0.284581,-3.40197)"
|
||||
x1="21.844343"
|
||||
y1="3.5399165"
|
||||
x2="21.844343"
|
||||
y2="22.083397" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5702"
|
||||
id="linearGradient3957"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.125"
|
||||
y1="1.2498183"
|
||||
x2="12.125"
|
||||
y2="44.267635"
|
||||
gradientTransform="matrix(1.233334,0,0,1.200001,0.183332,-3.100003)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5692"
|
||||
id="linearGradient3960"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="33.625618"
|
||||
y1="33.649742"
|
||||
x2="33.625618"
|
||||
y2="4.2131443"
|
||||
gradientTransform="matrix(1.215056,0,0,1.188866,0.655848,-2.854187)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4806"
|
||||
id="linearGradient3963"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="37.504166"
|
||||
y1="21.875"
|
||||
x2="27.997295"
|
||||
y2="21.875"
|
||||
gradientTransform="matrix(1.25,0,0,1.194444,-0.500001,-2.972222)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4793"
|
||||
id="linearGradient3967"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.324116"
|
||||
y1="12.28867"
|
||||
x2="17.324116"
|
||||
y2="37.926449"
|
||||
gradientTransform="matrix(1.215056,0,0,1.188866,0.580573,-2.854187)" />
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;"
|
||||
offset="0.5"
|
||||
id="stop7481" />
|
||||
<stop
|
||||
id="stop7483"
|
||||
offset="0.75"
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;" />
|
||||
<stop
|
||||
id="stop7477"
|
||||
offset="1"
|
||||
style="stop-color:#fff409;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient4067"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient3967);fill-opacity:1;stroke:#ababab;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 4.2554711,8.4456505 L 37.038636,2.5020524 L 41.862742,3.6845754 C 42.215784,3.6845754 42.5,3.8692871 42.5,4.0987273 L 42.5,44.880756 C 42.5,45.110197 42.215784,45.294909 41.862742,45.294909 L 37.038636,46.497947 L 4.2554711,42.917177 C 3.9283082,42.834968 3.6182132,42.732465 3.6182132,42.503024 L 3.6182132,8.8598024 C 3.6182132,8.6391241 3.9379275,8.4926949 4.2554711,8.4456505 z "
|
||||
id="path5733"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="fill:#1882ba;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 4.225741,9.0272705 L 36.933339,3.090143 L 41.892477,4.3161609 L 41.892477,10.223339 L 36.933339,9.034473 L 4.225741,13.822394 L 4.225741,9.0272705 z "
|
||||
id="path5735"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3963);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 37,3 L 42,4.1944445 L 42,44.768229 L 37,46 L 37,3 z "
|
||||
id="path5737"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3960);stroke-width:1.00000036px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.5,3.0158389 L 36.5,45.963623"
|
||||
id="path5739" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient3957);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 5.1064153,9.1739658 L 36.630563,3.4999998 L 40.893591,4.4788776 C 41.229546,4.5726276 41.500007,4.6552098 41.500007,4.8742414 L 41.500007,43.956191 C 41.500007,44.175222 41.229546,44.351555 40.893591,44.351555 L 36.302958,45.500016 L 5.1064153,42.081688 C 4.7950868,42.003209 4.4999991,41.905356 4.4999991,41.686324 L 4.4999991,9.56933 C 4.4999991,9.3586627 4.8042397,9.2188758 5.1064153,9.1739658 z "
|
||||
id="path5741"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.78242678;fill:url(#linearGradient3954);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 4.6292413,9.2683038 L 37,3 L 37,29 C 31.407165,18.365589 8.1508402,19.539154 4,29 L 4,9.7050819 C 4,9.4723481 4.3156923,9.3179185 4.6292413,9.2683038 z "
|
||||
id="path5743"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.94142259;fill:url(#radialGradient4067);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6598"
|
||||
sodipodi:cx="27.930717"
|
||||
sodipodi:cy="18.124739"
|
||||
sodipodi:rx="9.1923885"
|
||||
sodipodi:ry="9.1923885"
|
||||
d="M 37.123106 18.124739 A 9.1923885 9.1923885 0 1 1 18.738329,18.124739 A 9.1923885 9.1923885 0 1 1 37.123106 18.124739 z"
|
||||
transform="matrix(1.033464,0,0,1.033464,7.634617,-7.23126)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.0 KiB |
508
datas/icon-themes/edeneu/scalable/apps/accessories-archiver.svg
Normal file
@@ -0,0 +1,508 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/mimetypes"
|
||||
sodipodi:docname="package-x-generic.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7504">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.53218883"
|
||||
offset="0"
|
||||
id="stop7506" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7508" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6621">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.41201717"
|
||||
offset="0"
|
||||
id="stop6623" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6625" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5734">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.88627452"
|
||||
offset="0"
|
||||
id="stop5736" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.14509805"
|
||||
offset="1"
|
||||
id="stop5738" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5724">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.79399139"
|
||||
offset="0"
|
||||
id="stop5726" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.39914164"
|
||||
offset="1"
|
||||
id="stop5728" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4841">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.87843138"
|
||||
offset="0"
|
||||
id="stop4843" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.15294118"
|
||||
offset="1"
|
||||
id="stop4845" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6574">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6576" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6578" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5838">
|
||||
<stop
|
||||
style="stop-color:#7c6634;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5840" />
|
||||
<stop
|
||||
style="stop-color:#5f4e28;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop5842" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5056">
|
||||
<stop
|
||||
id="stop5058"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.13541667;" />
|
||||
<stop
|
||||
id="stop5060"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5050">
|
||||
<stop
|
||||
id="stop5052"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.15625000;" />
|
||||
<stop
|
||||
id="stop5054"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5030">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.20833331;"
|
||||
offset="0.0000000"
|
||||
id="stop5032" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5034" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4294">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.66799998"
|
||||
offset="0"
|
||||
id="stop4296" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4298" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3556">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.77200007"
|
||||
offset="0"
|
||||
id="stop3558" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3560" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3546">
|
||||
<stop
|
||||
style="stop-color:#e6be76;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3548" />
|
||||
<stop
|
||||
style="stop-color:#ba9a5f;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3550" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2812">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0"
|
||||
offset="0"
|
||||
id="stop2814" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.40343347"
|
||||
offset="1"
|
||||
id="stop2816" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2804">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2806" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2808" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5030"
|
||||
id="radialGradient5074"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.194981,-5.559243e-17,85.07658)"
|
||||
cx="66.597786"
|
||||
cy="105.68266"
|
||||
fx="66.597786"
|
||||
fy="105.68266"
|
||||
r="61.16605" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5056"
|
||||
id="radialGradient5076"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.194981,1.852252e-15,85.07658)"
|
||||
cx="66.597786"
|
||||
cy="105.68266"
|
||||
fx="66.597786"
|
||||
fy="105.68266"
|
||||
r="61.16605" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5030"
|
||||
id="radialGradient5078"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.194981,-4.384903e-14,85.07658)"
|
||||
cx="66.597786"
|
||||
cy="105.68266"
|
||||
fx="66.597786"
|
||||
fy="105.68266"
|
||||
r="61.16605" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5050"
|
||||
id="radialGradient5080"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.194981,3.345025e-14,85.07658)"
|
||||
cx="66.597786"
|
||||
cy="105.68266"
|
||||
fx="66.597786"
|
||||
fy="105.68266"
|
||||
r="61.16605" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4294"
|
||||
id="linearGradient5093"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="37.549816"
|
||||
y1="17.003689"
|
||||
x2="38.494465"
|
||||
y2="75.808121"
|
||||
gradientTransform="matrix(0.341035,0,0,0.341035,1.055011,1.508282)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3556"
|
||||
id="linearGradient5096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="26.050753"
|
||||
y1="29.725203"
|
||||
x2="1.0019522"
|
||||
y2="71.389709"
|
||||
gradientTransform="matrix(0.294911,0,0,0.341105,1.220611,1.810063)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2804"
|
||||
id="linearGradient5100"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="83.329018"
|
||||
y1="26.385363"
|
||||
x2="80.49015"
|
||||
y2="66.129463"
|
||||
gradientTransform="matrix(0.341035,0,0,0.341035,1.055011,1.508282)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3546"
|
||||
id="linearGradient5106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="32.230434"
|
||||
y1="41.144566"
|
||||
x2="46.587982"
|
||||
y2="106.93941"
|
||||
gradientTransform="matrix(0.346221,0,0,0.351778,1.097121,0.452379)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5838"
|
||||
id="linearGradient5844"
|
||||
x1="0.69910854"
|
||||
y1="75.524605"
|
||||
x2="120.00745"
|
||||
y2="75.524605"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.377973,0,0,0.384038,0.659766,-3.504329)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6574"
|
||||
id="linearGradient6580"
|
||||
x1="101.86512"
|
||||
y1="123.32421"
|
||||
x2="105.87292"
|
||||
y2="89.257851"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.374269,0,0,0.399221,0.375015,-4.633551)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4841"
|
||||
id="linearGradient4847"
|
||||
x1="15.867417"
|
||||
y1="21"
|
||||
x2="42"
|
||||
y2="112.84661"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.385028,0,0,0.384108,-0.158243,-3.641524)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5724"
|
||||
id="linearGradient5730"
|
||||
x1="77.428192"
|
||||
y1="33.939774"
|
||||
x2="77.428192"
|
||||
y2="59.944214"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.40076,0,0,0.409007,-1.453778,-4.581872)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5734"
|
||||
id="linearGradient5740"
|
||||
x1="46"
|
||||
y1="37.749943"
|
||||
x2="63.75"
|
||||
y2="102.78278"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.388313,0,0,0.376593,-5.514659e-2,-2.49561)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6621"
|
||||
id="radialGradient6627"
|
||||
cx="26.410114"
|
||||
cy="62.813755"
|
||||
fx="26.410114"
|
||||
fy="62.813755"
|
||||
r="23.289324"
|
||||
gradientTransform="matrix(0.498375,-1.189971e-2,1.226655e-2,0.594484,-3.312311,-18.66157)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7504"
|
||||
id="radialGradient7510"
|
||||
cx="73.499603"
|
||||
cy="40.842281"
|
||||
fx="73.499603"
|
||||
fy="40.842281"
|
||||
r="26.921631"
|
||||
gradientTransform="matrix(0.454873,1.371938e-2,-8.536043e-3,0.254193,-4.909521,1.932051)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2812"
|
||||
id="radialGradient7512"
|
||||
cx="74.231377"
|
||||
cy="81.703247"
|
||||
fx="74.231377"
|
||||
fy="81.703247"
|
||||
r="22.868097"
|
||||
gradientTransform="matrix(0.643816,2.692159e-17,-3.294664e-17,0.997196,-22.06689,-50.01951)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showborder="false"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient6580);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 41.625019,35.00002 L 48.000021,32.333353 L 35.000019,31.00002 L 41.625019,35.00002 z "
|
||||
id="path5846" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5074);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path4302"
|
||||
sodipodi:cx="66.597786"
|
||||
sodipodi:cy="105.68266"
|
||||
sodipodi:rx="61.16605"
|
||||
sodipodi:ry="11.926199"
|
||||
d="M 127.76384 105.68266 A 61.16605 11.926199 0 1 1 5.431736,105.68266 A 61.16605 11.926199 0 1 1 127.76384 105.68266 z"
|
||||
transform="matrix(0.351502,0,0,0.419245,9.075426e-2,-6.306915)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5076);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5038"
|
||||
sodipodi:cx="66.597786"
|
||||
sodipodi:cy="105.68266"
|
||||
sodipodi:rx="61.16605"
|
||||
sodipodi:ry="11.926199"
|
||||
d="M 127.76384 105.68266 A 61.16605 11.926199 0 1 1 5.431736,105.68266 A 61.16605 11.926199 0 1 1 127.76384 105.68266 z"
|
||||
transform="matrix(0.239737,0,0,0.239737,-1.302169,11.52909)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5078);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5042"
|
||||
sodipodi:cx="66.597786"
|
||||
sodipodi:cy="105.68266"
|
||||
sodipodi:rx="61.16605"
|
||||
sodipodi:ry="11.926199"
|
||||
d="M 127.76384 105.68266 A 61.16605 11.926199 0 1 1 5.431736,105.68266 A 61.16605 11.926199 0 1 1 127.76384 105.68266 z"
|
||||
transform="matrix(0.212536,0,0,0.251546,18.84558,9.41598)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5080);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5046"
|
||||
sodipodi:cx="66.597786"
|
||||
sodipodi:cy="105.68266"
|
||||
sodipodi:rx="61.16605"
|
||||
sodipodi:ry="11.926199"
|
||||
d="M 127.76384 105.68266 A 61.16605 11.926199 0 1 1 5.431736,105.68266 A 61.16605 11.926199 0 1 1 127.76384 105.68266 z"
|
||||
transform="matrix(0.151946,0,0,0.151946,26.60683,18.87416)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5106);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5844);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 23.919881,10.500022 L 6.1714292,14.411067 L 1.5000193,23.51046 L 5.5479847,23.51046 L 5.5479847,36.091827 L 24.402151,40.500041 L 42.500609,34.223008 L 42.500609,22.552146 L 45.500019,22.552146 L 42.145999,13.160339 L 23.919881,10.500022 z "
|
||||
id="path1308"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient7512);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.005918,11.00002 L 24.005918,40.00002 L 41.939835,33.829811 L 42.000019,20.666688 L 24.005918,11.00002 z "
|
||||
id="path2792"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5740);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 24.5,39.5 L 24.5,12.280182 L 41.500001,16.706199 L 41.500001,33.688825 L 24.5,39.5 z "
|
||||
id="path5732"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5100);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.00592,11.759522 L 26.967327,23.092602 L 40.977053,23.377352 L 41.034013,19.27694 L 24.00592,11.759522 z "
|
||||
id="path2794"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#c3a56b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.01576,11.00002 L 28.36761,21.62714 L 45.000019,22.00002 L 41.959688,13.79663 L 24.01576,11.00002 z "
|
||||
id="path2051"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5096);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 5.9484022,23.00002 L 6.0000187,15.886545 L 2.2794385,23.00002 L 5.9484022,23.00002 z "
|
||||
id="path3554"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:0.81171546;fill:url(#linearGradient5093);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.5317076,15.763803 L 6.5317076,28.650152 C 10.558691,21.589502 18.371039,19.280702 23.928275,30.663642 L 24.008815,11.817359 L 6.5317076,15.763803 z "
|
||||
id="path3566"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4847);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.5000176,35.200016 L 6.5000176,15.325003 L 23.531506,11.500025 L 23.531506,39.138584 L 6.5000176,35.200016 z "
|
||||
id="path3966"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5730);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 24.500011,11.500016 L 28.583767,21.040415 L 44.500021,21.500005 L 41.807961,14.110794 L 24.500011,11.500016 z "
|
||||
id="path4849"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.13733903;fill-rule:evenodd;stroke:none;stroke-width:0.81922877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 11.243954,18.856801 L 17.114129,18.00002 L 17.114129,26.003853 L 21.000019,25.87891 L 14.321304,35.00002 L 9.0000187,26.363623 L 11.243954,26.280785 L 11.243954,18.856801 z "
|
||||
id="path5742"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="opacity:0.46861925;fill:url(#radialGradient6627);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.85100007;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.0000187,35.750139 L 7.0000187,15.833088 L 23.000019,12.00002 L 23.000019,39.697042 L 7.0000187,35.750139 z "
|
||||
id="path6619"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient7510);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.01576,11.00002 L 28.36761,20.661038 L 45.000019,21.00002 L 41.959688,13.542393 L 24.01576,11.00002 z "
|
||||
id="path7502"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 20 KiB |
@@ -0,0 +1,250 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/devices"
|
||||
sodipodi:docname="gnome-dev-keyboard.svg"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
version="1.0"
|
||||
x="0.0000000"
|
||||
y="0.0000000"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg3367">
|
||||
<metadata
|
||||
id="metadata32">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="svg3367"
|
||||
inkscape:window-y="123"
|
||||
inkscape:window-x="127"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="57.101273"
|
||||
inkscape:cy="25.981856"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6567">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6569" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.472103"
|
||||
offset="1"
|
||||
id="stop6571" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4810">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4812" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.45493561"
|
||||
offset="1"
|
||||
id="stop4814" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4947">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.34821430;"
|
||||
offset="0.0000000"
|
||||
id="stop4949" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4951" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4917">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.16964285;"
|
||||
offset="0.0000000"
|
||||
id="stop4919" />
|
||||
<stop
|
||||
style="stop-color:#dfdfdf;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4921" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4907">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.43750000;"
|
||||
offset="0.0000000"
|
||||
id="stop4909" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4911" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4897">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.40178570;"
|
||||
offset="0.0000000"
|
||||
id="stop4899" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.15178572;"
|
||||
offset="1.0000000"
|
||||
id="stop4901" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="38.199265"
|
||||
fy="150.17976"
|
||||
fx="41.671925"
|
||||
cy="150.17976"
|
||||
cx="41.671925"
|
||||
gradientTransform="matrix(0.628284,0,0,0.290928,-2.185109,-8.578259)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient1328"
|
||||
xlink:href="#linearGradient4947"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="32.810108"
|
||||
fy="46.663265"
|
||||
fx="37.289524"
|
||||
cy="46.663265"
|
||||
cx="37.289524"
|
||||
gradientTransform="matrix(0.577994,0,0,0.195562,2.253306,6.692572)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient1338"
|
||||
xlink:href="#linearGradient4917"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="42.418976"
|
||||
x2="79.597519"
|
||||
y1="33.177986"
|
||||
x1="179.71587"
|
||||
gradientTransform="matrix(0.275658,0,0,0.402748,2.635569,6.599993)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient1341"
|
||||
xlink:href="#linearGradient4907"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="72.627846"
|
||||
x2="91.435989"
|
||||
y1="23.870041"
|
||||
x1="-35.331348"
|
||||
gradientTransform="matrix(0.288368,0,0,0.393228,2.521739,6.290319)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient1344"
|
||||
xlink:href="#linearGradient4897"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4810"
|
||||
id="radialGradient4816"
|
||||
cx="66.044472"
|
||||
cy="60.068462"
|
||||
fx="66.044472"
|
||||
fy="60.068462"
|
||||
r="25.625"
|
||||
gradientTransform="matrix(1.124495,1.618647e-16,-1.649446e-16,1.125912,-49.78807,-45.65135)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="66.5"
|
||||
y1="54.25"
|
||||
x2="138.47189"
|
||||
y2="24.356443"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.408692,0,0,0.393003,-2.249809,0.80618)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6567"
|
||||
id="linearGradient6573"
|
||||
x1="23.060053"
|
||||
y1="9.2114878"
|
||||
x2="23.060053"
|
||||
y2="35.298649"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<path
|
||||
d="M 47.996709,35.113234 C 47.996709,41.250908 37.251543,46.226472 23.996709,46.226472 C 10.741874,46.226472 -0.0032914,41.250908 -0.0032913,35.113234 C -0.0032914,28.975559 10.741874,24 23.996709,24 C 37.251543,24 47.996709,28.975559 47.996709,35.113234 L 47.996709,35.113234 z "
|
||||
style="fill:url(#radialGradient1328);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.80999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:5.4;stroke-opacity:1"
|
||||
id="path4945" />
|
||||
<path
|
||||
d="M 2.5037131,35.677965 L 24.423873,45.496287 L 45.496287,36.923515 L 43.074174,14.357755 L 23.091707,8.5037131 L 4.8047245,14.482311 L 2.5037131,35.677965 z "
|
||||
style="fill:#d6e5ea;fill-opacity:1;fill-rule:evenodd;stroke:#677f89;stroke-width:1.00742614;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3377"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
d="M 5.2717389,15 L 25,21.89516 L 24.641303,45 L 3.1772383,35.400316 L 5.2717389,15 z "
|
||||
style="fill:url(#linearGradient1344);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path4137"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
d="M 24.422512,44.800607 L 24.938848,22.080002 L 42.639863,15 L 44.95569,36.669746 L 24.422512,44.800607 z "
|
||||
style="fill:url(#linearGradient1341);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path4905"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
d="M 4.8949122,15.33783 L 24.586895,22.181993 L 42.717926,15.097683 L 23.025944,9.4542496 L 4.8949122,15.33783 z "
|
||||
style="fill:url(#radialGradient1338);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path4915" />
|
||||
<path
|
||||
id="text2105"
|
||||
d="M 32.136893,15.188325 C 32.020296,15.565152 31.80067,15.921805 31.478012,16.258287 C 31.155345,16.594777 30.731238,16.910202 30.205693,17.204567 C 29.017627,17.870013 27.568196,18.21903 25.857396,18.251612 C 24.14171,18.282484 22.411586,17.992123 20.667021,17.380527 C 18.90292,16.762081 17.868642,16.07752 17.564185,15.326837 C 17.259745,14.576162 17.722256,13.856504 18.951716,13.167862 C 19.42631,12.902044 19.948608,12.671804 20.518612,12.477136 C 21.09181,12.280699 21.705493,12.121653 22.359661,12 L 24.624661,12.794046 C 23.879561,12.895425 23.224013,13.026739 22.658016,13.187993 C 22.09521,13.347477 21.616326,13.537825 21.221363,13.75904 C 20.488784,14.169374 20.238614,14.596538 20.470852,15.040535 C 20.7014,15.481043 21.400634,15.906016 22.568557,16.315456 C 23.726712,16.721477 24.812092,16.92794 25.824697,16.934851 C 26.837301,16.941764 27.695562,16.748084 28.399483,16.353808 C 28.59059,16.246769 28.750263,16.141761 28.878502,16.038779 C 29.005032,15.932307 29.094502,15.828791 29.146907,15.728232 L 27.021182,14.983011 L 25.898416,15.611883 L 24.007252,14.948894 L 26.87389,13.343259 L 32.136893,15.188325"
|
||||
style="font-size:29.34124565px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#radialGradient4816);stroke-width:1.00235164;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.6959296,15.593178 L 24.498824,22.018518 L 24.498824,44.406822"
|
||||
id="path3935"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 24.711473,22.045939 L 42.398845,15.482421"
|
||||
id="path4818"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
d="M 3.4790025,35.220385 L 24.404643,44.520997 L 44.520997,36.400259 L 42.208776,15.024367 L 23.132916,9.4790026 L 5.6756168,15.142355 L 3.4790025,35.220385 z "
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient6573);stroke-width:0.95800519;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4819"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 10 KiB |
@@ -0,0 +1,392 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="accessories-text-editor.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4820">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4822" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.57939917"
|
||||
offset="1"
|
||||
id="stop4824" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4957">
|
||||
<stop
|
||||
id="stop4959"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4961"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#d0d0d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5912">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5914" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5904">
|
||||
<stop
|
||||
id="stop5906"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.19791669;" />
|
||||
<stop
|
||||
id="stop5908"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2057">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2059" />
|
||||
<stop
|
||||
style="stop-color:#dddddd;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2061" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#0a0a0a;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5904"
|
||||
id="radialGradient5902"
|
||||
cx="60.502419"
|
||||
cy="115.07005"
|
||||
fx="60.502419"
|
||||
fy="115.07005"
|
||||
r="56.111115"
|
||||
gradientTransform="matrix(1,0,0,0.213043,-2.766884e-16,90.55513)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5912"
|
||||
id="linearGradient5918"
|
||||
x1="71.236717"
|
||||
y1="152.15218"
|
||||
x2="88.314011"
|
||||
y2="99.212555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.368911,0,0,0.409902,1.019997,-3.067345)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4957"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="81.89402"
|
||||
y1="22.461552"
|
||||
x2="84.654594"
|
||||
y2="10.41062"
|
||||
gradientTransform="matrix(0.373185,0,0,0.36947,-1.509613,-0.729184)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4943"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378019,0,0,0.366486,-1.594096,-1.346996)"
|
||||
x1="69.606209"
|
||||
y1="-2.7867124"
|
||||
x2="82.63073"
|
||||
y2="34.12973" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2057"
|
||||
id="linearGradient4946"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="57.903072"
|
||||
y1="65.225105"
|
||||
x2="85.99958"
|
||||
y2="114.99323"
|
||||
gradientTransform="matrix(0.374016,0,0,0.37836,-1.630407,-0.678575)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4826"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient6739">
|
||||
<stop
|
||||
style="stop-color:#ffe000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6741" />
|
||||
<stop
|
||||
style="stop-color:#ff9500;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop6743" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2430">
|
||||
<stop
|
||||
id="stop2432"
|
||||
offset="0"
|
||||
style="stop-color:#fffce0;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2434"
|
||||
offset="1"
|
||||
style="stop-color:#e3c191;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2472">
|
||||
<stop
|
||||
id="stop2474"
|
||||
offset="0"
|
||||
style="stop-color:#ff003c;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2476"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#aa0028;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2496">
|
||||
<stop
|
||||
id="stop2498"
|
||||
offset="0"
|
||||
style="stop-color:#e2e2e2;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2500"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#979797;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2544">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.55599999"
|
||||
offset="0"
|
||||
id="stop2546" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2548" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6821"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6823"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6826"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.26180258" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2544"
|
||||
id="linearGradient4164"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.380296,0,0,0.392807,-108.7495,0.745303)"
|
||||
x1="-46.352661"
|
||||
y1="152.39613"
|
||||
x2="78.067642"
|
||||
y2="90.131828" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6739"
|
||||
id="linearGradient4166"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.009549,0,0,1.011276,-189.3397,0.756033)"
|
||||
x1="96.115021"
|
||||
y1="28.121029"
|
||||
x2="101.31535"
|
||||
y2="33.392132" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2430"
|
||||
id="linearGradient4168"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.985533,0,0,1.023857,-188.2873,0.917523)"
|
||||
x1="87.762566"
|
||||
y1="40.028625"
|
||||
x2="91.002174"
|
||||
y2="42.9468" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2472"
|
||||
id="linearGradient4170"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.356844,0,0,0.358119,-111.3087,10.86249)"
|
||||
x1="-85.481979"
|
||||
y1="27.451311"
|
||||
x2="-94.657013"
|
||||
y2="43.796722" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2496"
|
||||
id="linearGradient4172"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.376014,0,0,0.380123,-113.4816,10.57597)"
|
||||
x1="-80.819405"
|
||||
y1="33.768192"
|
||||
x2="-90.566032"
|
||||
y2="44.636120" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6821"
|
||||
id="linearGradient4174"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-30.03837,-60.85027)"
|
||||
x1="-62.187824"
|
||||
y1="88.562172"
|
||||
x2="-56.165985"
|
||||
y2="94.584015" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="77"
|
||||
inkscape:window-y="45"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient5918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 36.479999,47 L 47.999999,39.799995 L 30,36 L 36.479999,47 z "
|
||||
id="path5910" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient5902);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5894"
|
||||
sodipodi:cx="60.502419"
|
||||
sodipodi:cy="115.07005"
|
||||
sodipodi:rx="56.111115"
|
||||
sodipodi:ry="11.954107"
|
||||
d="M 116.61353 115.07005 A 56.111115 11.954107 0 1 1 4.391304,115.07005 A 56.111115 11.954107 0 1 1 116.61353 115.07005 z"
|
||||
transform="matrix(0.374257,0,0,0.375482,-1.643478,0.304713)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4946);fill-opacity:1;fill-rule:evenodd;stroke:#bababa;stroke-width:1.01816666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.6381241,42.183118 C 4.3693547,30.869709 5.1005853,16.945515 3.5090833,3.543477 L 23.123274,1.5201175 C 26.564358,1.2807954 36.543511,4.9794104 36.543511,8.2428935 C 38.005971,22.03655 37.661861,34.785892 36.285427,46.490917 L 3.6381241,42.183118 z "
|
||||
id="path1306"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4943);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.65333,3.0742622 C 22.414428,6.3406944 23.110009,11.250879 25.370648,13 C 29.152871,9.1645772 31.696091,7.1625709 36,7.8790784 C 33.706755,4.844458 28.690962,2.5526868 24.65333,3.0742622 z "
|
||||
id="path2039"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4826);stroke-width:0.96689165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.6050865,41.395379 C 5.2943839,30.572095 5.9836814,17.251132 4.4834458,4.4297046 L 22.97284,2.494002 C 26.727951,2.265048 36.016642,5.8034297 35.623479,8.9255306 C 37.002072,22.121611 36.677695,34.318619 35.380195,45.516554 L 4.6050865,41.395379 z "
|
||||
id="path3945"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 22.352108,2.0552082 C 20.141837,5.3482383 20.828523,10.298406 23.060254,12.061771 C 26.79411,8.1951158 31.751128,7.069112 36,7.791454 C 35.023618,4.8595954 26.338108,1.5293855 22.352108,2.0552082 z "
|
||||
id="path2037"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<g
|
||||
id="g4155"
|
||||
transform="matrix(1.121213,0,0,1.133333,125.7704,-6.569662)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path1491"
|
||||
d="M -105.03837,48.149733 L -93.53397,46.616463 L -72.93738,39.141731 C -69.59739,37.416795 -76.27737,34.925221 -81.28734,36.841817 L -99.28617,43.549903 L -105.03837,48.149733 z "
|
||||
style="fill:url(#linearGradient4164);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path2178"
|
||||
d="M -81.58248,19.276338 L -101.80235,39.178443 L -104.53836,47.649683 L -96.57904,45.221483 L -76.43202,25.22581 C -73.7519,22.009403 -77.57924,16.855031 -81.58248,19.276338 z "
|
||||
style="fill:url(#linearGradient4166);fill-opacity:1;fill-rule:evenodd;stroke:#cb6000;stroke-width:0.88710904;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path4372"
|
||||
d="M -96.59614,44.688673 L -103.73892,47.149733 L -101.25637,39.458923 C -97.30751,37.950065 -94.88304,42.330163 -96.59614,44.688673 z "
|
||||
style="fill:url(#linearGradient4168);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5108"
|
||||
d="M -78.94559,27.149733 C -79.32539,24.97348 -81.13469,21.816919 -84.03837,22.235337 C -83.19682,21.361666 -82.35527,20.487996 -81.51374,19.614326 C -76.92153,17.553919 -74.85395,22.89787 -76.72565,24.87819 C -77.45113,25.664492 -78.13306,26.363429 -78.94559,27.149733 z "
|
||||
style="fill:url(#linearGradient4170);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5844"
|
||||
d="M -79.68702,28.149733 C -79.91404,25.308203 -82.54107,22.368312 -85.03837,22.969405 C -84.7789,22.696181 -84.51944,22.422957 -84.25999,22.149733 C -80.29,22.149733 -79.03837,25.630612 -79.03837,27.559569 C -79.25459,27.75629 -79.4708,27.953012 -79.68702,28.149733 z "
|
||||
style="fill:url(#linearGradient4172);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3642"
|
||||
d="M -102.11815,46.645564 L -103.92451,47.262374 L -103.29669,45.334854 C -102.29805,44.956694 -101.68492,46.054464 -102.11815,46.645564 z "
|
||||
style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path6819"
|
||||
d="M -81.697452,20.452283 L -100.99224,39.784433 L -103.19019,46.562525 L -96.8644,44.181453 L -77.132402,24.581143 C -74.759452,21.995877 -78.746382,17.739948 -81.697452,20.452283 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4174);stroke-width:0.88710833;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
374
datas/icon-themes/edeneu/scalable/apps/epiphany-bookmarks.svg
Normal file
@@ -0,0 +1,374 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/apps"
|
||||
sodipodi:docname="epiphany-bookmarks.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4611">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.35193133"
|
||||
offset="0"
|
||||
id="stop4613" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4615" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2853">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.81960785"
|
||||
offset="0"
|
||||
id="stop2855" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24705882"
|
||||
offset="1"
|
||||
id="stop2857" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10532">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.26041666;"
|
||||
offset="0.0000000"
|
||||
id="stop10534" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop10536" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient9796">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.65625000;"
|
||||
offset="0.0000000"
|
||||
id="stop9798" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9800" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient9040">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.57291669;"
|
||||
offset="0.0000000"
|
||||
id="stop9042" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9044" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8304">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.75000000;"
|
||||
offset="0.0000000"
|
||||
id="stop8306" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop8308" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8296"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop8298"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.62400001" />
|
||||
<stop
|
||||
id="stop8300"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5359">
|
||||
<stop
|
||||
style="stop-color:#a47e51;stop-opacity:1.0000000"
|
||||
offset="0"
|
||||
id="stop5361" />
|
||||
<stop
|
||||
style="stop-color:#c99964;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop5363" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4625">
|
||||
<stop
|
||||
style="stop-color:#f4f4ee;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4627" />
|
||||
<stop
|
||||
style="stop-color:#b2b2ad;stop-opacity:1.0000000"
|
||||
offset="1.0000000"
|
||||
id="stop4629" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8304"
|
||||
id="linearGradient9066"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="53.60886"
|
||||
y1="5.6855788"
|
||||
x2="54.789669"
|
||||
y2="20.814316" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9796"
|
||||
id="linearGradient9802"
|
||||
x1="71.793358"
|
||||
y1="154.92252"
|
||||
x2="77.933578"
|
||||
y2="92.103325"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.338872,0,0,0.407428,4.944509,-3.793525)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10532"
|
||||
id="radialGradient10538"
|
||||
cx="53.84502"
|
||||
cy="116.42805"
|
||||
fx="53.84502"
|
||||
fy="116.42805"
|
||||
r="47.232471"
|
||||
gradientTransform="matrix(1,3.447763e-17,-8.025806e-18,0.225,-1.024164e-15,90.23174)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10532"
|
||||
id="radialGradient10542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,6.444904e-17,2.146721e-18,0.225,5.351228e-15,90.23174)"
|
||||
cx="53.84502"
|
||||
cy="116.42805"
|
||||
fx="53.84502"
|
||||
fy="116.42805"
|
||||
r="47.232471" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9040"
|
||||
id="linearGradient1966"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="46.051662"
|
||||
y1="36.369003"
|
||||
x2="70.385277"
|
||||
y2="42.058598"
|
||||
gradientTransform="matrix(0.407428,0,0,0.407428,-9.583977,-1.874234)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8296"
|
||||
id="linearGradient1969"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="60.785091"
|
||||
y1="-20.288902"
|
||||
x2="59.11517"
|
||||
y2="71.890686"
|
||||
gradientTransform="matrix(0.407428,0,0,0.407428,-9.583977,-1.874234)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5359"
|
||||
id="linearGradient1972"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="85.963097"
|
||||
y1="99.660515"
|
||||
x2="45.10701"
|
||||
y2="33.062729"
|
||||
gradientTransform="matrix(0.409778,0,0,0.403274,-9.758073,-1.738097)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4625"
|
||||
id="linearGradient1975"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.409272,0,0,0.399856,-10.46109,-1.610169)"
|
||||
x1="100.60516"
|
||||
y1="65.298889"
|
||||
x2="108.63469"
|
||||
y2="65.298889" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2853"
|
||||
id="linearGradient2859"
|
||||
x1="4.7533164"
|
||||
y1="6.4509287"
|
||||
x2="16.297083"
|
||||
y2="104.35699"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.420604,0,0,0.413744,-0.841263,-3.796576)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4611"
|
||||
id="radialGradient4617"
|
||||
cx="27.904215"
|
||||
cy="52.200916"
|
||||
fx="27.904215"
|
||||
fy="52.200916"
|
||||
r="32.944649"
|
||||
gradientTransform="matrix(0.54019,6.317062e-17,4.307866e-11,0.656926,-3.741588,-20.1966)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;"
|
||||
offset="0.5"
|
||||
id="stop7481" />
|
||||
<stop
|
||||
id="stop7483"
|
||||
offset="0.75"
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;" />
|
||||
<stop
|
||||
id="stop7477"
|
||||
offset="1"
|
||||
style="stop-color:#fff409;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient4130"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="26.270445"
|
||||
inkscape:cy="24.165891"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="843"
|
||||
inkscape:window-height="556"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showborder="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10542);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path10540"
|
||||
sodipodi:cx="53.84502"
|
||||
sodipodi:cy="116.42805"
|
||||
sodipodi:rx="47.232471"
|
||||
sodipodi:ry="10.627306"
|
||||
d="M 101.07749 116.42805 A 47.232471 10.627306 0 1 1 6.6125488,116.42805 A 47.232471 10.627306 0 1 1 101.07749 116.42805 z"
|
||||
transform="matrix(0.353261,4.405763e-2,-4.895288e-2,0.392512,13.18613,-4.335195)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient10538);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path9804"
|
||||
sodipodi:cx="53.84502"
|
||||
sodipodi:cy="116.42805"
|
||||
sodipodi:rx="47.232471"
|
||||
sodipodi:ry="10.627306"
|
||||
d="M 101.07749 116.42805 A 47.232471 10.627306 0 1 1 6.6125488,116.42805 A 47.232471 10.627306 0 1 1 101.07749 116.42805 z"
|
||||
transform="matrix(0.404296,5.042247e-2,-5.602502e-2,0.449217,3.858902,-13.30065)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient9802);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.555163,45.085801 L 48,37.388265 L 30.07355,32 L 29.273263,41.814353 L 34.555163,45.085801 z "
|
||||
id="path9068" />
|
||||
<path
|
||||
style="fill:#c99964;fill-opacity:1;fill-rule:evenodd;stroke:#8a6032;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.7058024,7.3276909 L 9.7058024,39.344458 L 35.499998,44.726201 L 35.499998,4.4999995 L 9.7058024,7.3276909 z "
|
||||
id="path3897" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1975);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 3.3605059,7.2663438 L 3.3605059,39.278447 L 28.973962,44 L 34,42.961255 L 34,5.84988 L 28.973962,5 L 3.3605059,7.2663438 z "
|
||||
id="path1710"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1972);fill-opacity:1;fill-rule:evenodd;stroke:#8a6032;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.4999999,6.4523811 L 3.4999999,39.88096 L 30.500007,45.500001 L 30.500007,3.4999992 L 3.4999999,6.4523811 z "
|
||||
id="path2443" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1969);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4.1595403,7.1409529 L 4.1595403,27.143899 C 12.0065,12.039632 22.983171,18.571205 29.741535,30.001456 L 29.741535,4.1473153 L 4.1595403,7.1409529 z "
|
||||
id="path7549"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1966);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.681063,4.2020786 C 17.885176,8.0941194 19.109845,12.394384 19.092836,15.725117 C 19.075827,19.055854 17.204803,22.84583 17.068729,26.12554 L 14.182154,23.720065 L 12.738867,24.874694 L 12.612756,4.8092858 L 17.681063,4.2020786 z "
|
||||
id="path8312"
|
||||
sodipodi:nodetypes="csccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2859);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.4999999,7.3117926 L 4.4999999,39.148526 L 29.500004,44.500006 L 29.500004,4.5000007 L 4.4999999,7.3117926 z "
|
||||
id="path1978" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4617);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.7260504,7.6142714 L 4.7260504,38.290212 L 29.111474,43.446575 L 29.111474,4.905 L 4.7260504,7.6142714 z "
|
||||
id="path3736" />
|
||||
<path
|
||||
style="fill:#e41a00;fill-opacity:1;fill-rule:evenodd;stroke:#860000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.500002,3.821661 L 15.288714,1.9688315 C 13.901731,6.1070184 16.340248,10.557666 16.159524,14.765597 C 15.978801,18.973528 13.3226,20.197908 14.060609,27.499996 C 12.83728,27.405628 11.973362,26.522195 11.756385,24.849688 C 10.445433,25.116668 9.4938953,26.22202 9.0455326,27.499996 C 7.5298177,21.59768 9.5501438,18.753333 10.536501,14.527475 C 11.501079,10.394929 7.6502458,5.659298 9.8491559,2.507451 C 10.669222,1.4746146 14.172895,1.1322175 15.280492,1.9734251 C 16.138928,2.6708726 16.641565,3.1242137 17.500002,3.821661 z "
|
||||
id="path6093"
|
||||
sodipodi:nodetypes="cczccczccc" />
|
||||
<path
|
||||
style="fill:#e41a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.666337,4.4742492 L 14.27033,4.7431782 L 14.365431,2.1508779 C 15.377555,2.6006116 16.789793,3.6177741 17.666337,4.4742492 z "
|
||||
id="path7547"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#linearGradient9066);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path8302"
|
||||
sodipodi:cx="55.557194"
|
||||
sodipodi:cy="16.649446"
|
||||
sodipodi:rx="6.3173432"
|
||||
sodipodi:ry="4.9594097"
|
||||
d="M 61.874537 16.649446 A 6.3173432 4.9594097 0 1 1 49.239851,16.649446 A 6.3173432 4.9594097 0 1 1 61.874537 16.649446 z"
|
||||
transform="matrix(0.407428,-4.569305e-2,0,0.407428,-10.30562,-9.201011e-3)" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.43776826"
|
||||
d="M 9.557572,25.500006 C 9.0488062,18.066216 12.080672,17.783285 12.024583,12.449978 C 11.985186,8.7037659 7.9559822,3.7163187 12.468475,2.5945225 C 13.212184,2.4096381 14.718688,2.6742151 15.500001,2.9374832"
|
||||
id="path2861"
|
||||
sodipodi:nodetypes="cssc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
448
datas/icon-themes/edeneu/scalable/apps/evolution.svg
Normal file
@@ -0,0 +1,448 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="evolution.svg"
|
||||
inkscape:export-filename="/home/silvestre/Desktop/Neu/scalable/apps/evolution.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
id="linearGradient4934">
|
||||
<stop
|
||||
id="stop4938"
|
||||
offset="0"
|
||||
style="stop-color:#f9f9f9;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c3c3c3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4940" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8448">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8450" />
|
||||
<stop
|
||||
style="stop-color:#cecece;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8452" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7493"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7495"
|
||||
offset="0"
|
||||
style="stop-color:#9a9a9a;stop-opacity:0.81568629" />
|
||||
<stop
|
||||
id="stop7497"
|
||||
offset="1"
|
||||
style="stop-color:#686868;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7463">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7465" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7467" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6569">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6571" />
|
||||
<stop
|
||||
style="stop-color:#c4c4c4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6557">
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6559" />
|
||||
<stop
|
||||
style="stop-color:#cacaca;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6561" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#f5f5f5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7538"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7540"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient7555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872"
|
||||
gradientTransform="matrix(0.953212,0,0,1,8.208847e-2,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient7561"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.02464,0,0,0.994048,-9.648473e-2,0.270811)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8448"
|
||||
id="linearGradient8454"
|
||||
x1="33.872341"
|
||||
y1="13.361703"
|
||||
x2="33.872341"
|
||||
y2="25.492441"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient8456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.87501,-0.245431,0.246258,0.962063,0.236188,-5.708788e-8)"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="21.705061"
|
||||
x2="83.525612"
|
||||
y1="367.82727"
|
||||
x1="29.183714"
|
||||
id="linearGradient6540"
|
||||
xlink:href="#linearGradient6534"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.91358,2.206993e-7,-4.100829e-8,0.169753,4.848958,95.59596)"
|
||||
r="54.105412"
|
||||
fy="136.4689"
|
||||
fx="56.109314"
|
||||
cy="115.14162"
|
||||
cx="56.109314"
|
||||
id="radialGradient6525"
|
||||
xlink:href="#linearGradient6519"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4308">
|
||||
<stop
|
||||
id="stop4310"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.22916669;" />
|
||||
<stop
|
||||
id="stop4312"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5044"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5046"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5048"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6519"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6521"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:0.39215687" />
|
||||
<stop
|
||||
id="stop6523"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6534"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6536"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.39600000" />
|
||||
<stop
|
||||
id="stop6538"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4206"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4208"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4210"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.36909872" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4206"
|
||||
id="linearGradient5825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="59.64286"
|
||||
y1="14.832381"
|
||||
x2="59.64286"
|
||||
y2="121.82737"
|
||||
gradientTransform="matrix(0.159453,0,0,0.159453,-0.232214,25.20293)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5044"
|
||||
id="linearGradient5827"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.165836,0,0,0.190016,2.349941e-2,24.5319)"
|
||||
x1="70.848709"
|
||||
y1="-18.184502"
|
||||
x2="67.070114"
|
||||
y2="69.195572" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4308"
|
||||
id="radialGradient5829"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.173365,-4.413052e-2,4.637462e-2,0.164418,-6.740613,29.25584)"
|
||||
cx="83.842957"
|
||||
cy="105.0536"
|
||||
fx="83.842957"
|
||||
fy="105.0536"
|
||||
r="56.442806" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4934"
|
||||
id="radialGradient5831"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.196918,9.461918e-17,-9.903634e-17,0.198261,-2.514796,22.68263)"
|
||||
cx="77.420738"
|
||||
cy="82.518806"
|
||||
fx="77.420738"
|
||||
fy="82.518806"
|
||||
r="56.442806" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="5"
|
||||
inkscape:window-y="66"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#linearGradient7561);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651161,17.666656 C 2.4651161,17.666656 18.654739,1.5000001 23.982569,1.5000001 C 29.491431,1.5000001 45.50002,17.666656 45.50002,17.666656 L 45.50002,43.776608 L 42.520506,45.500012 L 2.4651161,42.308523 L 2.4651161,17.666656 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="czccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient8456);fill-opacity:1;stroke:#c6c6c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953316,20.935076 L 33.468134,12.499987 L 39.500025,36.064921 L 9.4272224,42.031924 L 3.3953316,20.935076 z "
|
||||
id="rect6567"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient7555);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651177,18.171482 C 2.4651177,17.423073 4.1900548,17.192726 5.1118011,18.171482 C 9.0354466,22.341089 12.229746,30.055122 15.241463,31.879287 C 19.05685,34.190227 25.55437,33.991136 29.041056,31.879287 C 32.249139,29.936185 35.405099,22.876998 39.833041,18.171482 C 40.700603,17.250261 42.500017,17.302446 42.500017,18.171482 L 42.500017,45.500004 L 2.4651177,42.351068 L 2.4651177,18.171482 z "
|
||||
id="rect3925"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.395347,19.12352 C 3.395347,18.428568 4.0845015,18.464675 4.9618063,19.37352 C 8.6962763,23.245299 11.97472,31.283332 14.841228,32.9772 C 18.47266,35.123074 26.085832,34.938204 29.40441,32.9772 C 32.457817,31.172891 35.759308,24.180429 39.973761,19.81102 C 40.799493,18.9556 41.499994,18.316557 41.499994,19.12352 L 41.499994,44.500013 L 3.395347,41.436183 L 3.395347,19.12352 z "
|
||||
id="path6565"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953466,17.931804 C 3.4162732,18.130607 17.963593,4.032047 23.154777,2.5441943 C 28.032521,2.5441943 41.499994,17.931804 41.499994,17.931804 L 41.499994,44.500002 L 3.3953466,41.436172 L 3.3953466,17.931804 z "
|
||||
id="path6582"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
id="g7479"
|
||||
transform="matrix(0.930232,0,0,1,0.139535,0)">
|
||||
<path
|
||||
id="path6586"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7538);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6588"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7540);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g7483"
|
||||
transform="matrix(-0.930232,0,0,1,44.97047,0)">
|
||||
<path
|
||||
id="path7485"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7542);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path7487"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7544);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient8454);fill-opacity:1.0;stroke:none;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:1"
|
||||
d="M 24,2 C 23.410136,2 22.66791,2.2019884 21.84375,2.5625 C 22.080153,2.5094367 22.296677,2.5 22.5,2.5 C 27.492357,2.4999999 42,18.09375 42,18.09375 L 42,44.957446 L 42.326738,45.055334 L 45,43.468085 L 45,17.8125 C 45,17.8125 29.376384,2 24,2 z "
|
||||
id="path7564"
|
||||
sodipodi:nodetypes="ccscccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#linearGradient6540);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path6532"
|
||||
sodipodi:cx="67.306274"
|
||||
sodipodi:cy="70.848709"
|
||||
sodipodi:rx="56.442806"
|
||||
sodipodi:ry="56.442806"
|
||||
d="M 123.74908 70.848709 A 56.442806 56.442806 0 1 1 10.863468,70.848709 A 56.442806 56.442806 0 1 1 123.74908 70.848709 z"
|
||||
transform="matrix(0.171571,0,-4.642352e-2,5.253137e-2,4.707049,39.83061)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient6525);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5065"
|
||||
sodipodi:cx="56.109314"
|
||||
sodipodi:cy="115.14162"
|
||||
sodipodi:rx="54.105412"
|
||||
sodipodi:ry="9.1845608"
|
||||
d="M 110.21473 115.14162 A 54.105412 9.1845608 0 1 1 2.0039024,115.14162 A 54.105412 9.1845608 0 1 1 110.21473 115.14162 z"
|
||||
transform="matrix(0.18598,0,0,0.269023,-0.372685,14.55339)" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient5831);fill-opacity:1;fill-rule:evenodd;stroke:#a4a4a4;stroke-width:0.99999928;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 20.364595,36.500027 C 20.364595,42.020043 15.914926,46.500056 10.432298,46.500056 C 4.9496704,46.500056 0.50000133,42.020043 0.50000133,36.500027 C 0.50000133,30.980011 4.9496704,26.499998 10.432298,26.499998 C 15.914926,26.499998 20.364595,30.980011 20.364595,36.500027 z "
|
||||
id="path1359" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient5829);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 19.999995,36.500028 C 19.999995,41.744043 15.734663,46.000056 10.479166,46.000056 C 5.223668,46.000056 0.95833665,41.744043 0.95833665,36.500028 C 0.95833665,31.256012 5.223668,27 10.479166,27 C 15.734663,27 19.999995,31.256012 19.999995,36.500028 z "
|
||||
id="path2854" />
|
||||
<path
|
||||
style="opacity:0.68619247;color:black;fill:url(#linearGradient5827);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 18,32.699067 C 18,35.844953 14.64,38.398136 10.5,38.398136 C 6.3599996,38.398136 3,35.844953 3,32.699067 C 3,30.240305 6.675705,27 10.5,27 C 14.775417,27 18,30.382861 18,32.699067 z "
|
||||
id="path4316" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5825);stroke-width:0.99999505;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.79399139;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 19.499948,36.499969 C 19.499948,41.467956 15.467959,45.499945 10.499973,45.499945 C 5.5319872,45.499945 1.4999986,41.467956 1.4999986,36.499969 C 1.4999986,31.531983 5.5319872,27.499994 10.499973,27.499994 C 15.467959,27.499994 19.499948,31.531983 19.499948,36.499969 z "
|
||||
id="path3331" />
|
||||
<path
|
||||
style="opacity:0.68619247;fill:#696969;fill-opacity:0.63090128;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 10,29 L 10,31.125 L 11.0625,31.125 L 11.0625,29 L 10,29 z M 3,35.9375 L 3,37 L 5.0625,37 L 5.0625,35.9375 L 3,35.9375 z M 16,35.9375 L 16,37 L 18,37 L 18,35.9375 L 16,35.9375 z M 10,42 L 10,44 L 11.0625,44 L 11.0625,42 L 10,42 z "
|
||||
id="rect5821"
|
||||
sodipodi:nodetypes="cccccccccccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.68619247;fill:#696969;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 13.816987,29.754809 L 13.316987,30.620835 L 14.237139,31.152085 L 14.737139,30.286059 L 13.816987,29.754809 z M 4.2860595,32.262861 L 3.7548095,33.183013 L 4.6208349,33.683013 L 5.1520849,32.762861 L 4.2860595,32.262861 z M 16.410415,39.262861 L 15.879165,40.183013 L 16.745191,40.683013 L 17.276441,39.762861 L 16.410415,39.262861 z M 6.8169873,41.879165 L 6.3169873,42.745191 L 7.2371393,43.276441 L 7.7371393,42.410415 L 6.8169873,41.879165 z "
|
||||
id="rect5837" />
|
||||
<path
|
||||
style="opacity:0.68619247;fill:#696969;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 6.3169873,30.254809 L 6.8169873,31.120835 L 7.7371393,30.589585 L 7.2371393,29.723559 L 6.3169873,30.254809 z M 3.7235595,39.762861 L 4.2548095,40.683013 L 5.1208349,40.183013 L 4.5895849,39.262861 L 3.7235595,39.762861 z M 15.847915,32.762861 L 16.379165,33.683013 L 17.245191,33.183013 L 16.713941,32.262861 L 15.847915,32.762861 z M 13.316987,42.379165 L 13.816987,43.245191 L 14.737139,42.713941 L 14.237139,41.847915 L 13.316987,42.379165 z "
|
||||
id="path5847" />
|
||||
<path
|
||||
style="opacity:0.96610879;fill:#414141;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 10,32 L 10,36.21875 L 7.625,40.34375 L 8.5,40.84375 L 10.71875,37 L 11,36.5 L 11,32 L 10,32 z "
|
||||
id="rect5849"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 20 KiB |
275
datas/icon-themes/edeneu/scalable/apps/gaim.svg
Normal file
@@ -0,0 +1,275 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2510"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/apps"
|
||||
sodipodi:docname="gaim.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs2512">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4845">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4847" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.28627452"
|
||||
offset="1"
|
||||
id="stop4849" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4835">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4837" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.23921569"
|
||||
offset="1"
|
||||
id="stop4839" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4990">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4992" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4994" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4980">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.69199997"
|
||||
offset="0"
|
||||
id="stop4982" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4984" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4244">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.20400000"
|
||||
offset="0"
|
||||
id="stop4246" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4248" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3508">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.68800002"
|
||||
offset="0"
|
||||
id="stop3510" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3512" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3457">
|
||||
<stop
|
||||
style="stop-color:#ffff00;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3459" />
|
||||
<stop
|
||||
style="stop-color:#ffca00;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3461" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4244"
|
||||
id="radialGradient1348"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.285714,4.587587e-15,80.63258)"
|
||||
cx="49.357933"
|
||||
cy="112.88561"
|
||||
fx="49.357933"
|
||||
fy="112.88561"
|
||||
r="34.715866" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3508"
|
||||
id="linearGradient1350"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.416341,0,0,0.435079,-0.298463,-11.96769)"
|
||||
x1="-7.0136652"
|
||||
y1="162.73433"
|
||||
x2="94.517471"
|
||||
y2="89.591843" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3457"
|
||||
id="linearGradient1352"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.065847,0,0,1.062677,-28.44165,-30.18011)"
|
||||
x1="33.635742"
|
||||
y1="43.690037"
|
||||
x2="45.499424"
|
||||
y2="55.025829" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4990"
|
||||
id="linearGradient1354"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="39.41011"
|
||||
y1="48.511803"
|
||||
x2="48.093697"
|
||||
y2="86.585983"
|
||||
gradientTransform="matrix(0.407046,0,0,0.407535,-0.328089,-9.068354)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4980"
|
||||
id="linearGradient1358"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="46.477318"
|
||||
y1="13.777468"
|
||||
x2="47.088573"
|
||||
y2="39.995213" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4835"
|
||||
id="linearGradient4841"
|
||||
x1="39.880642"
|
||||
y1="21.300926"
|
||||
x2="44.940178"
|
||||
y2="40.187744"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.994775,0,0,1.021303,-24.48539,-29.72505)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4845"
|
||||
id="linearGradient4851"
|
||||
x1="27.187326"
|
||||
y1="54.576"
|
||||
x2="39.615459"
|
||||
y2="100.95843"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.391787,0,0,0.392813,0.333096,-7.696968)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3457"
|
||||
id="radialGradient4853"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.111808,0,0,1.114746,-29.44656,-32.75934)"
|
||||
cx="40.265682"
|
||||
cy="30.295935"
|
||||
fx="40.265682"
|
||||
fy="30.295935"
|
||||
r="10.092251" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g1340"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata2515">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g1340"
|
||||
transform="matrix(0.939772,0,0,0.939772,2.38083,7.768091)">
|
||||
<path
|
||||
transform="matrix(0.432613,0,0,0.434942,-0.880332,-10.60252)"
|
||||
d="M 84.073799 112.88561 A 34.715866 9.9188194 0 1 1 14.642067,112.88561 A 34.715866 9.9188194 0 1 1 84.073799 112.88561 z"
|
||||
sodipodi:ry="9.9188194"
|
||||
sodipodi:rx="34.715866"
|
||||
sodipodi:cy="112.88561"
|
||||
sodipodi:cx="49.357933"
|
||||
id="path3516"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient1348);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
id="path3495"
|
||||
d="M 43.253784,24.720793 C 38.056768,24.720793 31.297332,26.14355 28.157287,27.895681 C 25.671147,29.282939 26.235134,30.450001 29.142606,30.881435 C 27.291634,30.916791 25.447581,30.949656 23.596603,30.985013 C 14.685063,35.047918 12.995362,37.67121 11.29973,39.618023 C 23.776121,36.204046 28.114771,37.192371 29.508403,39.280265 C 30.141289,37.107727 33.562463,35.019285 37.560102,33.016046 C 38.842549,33.664983 41.6587,34.142982 45.15769,33.691551 C 41.899296,33.09904 40.36237,32.086211 41.31087,30.647255 C 39.733845,30.677387 38.159753,30.707204 36.582731,30.737327 C 40.638826,30.221572 44.737158,29.14922 46.983652,27.895681 C 50.123701,26.14355 48.450796,24.720793 43.253784,24.720793 z "
|
||||
style="fill:url(#linearGradient1350);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.97422647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path3465"
|
||||
d="M 8.0567041,13.487639 C 13.930003,13.15302 19.803305,12.818401 25.676604,12.483782 C 27.354689,16.750171 30.794766,19.761743 35.241692,21.518489 C 32.472851,22.856963 28.697159,21.434841 26.180029,19.510778 C 25.760508,25.450263 26.096125,31.640713 29.452297,38.082129 C 24.166326,31.891669 17.873505,28.963755 11.328971,39.08598 C 9.4830772,33.313802 6.3786181,25.533912 8.0567041,13.487639 z "
|
||||
style="fill:url(#linearGradient1352);fill-opacity:1;fill-rule:evenodd;stroke:#ffa200;stroke-width:1.06408775;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path4988"
|
||||
d="M 8.6443885,13.968599 C 7.7297214,18.313561 8.1587216,22.274158 8.6443885,26.218542 C 13.221256,20.002832 19.701376,16.645438 25.22987,25.129653 L 25.161897,19.072745 C 26.056879,16.021597 29.398899,19.775982 31.5174,20.127596 C 29.104348,18.573668 27.099136,16.066965 25.093925,13.015826 L 8.6443885,13.968599 z "
|
||||
style="fill:url(#linearGradient1354);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path4843"
|
||||
d="M 9.1518999,14.473091 C 14.535783,14.164684 19.919667,13.856277 25.30355,13.547871 C 26.841802,17.480046 29.037153,19.516799 33.113522,21.135934 C 30.575404,20.81786 27.630218,18.989906 25.322839,17.21657 C 24.688436,22.08525 24.297819,28.475181 26.774788,34.111446 C 22.518871,30.179296 15.202779,30.36246 11.561912,36.957807 C 9.869835,31.637799 7.6136477,25.575718 9.1518999,14.473091 z "
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4851);stroke-width:1.06408775;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient4853);fill-opacity:1;fill-rule:evenodd;stroke:#f90;stroke-width:1.06408823;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 27.793106,3.4390371 C 27.793106,9.0191141 23.264346,13.547874 17.684266,13.547874 C 12.104184,13.547874 7.5754255,9.0191141 7.5754255,3.4390371 C 7.5754255,-2.1410409 12.104184,-6.6697985 17.684266,-6.6697985 C 23.264346,-6.6697985 27.793106,-2.1410409 27.793106,3.4390371 z "
|
||||
id="path2729" />
|
||||
<path
|
||||
transform="matrix(0.458256,0,0,0.391386,-3.028349,-10.46597)"
|
||||
d="M 61.453058 26.05138 A 16.198225 12.273912 0 1 1 29.056608,26.05138 A 16.198225 12.273912 0 1 1 61.453058 26.05138 z"
|
||||
sodipodi:ry="12.273912"
|
||||
sodipodi:rx="16.198225"
|
||||
sodipodi:cy="26.05138"
|
||||
sodipodi:cx="45.254833"
|
||||
id="path4252"
|
||||
style="opacity:1;color:black;fill:url(#linearGradient1358);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4841);stroke-width:1.06408811;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 26.728999,3.4390349 C 26.728999,8.4317374 22.676952,12.483785 17.684255,12.483785 C 12.691555,12.483785 8.6395107,8.4317374 8.6395107,3.4390349 C 8.6395107,-1.5536665 12.691555,-5.6057135 17.684255,-5.6057135 C 22.676952,-5.6057135 26.728999,-1.5536665 26.728999,3.4390349 z "
|
||||
id="path3958" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
341
datas/icon-themes/edeneu/scalable/apps/gimp.svg
Normal file
@@ -0,0 +1,341 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/categories"
|
||||
sodipodi:docname="gimp.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4866">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4868" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4870" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4856">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4858" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4860" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4846">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4848" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.14901961"
|
||||
offset="1"
|
||||
id="stop4850" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4834">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4836" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4838" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2337">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.27599999"
|
||||
offset="0"
|
||||
id="stop2339" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2341" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2327">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.68400002"
|
||||
offset="0"
|
||||
id="stop2329" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2331" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2285">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.68800002"
|
||||
offset="0"
|
||||
id="stop2287" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2289" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2271">
|
||||
<stop
|
||||
style="stop-color:#8c7d50;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2273" />
|
||||
<stop
|
||||
style="stop-color:#5a5033;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2275" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2247">
|
||||
<stop
|
||||
style="stop-color:#979797;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop2249" />
|
||||
<stop
|
||||
style="stop-color:#323232;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2251" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2285"
|
||||
id="linearGradient2313"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.356177,0,0,0.351952,0.27762,6.28155)"
|
||||
x1="36.841328"
|
||||
y1="-17.476013"
|
||||
x2="75.335793"
|
||||
y2="67.306274" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2271"
|
||||
id="linearGradient2323"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="51.189674"
|
||||
y1="48.993095"
|
||||
x2="107.53319"
|
||||
y2="101.89346"
|
||||
gradientTransform="matrix(0.377291,0,0,0.395357,-1.819008,3.461784)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2327"
|
||||
id="linearGradient2333"
|
||||
x1="62.819187"
|
||||
y1="179.01108"
|
||||
x2="70.855949"
|
||||
y2="84.478859"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.374848,0,0,0.374848,-0.286712,1.966964)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2337"
|
||||
id="radialGradient2343"
|
||||
cx="60.457565"
|
||||
cy="114.30258"
|
||||
fx="60.457565"
|
||||
fy="114.30258"
|
||||
r="37.785976"
|
||||
gradientTransform="matrix(1,0,0,0.1125,-1.366962e-15,101.4435)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2247"
|
||||
id="radialGradient4828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.867141,0.658284,-0.450246,0.607646,-52.76579,-72.85818)"
|
||||
cx="96.569389"
|
||||
cy="62.146378"
|
||||
fx="96.569389"
|
||||
fy="62.146378"
|
||||
r="6.1402216" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4834"
|
||||
id="linearGradient4840"
|
||||
x1="-0.065793492"
|
||||
y1="23.292086"
|
||||
x2="3.0857143"
|
||||
y2="35.053673"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4846"
|
||||
id="linearGradient4852"
|
||||
x1="18.685715"
|
||||
y1="9.8570347"
|
||||
x2="18.685715"
|
||||
y2="44.029774"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4856"
|
||||
id="linearGradient4862"
|
||||
x1="34.114285"
|
||||
y1="20.228571"
|
||||
x2="38.475395"
|
||||
y2="21.4695"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4866"
|
||||
id="linearGradient4872"
|
||||
x1="25.114286"
|
||||
y1="43.028572"
|
||||
x2="23.478807"
|
||||
y2="39.503975"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2343);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.75;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2335"
|
||||
sodipodi:cx="60.457565"
|
||||
sodipodi:cy="114.30258"
|
||||
sodipodi:rx="37.785976"
|
||||
sodipodi:ry="4.2509227"
|
||||
d="M 98.243542 114.30258 A 37.785976 4.2509227 0 1 1 22.671589,114.30258 A 37.785976 4.2509227 0 1 1 98.243542 114.30258 z"
|
||||
transform="matrix(0.405305,0,0,0.687222,-3.27886,-33.47258)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2333);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.82812738;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 15.768246,33.978184 C 27.672441,39.632984 37.359289,36.934754 47.999945,33.633734 C 46.530116,36.547244 45.3441,37.499114 39.679751,39.252654 C 32.443535,42.898124 28.227958,45.098204 18.100205,45.269664 C 5.2511113,45.395944 4.413577,41.900644 4.5606087,40.006144 C 19.268542,41.010804 14.28154,37.365324 15.768246,33.978184 z "
|
||||
id="path2325"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2323);fill-opacity:1;fill-rule:evenodd;stroke:#645a31;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 10.152938,11.506194 C 25.521746,28.721593 33.37513,20.575269 42.149014,10.499991 C 42.9892,19.010792 42.553282,21.791329 38.248103,26.913683 C 33.867085,37.562666 31.375625,43.989406 21.318381,44.490254 C 8.4860962,44.859155 4.8603154,34.648867 3.4999987,29.114749 C 19.103638,32.049508 11.353216,21.400523 10.152938,11.506194 z "
|
||||
id="path1517"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.26799999;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 41.780101,12.581558 C 41.780101,12.581558 34.456291,22.398994 35.082258,24.616887 C 35.708224,26.834774 37.993004,26.410774 37.993004,26.410774 C 42.213366,21.524674 42.183603,18.974947 41.780101,12.581558 z "
|
||||
id="path2269"
|
||||
sodipodi:nodetypes="cscc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4852);stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.54811715"
|
||||
d="M 11.497475,13.904153 C 24.96385,28.906879 33.614496,21.325465 41.42415,12.78571 C 41.192676,20.624446 41.550543,22.298564 36.609,26.862459 C 32.452651,36.885029 30.603244,43.019439 21.061758,43.490825 C 9.8303981,44.095169 5.7905555,34.228345 4.4999989,29.019764 C 19.376278,31.813102 13.983094,23.793701 11.497475,13.904153 z "
|
||||
id="path4844"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
transform="matrix(1.009906,0,0,1.052425,-97.20406,-35.93186)"
|
||||
style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#d4d4d4;stroke-width:0.96998262;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 114.06642,59.630997 C 114.06642,62.042687 112.05621,64 109.57934,64 C 107.10247,64 105.09225,62.042687 105.09225,59.630997 C 105.09225,57.219307 107.10247,55.261993 109.57934,55.261993 C 112.05621,55.261993 114.06642,57.219307 114.06642,59.630997 z "
|
||||
id="path2255" />
|
||||
<path
|
||||
transform="matrix(1.211297,0,0,1.262295,-110.2094,-46.85588)"
|
||||
style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#bfbfbf;stroke-width:0.80871266;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 114.06642,59.630997 C 114.06642,62.042687 112.05621,64 109.57934,64 C 107.10247,64 105.09225,62.042687 105.09225,59.630997 C 105.09225,57.219307 107.10247,55.261993 109.57934,55.261993 C 112.05621,55.261993 114.06642,57.219307 114.06642,59.630997 z "
|
||||
id="path2259" />
|
||||
<path
|
||||
transform="matrix(0.41234,0,0,0.429701,-21.81696,4.725804)"
|
||||
style="color:black;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 114.06642,59.630997 C 114.06642,62.042687 112.05621,64 109.57934,64 C 107.10247,64 105.09225,62.042687 105.09225,59.630997 C 105.09225,57.219307 107.10247,55.261993 109.57934,55.261993 C 112.05621,55.261993 114.06642,57.219307 114.06642,59.630997 z "
|
||||
id="path2261" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path2263"
|
||||
sodipodi:cx="109.57934"
|
||||
sodipodi:cy="59.630997"
|
||||
sodipodi:rx="4.4870849"
|
||||
sodipodi:ry="4.3690038"
|
||||
d="M 114.06642 59.630997 A 4.4870849 4.3690038 0 1 1 105.09225,59.630997 A 4.4870849 4.3690038 0 1 1 114.06642 59.630997 z"
|
||||
transform="matrix(0.319394,0,0,0.332841,-20.5085,8.964974)" />
|
||||
<path
|
||||
style="fill:#2e2e2e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 11,40.858181 C 16.281216,39.33091 23.852334,39.66909 30,35 C 27.771987,39.712728 25.172639,43.083646 18.241043,44 C 15.218784,43.530915 12.62975,42.374545 11,40.858181 z "
|
||||
id="path2265"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#c40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 17.035915,43.248404 C 17.641017,42.193814 18.814944,41.734884 19.495683,41.642474 C 20.20721,41.545884 20.351171,41.588114 20.606774,41.675084 C 20.674588,41.414164 20.890412,40.990894 21.717866,40.631374 C 22.518581,40.283474 24.722506,39.957304 25.41107,40.957534 C 23.700094,42.175204 21.650369,42.999494 18.311879,43.499614 C 17.871803,43.442784 17.442794,43.357124 17.035915,43.248404 z "
|
||||
id="path2267"
|
||||
sodipodi:nodetypes="czczccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2313);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 11.417738,13.442786 C 26.368481,28.554845 34.143481,21.139154 41.785038,12.547052 C 42.149635,20.209193 41.566682,22.684463 38.102437,27.158734 C 28.667316,22.259204 11.125382,41.940894 5.298955,29.118154 C 20.033559,31.732814 12.971132,22.460993 11.417738,13.442786 z "
|
||||
id="path2283"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient4828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 11.324439,34.542007 C 9.7983747,36.601562 6.1744897,36.462271 3.2353952,34.231078 C 0.29630411,31.999888 -0.85050018,28.517545 0.67556402,26.45799 C 2.2016276,24.398435 5.8255204,24.537733 8.7646114,26.768923 C 11.703706,29.000116 12.850503,32.482452 11.324439,34.542007 z "
|
||||
id="path2245" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4840);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 9.9933276,33.439656 C 8.8487793,34.937517 6.1308651,34.836214 3.9265438,33.213525 C 1.7222251,31.590839 0.86212176,29.058221 2.0066701,27.560361 C 3.151218,26.062501 5.8691381,26.163809 8.0734567,27.786495 C 10.277778,29.409183 11.137876,31.941795 9.9933276,33.439656 z "
|
||||
id="path4830" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4862);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;opacity:0.77824268"
|
||||
d="M 41.780101,12.581558 C 41.780101,12.581558 34.456291,22.398994 35.082258,24.616887 C 35.708224,26.834774 37.993004,26.410774 37.993004,26.410774 C 42.213366,21.524674 42.183603,18.974947 41.780101,12.581558 z "
|
||||
id="path4854"
|
||||
sodipodi:nodetypes="cscc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4872);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 11,40.858181 C 16.281216,39.33091 23.852334,39.66909 30,35 C 27.771987,39.712728 25.172639,43.083646 18.241043,44 C 15.218784,43.530915 12.62975,42.374545 11,40.858181 z "
|
||||
id="path4864"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
916
datas/icon-themes/edeneu/scalable/apps/graphics-image-editor.svg
Normal file
@@ -0,0 +1,916 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="graphics-image-editor.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5717">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.5965665"
|
||||
offset="0"
|
||||
id="stop5719" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5721" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient12774">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop12776" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop12778" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9255">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9257" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9259" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8370">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.65665233"
|
||||
offset="0"
|
||||
id="stop8372" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop8374" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8357">
|
||||
<stop
|
||||
style="stop-color:#f2f2f2;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop8359" />
|
||||
<stop
|
||||
style="stop-color:#ddd;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8361" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8370"
|
||||
id="linearGradient8376"
|
||||
x1="45.377316"
|
||||
y1="17.625"
|
||||
x2="41.248108"
|
||||
y2="17.625"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.98099,1.000026)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8357"
|
||||
id="linearGradient8378"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="28.637825"
|
||||
y1="11.584001"
|
||||
x2="40.128311"
|
||||
y2="39.072777"
|
||||
gradientTransform="translate(-0.98099,1.000026)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9255"
|
||||
id="radialGradient11017"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-3.996301e-18,-8.497435e-20,0.132,-1.138891e-17,36.74427)"
|
||||
cx="23.822878"
|
||||
cy="42.332104"
|
||||
fx="23.822878"
|
||||
fy="42.332104"
|
||||
r="22.140221" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9255"
|
||||
id="radialGradient11019"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-2.500441e-18,-5.500971e-20,0.132,-1.661386e-17,36.74427)"
|
||||
cx="23.822878"
|
||||
cy="42.332104"
|
||||
fx="23.822878"
|
||||
fy="42.332104"
|
||||
r="22.140221" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9255"
|
||||
id="radialGradient11024"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.609739,3.230488e-2,-3.637986e-3,0.149264,18.12827,35.41174)"
|
||||
cx="23.822878"
|
||||
cy="42.332104"
|
||||
fx="16.153006"
|
||||
fy="43.9921"
|
||||
r="22.140221" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12774"
|
||||
id="linearGradient12780"
|
||||
x1="44.318668"
|
||||
y1="44.026615"
|
||||
x2="44.318668"
|
||||
y2="37.918137"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5717"
|
||||
id="linearGradient5723"
|
||||
x1="19.660517"
|
||||
y1="6.463141"
|
||||
x2="19.660517"
|
||||
y2="26.035271"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient2912">
|
||||
<stop
|
||||
id="stop2914"
|
||||
offset="0"
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop2920" />
|
||||
<stop
|
||||
id="stop2922"
|
||||
offset="0.75"
|
||||
style="stop-color:#a5a5a5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2916"
|
||||
offset="1"
|
||||
style="stop-color:#d4d4d4;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
id="stop3841"
|
||||
offset="0"
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.30653265" />
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.3137255;"
|
||||
offset="0.61764705"
|
||||
id="stop3847" />
|
||||
<stop
|
||||
id="stop3843"
|
||||
offset="1"
|
||||
style="stop-color:#9ec4f0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3853">
|
||||
<stop
|
||||
id="stop3855"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.61764705"
|
||||
id="stop3861" />
|
||||
<stop
|
||||
id="stop3857"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8363">
|
||||
<stop
|
||||
style="stop-color:#aaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8365" />
|
||||
<stop
|
||||
id="stop8367"
|
||||
offset="0.5"
|
||||
style="stop-color:#dbdbdb;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#8e8e8e;stop-opacity:1;"
|
||||
offset="0.75"
|
||||
id="stop8369" />
|
||||
<stop
|
||||
style="stop-color:#a8a8a8;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop8371" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="14.866135"
|
||||
fy="41.566433"
|
||||
fx="15.084219"
|
||||
cy="41.56649"
|
||||
cx="15.084219"
|
||||
gradientTransform="matrix(0.77357,0,0,0.36997,-0.168692,5.121712)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4865"
|
||||
xlink:href="#linearGradient4847"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.866135"
|
||||
fy="41.566433"
|
||||
fx="15.084219"
|
||||
cy="41.56649"
|
||||
cx="15.084219"
|
||||
gradientTransform="matrix(0.840837,0,0,0.336336,22.81663,29.01974)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4861"
|
||||
xlink:href="#linearGradient4847"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="14.866135"
|
||||
fy="41.566433"
|
||||
fx="15.084219"
|
||||
cy="41.56649"
|
||||
cx="15.084219"
|
||||
gradientTransform="matrix(1,0,0,0.281174,6.171279e-16,29.87909)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4857"
|
||||
xlink:href="#linearGradient4847"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.281174,-1.738287e-15,29.87909)"
|
||||
r="14.866135"
|
||||
fy="41.56649"
|
||||
fx="8.5996246"
|
||||
cy="41.56649"
|
||||
cx="15.084219"
|
||||
id="radialGradient4853"
|
||||
xlink:href="#linearGradient4847"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="31.021463"
|
||||
x2="10.638298"
|
||||
y1="22.882486"
|
||||
x1="10.638298"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient17191"
|
||||
xlink:href="#linearGradient17167"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="9.4787235"
|
||||
fy="21.935001"
|
||||
fx="10.202127"
|
||||
cy="24.274206"
|
||||
cx="10.202127"
|
||||
gradientTransform="matrix(1,0,0,0.474371,2.838614e-14,14.45666)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient17189"
|
||||
xlink:href="#linearGradient18066"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="31.021463"
|
||||
x2="10.638298"
|
||||
y1="22.882486"
|
||||
x1="10.638298"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient17181"
|
||||
xlink:href="#linearGradient17167"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="9.4787235"
|
||||
fy="21.935001"
|
||||
fx="10.202127"
|
||||
cy="24.274206"
|
||||
cx="10.202127"
|
||||
gradientTransform="matrix(1,0,0,0.474371,0,14.45666)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient17179"
|
||||
xlink:href="#linearGradient16282"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="46.382969"
|
||||
x2="19.804865"
|
||||
y1="37.88562"
|
||||
x1="17.528008"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient14513"
|
||||
xlink:href="#linearGradient14498"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="43.043442"
|
||||
x2="19.852365"
|
||||
y1="39.321278"
|
||||
x1="19.852365"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient14511"
|
||||
xlink:href="#linearGradient13615"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.965926,0.258819,-0.258819,0.965926,2.025921,-7.970196)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="38.200058"
|
||||
x2="32.345863"
|
||||
y1="33.075535"
|
||||
x1="23.469927"
|
||||
id="linearGradient10988"
|
||||
xlink:href="#linearGradient10982"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.772047,0.71343,-0.738204,0.679587,35.82004,-9.499006)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="43.624775"
|
||||
x2="21.177465"
|
||||
y1="43.624775"
|
||||
x1="15.155581"
|
||||
id="linearGradient9226"
|
||||
xlink:href="#linearGradient9220"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.718143,0.709539,-0.713176,0.704572,35.42347,-10.09776)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="24.085106"
|
||||
x2="20.170986"
|
||||
y1="24.085106"
|
||||
x1="13.361702"
|
||||
id="linearGradient7469"
|
||||
xlink:href="#linearGradient7463"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.729584,0.704967,-0.723515,0.699018,35.53047,-10.01239)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="22.978724"
|
||||
x2="21.27943"
|
||||
y1="22.978724"
|
||||
x1="19.063829"
|
||||
id="linearGradient6586"
|
||||
xlink:href="#linearGradient6580"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.735629,0.70976,-0.720695,0.694824,35.65616,-9.975643)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="20.680851"
|
||||
x2="19.415531"
|
||||
y1="20.680851"
|
||||
x1="13.183311"
|
||||
id="linearGradient6575"
|
||||
xlink:href="#linearGradient6569"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient6569"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6571"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6573"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6580"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6582"
|
||||
offset="0"
|
||||
style="stop-color:#71b2ee;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6584"
|
||||
offset="1"
|
||||
style="stop-color:#3485d0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7463"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7465"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7467"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.39055794" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient9220">
|
||||
<stop
|
||||
id="stop9222"
|
||||
offset="0"
|
||||
style="stop-color:#b8b8b8;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop10101" />
|
||||
<stop
|
||||
id="stop10103"
|
||||
offset="0.5"
|
||||
style="stop-color:#d5d5d5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop9224"
|
||||
offset="1"
|
||||
style="stop-color:#9b9b9b;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10982"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop10984"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop10986"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient13615"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop13617"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop13619"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient14498"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop14500"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop14502"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16282"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop16284"
|
||||
offset="0"
|
||||
style="stop-color:#f8b3b3;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop16286"
|
||||
offset="1"
|
||||
style="stop-color:#ea3030;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient17167"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop17169"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop17171"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.21176471" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient18066">
|
||||
<stop
|
||||
style="stop-color:#cdf8b3;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop18068" />
|
||||
<stop
|
||||
style="stop-color:#5eb429;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop18070" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4847"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4849"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4851"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient4171"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.718143,0.709539,-0.713176,0.704572,-32.57653,-18.09776)"
|
||||
x1="13.361702"
|
||||
y1="24.085106"
|
||||
x2="20.170986"
|
||||
y2="24.085106" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient4174"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.735629,0.70976,-0.720695,0.694824,-32.34384,-17.97564)"
|
||||
x1="13.183311"
|
||||
y1="20.680851"
|
||||
x2="19.415531"
|
||||
y2="20.680851" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6580"
|
||||
id="linearGradient4177"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.729584,0.704967,-0.723515,0.699018,-32.46953,-18.01239)"
|
||||
x1="19.063829"
|
||||
y1="22.978724"
|
||||
x2="21.27943"
|
||||
y2="22.978724" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10982"
|
||||
id="linearGradient4180"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.965926,0.258819,-0.258819,0.965926,-65.97408,-15.9702)"
|
||||
x1="23.469927"
|
||||
y1="33.075535"
|
||||
x2="32.345863"
|
||||
y2="38.200058" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9220"
|
||||
id="linearGradient4183"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.772047,0.71343,-0.738204,0.679587,-32.17996,-17.49901)"
|
||||
x1="15.155581"
|
||||
y1="43.624775"
|
||||
x2="21.177465"
|
||||
y2="43.624775" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4847"
|
||||
id="radialGradient4186"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.975371,0,0,0.302702,-68.21271,21.91778)"
|
||||
cx="15.084219"
|
||||
cy="41.56649"
|
||||
fx="8.5996246"
|
||||
fy="41.56649"
|
||||
r="14.866135" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4847"
|
||||
id="radialGradient4189"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.840837,0,0,0.336336,-45.18337,21.01974)"
|
||||
cx="15.084219"
|
||||
cy="41.56649"
|
||||
fx="15.084219"
|
||||
fy="41.566433"
|
||||
r="14.866135" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4847"
|
||||
id="radialGradient4192"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.77357,0,0,0.36997,-68.16869,-2.878288)"
|
||||
cx="15.084219"
|
||||
cy="41.56649"
|
||||
fx="15.084219"
|
||||
fy="41.566433"
|
||||
r="14.866135" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4847"
|
||||
id="radialGradient4206"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.975371,0,0,0.302702,-68.21271,21.91778)"
|
||||
cx="15.084219"
|
||||
cy="41.56649"
|
||||
fx="8.5996246"
|
||||
fy="41.56649"
|
||||
r="14.866135" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9220"
|
||||
id="linearGradient4208"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.772047,0.71343,-0.738204,0.679587,-32.17996,-17.49901)"
|
||||
x1="15.155581"
|
||||
y1="43.624775"
|
||||
x2="21.177465"
|
||||
y2="43.624775" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10982"
|
||||
id="linearGradient4210"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.682656,0.191788,-0.182917,0.715763,-61.354,-5.123919)"
|
||||
x1="23.469927"
|
||||
y1="33.075535"
|
||||
x2="32.345863"
|
||||
y2="38.200058" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6580"
|
||||
id="linearGradient4212"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.749183,0.736714,-0.742951,0.730498,-32.79107,-18.66594)"
|
||||
x1="19.063829"
|
||||
y1="22.978724"
|
||||
x2="21.27943"
|
||||
y2="22.978724" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient4214"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.735629,0.70976,-0.720695,0.694824,-32.34384,-17.97564)"
|
||||
x1="13.183311"
|
||||
y1="20.680851"
|
||||
x2="19.415531"
|
||||
y2="20.680851" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient4216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.693049,0.681941,-0.688255,0.677167,-32.49985,-16.93478)"
|
||||
x1="13.361702"
|
||||
y1="24.085106"
|
||||
x2="20.170986"
|
||||
y2="24.085106" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient13615"
|
||||
id="linearGradient4218"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="19.852365"
|
||||
y1="39.321278"
|
||||
x2="19.852365"
|
||||
y2="43.043442" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient14498"
|
||||
id="linearGradient4220"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.528008"
|
||||
y1="37.88562"
|
||||
x2="19.804865"
|
||||
y2="46.382969"
|
||||
gradientTransform="matrix(1.116844,0,0,1.058061,-1.942528,-2.698835)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="23.435628"
|
||||
inkscape:cy="16.995581"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:window-width="843"
|
||||
inkscape:window-height="556"
|
||||
inkscape:window-x="5"
|
||||
inkscape:window-y="46" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g11013"
|
||||
transform="matrix(1,0,0,0.86962,0,5.100231)">
|
||||
<path
|
||||
transform="matrix(0.563507,3.230488e-2,-2.547077e-2,1.130789,0.177497,-6.138275)"
|
||||
d="M 45.963099 42.332104 A 22.140221 2.9225092 0 1 1 1.6826572,42.332104 A 22.140221 2.9225092 0 1 1 45.963099 42.332104 z"
|
||||
sodipodi:ry="2.9225092"
|
||||
sodipodi:rx="22.140221"
|
||||
sodipodi:cy="42.332104"
|
||||
sodipodi:cx="23.822878"
|
||||
id="path10136"
|
||||
style="opacity:0.13807529;fill:url(#radialGradient11017);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.037748,3.230488e-2,-4.690672e-2,1.130789,0.28713,-6.138275)"
|
||||
style="opacity:0.47698747;fill:url(#radialGradient11019);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 45.963099,42.332104 C 45.963099,43.945329 36.04428,45.254613 23.822878,45.254613 C 11.601476,45.254613 1.6826572,43.945329 1.6826572,42.332104 C 1.6826572,40.718879 11.601476,39.409595 23.822878,39.409595 C 36.04428,39.409595 45.963099,40.718879 45.963099,42.332104 z "
|
||||
id="path8380" />
|
||||
<path
|
||||
style="opacity:0.29707113;fill:url(#radialGradient11024);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 45.999756,43.215235 C 45.955295,45.039452 39.871319,46.19955 32.419454,45.804739 C 24.967589,45.409928 18.955784,43.608978 19.000245,41.784761 C 19.044706,39.960544 25.128681,38.800446 32.580546,39.195257 C 40.032411,39.590068 46.044217,41.391018 45.999756,43.215235 z "
|
||||
id="path11022" />
|
||||
<path
|
||||
style="fill:url(#linearGradient12780);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 40.915129,44 L 48,38 L 37.549815,38 L 40.915129,44 z "
|
||||
id="path11899"
|
||||
transform="matrix(1,0,0,1.149928,0,-5.864896)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient8378);fill-opacity:1;stroke:#b4b4b4;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.5190113,7.562759 L 41.140781,6.5000284 L 43.519006,7.562759 L 43.519006,41.5517 L 41.140781,43.500039 L 1.5190113,41.64026 L 1.5190113,7.562759 z "
|
||||
id="rect3987"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<g
|
||||
id="g3937"
|
||||
transform="matrix(0.319832,0,0,0.324908,41.81503,17.05113)">
|
||||
<path
|
||||
style="fill:#faf8fc"
|
||||
d="M -115,21.785978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -65,59.285978 L -115,59.285978 L -115,21.785978 z "
|
||||
id="path3985" />
|
||||
<path
|
||||
style="fill:#d7d7e7"
|
||||
d="M -115,21.785978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -65,59.285978 L -115,59.285978 L -115,21.785978 z M -93.128383,29.94067 C -88.677223,24.577351 -92.93137,16.285978 -100.13435,16.285978 C -104.80875,16.285978 -109,19.777932 -109,23.672429 C -109,26.017217 -105.85139,29.117254 -102,30.564446 C -99.163873,31.630144 -94.243396,31.284178 -93.128383,29.94067 z "
|
||||
id="path3983" />
|
||||
<path
|
||||
style="fill:#c7cae2"
|
||||
d="M -114.9682,41.128329 C -114.93985,24.78171 -114.77665,22.997182 -113.4682,24.727108 C -112.66069,25.794729 -112,27.008548 -112,27.424483 C -112,29.20903 -101.6596,33.285978 -97.133446,33.285978 C -93.003656,33.285978 -92.22236,32.932415 -90.715608,30.381686 C -88.716218,26.99699 -88.580862,24.786764 -90.105184,20.414092 C -91.3046,16.973445 -93.507962,15.420728 -98.976474,14.162461 C -103.86216,13.038298 -114.2577,16.898673 -113.4234,19.527315 C -113.1164,20.49458 -113.34555,21.285978 -113.93261,21.285978 C -114.65066,21.285978 -115,15.231288 -115,2.785978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -30.75,59.270665 C -42.149732,59.259582 -46.085689,58.96175 -45,58.192376 C -43.868743,57.390709 -44.237486,57.297589 -46.5,57.813574 C -48.15,58.189869 -64.2375,58.716657 -82.25,58.984213 L -115,59.470679 L -114.9682,41.128329 z M -65.140422,56.934642 C -64.23819,56.130004 -60.781739,54.585219 -57.459419,53.501788 C -50.438892,51.212344 -41.451109,46.824904 -40.444214,45.195714 C -39.77106,44.106528 -42.846778,44.312171 -51.244963,45.917855 C -53.499063,46.348826 -54.161089,45.99248 -54.947095,43.925129 C -55.473538,42.540478 -56.760123,40.94954 -57.806172,40.389711 C -59.354861,39.560878 -60.245912,39.945464 -62.60404,42.460512 C -64.528208,44.512723 -65.08054,45.700769 -64.25,46.000913 C -63.5625,46.249366 -63,47.03839 -63,47.754301 C -63,50.004231 -67.319567,52.010632 -73.776928,52.760088 C -77.201591,53.157562 -80.272844,53.918431 -80.601932,54.450908 C -82.522135,57.55786 -68.385563,59.828756 -65.140422,56.934642 z M -67.5,45.285978 C -67.839919,44.735978 -68.766476,44.285978 -69.559017,44.285978 C -70.351558,44.285978 -71,44.735978 -71,45.285978 C -71,45.835978 -70.073442,46.285978 -68.940983,46.285978 C -67.808524,46.285978 -67.160081,45.835978 -67.5,45.285978 z "
|
||||
id="path3981" />
|
||||
<path
|
||||
style="fill:#c5c8dc"
|
||||
d="M -115,43.88428 L -115,28.398439 L -110.25,30.492016 C -107.6375,31.643483 -104.6,33.137636 -103.5,33.812355 C -102.21201,34.60238 -99.770343,34.816053 -96.641513,34.412547 C -92.419341,33.86804 -91.515376,33.323329 -89.739417,30.253487 C -85.592047,23.08453 -89.959248,15.014472 -98.695112,13.704448 C -104.65164,12.811211 -113.72443,15.728293 -114.31943,18.727975 C -114.54394,19.859876 -114.78892,12.573478 -114.86382,2.535978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -30.75,59.186298 C -40.816474,59.122588 -45.597853,58.779889 -44,58.236622 C -42.393901,57.69055 -44.002922,57.570075 -48.5,57.899686 C -52.35,58.181869 -68.8875,58.628156 -85.25,58.891434 L -115,59.370121 L -115,43.88428 z M -62,56.285978 C -59.843822,55.185978 -56.486749,54.285978 -54.539838,54.285978 C -52.592927,54.285978 -51,53.904412 -51,53.438053 C -51,52.536888 -38.493318,46.279265 -33.568476,44.716323 C -31.956137,44.204633 -30.831137,43.335978 -31.068476,42.785978 C -31.574567,41.613178 -42.004475,42.080342 -43.554042,43.345217 C -44.133765,43.818431 -46.591939,44.33619 -49.016651,44.495792 C -52.749382,44.741492 -53.487009,44.479377 -53.828291,42.785978 C -54.672523,38.597006 -59.622474,38.055753 -63.14504,41.767236 C -65.011661,43.733965 -66.150192,44.130074 -68.635479,43.677429 C -70.567746,43.325506 -72.055939,43.567472 -72.513595,44.307975 C -73.521435,45.938694 -71.187984,47.252111 -67.25,47.270665 C -65.4625,47.279087 -64,47.681384 -64,48.164658 C -64,50.793456 -78.007074,52.929945 -84.463748,51.285978 C -87.113529,50.611304 -87.727158,53.824996 -85.432665,56.360382 C -82.868098,59.194197 -67.605588,59.145736 -62,56.285978 z "
|
||||
id="path3979" />
|
||||
<path
|
||||
style="fill:#bbc2db"
|
||||
d="M -115,44.285978 C -115,36.035978 -114.8875,29.292753 -114.75,29.301034 C -113.83442,29.356176 -106.98139,32.135713 -104.5,33.458356 C -102.41066,34.57203 -99.982241,34.903469 -96.5,34.550224 C -92.14121,34.108061 -91.208225,33.59599 -89.224812,30.557221 C -86.369582,26.18275 -87.019261,21.472571 -91.122452,16.799294 C -95.264849,12.081365 -101.7926,11.334982 -109.41816,14.707363 L -115,17.17592 L -115,0.730949 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -28.059017,59.285978 C -35.438213,59.285978 -40.878704,58.898734 -40.567767,58.395627 C -40.26512,57.905935 -41.697635,57.190081 -43.751134,56.804843 C -48.743553,55.868259 -49.182541,55.495575 -47.967521,53.22529 C -47.375394,52.118892 -45.880701,51.285978 -44.487356,51.285978 C -41.732039,51.285978 -33.200456,46.910836 -26.782294,42.206519 C -22.647064,39.175521 -22.603027,39.087202 -25.5,39.634774 C -27.15,39.94665 -31.65,40.505703 -35.5,40.877116 C -39.35,41.248529 -43.387628,42.167465 -44.472506,42.919195 C -47.732731,45.17826 -52.50693,44.663564 -53.757817,41.918167 C -55.435129,38.236868 -59.576187,37.974968 -63.374535,41.309962 C -65.676288,43.330928 -67.262879,43.958382 -69.156193,43.596452 C -72.084955,43.036584 -74.025207,45.022523 -71.878115,46.382469 C -71.120152,46.862555 -69.2625,47.262243 -67.75,47.270665 C -64.309152,47.289825 -64.226323,48.533959 -67.54756,50.311431 C -69.933587,51.588394 -81.64022,52.198115 -84.976259,51.219176 C -87.173342,50.574457 -87.415774,54.603371 -85.29402,56.499977 C -84.307309,57.381985 -82.375,58.308375 -81,58.558621 C -79.625,58.808867 -86.7125,59.074896 -96.75,59.149796 L -115,59.285978 L -115,44.285978 z M -68.5,58.380228 C -65.75,57.952832 -61.9995,56.926449 -60.165555,56.099376 C -56.908362,54.630446 -52,54.748377 -52,56.295566 C -52,57.77853 -55.549629,58.497195 -64.5,58.82634 C -71.503333,59.083885 -72.390741,58.984914 -68.5,58.380228 z "
|
||||
id="path3977" />
|
||||
<path
|
||||
style="fill:#b4bbd8"
|
||||
d="M -115,44.785978 C -115,36.810978 -114.84215,30.285978 -114.64922,30.285978 C -113.22223,30.285978 -107.03452,32.97159 -104.95928,34.491642 C -102.87868,36.015617 -101.40178,36.23314 -96.804061,35.692769 C -91.661584,35.088371 -90.972366,34.701149 -88.606044,31.086894 C -86.338932,27.624168 -86.135015,26.640227 -86.941036,23.052892 C -88.942823,14.14359 -97.565763,10.016924 -107.25309,13.332186 C -109.86729,14.226835 -112.30479,15.257431 -112.66975,15.622399 C -114.59689,17.549536 -115,14.896491 -115,0.285978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -27.559017,59.285978 C -35.043486,59.285978 -39.885881,58.910346 -39.543477,58.356325 C -39.227471,57.845016 -40.557487,56.852239 -42.49907,56.150154 C -46.828061,54.58477 -46.525762,52.986638 -41.753948,52.211002 C -37.734784,51.557705 -35.442686,50.224815 -25.75,42.904457 C -17.303745,36.525461 -16.617597,34.84588 -23.659958,37.788366 C -25.637604,38.614679 -30.62205,39.489189 -34.736506,39.73172 C -39.186109,39.994008 -42.882401,40.749017 -43.858667,41.595024 C -44.7614,42.377309 -46.744692,43.313178 -48.265982,43.674732 C -50.572495,44.222906 -51.183428,43.933725 -51.943768,41.93388 C -52.572594,40.279943 -53.922544,39.335489 -56.293543,38.890687 C -60.450061,38.11092 -62.703542,38.863524 -64.116298,41.503283 C -64.897287,42.962574 -65.876144,43.351647 -67.827874,42.97855 C -73.942315,41.8097 -75.590123,46.507653 -69.643381,48.154616 L -66.5,49.025182 L -69.3151,50.15558 C -72.798996,51.554532 -78.669538,51.629693 -79.5,50.285978 C -79.839919,49.735978 -81.677614,49.285978 -83.583768,49.285978 C -86.40938,49.285978 -87.23488,49.77356 -88.053172,51.925832 C -89.38588,55.43112 -87.060666,58.043087 -82.143919,58.563834 C -80.139764,58.7761 -86.7125,59.025418 -96.75,59.117875 L -115,59.285978 L -115,44.785978 z M -96,56.285978 C -96,55.735978 -96.675,55.285978 -97.5,55.285978 C -98.325,55.285978 -99,55.735978 -99,56.285978 C -99,56.835978 -98.325,57.285978 -97.5,57.285978 C -96.675,57.285978 -96,56.835978 -96,56.285978 z M -64.729167,58.681811 C -64.396875,58.34952 -63.534375,58.313993 -62.8125,58.602864 C -62.014767,58.92209 -62.251724,59.159047 -63.416667,59.207031 C -64.470833,59.250452 -65.061458,59.014103 -64.729167,58.681811 z "
|
||||
id="path3975" />
|
||||
<path
|
||||
style="fill:#a7b5d8"
|
||||
d="M -115,45.285978 C -115,37.585978 -114.7701,31.285978 -114.4891,31.285978 C -113.16162,31.285978 -104.96726,35.620498 -103.92846,36.872176 C -102.58385,38.492337 -97.423238,38.779809 -96.5,37.285978 C -96.160081,36.735978 -94.660855,36.285978 -93.168387,36.285978 C -91.092844,36.285978 -90.011623,35.463033 -88.569933,32.785978 C -87.533252,30.860978 -86.305921,29.285978 -85.842529,29.285978 C -84.318194,29.285978 -84.963177,23.27845 -86.89359,19.49614 C -91.145497,11.165266 -97.965947,9.108997 -108.75,12.906744 L -115,15.107763 L -115,-0.303129 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15.013655,7.035978 C -15.021165,19.548478 -15.286337,30.751399 -15.602927,31.931358 C -16.663814,35.885379 -33,40.534176 -33,36.882052 C -33,35.751363 -34.021775,35.865617 -38.25,37.469103 C -41.1375,38.564141 -44.30503,40.320908 -45.288955,41.373029 C -47.557448,43.798752 -50.69022,43.837368 -51.448274,41.448952 C -52.109577,39.36537 -58.010252,37.214392 -60.953397,37.984042 C -62.027802,38.265005 -63.605472,39.561099 -64.45933,40.864251 C -65.664188,42.703097 -66.626225,43.113623 -68.755899,42.697705 C -70.447527,42.367336 -72.26708,42.762563 -73.5,43.728178 C -75.470139,45.271176 -75.455208,45.331752 -72.5,47.785304 L -69.5,50.276044 L -73.25,50.281011 C -75.840581,50.284442 -77,49.843045 -77,48.853366 C -77,48.065429 -77.952342,47.118492 -79.116315,46.749061 C -81.804073,45.896 -88.972915,49.226853 -88.988527,51.335978 C -88.994837,52.188478 -89.498312,53.38429 -90.107359,53.993337 C -91.296751,55.182729 -88.985548,56.842654 -84.058399,58.337751 C -82.588916,58.783651 -88.629203,59.150656 -98.25,59.200025 L -115,59.285978 L -115,45.285978 z M -96.008359,57.312306 C -94.891062,56.605927 -94.803059,56.082919 -95.657696,55.228282 C -97.22005,53.665928 -101.05364,54.982631 -100.34198,56.83717 C -99.703829,58.500171 -98.15571,58.669906 -96.008359,57.312306 z M -38.989483,57.896495 C -40.975314,55.910664 -39.918341,54.295199 -34.268552,50.681072 C -31.116255,48.664573 -26.503755,45.329631 -24.018552,43.270091 C -21.533348,41.210551 -18.4875,39.005754 -17.25,38.370542 L -15,37.21561 L -15,48.280285 L -15,59.344959 L -26.489483,59.125985 C -32.808699,59.005549 -38.433699,58.452279 -38.989483,57.896495 z M -24.8125,57.602864 C -25.534375,57.313993 -26.396875,57.34952 -26.729167,57.681811 C -27.061458,58.014103 -26.470833,58.250452 -25.416667,58.207031 C -24.251724,58.159047 -24.014767,57.92209 -24.8125,57.602864 z "
|
||||
id="path3973" />
|
||||
<path
|
||||
style="fill:#9bacd3"
|
||||
d="M -115,48.188761 C -115,40.141368 -114.67263,37.281968 -113.75,37.270665 C -112.91667,37.260457 -113,36.932228 -114,36.285978 C -115.13669,35.551395 -114.70542,35.312895 -112.21945,35.301291 C -109.72945,35.289668 -108.21899,36.105904 -105.95152,38.688416 C -103.22964,41.788465 -102.58801,42.044677 -98.732068,41.57127 C -96.404431,41.285499 -93.974381,40.393831 -93.331957,39.589786 C -92.419317,38.447542 -91.708679,38.371521 -90.081957,39.242116 C -88.164641,40.268233 -88,40.090569 -88,36.995476 C -88,34.703516 -87.204886,32.887635 -85.5,31.285978 C -84.125,29.994233 -83,28.101338 -83,27.079545 C -83,23.855127 -85.67431,18.65224 -89.519192,14.396414 C -92.94844,10.600648 -93.625724,10.285599 -98.366362,10.281032 C -103.55255,10.276035 -112.88048,12.91936 -114.23469,14.777759 C -114.63877,15.33228 -114.97627,8.698478 -114.98469,0.035978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,7.357407 C -15,33.431623 -14.5171,31.802099 -23.457014,35.894929 C -29.056002,38.45823 -31.368912,38.410922 -30.349337,35.753953 C -30.001534,34.847592 -30.386469,34.285978 -31.355499,34.285978 C -34.250297,34.285978 -43.708959,38.3069 -45.518965,40.306935 C -47.773408,42.798066 -49.191408,42.810386 -50.726583,40.35218 C -51.521161,39.079859 -53.570295,38.195953 -56.71713,37.768121 C -59.347709,37.410477 -62.255659,36.910468 -63.179242,36.656989 C -64.395772,36.32311 -64.946869,36.921074 -65.179242,38.827076 C -65.474621,41.249864 -65.927518,41.487086 -70.903217,41.825223 C -73.874987,42.027177 -76.777487,42.663465 -77.353217,43.239195 C -77.928948,43.814926 -79.559872,44.285978 -80.977494,44.285978 C -82.395115,44.285978 -84.667587,45.065273 -86.027432,46.017745 C -87.387276,46.970217 -90.488925,47.982717 -92.919984,48.267745 C -97.751167,48.834174 -99.914688,51.285978 -95.583333,51.285978 C -94.1625,51.285978 -93,51.735978 -93,52.285978 C -93,52.835978 -94.488992,53.285978 -96.30887,53.285978 C -99.932627,53.285978 -103.992,55.630966 -102.65891,56.954217 C -102.19803,57.411686 -98.71124,57.680541 -94.910477,57.551672 C -90.717314,57.4095 -88,57.719311 -88,58.339562 C -88,58.992016 -92.883131,59.312888 -101.5,59.22665 L -115,59.091543 L -115,48.188761 z M -99.958347,47.73579 C -98.89648,46.456318 -98.956978,45.900428 -100.30478,44.552632 C -101.8154,43.042006 -102.08965,43.057138 -103.96534,44.754612 C -105.51331,46.155507 -105.72826,46.908478 -104.87402,47.93777 C -103.395,49.719881 -101.5418,49.643735 -99.958347,47.73579 z M -70,36.035978 C -70,34.86489 -71.456754,35.156241 -71.875,36.410978 C -72.08125,37.029728 -71.74375,37.367228 -71.125,37.160978 C -70.50625,36.954728 -70,36.448478 -70,36.035978 z M -25.322621,58.589761 C -23.178519,58.172387 -19.928135,55.275718 -21.627555,55.296802 C -22.1074,55.302756 -24.709019,55.977756 -27.408931,56.796802 C -30.108843,57.615849 -33.323198,58.285978 -34.551942,58.285978 C -37.522804,58.285978 -38.670899,55.221845 -36.304426,53.608801 C -35.311992,52.932334 -32.981344,51.345463 -31.125208,50.08242 C -29.269073,48.819377 -26.794073,46.859795 -25.625208,45.727794 C -22.829196,43.019961 -16.487206,38.285978 -15.655609,38.285978 C -15.295024,38.285978 -15,43.010978 -15,48.785978 L -15,59.285978 L -21.25,59.149796 C -24.6875,59.074896 -26.520179,58.82288 -25.322621,58.589761 z "
|
||||
id="path3971" />
|
||||
<path
|
||||
style="fill:#94a9d3"
|
||||
d="M -111.57026,58.399668 C -111.26899,57.912198 -111.91743,57.279327 -113.01125,56.993288 C -114.82191,56.519789 -115,55.614128 -115,46.879598 C -115,41.603107 -114.76592,37.285978 -114.47983,37.285978 C -114.19373,37.285978 -111.95616,40.383064 -109.50745,44.168391 C -107.05873,47.953719 -104.3484,51.322042 -103.48449,51.653555 C -102.21956,52.138956 -102.13261,52.665245 -103.0379,54.356788 C -104.56747,57.214816 -103.81383,57.691205 -96.667774,58.383491 C -91.44014,58.889926 -92.147594,59.004247 -101.30902,59.133491 C -107.378,59.219108 -111.87782,58.897308 -111.57026,58.399668 z M -23.060369,57.891006 C -21.168572,57.207458 -19.462053,56.172136 -19.268105,55.590292 C -18.616629,53.635864 -21.657803,53.453326 -25.595006,55.210539 C -32.104194,58.115654 -34.707624,58.490282 -35.423464,56.624832 C -35.849077,55.515703 -34.985133,54.061861 -32.777722,52.172588 C -30.974975,50.629657 -29.1475,49.348971 -28.716667,49.326619 C -28.285833,49.304266 -26.442404,47.823478 -24.620158,46.035978 C -20.465393,41.960436 -16.137705,38.285978 -15.492394,38.285978 C -15.221577,38.285978 -15,43.010978 -15,48.785978 L -15,59.285978 L -20.75,59.2099 L -26.5,59.133822 L -23.060369,57.891006 z M -93,45.485978 C -93,43.993134 -90.762851,42.43975 -89.378145,42.971112 C -87.010121,43.879808 -87.824445,46.285978 -90.5,46.285978 C -91.875,46.285978 -93,45.925978 -93,45.485978 z M -85.77138,39.535978 C -86.554818,37.239232 -86.262773,36.20911 -83.999472,33.285978 C -79.915593,28.011508 -79.628105,24.533307 -82.970934,20.842115 C -84.493174,19.16124 -87.28786,16.040549 -89.181347,13.907247 C -93.813858,8.688018 -99.642135,8.014408 -108.75,11.645578 L -115,14.13736 L -115,-0.788331 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,7.111664 C -15,29.53352 -15.039807,29.972135 -17.25,31.903486 C -19.919295,34.236019 -26.401092,37.285978 -28.688914,37.285978 C -30.120691,37.285978 -30.098632,37.052446 -28.5,35.285978 C -26.740955,33.342255 -26.753367,33.285978 -28.941105,33.285978 C -32.899399,33.285978 -41.568776,36.254501 -44.996972,38.783744 C -47.775185,40.833445 -48.495996,41.004695 -49.408864,39.831924 C -50.584174,38.321988 -56.356306,36.612194 -62,36.102235 C -64.93764,35.836792 -65.549129,36.130595 -65.805768,37.930797 C -66.047392,39.625681 -67.029535,40.213279 -70.487593,40.731847 C -73.264362,41.148249 -75.568783,40.947715 -76.79307,40.183135 C -78.355646,39.20729 -79.171438,39.29265 -81.08375,40.632086 C -84.244858,42.846211 -84.676676,42.745239 -85.77138,39.535978 z M -69.176676,35.953112 C -68.989607,34.988539 -69.491509,34.285978 -70.367659,34.285978 C -72.225395,34.285978 -73.346616,35.916125 -72.467376,37.338764 C -71.562845,38.802327 -69.566198,37.961576 -69.176676,35.953112 z "
|
||||
id="path3969" />
|
||||
<path
|
||||
style="fill:#97a7c9"
|
||||
d="M -23.060369,57.830107 C -21.168572,57.147125 -19.462053,56.112659 -19.268105,55.531297 C -18.582886,53.477342 -21.694694,53.455659 -26.379128,55.481746 C -30.490396,57.25993 -31.311304,57.34275 -32.550702,56.104377 C -33.7901,54.866005 -33.615774,54.314325 -31.240125,51.956854 C -25.494899,46.25559 -16.293165,38.2413 -15.492394,38.2413 C -15.221577,38.2413 -15,42.962391 -15,48.732613 L -15,64.476319 L -115.1074,59.071895 L -23.060369,57.830107 z M -114.33333,55.560292 C -114.7,55.193929 -114.96447,53.283012 -114.92105,51.313808 C -114.87763,49.344606 -114.61513,48.295475 -114.33772,48.982406 C -114.06031,49.669337 -112.55116,50.231372 -110.98405,50.231372 C -108.09873,50.231372 -106.14067,53.029614 -107.49447,55.218293 C -108.19006,56.342849 -113.29465,56.59812 -114.33333,55.560292 z M -114.96959,39.790018 C -114.99177,37.640471 -114.70121,37.141003 -113.89638,37.94517 C -113.10543,38.735461 -113.09681,39.570563 -113.86597,40.892729 C -114.8068,42.510012 -114.94293,42.373991 -114.96959,39.790018 z M -48.009821,39.751882 C -46.548261,37.992268 -47.18911,37.685021 -54,36.879968 C -56.475,36.58742 -60.369745,36.048965 -62.654988,35.683401 C -66.190336,35.11786 -66.881412,35.296283 -67.288987,36.879812 C -67.618938,38.161753 -67.804095,37.885843 -67.883999,35.993162 C -68.022202,32.719532 -71.297529,32.148648 -73.129053,35.078957 C -73.893754,36.302425 -75.072758,36.760112 -76.672568,36.454543 C -78.112311,36.179545 -79.857504,36.708624 -81.041172,37.778943 C -82.125271,38.759228 -83.270459,39.303295 -83.586034,38.987982 C -84.371412,38.203252 -81.217624,33.542679 -79.440008,32.861107 C -77.502685,32.118302 -77.610909,29.611732 -79.613454,28.843919 C -80.683136,28.433783 -81.038919,27.507017 -80.669117,26.094061 C -80.285732,24.629208 -80.99108,22.99283 -82.924984,20.860545 C -84.472497,19.154289 -87.28786,16.014276 -89.181347,13.882739 C -93.813858,8.6678285 -99.642135,7.9947758 -108.75,11.622941 L -115,14.112662 L -115,-0.80068008 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,7.0927787 C -15,29.496084 -15.039807,29.934336 -17.25,31.864089 C -19.919295,34.194692 -26.401092,37.242127 -28.688914,37.242127 C -30.120691,37.242127 -30.098632,37.008789 -28.5,35.243782 C -26.740955,33.301667 -26.753367,33.245437 -28.941105,33.245437 C -32.914931,33.245437 -41.574383,36.215637 -45.032388,38.764762 C -48.86286,41.588456 -49.790851,41.896117 -48.009821,39.751882 z "
|
||||
id="path3967"
|
||||
sodipodi:nodetypes="cssssscccccssssccssccssssssssssssscccccccsssssc" />
|
||||
<path
|
||||
style="fill:#8aa3cb"
|
||||
d="M -17,56.844995 C -17,56.602454 -16.55,56.125897 -16,55.785978 C -15.45,55.446059 -15,55.644502 -15,56.226961 C -15,56.80942 -15.45,57.285978 -16,57.285978 C -16.55,57.285978 -17,57.087536 -17,56.844995 z M -114.33333,55.619311 C -114.7,55.252645 -114.96447,53.340145 -114.92105,51.369311 C -114.87763,49.398478 -114.61513,48.348478 -114.33772,49.035978 C -114.06031,49.723478 -112.55116,50.285978 -110.98405,50.285978 C -108.09873,50.285978 -106.14067,53.086538 -107.49447,55.277029 C -108.19006,56.402516 -113.29465,56.657998 -114.33333,55.619311 z M -33.410163,55.431338 C -34.680347,53.376137 -19.144746,43.63272 -16.323686,44.715263 C -14.61457,45.371111 -14.54868,52.244401 -16.25,52.401132 C -16.9375,52.464467 -18.275684,52.438183 -19.223742,52.342723 C -20.171799,52.247262 -23.041503,53.095443 -25.60086,54.227568 C -30.647804,56.460072 -32.5894,56.75936 -33.410163,55.431338 z M -84,38.362901 C -84,37.855209 -82.65,36.089824 -81,34.439824 C -76.541975,29.981799 -76.793893,24.838725 -81.75,19.128066 C -90.660546,8.860918 -92.597997,7.294257 -96.632353,7.093907 C -102.64285,6.79542 -104.12426,6.964247 -109.75,8.588854 L -115,10.104953 L -115,-2.804534 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,7.10669 L -15,29.927401 L -22.749535,31.132195 C -30.743272,32.374953 -34.195202,33.297393 -42.107019,36.304989 C -46.290468,37.895284 -47.531659,37.932209 -55.607019,36.706605 C -66.987268,34.979417 -66.771653,34.973349 -67.310674,37.035978 C -67.592036,38.11264 -67.812631,37.727875 -67.883999,36.035978 C -68.021642,32.772928 -71.294783,32.183883 -73.112797,35.094986 C -73.876383,36.317682 -75.112967,36.776243 -76.928153,36.509831 C -78.562412,36.269972 -80.128776,36.736217 -80.929327,37.700822 C -82.381698,39.450823 -84,39.79975 -84,38.362901 z "
|
||||
id="path3965" />
|
||||
<path
|
||||
style="fill:#8599c7"
|
||||
d="M -29,51.827928 C -29,51.150502 -20.059614,47.335902 -17.298395,46.835198 C -15.206245,46.455819 -14.92001,46.737258 -15.188899,48.90935 C -15.480458,51.264577 -15.92401,51.449258 -22.25,51.849365 C -25.9625,52.084174 -29,52.074527 -29,51.827928 z M -59.163923,35.40304 C -61.179081,34.977207 -63.924611,33.910169 -65.265103,33.031846 C -66.605594,32.153522 -69.174664,31.288888 -70.974148,31.110436 C -73.767718,30.833402 -74.483751,30.18079 -75.872968,26.645514 C -76.767836,24.368259 -80.426848,19.300176 -84.004107,15.383108 C -90.17611,8.624818 -90.806395,8.212636 -96.347954,7.310724 C -100.77743,6.589808 -103.54398,6.713551 -107.80395,7.82313 C -110.89288,8.627696 -113.77565,9.285978 -114.2101,9.285978 C -114.64454,9.285978 -115,3.660978 -115,-3.214022 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,5.085978 C -15,20.341069 -15.333228,26.244985 -16.25,27.232682 C -17.25,28.310046 -17.25,28.438243 -16.25,27.873665 C -15.499687,27.450056 -15,27.748872 -15,28.621174 C -15,29.460962 -15.949777,30.075258 -17.25,30.076426 C -20.539794,30.079381 -30.60634,31.920871 -37.5,33.780792 C -44.780877,35.745184 -54.205175,36.450899 -59.163923,35.40304 z "
|
||||
id="path3963" />
|
||||
<path
|
||||
style="fill:#7b94c5"
|
||||
d="M -19.5,50.325826 C -21.358323,49.564302 -21.300582,49.427604 -18.6849,48.396111 C -15.012501,46.947902 -15,46.950921 -15,49.285978 C -15,51.396063 -16.207459,51.675079 -19.5,50.325826 z M -58.5,34.567582 C -62.548951,33.948667 -64.173157,32.487174 -63.097153,30.430973 C -61.002375,26.427934 -67.663046,19.661336 -72.502569,20.875979 C -74.762773,21.443254 -75.925948,20.670798 -81.303493,15.031349 C -84.711572,11.457287 -88.482916,8.027461 -89.684259,7.409516 C -90.910538,6.778743 -96.689609,6.285978 -102.86093,6.285978 C -112.48902,6.285978 -113.91011,6.503181 -114.31067,8.035978 C -114.5622,8.998478 -114.8202,4.048478 -114.884,-2.964022 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.585978 C -15,19.419755 -15.334339,25.220317 -16.241641,26.127619 C -17.230495,27.116473 -17.185494,27.553303 -16.020601,28.273246 C -15.216127,28.770438 -14.90686,29.526168 -15.333333,29.952645 C -15.75981,30.379122 -16.445004,30.183981 -16.855985,29.518999 C -17.38595,28.661498 -18.460526,28.578122 -20.551612,29.232258 C -26.508339,31.095646 -38.742786,33.366075 -45.033984,33.775616 C -48.590293,34.007123 -52.4,34.383202 -53.5,34.611347 C -54.6,34.839492 -56.85,34.819798 -58.5,34.567582 z "
|
||||
id="path3961" />
|
||||
<path
|
||||
style="fill:#8590bb"
|
||||
d="M -47.422252,30.829719 C -54.548283,29.890879 -55.429652,29.534717 -56.191711,27.285978 C -57.164568,24.4152 -65.946752,18.285978 -69.087256,18.285978 C -72.200964,18.285978 -77.712515,15.410949 -80.732278,12.211504 C -82.189653,10.667412 -83.719036,9.612333 -84.130907,9.866883 C -84.542778,10.121433 -86.369316,9.421546 -88.189882,8.311578 C -90.987371,6.605995 -93.230901,6.292875 -102.67668,6.289716 C -112.48211,6.286437 -113.90946,6.500681 -114.31067,8.035978 C -114.5622,8.998478 -114.8202,4.048478 -114.884,-2.964022 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.585978 C -15,19.419755 -15.334339,25.220317 -16.241641,26.127619 C -17.230495,27.116473 -17.185494,27.553303 -16.020601,28.273246 C -15.216127,28.770438 -14.90686,29.526168 -15.333333,29.952645 C -15.75981,30.379122 -16.47705,30.132129 -16.927199,29.403772 C -17.557391,28.3841 -18.226792,28.336986 -19.837378,29.198946 C -20.987828,29.814647 -23.651078,30.102047 -25.755712,29.837612 C -27.860346,29.573177 -31.813797,29.923065 -34.54116,30.615141 C -38.294288,31.567508 -41.426248,31.619681 -47.422252,30.829719 z "
|
||||
id="path3959" />
|
||||
<path
|
||||
style="fill:#7687b8"
|
||||
d="M -47.422252,30.827922 C -54.549062,29.890596 -55.429568,29.534963 -56.191711,27.285978 C -57.164568,24.4152 -65.946752,18.285978 -69.087256,18.285978 C -72.657133,18.285978 -77.242647,15.539847 -83.273517,9.790237 C -88.40104,4.901845 -89.519931,4.285241 -93.273517,4.279389 C -95.700525,4.275605 -98.696561,3.483854 -100.3104,2.419778 C -102.61523,0.9001 -103.94525,0.720781 -107.70383,1.422959 C -110.2245,1.893871 -112.89732,2.785796 -113.64343,3.405015 C -114.77033,4.340257 -115,2.817102 -115,-5.591577 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.750794 C -15,24.464559 -15.076452,25.256526 -17.083187,26.330498 C -18.745839,27.220323 -19.554561,27.094082 -21.089318,25.705146 C -23.451445,23.567451 -24.87197,24.660085 -23.203671,27.331456 C -22.106932,29.087615 -22.263008,29.297996 -24.741526,29.404399 C -26.258687,29.469531 -27.861104,29.461663 -28.302453,29.386915 C -28.743802,29.312167 -31.443802,29.840252 -34.302453,30.560438 C -38.294594,31.566186 -41.337315,31.62822 -47.422252,30.827922 z "
|
||||
id="path3957" />
|
||||
<path
|
||||
style="fill:#6783b9"
|
||||
d="M -51.692934,29.587723 C -53.128562,29.308909 -54.278953,27.97077 -55.024129,25.712866 C -56.480029,21.301447 -60.715094,18.114918 -69.5,14.820998 C -73.741142,13.230772 -78.07649,10.707266 -80.5,8.418153 C -86.25774,2.979709 -89.413936,1.285978 -93.790503,1.285978 C -96.607499,1.285978 -98.2813,0.61545 -99.981224,-1.194036 C -102.48291,-3.856957 -104.01946,-3.849166 -111.25,-1.136892 L -115,0.269784 L -115,-3.522119 C -115,-5.607666 -114.4375,-7.910272 -113.75,-8.639022 C -112.75,-9.699022 -112.75,-10.055689 -113.75,-10.422355 C -114.4375,-10.674439 -115,-11.968189 -115,-13.297355 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.317363 C -15,21.922964 -15.19769,24.424608 -16.632466,24.975183 C -17.530322,25.319723 -19.099216,25.0806 -20.118897,24.443799 C -22.858282,22.733024 -23.916808,23.009285 -25.171203,25.762382 C -25.886641,27.332598 -27.068064,28.196949 -28.399764,28.124455 C -29.554894,28.061574 -31.766795,28.522192 -33.3151,29.148052 C -35.995605,30.231572 -47.019707,30.495313 -51.692934,29.587723 z "
|
||||
id="path3955" />
|
||||
<path
|
||||
style="fill:#5b7cb3"
|
||||
d="M -37.5,25.257288 C -38.6,24.800381 -41.128236,24.39492 -43.118301,24.356263 C -45.844912,24.303299 -49.655936,22.41948 -58.582667,16.712107 C -73.399145,7.239079 -85.78656,1.278133 -92.568458,0.35781 C -95.444926,-0.032536 -98.903176,-1.075786 -100.25346,-1.960525 C -102.78349,-3.618266 -106.062,-3.31661 -112.25,-0.85672 C -114.95743,0.219552 -115,0.178031 -115,-3.538773 C -115,-5.61516 -114.4375,-7.910272 -113.75,-8.639022 C -112.75,-9.699022 -112.75,-10.055689 -113.75,-10.422355 C -114.4375,-10.674439 -115,-11.968189 -115,-13.297355 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.399522 L -15,24.513066 L -19.562428,23.828887 C -22.071763,23.452589 -24.659263,23.564327 -25.312428,24.077194 C -27.045054,25.437657 -35.171411,26.224513 -37.5,25.257288 z "
|
||||
id="path3953" />
|
||||
<path
|
||||
style="fill:#6579a9"
|
||||
d="M -32.627857,20.590218 C -39.707536,18.735773 -46.85,16.488675 -48.5,15.596666 C -50.15,14.704658 -53.525,12.886728 -56,11.556822 C -58.475,10.226916 -62.146956,7.833301 -64.159903,6.237676 C -66.172849,4.642051 -69.760336,2.900532 -72.132097,2.367633 C -74.503858,1.834734 -77.001201,0.637239 -77.68175,-0.293467 C -78.804564,-1.829006 -79.030289,-1.741651 -80.120071,0.650159 C -81.523013,3.729282 -81.642571,3.751095 -86.345757,1.785978 C -88.32026,0.960978 -91.412716,0.284296 -93.217881,0.28224 C -95.023047,0.280184 -97.913589,-0.583457 -99.641309,-1.636963 C -102.88629,-3.615644 -105.75657,-3.438027 -112.25,-0.85672 C -114.95743,0.219552 -115,0.178031 -115,-3.538773 C -115,-5.61516 -114.4375,-7.910272 -113.75,-8.639022 C -112.75,-9.699022 -112.75,-10.055689 -113.75,-10.422355 C -114.4375,-10.674439 -115,-11.968189 -115,-13.297355 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,3.669401 L -15,23.052824 L -17.377857,23.50738 C -18.685678,23.757386 -25.548178,22.444663 -32.627857,20.590218 z "
|
||||
id="path3951" />
|
||||
<path
|
||||
style="fill:#5372ac"
|
||||
d="M -23,22.577934 C -28.324089,21.987766 -45.112825,17.375138 -48.5,15.571926 C -58.686557,10.148965 -60.867464,8.847472 -64.213349,6.194725 C -66.255692,4.575477 -69.405692,2.970206 -71.213349,2.627456 C -76.324368,1.658356 -77.887933,0.499164 -78.786496,-2.987105 C -79.792505,-6.8902446 -83.44598,-8.0349451 -84.481747,-4.771531 C -85.072292,-2.910889 -85.682898,-2.770314 -90.817637,-3.312873 C -93.942937,-3.643106 -97.719278,-4.768459 -99.209507,-5.813659 C -100.90662,-7.0039564 -103.61556,-7.714022 -106.45951,-7.714022 C -111.40026,-7.714022 -111.93266,-8.5729446 -109.83948,-13.166969 L -108.67897,-15.714022 L -61.839485,-15.714022 L -15,-15.714022 L -15,3.785978 L -15,23.285978 L -17.25,23.125941 C -18.4875,23.037921 -21.075,22.791317 -23,22.577934 z M -115,-14.655005 C -115,-15.237464 -114.55,-15.714022 -114,-15.714022 C -113.45,-15.714022 -113,-15.51558 -113,-15.273039 C -113,-15.030498 -113.45,-14.553941 -114,-14.214022 C -114.55,-13.874103 -115,-14.072546 -115,-14.655005 z "
|
||||
id="path3949" />
|
||||
<path
|
||||
style="fill:#536ba3"
|
||||
d="M -24,17.672745 C -27.025,16.246213 -33.396227,13.813026 -38.158283,12.265663 C -42.920339,10.718299 -47.870339,8.771987 -49.158283,7.940525 C -53.581084,5.085285 -70.091001,-1.714022 -72.601227,-1.714022 C -74.146541,-1.714022 -76.227417,-2.934435 -78.010197,-4.886329 L -80.907652,-8.0586365 L -86.853867,-6.2582676 C -92.419553,-4.573114 -93.105856,-4.562087 -97.57818,-6.0859603 C -100.20613,-6.9813942 -104.30111,-7.714022 -106.67814,-7.714022 C -111.38584,-7.714022 -111.91116,-8.6201362 -109.83948,-13.166969 L -108.67897,-15.714022 L -61.839485,-15.714022 L -15,-15.714022 L -15,2.285978 C -15,22.907502 -14.54588,22.131126 -24,17.672745 z M -115,-14.655005 C -115,-15.237464 -114.55,-15.714022 -114,-15.714022 C -113.45,-15.714022 -113,-15.51558 -113,-15.273039 C -113,-15.030498 -113.45,-14.553941 -114,-14.214022 C -114.55,-13.874103 -115,-14.072546 -115,-14.655005 z "
|
||||
id="path3947" />
|
||||
<path
|
||||
style="fill:#4a64a2"
|
||||
d="M -22.095006,17.122907 C -24.517753,16.033166 -29.65,13.997348 -33.5,12.598868 C -37.35,11.200388 -42.27073,9.406422 -44.434954,8.612278 C -46.599179,7.818133 -49.914101,5.81256 -51.801446,4.155448 C -53.688792,2.498337 -56.868062,0.423969 -58.866492,-0.454259 C -60.864921,-1.332487 -64.3,-2.836537 -66.5,-3.796592 C -68.7,-4.756648 -72.721259,-6.5302231 -75.43613,-7.7378706 C -79.004382,-9.3251243 -82.745442,-10.010027 -88.93613,-10.209412 C -97.042971,-10.470512 -102.94531,-12.19848 -104.53914,-14.777346 C -104.89571,-15.354287 -87.812903,-15.714022 -60.059017,-15.714022 L -15,-15.714022 L -15,1.178989 C -15,20.283067 -15.011547,20.309017 -22.095006,17.122907 z M -108,-14.155005 C -108,-14.397546 -107.55,-14.874103 -107,-15.214022 C -106.45,-15.553941 -106,-15.355498 -106,-14.773039 C -106,-14.19058 -106.45,-13.714022 -107,-13.714022 C -107.55,-13.714022 -108,-13.912464 -108,-14.155005 z "
|
||||
id="path3945" />
|
||||
<path
|
||||
style="fill:#4b629c"
|
||||
d="M -19.483941,11.311961 C -19.815028,10.776252 -22.204086,9.707824 -24.792958,8.937678 C -27.381831,8.167531 -31.946719,6.355839 -34.937153,4.911695 C -37.927588,3.467551 -40.860627,2.285978 -41.455019,2.285978 C -42.049411,2.285978 -44.174306,1.172537 -46.177009,-0.188334 C -48.179712,-1.549206 -52.671672,-3.310081 -56.159143,-4.101389 C -59.646615,-4.892697 -64.075,-6.0000283 -66,-6.5621258 C -76.444507,-9.6119078 -82.256451,-10.646311 -89.127876,-10.6784 C -96.444168,-10.712567 -103.10416,-12.455502 -104.49064,-14.698871 C -104.9116,-15.380002 -90.292063,-15.714022 -60.059017,-15.714022 L -15,-15.714022 L -15,-1.714022 C -15,11.477418 -15.1121,12.285978 -16.940983,12.285978 C -18.008524,12.285978 -19.152855,11.84767 -19.483941,11.311961 z M -108,-14.155005 C -108,-14.397546 -107.55,-14.874103 -107,-15.214022 C -106.45,-15.553941 -106,-15.355498 -106,-14.773039 C -106,-14.19058 -106.45,-13.714022 -107,-13.714022 C -107.55,-13.714022 -108,-13.912464 -108,-14.155005 z "
|
||||
id="path3943" />
|
||||
<path
|
||||
style="fill:#435c9c"
|
||||
d="M -19.483941,11.311961 C -19.815028,10.776252 -22.204086,9.694013 -24.792958,8.906986 C -30.70263,7.110425 -48.567651,-1.20545 -49.395635,-2.545157 C -49.735488,-3.09505 -53.048001,-4.516123 -56.756775,-5.703096 C -60.465549,-6.8900687 -64.865555,-8.6557314 -66.534566,-9.6267908 C -69.939689,-11.607949 -78.945015,-14.483896 -83.5,-15.044882 C -85.15,-15.248094 -70.4125,-15.481782 -50.75,-15.56419 L -15,-15.714022 L -15,-1.714022 C -15,11.477418 -15.1121,12.285978 -16.940983,12.285978 C -18.008524,12.285978 -19.152855,11.84767 -19.483941,11.311961 z "
|
||||
id="path3941" />
|
||||
<path
|
||||
style="fill:#395595"
|
||||
d="M -20.739071,3.750241 C -29.885583,-0.233129 -37.953476,-3.617598 -41,-4.749189 C -42.925,-5.464205 -45.073316,-6.4878756 -45.774036,-7.024013 C -46.474756,-7.5601504 -52.099756,-9.6960548 -58.274036,-11.770467 L -115.04768,-15.542126 L -15,-18.624012 L -15,-5.380689 C -15,5.878857 -15.182968,6.169962 -20.739071,3.750241 z "
|
||||
id="path3939"
|
||||
sodipodi:nodetypes="cssccccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.5190103,8.5053123 L 40.918265,7.5000268 L 42.519037,8.1953492 L 42.519037,41.055531 L 40.918265,42.50003 L 2.5190103,40.740779 L 2.5190103,8.5053123 z "
|
||||
id="path5736"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient8376);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 41.01901,7.0000262 L 43.01901,7.8618126 L 43.01901,41.312526 L 41.01901,43.000026 L 41.01901,7.0000262 z "
|
||||
id="rect8367"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5723);fill-opacity:1.0;stroke:none;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 40.90625,7 L 2,8.0794686 L 2,26 C 13.172936,16.800527 30.446071,17.642447 41,26 L 41,7.0327112 L 40.90625,7 z "
|
||||
id="path3966"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
id="g4194"
|
||||
transform="matrix(0.705379,0,0,0.717575,58.96577,17.01457)">
|
||||
<path
|
||||
id="path3972"
|
||||
d="M -39.000003,34.500017 C -39.000003,36.984017 -45.496002,39.000017 -53.5,39.000017 C -61.503998,39.000017 -67.999997,36.984017 -67.999997,34.500017 C -67.999997,32.016018 -61.503998,30.000018 -53.5,30.000018 C -45.496002,30.000018 -39.000003,32.016018 -39.000003,34.500017 z "
|
||||
style="opacity:0.29288701;fill:url(#radialGradient4206);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccssc"
|
||||
id="rect8344"
|
||||
d="M -49.406132,19.009832 C -51.275478,20.692356 -45.057011,26.354018 -43.229759,24.717269 C -45.904618,27.179731 -48.65318,29.57646 -52.06602,30.185355 C -54.51123,30.621613 -55.975197,29.711351 -55.28562,27.210202 C -54.454934,24.197233 -52.050613,21.444328 -49.406132,19.009832 z "
|
||||
style="fill:url(#linearGradient4208);fill-opacity:1;stroke:#8b8b8b;stroke-width:1.40557981;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccssc"
|
||||
id="path10107"
|
||||
d="M -49.586554,21.580226 C -50.673327,22.623185 -47.088268,26.097608 -46.025988,25.083 C -47.581206,26.609254 -49.17892,28.095176 -51.156435,28.480299 C -52.573272,28.756229 -53.418407,28.198926 -53.012475,26.654384 C -52.523477,24.793777 -51.12411,23.089147 -49.586554,21.580226 z "
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4210);stroke-width:1.40557969;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccz"
|
||||
id="rect3935"
|
||||
d="M -20.785782,-3.2077237 C -17.478279,0.044737308 -43.973745,25.462592 -43.973745,25.462592 C -45.664768,27.12527 -51.76133,21.377602 -49.944488,19.59121 C -49.944488,19.59121 -24.165874,-6.5315672 -20.785782,-3.2077237 z "
|
||||
style="fill:url(#linearGradient4212);fill-opacity:1;stroke:#2b5c8d;stroke-width:1.4055779;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path5686"
|
||||
d="M -20.896758,-2.760606 C -23.80084,-5.562562 -48.154781,18.59688 -48.15478,18.596879 C -49.022354,19.433313 -48.118265,21.069622 -46.795778,22.297452 L -20.873302,-2.6945324 C -20.888383,-2.7125033 -20.879679,-2.7441284 -20.896758,-2.760606 z "
|
||||
style="fill:url(#linearGradient4214);fill-opacity:1;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccz"
|
||||
id="path6588"
|
||||
d="M -22.085401,-1.9468769 C -20.533272,-0.15755693 -44.190428,23.789807 -44.190428,23.789807 C -45.672278,25.247786 -49.925061,21.280132 -48.332952,19.713672 C -48.682896,19.369675 -23.63753,-3.7361969 -22.085401,-1.9468769 z "
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4216);stroke-width:1.40557837;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(1,0,0,0.993913,-76,-11.76459)"
|
||||
id="g14506">
|
||||
<path
|
||||
style="fill:#5d5d5d;fill-opacity:1;stroke:#343434;stroke-width:1.4098748;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 25.649925,41.110089 C 26.218578,43.350017 23.311513,46.120588 19.160942,47.294404 C 15.010371,48.468219 8.258705,45.525389 10.611626,45.363045 C 12.04817,45.263925 14.770134,41.827534 17.100611,39.178731 C 19.919388,35.974926 25.081274,38.870163 25.649925,41.110089 z "
|
||||
id="path10990"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
transform="matrix(1.201228,0,0,1.300966,-4.108407,-13.03362)"
|
||||
style="fill:url(#linearGradient4218);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 22.567238,41.651085 C 22.567238,42.564607 21.448385,43.306016 20.069798,43.306016 C 18.69121,43.306016 17.572357,42.564607 17.572357,41.651085 C 17.572357,41.015107 19.192192,39.996154 20.069798,39.996154 C 21.348189,39.996154 22.567238,40.737563 22.567238,41.651085 z "
|
||||
id="path12739"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4220);stroke-width:1.40987623;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 24.24734,41.498766 C 24.695324,43.18905 22.405141,45.343441 19.135327,46.229221 C 15.865513,47.115 11.554722,45.403682 13.40835,45.281174 C 14.540057,45.206377 16.14673,42.294856 17.982678,40.296026 C 20.203306,37.878386 23.799358,39.808483 24.24734,41.498766 z "
|
||||
id="path13623"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 64 KiB |
611
datas/icon-themes/edeneu/scalable/apps/graphics-image-viewer.svg
Normal file
@@ -0,0 +1,611 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="gthumb.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5717">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.5965665"
|
||||
offset="0"
|
||||
id="stop5719" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5721" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient12774">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop12776" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop12778" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient9255">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9257" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop9259" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8370">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.65665233"
|
||||
offset="0"
|
||||
id="stop8372" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop8374" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8357">
|
||||
<stop
|
||||
style="stop-color:#f2f2f2;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop8359" />
|
||||
<stop
|
||||
style="stop-color:#ddd;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8361" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8370"
|
||||
id="linearGradient8376"
|
||||
x1="45.377316"
|
||||
y1="17.625"
|
||||
x2="41.248108"
|
||||
y2="17.625"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.98099,1.000026)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8357"
|
||||
id="linearGradient8378"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="28.637825"
|
||||
y1="11.584001"
|
||||
x2="40.128311"
|
||||
y2="39.072777"
|
||||
gradientTransform="translate(-0.98099,1.000026)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9255"
|
||||
id="radialGradient11017"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-3.996301e-18,-8.497435e-20,0.132,-1.138891e-17,36.74427)"
|
||||
cx="23.822878"
|
||||
cy="42.332104"
|
||||
fx="23.822878"
|
||||
fy="42.332104"
|
||||
r="22.140221" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9255"
|
||||
id="radialGradient11019"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-2.500441e-18,-5.500971e-20,0.132,-1.661386e-17,36.74427)"
|
||||
cx="23.822878"
|
||||
cy="42.332104"
|
||||
fx="23.822878"
|
||||
fy="42.332104"
|
||||
r="22.140221" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9255"
|
||||
id="radialGradient11024"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.609739,3.230488e-2,-3.637986e-3,0.149264,18.12827,35.41174)"
|
||||
cx="23.822878"
|
||||
cy="42.332104"
|
||||
fx="16.153006"
|
||||
fy="43.9921"
|
||||
r="22.140221" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12774"
|
||||
id="linearGradient12780"
|
||||
x1="44.318668"
|
||||
y1="44.026615"
|
||||
x2="44.318668"
|
||||
y2="37.918137"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5717"
|
||||
id="linearGradient5723"
|
||||
x1="19.660517"
|
||||
y1="6.463141"
|
||||
x2="19.660517"
|
||||
y2="26.035271"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="6.0857162"
|
||||
x2="-14.412678"
|
||||
y1="15.501576"
|
||||
x1="-14.412675"
|
||||
id="linearGradient7488"
|
||||
xlink:href="#linearGradient7482"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="14.346088"
|
||||
x2="7.3838892"
|
||||
y1="3.7911859"
|
||||
x1="2.939218"
|
||||
gradientTransform="matrix(0.730893,-0.763059,0.730893,0.763059,-3.468388,9.209588)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient6605"
|
||||
xlink:href="#linearGradient2912"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="14.346088"
|
||||
x2="7.3838892"
|
||||
y1="3.7911859"
|
||||
x1="2.939218"
|
||||
gradientTransform="matrix(0.852598,-0.827227,0.852598,0.827227,-4.532128,9.571696)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient5727"
|
||||
xlink:href="#linearGradient8363"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="6.1843319"
|
||||
fy="10.198135"
|
||||
fx="-13.583885"
|
||||
cy="10.198135"
|
||||
cx="-13.583885"
|
||||
gradientTransform="matrix(1.227473,5.846235e-16,2.048754e-16,1.227473,3.136218,-2.253726)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3969"
|
||||
xlink:href="#linearGradient3839"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="4.372983"
|
||||
fy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
cx="-5.3766184"
|
||||
gradientTransform="matrix(1,1.961866e-16,3.584479e-16,0.803279,-8.83405e-15,0.985551)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3967"
|
||||
xlink:href="#linearGradient3853"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="4.372983"
|
||||
fy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
cx="-5.3766184"
|
||||
gradientTransform="matrix(1,-3.773699e-16,2.101957e-16,0.803279,9.303624e-15,0.985551)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3965"
|
||||
xlink:href="#linearGradient3853"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="20.073732"
|
||||
x2="10.793779"
|
||||
y1="20.073732"
|
||||
x1="6.6440091"
|
||||
gradientTransform="matrix(0.836336,-0.785794,0.836336,0.785794,-6.582601,8.85093)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3963"
|
||||
xlink:href="#linearGradient3821"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="17.483641"
|
||||
x2="10.358043"
|
||||
y1="17.483641"
|
||||
x1="6.9188247"
|
||||
gradientTransform="matrix(1.176616,-1.188767,0.763069,0.77095,-8.113206,12.69587)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3959"
|
||||
xlink:href="#linearGradient2912"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="13.879766"
|
||||
x2="7.7626853"
|
||||
y1="6.4781427"
|
||||
x1="14.607078"
|
||||
gradientTransform="matrix(0.757049,-0.757385,0.757049,0.757385,-3.522878,9.595433)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3953"
|
||||
xlink:href="#linearGradient3799"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient2912">
|
||||
<stop
|
||||
id="stop2914"
|
||||
offset="0"
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop2920" />
|
||||
<stop
|
||||
id="stop2922"
|
||||
offset="0.75"
|
||||
style="stop-color:#a5a5a5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2916"
|
||||
offset="1"
|
||||
style="stop-color:#d4d4d4;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3799"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3801"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3803"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.44313726" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3821"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3823"
|
||||
offset="0"
|
||||
style="stop-color:#d57e00;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3825"
|
||||
offset="1"
|
||||
style="stop-color:#bfb600;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
id="stop3841"
|
||||
offset="0"
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.30653265" />
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.3137255;"
|
||||
offset="0.61764705"
|
||||
id="stop3847" />
|
||||
<stop
|
||||
id="stop3843"
|
||||
offset="1"
|
||||
style="stop-color:#9ec4f0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3853">
|
||||
<stop
|
||||
id="stop3855"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0.61764705"
|
||||
id="stop3861" />
|
||||
<stop
|
||||
id="stop3857"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7482"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7484"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7486"
|
||||
offset="1"
|
||||
style="stop-color:gray;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8363">
|
||||
<stop
|
||||
style="stop-color:#aaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8365" />
|
||||
<stop
|
||||
id="stop8367"
|
||||
offset="0.5"
|
||||
style="stop-color:#dbdbdb;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#8e8e8e;stop-opacity:1;"
|
||||
offset="0.75"
|
||||
id="stop8369" />
|
||||
<stop
|
||||
style="stop-color:#a8a8a8;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop8371" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false"
|
||||
inkscape:window-width="843"
|
||||
inkscape:window-height="556"
|
||||
inkscape:window-x="5"
|
||||
inkscape:window-y="46" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g11013"
|
||||
transform="matrix(1,0,0,0.86962,0,5.100231)">
|
||||
<path
|
||||
transform="matrix(0.563507,3.230488e-2,-2.547077e-2,1.130789,0.177497,-6.138275)"
|
||||
d="M 45.963099 42.332104 A 22.140221 2.9225092 0 1 1 1.6826572,42.332104 A 22.140221 2.9225092 0 1 1 45.963099 42.332104 z"
|
||||
sodipodi:ry="2.9225092"
|
||||
sodipodi:rx="22.140221"
|
||||
sodipodi:cy="42.332104"
|
||||
sodipodi:cx="23.822878"
|
||||
id="path10136"
|
||||
style="opacity:0.13807529;fill:url(#radialGradient11017);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.037748,3.230488e-2,-4.690672e-2,1.130789,0.28713,-6.138275)"
|
||||
style="opacity:0.47698747;fill:url(#radialGradient11019);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 45.963099,42.332104 C 45.963099,43.945329 36.04428,45.254613 23.822878,45.254613 C 11.601476,45.254613 1.6826572,43.945329 1.6826572,42.332104 C 1.6826572,40.718879 11.601476,39.409595 23.822878,39.409595 C 36.04428,39.409595 45.963099,40.718879 45.963099,42.332104 z "
|
||||
id="path8380" />
|
||||
<path
|
||||
style="opacity:0.29707113;fill:url(#radialGradient11024);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 45.999756,43.215235 C 45.955295,45.039452 39.871319,46.19955 32.419454,45.804739 C 24.967589,45.409928 18.955784,43.608978 19.000245,41.784761 C 19.044706,39.960544 25.128681,38.800446 32.580546,39.195257 C 40.032411,39.590068 46.044217,41.391018 45.999756,43.215235 z "
|
||||
id="path11022" />
|
||||
<path
|
||||
style="fill:url(#linearGradient12780);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 40.915129,44 L 48,38 L 37.549815,38 L 40.915129,44 z "
|
||||
id="path11899"
|
||||
transform="matrix(1,0,0,1.149928,0,-5.864896)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient8378);fill-opacity:1;stroke:#b4b4b4;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 1.5190113,7.562759 L 41.140781,6.5000284 L 43.519006,7.562759 L 43.519006,41.5517 L 41.140781,43.500039 L 1.5190113,41.64026 L 1.5190113,7.562759 z "
|
||||
id="rect3987"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<g
|
||||
id="g3937"
|
||||
transform="matrix(0.319832,0,0,0.324908,41.81503,17.05113)">
|
||||
<path
|
||||
style="fill:#faf8fc"
|
||||
d="M -115,21.785978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -65,59.285978 L -115,59.285978 L -115,21.785978 z "
|
||||
id="path3985" />
|
||||
<path
|
||||
style="fill:#d7d7e7"
|
||||
d="M -115,21.785978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -65,59.285978 L -115,59.285978 L -115,21.785978 z M -93.128383,29.94067 C -88.677223,24.577351 -92.93137,16.285978 -100.13435,16.285978 C -104.80875,16.285978 -109,19.777932 -109,23.672429 C -109,26.017217 -105.85139,29.117254 -102,30.564446 C -99.163873,31.630144 -94.243396,31.284178 -93.128383,29.94067 z "
|
||||
id="path3983" />
|
||||
<path
|
||||
style="fill:#c7cae2"
|
||||
d="M -114.9682,41.128329 C -114.93985,24.78171 -114.77665,22.997182 -113.4682,24.727108 C -112.66069,25.794729 -112,27.008548 -112,27.424483 C -112,29.20903 -101.6596,33.285978 -97.133446,33.285978 C -93.003656,33.285978 -92.22236,32.932415 -90.715608,30.381686 C -88.716218,26.99699 -88.580862,24.786764 -90.105184,20.414092 C -91.3046,16.973445 -93.507962,15.420728 -98.976474,14.162461 C -103.86216,13.038298 -114.2577,16.898673 -113.4234,19.527315 C -113.1164,20.49458 -113.34555,21.285978 -113.93261,21.285978 C -114.65066,21.285978 -115,15.231288 -115,2.785978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -30.75,59.270665 C -42.149732,59.259582 -46.085689,58.96175 -45,58.192376 C -43.868743,57.390709 -44.237486,57.297589 -46.5,57.813574 C -48.15,58.189869 -64.2375,58.716657 -82.25,58.984213 L -115,59.470679 L -114.9682,41.128329 z M -65.140422,56.934642 C -64.23819,56.130004 -60.781739,54.585219 -57.459419,53.501788 C -50.438892,51.212344 -41.451109,46.824904 -40.444214,45.195714 C -39.77106,44.106528 -42.846778,44.312171 -51.244963,45.917855 C -53.499063,46.348826 -54.161089,45.99248 -54.947095,43.925129 C -55.473538,42.540478 -56.760123,40.94954 -57.806172,40.389711 C -59.354861,39.560878 -60.245912,39.945464 -62.60404,42.460512 C -64.528208,44.512723 -65.08054,45.700769 -64.25,46.000913 C -63.5625,46.249366 -63,47.03839 -63,47.754301 C -63,50.004231 -67.319567,52.010632 -73.776928,52.760088 C -77.201591,53.157562 -80.272844,53.918431 -80.601932,54.450908 C -82.522135,57.55786 -68.385563,59.828756 -65.140422,56.934642 z M -67.5,45.285978 C -67.839919,44.735978 -68.766476,44.285978 -69.559017,44.285978 C -70.351558,44.285978 -71,44.735978 -71,45.285978 C -71,45.835978 -70.073442,46.285978 -68.940983,46.285978 C -67.808524,46.285978 -67.160081,45.835978 -67.5,45.285978 z "
|
||||
id="path3981" />
|
||||
<path
|
||||
style="fill:#c5c8dc"
|
||||
d="M -115,43.88428 L -115,28.398439 L -110.25,30.492016 C -107.6375,31.643483 -104.6,33.137636 -103.5,33.812355 C -102.21201,34.60238 -99.770343,34.816053 -96.641513,34.412547 C -92.419341,33.86804 -91.515376,33.323329 -89.739417,30.253487 C -85.592047,23.08453 -89.959248,15.014472 -98.695112,13.704448 C -104.65164,12.811211 -113.72443,15.728293 -114.31943,18.727975 C -114.54394,19.859876 -114.78892,12.573478 -114.86382,2.535978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -30.75,59.186298 C -40.816474,59.122588 -45.597853,58.779889 -44,58.236622 C -42.393901,57.69055 -44.002922,57.570075 -48.5,57.899686 C -52.35,58.181869 -68.8875,58.628156 -85.25,58.891434 L -115,59.370121 L -115,43.88428 z M -62,56.285978 C -59.843822,55.185978 -56.486749,54.285978 -54.539838,54.285978 C -52.592927,54.285978 -51,53.904412 -51,53.438053 C -51,52.536888 -38.493318,46.279265 -33.568476,44.716323 C -31.956137,44.204633 -30.831137,43.335978 -31.068476,42.785978 C -31.574567,41.613178 -42.004475,42.080342 -43.554042,43.345217 C -44.133765,43.818431 -46.591939,44.33619 -49.016651,44.495792 C -52.749382,44.741492 -53.487009,44.479377 -53.828291,42.785978 C -54.672523,38.597006 -59.622474,38.055753 -63.14504,41.767236 C -65.011661,43.733965 -66.150192,44.130074 -68.635479,43.677429 C -70.567746,43.325506 -72.055939,43.567472 -72.513595,44.307975 C -73.521435,45.938694 -71.187984,47.252111 -67.25,47.270665 C -65.4625,47.279087 -64,47.681384 -64,48.164658 C -64,50.793456 -78.007074,52.929945 -84.463748,51.285978 C -87.113529,50.611304 -87.727158,53.824996 -85.432665,56.360382 C -82.868098,59.194197 -67.605588,59.145736 -62,56.285978 z "
|
||||
id="path3979" />
|
||||
<path
|
||||
style="fill:#bbc2db"
|
||||
d="M -115,44.285978 C -115,36.035978 -114.8875,29.292753 -114.75,29.301034 C -113.83442,29.356176 -106.98139,32.135713 -104.5,33.458356 C -102.41066,34.57203 -99.982241,34.903469 -96.5,34.550224 C -92.14121,34.108061 -91.208225,33.59599 -89.224812,30.557221 C -86.369582,26.18275 -87.019261,21.472571 -91.122452,16.799294 C -95.264849,12.081365 -101.7926,11.334982 -109.41816,14.707363 L -115,17.17592 L -115,0.730949 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -28.059017,59.285978 C -35.438213,59.285978 -40.878704,58.898734 -40.567767,58.395627 C -40.26512,57.905935 -41.697635,57.190081 -43.751134,56.804843 C -48.743553,55.868259 -49.182541,55.495575 -47.967521,53.22529 C -47.375394,52.118892 -45.880701,51.285978 -44.487356,51.285978 C -41.732039,51.285978 -33.200456,46.910836 -26.782294,42.206519 C -22.647064,39.175521 -22.603027,39.087202 -25.5,39.634774 C -27.15,39.94665 -31.65,40.505703 -35.5,40.877116 C -39.35,41.248529 -43.387628,42.167465 -44.472506,42.919195 C -47.732731,45.17826 -52.50693,44.663564 -53.757817,41.918167 C -55.435129,38.236868 -59.576187,37.974968 -63.374535,41.309962 C -65.676288,43.330928 -67.262879,43.958382 -69.156193,43.596452 C -72.084955,43.036584 -74.025207,45.022523 -71.878115,46.382469 C -71.120152,46.862555 -69.2625,47.262243 -67.75,47.270665 C -64.309152,47.289825 -64.226323,48.533959 -67.54756,50.311431 C -69.933587,51.588394 -81.64022,52.198115 -84.976259,51.219176 C -87.173342,50.574457 -87.415774,54.603371 -85.29402,56.499977 C -84.307309,57.381985 -82.375,58.308375 -81,58.558621 C -79.625,58.808867 -86.7125,59.074896 -96.75,59.149796 L -115,59.285978 L -115,44.285978 z M -68.5,58.380228 C -65.75,57.952832 -61.9995,56.926449 -60.165555,56.099376 C -56.908362,54.630446 -52,54.748377 -52,56.295566 C -52,57.77853 -55.549629,58.497195 -64.5,58.82634 C -71.503333,59.083885 -72.390741,58.984914 -68.5,58.380228 z "
|
||||
id="path3977" />
|
||||
<path
|
||||
style="fill:#b4bbd8"
|
||||
d="M -115,44.785978 C -115,36.810978 -114.84215,30.285978 -114.64922,30.285978 C -113.22223,30.285978 -107.03452,32.97159 -104.95928,34.491642 C -102.87868,36.015617 -101.40178,36.23314 -96.804061,35.692769 C -91.661584,35.088371 -90.972366,34.701149 -88.606044,31.086894 C -86.338932,27.624168 -86.135015,26.640227 -86.941036,23.052892 C -88.942823,14.14359 -97.565763,10.016924 -107.25309,13.332186 C -109.86729,14.226835 -112.30479,15.257431 -112.66975,15.622399 C -114.59689,17.549536 -115,14.896491 -115,0.285978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,21.785978 L -15,59.285978 L -27.559017,59.285978 C -35.043486,59.285978 -39.885881,58.910346 -39.543477,58.356325 C -39.227471,57.845016 -40.557487,56.852239 -42.49907,56.150154 C -46.828061,54.58477 -46.525762,52.986638 -41.753948,52.211002 C -37.734784,51.557705 -35.442686,50.224815 -25.75,42.904457 C -17.303745,36.525461 -16.617597,34.84588 -23.659958,37.788366 C -25.637604,38.614679 -30.62205,39.489189 -34.736506,39.73172 C -39.186109,39.994008 -42.882401,40.749017 -43.858667,41.595024 C -44.7614,42.377309 -46.744692,43.313178 -48.265982,43.674732 C -50.572495,44.222906 -51.183428,43.933725 -51.943768,41.93388 C -52.572594,40.279943 -53.922544,39.335489 -56.293543,38.890687 C -60.450061,38.11092 -62.703542,38.863524 -64.116298,41.503283 C -64.897287,42.962574 -65.876144,43.351647 -67.827874,42.97855 C -73.942315,41.8097 -75.590123,46.507653 -69.643381,48.154616 L -66.5,49.025182 L -69.3151,50.15558 C -72.798996,51.554532 -78.669538,51.629693 -79.5,50.285978 C -79.839919,49.735978 -81.677614,49.285978 -83.583768,49.285978 C -86.40938,49.285978 -87.23488,49.77356 -88.053172,51.925832 C -89.38588,55.43112 -87.060666,58.043087 -82.143919,58.563834 C -80.139764,58.7761 -86.7125,59.025418 -96.75,59.117875 L -115,59.285978 L -115,44.785978 z M -96,56.285978 C -96,55.735978 -96.675,55.285978 -97.5,55.285978 C -98.325,55.285978 -99,55.735978 -99,56.285978 C -99,56.835978 -98.325,57.285978 -97.5,57.285978 C -96.675,57.285978 -96,56.835978 -96,56.285978 z M -64.729167,58.681811 C -64.396875,58.34952 -63.534375,58.313993 -62.8125,58.602864 C -62.014767,58.92209 -62.251724,59.159047 -63.416667,59.207031 C -64.470833,59.250452 -65.061458,59.014103 -64.729167,58.681811 z "
|
||||
id="path3975" />
|
||||
<path
|
||||
style="fill:#a7b5d8"
|
||||
d="M -115,45.285978 C -115,37.585978 -114.7701,31.285978 -114.4891,31.285978 C -113.16162,31.285978 -104.96726,35.620498 -103.92846,36.872176 C -102.58385,38.492337 -97.423238,38.779809 -96.5,37.285978 C -96.160081,36.735978 -94.660855,36.285978 -93.168387,36.285978 C -91.092844,36.285978 -90.011623,35.463033 -88.569933,32.785978 C -87.533252,30.860978 -86.305921,29.285978 -85.842529,29.285978 C -84.318194,29.285978 -84.963177,23.27845 -86.89359,19.49614 C -91.145497,11.165266 -97.965947,9.108997 -108.75,12.906744 L -115,15.107763 L -115,-0.303129 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15.013655,7.035978 C -15.021165,19.548478 -15.286337,30.751399 -15.602927,31.931358 C -16.663814,35.885379 -33,40.534176 -33,36.882052 C -33,35.751363 -34.021775,35.865617 -38.25,37.469103 C -41.1375,38.564141 -44.30503,40.320908 -45.288955,41.373029 C -47.557448,43.798752 -50.69022,43.837368 -51.448274,41.448952 C -52.109577,39.36537 -58.010252,37.214392 -60.953397,37.984042 C -62.027802,38.265005 -63.605472,39.561099 -64.45933,40.864251 C -65.664188,42.703097 -66.626225,43.113623 -68.755899,42.697705 C -70.447527,42.367336 -72.26708,42.762563 -73.5,43.728178 C -75.470139,45.271176 -75.455208,45.331752 -72.5,47.785304 L -69.5,50.276044 L -73.25,50.281011 C -75.840581,50.284442 -77,49.843045 -77,48.853366 C -77,48.065429 -77.952342,47.118492 -79.116315,46.749061 C -81.804073,45.896 -88.972915,49.226853 -88.988527,51.335978 C -88.994837,52.188478 -89.498312,53.38429 -90.107359,53.993337 C -91.296751,55.182729 -88.985548,56.842654 -84.058399,58.337751 C -82.588916,58.783651 -88.629203,59.150656 -98.25,59.200025 L -115,59.285978 L -115,45.285978 z M -96.008359,57.312306 C -94.891062,56.605927 -94.803059,56.082919 -95.657696,55.228282 C -97.22005,53.665928 -101.05364,54.982631 -100.34198,56.83717 C -99.703829,58.500171 -98.15571,58.669906 -96.008359,57.312306 z M -38.989483,57.896495 C -40.975314,55.910664 -39.918341,54.295199 -34.268552,50.681072 C -31.116255,48.664573 -26.503755,45.329631 -24.018552,43.270091 C -21.533348,41.210551 -18.4875,39.005754 -17.25,38.370542 L -15,37.21561 L -15,48.280285 L -15,59.344959 L -26.489483,59.125985 C -32.808699,59.005549 -38.433699,58.452279 -38.989483,57.896495 z M -24.8125,57.602864 C -25.534375,57.313993 -26.396875,57.34952 -26.729167,57.681811 C -27.061458,58.014103 -26.470833,58.250452 -25.416667,58.207031 C -24.251724,58.159047 -24.014767,57.92209 -24.8125,57.602864 z "
|
||||
id="path3973" />
|
||||
<path
|
||||
style="fill:#9bacd3"
|
||||
d="M -115,48.188761 C -115,40.141368 -114.67263,37.281968 -113.75,37.270665 C -112.91667,37.260457 -113,36.932228 -114,36.285978 C -115.13669,35.551395 -114.70542,35.312895 -112.21945,35.301291 C -109.72945,35.289668 -108.21899,36.105904 -105.95152,38.688416 C -103.22964,41.788465 -102.58801,42.044677 -98.732068,41.57127 C -96.404431,41.285499 -93.974381,40.393831 -93.331957,39.589786 C -92.419317,38.447542 -91.708679,38.371521 -90.081957,39.242116 C -88.164641,40.268233 -88,40.090569 -88,36.995476 C -88,34.703516 -87.204886,32.887635 -85.5,31.285978 C -84.125,29.994233 -83,28.101338 -83,27.079545 C -83,23.855127 -85.67431,18.65224 -89.519192,14.396414 C -92.94844,10.600648 -93.625724,10.285599 -98.366362,10.281032 C -103.55255,10.276035 -112.88048,12.91936 -114.23469,14.777759 C -114.63877,15.33228 -114.97627,8.698478 -114.98469,0.035978 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,7.357407 C -15,33.431623 -14.5171,31.802099 -23.457014,35.894929 C -29.056002,38.45823 -31.368912,38.410922 -30.349337,35.753953 C -30.001534,34.847592 -30.386469,34.285978 -31.355499,34.285978 C -34.250297,34.285978 -43.708959,38.3069 -45.518965,40.306935 C -47.773408,42.798066 -49.191408,42.810386 -50.726583,40.35218 C -51.521161,39.079859 -53.570295,38.195953 -56.71713,37.768121 C -59.347709,37.410477 -62.255659,36.910468 -63.179242,36.656989 C -64.395772,36.32311 -64.946869,36.921074 -65.179242,38.827076 C -65.474621,41.249864 -65.927518,41.487086 -70.903217,41.825223 C -73.874987,42.027177 -76.777487,42.663465 -77.353217,43.239195 C -77.928948,43.814926 -79.559872,44.285978 -80.977494,44.285978 C -82.395115,44.285978 -84.667587,45.065273 -86.027432,46.017745 C -87.387276,46.970217 -90.488925,47.982717 -92.919984,48.267745 C -97.751167,48.834174 -99.914688,51.285978 -95.583333,51.285978 C -94.1625,51.285978 -93,51.735978 -93,52.285978 C -93,52.835978 -94.488992,53.285978 -96.30887,53.285978 C -99.932627,53.285978 -103.992,55.630966 -102.65891,56.954217 C -102.19803,57.411686 -98.71124,57.680541 -94.910477,57.551672 C -90.717314,57.4095 -88,57.719311 -88,58.339562 C -88,58.992016 -92.883131,59.312888 -101.5,59.22665 L -115,59.091543 L -115,48.188761 z M -99.958347,47.73579 C -98.89648,46.456318 -98.956978,45.900428 -100.30478,44.552632 C -101.8154,43.042006 -102.08965,43.057138 -103.96534,44.754612 C -105.51331,46.155507 -105.72826,46.908478 -104.87402,47.93777 C -103.395,49.719881 -101.5418,49.643735 -99.958347,47.73579 z M -70,36.035978 C -70,34.86489 -71.456754,35.156241 -71.875,36.410978 C -72.08125,37.029728 -71.74375,37.367228 -71.125,37.160978 C -70.50625,36.954728 -70,36.448478 -70,36.035978 z M -25.322621,58.589761 C -23.178519,58.172387 -19.928135,55.275718 -21.627555,55.296802 C -22.1074,55.302756 -24.709019,55.977756 -27.408931,56.796802 C -30.108843,57.615849 -33.323198,58.285978 -34.551942,58.285978 C -37.522804,58.285978 -38.670899,55.221845 -36.304426,53.608801 C -35.311992,52.932334 -32.981344,51.345463 -31.125208,50.08242 C -29.269073,48.819377 -26.794073,46.859795 -25.625208,45.727794 C -22.829196,43.019961 -16.487206,38.285978 -15.655609,38.285978 C -15.295024,38.285978 -15,43.010978 -15,48.785978 L -15,59.285978 L -21.25,59.149796 C -24.6875,59.074896 -26.520179,58.82288 -25.322621,58.589761 z "
|
||||
id="path3971" />
|
||||
<path
|
||||
style="fill:#94a9d3"
|
||||
d="M -111.57026,58.399668 C -111.26899,57.912198 -111.91743,57.279327 -113.01125,56.993288 C -114.82191,56.519789 -115,55.614128 -115,46.879598 C -115,41.603107 -114.76592,37.285978 -114.47983,37.285978 C -114.19373,37.285978 -111.95616,40.383064 -109.50745,44.168391 C -107.05873,47.953719 -104.3484,51.322042 -103.48449,51.653555 C -102.21956,52.138956 -102.13261,52.665245 -103.0379,54.356788 C -104.56747,57.214816 -103.81383,57.691205 -96.667774,58.383491 C -91.44014,58.889926 -92.147594,59.004247 -101.30902,59.133491 C -107.378,59.219108 -111.87782,58.897308 -111.57026,58.399668 z M -23.060369,57.891006 C -21.168572,57.207458 -19.462053,56.172136 -19.268105,55.590292 C -18.616629,53.635864 -21.657803,53.453326 -25.595006,55.210539 C -32.104194,58.115654 -34.707624,58.490282 -35.423464,56.624832 C -35.849077,55.515703 -34.985133,54.061861 -32.777722,52.172588 C -30.974975,50.629657 -29.1475,49.348971 -28.716667,49.326619 C -28.285833,49.304266 -26.442404,47.823478 -24.620158,46.035978 C -20.465393,41.960436 -16.137705,38.285978 -15.492394,38.285978 C -15.221577,38.285978 -15,43.010978 -15,48.785978 L -15,59.285978 L -20.75,59.2099 L -26.5,59.133822 L -23.060369,57.891006 z M -93,45.485978 C -93,43.993134 -90.762851,42.43975 -89.378145,42.971112 C -87.010121,43.879808 -87.824445,46.285978 -90.5,46.285978 C -91.875,46.285978 -93,45.925978 -93,45.485978 z M -85.77138,39.535978 C -86.554818,37.239232 -86.262773,36.20911 -83.999472,33.285978 C -79.915593,28.011508 -79.628105,24.533307 -82.970934,20.842115 C -84.493174,19.16124 -87.28786,16.040549 -89.181347,13.907247 C -93.813858,8.688018 -99.642135,8.014408 -108.75,11.645578 L -115,14.13736 L -115,-0.788331 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,7.111664 C -15,29.53352 -15.039807,29.972135 -17.25,31.903486 C -19.919295,34.236019 -26.401092,37.285978 -28.688914,37.285978 C -30.120691,37.285978 -30.098632,37.052446 -28.5,35.285978 C -26.740955,33.342255 -26.753367,33.285978 -28.941105,33.285978 C -32.899399,33.285978 -41.568776,36.254501 -44.996972,38.783744 C -47.775185,40.833445 -48.495996,41.004695 -49.408864,39.831924 C -50.584174,38.321988 -56.356306,36.612194 -62,36.102235 C -64.93764,35.836792 -65.549129,36.130595 -65.805768,37.930797 C -66.047392,39.625681 -67.029535,40.213279 -70.487593,40.731847 C -73.264362,41.148249 -75.568783,40.947715 -76.79307,40.183135 C -78.355646,39.20729 -79.171438,39.29265 -81.08375,40.632086 C -84.244858,42.846211 -84.676676,42.745239 -85.77138,39.535978 z M -69.176676,35.953112 C -68.989607,34.988539 -69.491509,34.285978 -70.367659,34.285978 C -72.225395,34.285978 -73.346616,35.916125 -72.467376,37.338764 C -71.562845,38.802327 -69.566198,37.961576 -69.176676,35.953112 z "
|
||||
id="path3969" />
|
||||
<path
|
||||
style="fill:#97a7c9"
|
||||
d="M -23.060369,57.830107 C -21.168572,57.147125 -19.462053,56.112659 -19.268105,55.531297 C -18.582886,53.477342 -21.694694,53.455659 -26.379128,55.481746 C -30.490396,57.25993 -31.311304,57.34275 -32.550702,56.104377 C -33.7901,54.866005 -33.615774,54.314325 -31.240125,51.956854 C -25.494899,46.25559 -16.293165,38.2413 -15.492394,38.2413 C -15.221577,38.2413 -15,42.962391 -15,48.732613 L -15,64.476319 L -115.1074,59.071895 L -23.060369,57.830107 z M -114.33333,55.560292 C -114.7,55.193929 -114.96447,53.283012 -114.92105,51.313808 C -114.87763,49.344606 -114.61513,48.295475 -114.33772,48.982406 C -114.06031,49.669337 -112.55116,50.231372 -110.98405,50.231372 C -108.09873,50.231372 -106.14067,53.029614 -107.49447,55.218293 C -108.19006,56.342849 -113.29465,56.59812 -114.33333,55.560292 z M -114.96959,39.790018 C -114.99177,37.640471 -114.70121,37.141003 -113.89638,37.94517 C -113.10543,38.735461 -113.09681,39.570563 -113.86597,40.892729 C -114.8068,42.510012 -114.94293,42.373991 -114.96959,39.790018 z M -48.009821,39.751882 C -46.548261,37.992268 -47.18911,37.685021 -54,36.879968 C -56.475,36.58742 -60.369745,36.048965 -62.654988,35.683401 C -66.190336,35.11786 -66.881412,35.296283 -67.288987,36.879812 C -67.618938,38.161753 -67.804095,37.885843 -67.883999,35.993162 C -68.022202,32.719532 -71.297529,32.148648 -73.129053,35.078957 C -73.893754,36.302425 -75.072758,36.760112 -76.672568,36.454543 C -78.112311,36.179545 -79.857504,36.708624 -81.041172,37.778943 C -82.125271,38.759228 -83.270459,39.303295 -83.586034,38.987982 C -84.371412,38.203252 -81.217624,33.542679 -79.440008,32.861107 C -77.502685,32.118302 -77.610909,29.611732 -79.613454,28.843919 C -80.683136,28.433783 -81.038919,27.507017 -80.669117,26.094061 C -80.285732,24.629208 -80.99108,22.99283 -82.924984,20.860545 C -84.472497,19.154289 -87.28786,16.014276 -89.181347,13.882739 C -93.813858,8.6678285 -99.642135,7.9947758 -108.75,11.622941 L -115,14.112662 L -115,-0.80068008 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,7.0927787 C -15,29.496084 -15.039807,29.934336 -17.25,31.864089 C -19.919295,34.194692 -26.401092,37.242127 -28.688914,37.242127 C -30.120691,37.242127 -30.098632,37.008789 -28.5,35.243782 C -26.740955,33.301667 -26.753367,33.245437 -28.941105,33.245437 C -32.914931,33.245437 -41.574383,36.215637 -45.032388,38.764762 C -48.86286,41.588456 -49.790851,41.896117 -48.009821,39.751882 z "
|
||||
id="path3967"
|
||||
sodipodi:nodetypes="cssssscccccssssccssccssssssssssssscccccccsssssc" />
|
||||
<path
|
||||
style="fill:#8aa3cb"
|
||||
d="M -17,56.844995 C -17,56.602454 -16.55,56.125897 -16,55.785978 C -15.45,55.446059 -15,55.644502 -15,56.226961 C -15,56.80942 -15.45,57.285978 -16,57.285978 C -16.55,57.285978 -17,57.087536 -17,56.844995 z M -114.33333,55.619311 C -114.7,55.252645 -114.96447,53.340145 -114.92105,51.369311 C -114.87763,49.398478 -114.61513,48.348478 -114.33772,49.035978 C -114.06031,49.723478 -112.55116,50.285978 -110.98405,50.285978 C -108.09873,50.285978 -106.14067,53.086538 -107.49447,55.277029 C -108.19006,56.402516 -113.29465,56.657998 -114.33333,55.619311 z M -33.410163,55.431338 C -34.680347,53.376137 -19.144746,43.63272 -16.323686,44.715263 C -14.61457,45.371111 -14.54868,52.244401 -16.25,52.401132 C -16.9375,52.464467 -18.275684,52.438183 -19.223742,52.342723 C -20.171799,52.247262 -23.041503,53.095443 -25.60086,54.227568 C -30.647804,56.460072 -32.5894,56.75936 -33.410163,55.431338 z M -84,38.362901 C -84,37.855209 -82.65,36.089824 -81,34.439824 C -76.541975,29.981799 -76.793893,24.838725 -81.75,19.128066 C -90.660546,8.860918 -92.597997,7.294257 -96.632353,7.093907 C -102.64285,6.79542 -104.12426,6.964247 -109.75,8.588854 L -115,10.104953 L -115,-2.804534 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,7.10669 L -15,29.927401 L -22.749535,31.132195 C -30.743272,32.374953 -34.195202,33.297393 -42.107019,36.304989 C -46.290468,37.895284 -47.531659,37.932209 -55.607019,36.706605 C -66.987268,34.979417 -66.771653,34.973349 -67.310674,37.035978 C -67.592036,38.11264 -67.812631,37.727875 -67.883999,36.035978 C -68.021642,32.772928 -71.294783,32.183883 -73.112797,35.094986 C -73.876383,36.317682 -75.112967,36.776243 -76.928153,36.509831 C -78.562412,36.269972 -80.128776,36.736217 -80.929327,37.700822 C -82.381698,39.450823 -84,39.79975 -84,38.362901 z "
|
||||
id="path3965" />
|
||||
<path
|
||||
style="fill:#8599c7"
|
||||
d="M -29,51.827928 C -29,51.150502 -20.059614,47.335902 -17.298395,46.835198 C -15.206245,46.455819 -14.92001,46.737258 -15.188899,48.90935 C -15.480458,51.264577 -15.92401,51.449258 -22.25,51.849365 C -25.9625,52.084174 -29,52.074527 -29,51.827928 z M -59.163923,35.40304 C -61.179081,34.977207 -63.924611,33.910169 -65.265103,33.031846 C -66.605594,32.153522 -69.174664,31.288888 -70.974148,31.110436 C -73.767718,30.833402 -74.483751,30.18079 -75.872968,26.645514 C -76.767836,24.368259 -80.426848,19.300176 -84.004107,15.383108 C -90.17611,8.624818 -90.806395,8.212636 -96.347954,7.310724 C -100.77743,6.589808 -103.54398,6.713551 -107.80395,7.82313 C -110.89288,8.627696 -113.77565,9.285978 -114.2101,9.285978 C -114.64454,9.285978 -115,3.660978 -115,-3.214022 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,5.085978 C -15,20.341069 -15.333228,26.244985 -16.25,27.232682 C -17.25,28.310046 -17.25,28.438243 -16.25,27.873665 C -15.499687,27.450056 -15,27.748872 -15,28.621174 C -15,29.460962 -15.949777,30.075258 -17.25,30.076426 C -20.539794,30.079381 -30.60634,31.920871 -37.5,33.780792 C -44.780877,35.745184 -54.205175,36.450899 -59.163923,35.40304 z "
|
||||
id="path3963" />
|
||||
<path
|
||||
style="fill:#7b94c5"
|
||||
d="M -19.5,50.325826 C -21.358323,49.564302 -21.300582,49.427604 -18.6849,48.396111 C -15.012501,46.947902 -15,46.950921 -15,49.285978 C -15,51.396063 -16.207459,51.675079 -19.5,50.325826 z M -58.5,34.567582 C -62.548951,33.948667 -64.173157,32.487174 -63.097153,30.430973 C -61.002375,26.427934 -67.663046,19.661336 -72.502569,20.875979 C -74.762773,21.443254 -75.925948,20.670798 -81.303493,15.031349 C -84.711572,11.457287 -88.482916,8.027461 -89.684259,7.409516 C -90.910538,6.778743 -96.689609,6.285978 -102.86093,6.285978 C -112.48902,6.285978 -113.91011,6.503181 -114.31067,8.035978 C -114.5622,8.998478 -114.8202,4.048478 -114.884,-2.964022 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.585978 C -15,19.419755 -15.334339,25.220317 -16.241641,26.127619 C -17.230495,27.116473 -17.185494,27.553303 -16.020601,28.273246 C -15.216127,28.770438 -14.90686,29.526168 -15.333333,29.952645 C -15.75981,30.379122 -16.445004,30.183981 -16.855985,29.518999 C -17.38595,28.661498 -18.460526,28.578122 -20.551612,29.232258 C -26.508339,31.095646 -38.742786,33.366075 -45.033984,33.775616 C -48.590293,34.007123 -52.4,34.383202 -53.5,34.611347 C -54.6,34.839492 -56.85,34.819798 -58.5,34.567582 z "
|
||||
id="path3961" />
|
||||
<path
|
||||
style="fill:#8590bb"
|
||||
d="M -47.422252,30.829719 C -54.548283,29.890879 -55.429652,29.534717 -56.191711,27.285978 C -57.164568,24.4152 -65.946752,18.285978 -69.087256,18.285978 C -72.200964,18.285978 -77.712515,15.410949 -80.732278,12.211504 C -82.189653,10.667412 -83.719036,9.612333 -84.130907,9.866883 C -84.542778,10.121433 -86.369316,9.421546 -88.189882,8.311578 C -90.987371,6.605995 -93.230901,6.292875 -102.67668,6.289716 C -112.48211,6.286437 -113.90946,6.500681 -114.31067,8.035978 C -114.5622,8.998478 -114.8202,4.048478 -114.884,-2.964022 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.585978 C -15,19.419755 -15.334339,25.220317 -16.241641,26.127619 C -17.230495,27.116473 -17.185494,27.553303 -16.020601,28.273246 C -15.216127,28.770438 -14.90686,29.526168 -15.333333,29.952645 C -15.75981,30.379122 -16.47705,30.132129 -16.927199,29.403772 C -17.557391,28.3841 -18.226792,28.336986 -19.837378,29.198946 C -20.987828,29.814647 -23.651078,30.102047 -25.755712,29.837612 C -27.860346,29.573177 -31.813797,29.923065 -34.54116,30.615141 C -38.294288,31.567508 -41.426248,31.619681 -47.422252,30.829719 z "
|
||||
id="path3959" />
|
||||
<path
|
||||
style="fill:#7687b8"
|
||||
d="M -47.422252,30.827922 C -54.549062,29.890596 -55.429568,29.534963 -56.191711,27.285978 C -57.164568,24.4152 -65.946752,18.285978 -69.087256,18.285978 C -72.657133,18.285978 -77.242647,15.539847 -83.273517,9.790237 C -88.40104,4.901845 -89.519931,4.285241 -93.273517,4.279389 C -95.700525,4.275605 -98.696561,3.483854 -100.3104,2.419778 C -102.61523,0.9001 -103.94525,0.720781 -107.70383,1.422959 C -110.2245,1.893871 -112.89732,2.785796 -113.64343,3.405015 C -114.77033,4.340257 -115,2.817102 -115,-5.591577 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.750794 C -15,24.464559 -15.076452,25.256526 -17.083187,26.330498 C -18.745839,27.220323 -19.554561,27.094082 -21.089318,25.705146 C -23.451445,23.567451 -24.87197,24.660085 -23.203671,27.331456 C -22.106932,29.087615 -22.263008,29.297996 -24.741526,29.404399 C -26.258687,29.469531 -27.861104,29.461663 -28.302453,29.386915 C -28.743802,29.312167 -31.443802,29.840252 -34.302453,30.560438 C -38.294594,31.566186 -41.337315,31.62822 -47.422252,30.827922 z "
|
||||
id="path3957" />
|
||||
<path
|
||||
style="fill:#6783b9"
|
||||
d="M -51.692934,29.587723 C -53.128562,29.308909 -54.278953,27.97077 -55.024129,25.712866 C -56.480029,21.301447 -60.715094,18.114918 -69.5,14.820998 C -73.741142,13.230772 -78.07649,10.707266 -80.5,8.418153 C -86.25774,2.979709 -89.413936,1.285978 -93.790503,1.285978 C -96.607499,1.285978 -98.2813,0.61545 -99.981224,-1.194036 C -102.48291,-3.856957 -104.01946,-3.849166 -111.25,-1.136892 L -115,0.269784 L -115,-3.522119 C -115,-5.607666 -114.4375,-7.910272 -113.75,-8.639022 C -112.75,-9.699022 -112.75,-10.055689 -113.75,-10.422355 C -114.4375,-10.674439 -115,-11.968189 -115,-13.297355 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.317363 C -15,21.922964 -15.19769,24.424608 -16.632466,24.975183 C -17.530322,25.319723 -19.099216,25.0806 -20.118897,24.443799 C -22.858282,22.733024 -23.916808,23.009285 -25.171203,25.762382 C -25.886641,27.332598 -27.068064,28.196949 -28.399764,28.124455 C -29.554894,28.061574 -31.766795,28.522192 -33.3151,29.148052 C -35.995605,30.231572 -47.019707,30.495313 -51.692934,29.587723 z "
|
||||
id="path3955" />
|
||||
<path
|
||||
style="fill:#5b7cb3"
|
||||
d="M -37.5,25.257288 C -38.6,24.800381 -41.128236,24.39492 -43.118301,24.356263 C -45.844912,24.303299 -49.655936,22.41948 -58.582667,16.712107 C -73.399145,7.239079 -85.78656,1.278133 -92.568458,0.35781 C -95.444926,-0.032536 -98.903176,-1.075786 -100.25346,-1.960525 C -102.78349,-3.618266 -106.062,-3.31661 -112.25,-0.85672 C -114.95743,0.219552 -115,0.178031 -115,-3.538773 C -115,-5.61516 -114.4375,-7.910272 -113.75,-8.639022 C -112.75,-9.699022 -112.75,-10.055689 -113.75,-10.422355 C -114.4375,-10.674439 -115,-11.968189 -115,-13.297355 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,4.399522 L -15,24.513066 L -19.562428,23.828887 C -22.071763,23.452589 -24.659263,23.564327 -25.312428,24.077194 C -27.045054,25.437657 -35.171411,26.224513 -37.5,25.257288 z "
|
||||
id="path3953" />
|
||||
<path
|
||||
style="fill:#6579a9"
|
||||
d="M -32.627857,20.590218 C -39.707536,18.735773 -46.85,16.488675 -48.5,15.596666 C -50.15,14.704658 -53.525,12.886728 -56,11.556822 C -58.475,10.226916 -62.146956,7.833301 -64.159903,6.237676 C -66.172849,4.642051 -69.760336,2.900532 -72.132097,2.367633 C -74.503858,1.834734 -77.001201,0.637239 -77.68175,-0.293467 C -78.804564,-1.829006 -79.030289,-1.741651 -80.120071,0.650159 C -81.523013,3.729282 -81.642571,3.751095 -86.345757,1.785978 C -88.32026,0.960978 -91.412716,0.284296 -93.217881,0.28224 C -95.023047,0.280184 -97.913589,-0.583457 -99.641309,-1.636963 C -102.88629,-3.615644 -105.75657,-3.438027 -112.25,-0.85672 C -114.95743,0.219552 -115,0.178031 -115,-3.538773 C -115,-5.61516 -114.4375,-7.910272 -113.75,-8.639022 C -112.75,-9.699022 -112.75,-10.055689 -113.75,-10.422355 C -114.4375,-10.674439 -115,-11.968189 -115,-13.297355 L -115,-15.714022 L -65,-15.714022 L -15,-15.714022 L -15,3.669401 L -15,23.052824 L -17.377857,23.50738 C -18.685678,23.757386 -25.548178,22.444663 -32.627857,20.590218 z "
|
||||
id="path3951" />
|
||||
<path
|
||||
style="fill:#5372ac"
|
||||
d="M -23,22.577934 C -28.324089,21.987766 -45.112825,17.375138 -48.5,15.571926 C -58.686557,10.148965 -60.867464,8.847472 -64.213349,6.194725 C -66.255692,4.575477 -69.405692,2.970206 -71.213349,2.627456 C -76.324368,1.658356 -77.887933,0.499164 -78.786496,-2.987105 C -79.792505,-6.8902446 -83.44598,-8.0349451 -84.481747,-4.771531 C -85.072292,-2.910889 -85.682898,-2.770314 -90.817637,-3.312873 C -93.942937,-3.643106 -97.719278,-4.768459 -99.209507,-5.813659 C -100.90662,-7.0039564 -103.61556,-7.714022 -106.45951,-7.714022 C -111.40026,-7.714022 -111.93266,-8.5729446 -109.83948,-13.166969 L -108.67897,-15.714022 L -61.839485,-15.714022 L -15,-15.714022 L -15,3.785978 L -15,23.285978 L -17.25,23.125941 C -18.4875,23.037921 -21.075,22.791317 -23,22.577934 z M -115,-14.655005 C -115,-15.237464 -114.55,-15.714022 -114,-15.714022 C -113.45,-15.714022 -113,-15.51558 -113,-15.273039 C -113,-15.030498 -113.45,-14.553941 -114,-14.214022 C -114.55,-13.874103 -115,-14.072546 -115,-14.655005 z "
|
||||
id="path3949" />
|
||||
<path
|
||||
style="fill:#536ba3"
|
||||
d="M -24,17.672745 C -27.025,16.246213 -33.396227,13.813026 -38.158283,12.265663 C -42.920339,10.718299 -47.870339,8.771987 -49.158283,7.940525 C -53.581084,5.085285 -70.091001,-1.714022 -72.601227,-1.714022 C -74.146541,-1.714022 -76.227417,-2.934435 -78.010197,-4.886329 L -80.907652,-8.0586365 L -86.853867,-6.2582676 C -92.419553,-4.573114 -93.105856,-4.562087 -97.57818,-6.0859603 C -100.20613,-6.9813942 -104.30111,-7.714022 -106.67814,-7.714022 C -111.38584,-7.714022 -111.91116,-8.6201362 -109.83948,-13.166969 L -108.67897,-15.714022 L -61.839485,-15.714022 L -15,-15.714022 L -15,2.285978 C -15,22.907502 -14.54588,22.131126 -24,17.672745 z M -115,-14.655005 C -115,-15.237464 -114.55,-15.714022 -114,-15.714022 C -113.45,-15.714022 -113,-15.51558 -113,-15.273039 C -113,-15.030498 -113.45,-14.553941 -114,-14.214022 C -114.55,-13.874103 -115,-14.072546 -115,-14.655005 z "
|
||||
id="path3947" />
|
||||
<path
|
||||
style="fill:#4a64a2"
|
||||
d="M -22.095006,17.122907 C -24.517753,16.033166 -29.65,13.997348 -33.5,12.598868 C -37.35,11.200388 -42.27073,9.406422 -44.434954,8.612278 C -46.599179,7.818133 -49.914101,5.81256 -51.801446,4.155448 C -53.688792,2.498337 -56.868062,0.423969 -58.866492,-0.454259 C -60.864921,-1.332487 -64.3,-2.836537 -66.5,-3.796592 C -68.7,-4.756648 -72.721259,-6.5302231 -75.43613,-7.7378706 C -79.004382,-9.3251243 -82.745442,-10.010027 -88.93613,-10.209412 C -97.042971,-10.470512 -102.94531,-12.19848 -104.53914,-14.777346 C -104.89571,-15.354287 -87.812903,-15.714022 -60.059017,-15.714022 L -15,-15.714022 L -15,1.178989 C -15,20.283067 -15.011547,20.309017 -22.095006,17.122907 z M -108,-14.155005 C -108,-14.397546 -107.55,-14.874103 -107,-15.214022 C -106.45,-15.553941 -106,-15.355498 -106,-14.773039 C -106,-14.19058 -106.45,-13.714022 -107,-13.714022 C -107.55,-13.714022 -108,-13.912464 -108,-14.155005 z "
|
||||
id="path3945" />
|
||||
<path
|
||||
style="fill:#4b629c"
|
||||
d="M -19.483941,11.311961 C -19.815028,10.776252 -22.204086,9.707824 -24.792958,8.937678 C -27.381831,8.167531 -31.946719,6.355839 -34.937153,4.911695 C -37.927588,3.467551 -40.860627,2.285978 -41.455019,2.285978 C -42.049411,2.285978 -44.174306,1.172537 -46.177009,-0.188334 C -48.179712,-1.549206 -52.671672,-3.310081 -56.159143,-4.101389 C -59.646615,-4.892697 -64.075,-6.0000283 -66,-6.5621258 C -76.444507,-9.6119078 -82.256451,-10.646311 -89.127876,-10.6784 C -96.444168,-10.712567 -103.10416,-12.455502 -104.49064,-14.698871 C -104.9116,-15.380002 -90.292063,-15.714022 -60.059017,-15.714022 L -15,-15.714022 L -15,-1.714022 C -15,11.477418 -15.1121,12.285978 -16.940983,12.285978 C -18.008524,12.285978 -19.152855,11.84767 -19.483941,11.311961 z M -108,-14.155005 C -108,-14.397546 -107.55,-14.874103 -107,-15.214022 C -106.45,-15.553941 -106,-15.355498 -106,-14.773039 C -106,-14.19058 -106.45,-13.714022 -107,-13.714022 C -107.55,-13.714022 -108,-13.912464 -108,-14.155005 z "
|
||||
id="path3943" />
|
||||
<path
|
||||
style="fill:#435c9c"
|
||||
d="M -19.483941,11.311961 C -19.815028,10.776252 -22.204086,9.694013 -24.792958,8.906986 C -30.70263,7.110425 -48.567651,-1.20545 -49.395635,-2.545157 C -49.735488,-3.09505 -53.048001,-4.516123 -56.756775,-5.703096 C -60.465549,-6.8900687 -64.865555,-8.6557314 -66.534566,-9.6267908 C -69.939689,-11.607949 -78.945015,-14.483896 -83.5,-15.044882 C -85.15,-15.248094 -70.4125,-15.481782 -50.75,-15.56419 L -15,-15.714022 L -15,-1.714022 C -15,11.477418 -15.1121,12.285978 -16.940983,12.285978 C -18.008524,12.285978 -19.152855,11.84767 -19.483941,11.311961 z "
|
||||
id="path3941" />
|
||||
<path
|
||||
style="fill:#395595"
|
||||
d="M -20.739071,3.750241 C -29.885583,-0.233129 -37.953476,-3.617598 -41,-4.749189 C -42.925,-5.464205 -45.073316,-6.4878756 -45.774036,-7.024013 C -46.474756,-7.5601504 -52.099756,-9.6960548 -58.274036,-11.770467 L -115.04768,-15.542126 L -15,-18.624012 L -15,-5.380689 C -15,5.878857 -15.182968,6.169962 -20.739071,3.750241 z "
|
||||
id="path3939"
|
||||
sodipodi:nodetypes="cssccccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.5190103,8.5053123 L 40.918265,7.5000268 L 42.519037,8.1953492 L 42.519037,41.055531 L 40.918265,42.50003 L 2.5190103,40.740779 L 2.5190103,8.5053123 z "
|
||||
id="path5736"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient8376);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 41.01901,7.0000262 L 43.01901,7.8618126 L 43.01901,41.312526 L 41.01901,43.000026 L 41.01901,7.0000262 z "
|
||||
id="rect8367"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5723);fill-opacity:1.0;stroke:none;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 40.90625,7 L 2,8.0794686 L 2,26 C 13.172936,16.800527 30.446071,17.642447 41,26 L 41,7.0327112 L 40.90625,7 z "
|
||||
id="path3966"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
id="g4057"
|
||||
inkscape:label="Capa 1"
|
||||
transform="matrix(1.428091,0,0,1.41902,13.78933,13.98754)">
|
||||
<path
|
||||
id="path5725"
|
||||
d="M 9.2247224,0.36117235 C 6.9951246,0.35471003 4.7622988,1.2352866 3.0604252,3.0240521 C 3.0072418,3.0799504 2.9453443,3.1528629 2.8938226,3.2098346 C 1.4737598,4.7800839 0.68650561,6.7502568 0.53109433,8.767821 C 0.50704345,9.0560443 0.49693524,9.3458011 0.50080294,9.6348044 C 0.52936547,11.946832 1.3851438,14.252514 3.0604252,16.013329 C 4.8512825,17.895623 7.2378944,18.774627 9.588219,18.676209 C 12.133861,18.774249 14.706441,17.895281 16.646112,16.013329 C 20.333369,12.4358 20.318226,6.6325448 16.630967,3.0550152 C 14.787337,1.2662508 12.367026,0.36763468 9.9517157,0.36117235 C 9.8259813,0.36083548 9.6987453,0.37217988 9.5730733,0.37665387 C 9.4566551,0.37144767 9.3411993,0.36151029 9.2247224,0.36117235 z M 9.3155965,2.3738142 C 10.999027,2.4547116 12.665832,3.1355311 13.950179,4.448382 C 16.690117,7.2491331 16.690116,11.80373 13.950179,14.60448 C 12.665833,15.917333 11.000504,16.612478 9.3155965,16.694532 C 7.492896,16.61092 5.691806,15.91555 4.302372,14.60448 C 1.3342149,11.80373 1.334215,7.2491331 4.302372,4.448382 C 5.6918055,3.1373144 7.4944837,2.4562494 9.3155965,2.3738142 z "
|
||||
style="color:black;fill:url(#linearGradient5727);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:0.70247024;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3819"
|
||||
d="M 14.02134,17.37517 L 17.073776,14.507202 L 20.97411,18.171827 C 22.754697,19.844807 19.577249,22.595316 17.921672,21.039794 L 14.02134,17.37517 z "
|
||||
style="color:black;fill:url(#linearGradient3963);fill-opacity:1;fill-rule:nonzero;stroke:#994700;stroke-width:0.70247048;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:white;stroke-width:0.70247108;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35678394;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 15.500007,17.470247 L 17.461125,15.499996 L 20.162144,18.213597 C 21.306129,19.362911 19.264694,21.252468 18.201026,20.183849 L 15.500007,17.470247 z "
|
||||
id="path3892"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="rect3807"
|
||||
d="M 12.504655,16.939941 C 14.095393,16.157036 14.882198,15.284153 15.734988,14.179889 C 15.938695,13.83048 16.556243,12.777594 17.250324,13.506941 C 17.831333,14.213103 19.249844,15.444342 18.398571,15.744454 C 16.800587,15.744454 15.00477,18.141522 15.277282,19.15915 C 14.603562,19.708513 13.314103,17.904371 12.504655,16.939941 z "
|
||||
style="color:black;fill:url(#linearGradient3959);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:0.70247084;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
id="path2034"
|
||||
d="M 8.947498,0.71352555 C 6.8769665,0.70756359 4.8034375,1.5198349 3.2229808,3.1698467 C 3.1735917,3.2214092 3.1161103,3.2886668 3.0682642,3.3412179 C 0.053975928,6.6519531 0.11145762,11.903094 3.2229808,15.151555 C 6.3838927,18.45158 11.525169,18.45158 14.68608,15.151555 C 17.846993,11.851532 17.832928,6.4984316 14.672015,3.1984089 C 13.091559,1.548398 11.01803,0.71948651 8.947498,0.71352555 z M 8.7224556,2.5557664 C 10.391105,2.5557664 12.063595,3.1919441 13.335826,4.4836928 C 15.880288,7.0671915 15.880287,11.268493 13.335826,13.85199 C 10.791365,16.435487 6.6535461,16.435487 4.1090854,13.85199 C 1.5646244,11.268492 1.5646243,7.0671915 4.1090854,4.4836928 C 5.3813163,3.1919441 7.0538057,2.5557664 8.7224556,2.5557664 z "
|
||||
style="color:black;fill:url(#linearGradient6605);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssssc"
|
||||
id="path3797"
|
||||
d="M 3.7304091,4.0268547 C 0.77449298,7.1379973 0.83592738,12.066208 3.8871949,15.118828 C 6.9868948,18.219904 12.031333,18.219904 15.131034,15.118828 C 18.230735,12.017752 18.208336,6.9934826 15.108635,3.8924071 C 12.008935,0.79133061 6.9868966,0.76892137 3.8871947,3.8699998 C 3.8387626,3.9184534 3.7773285,3.9774712 3.7304091,4.0268547 z "
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3953);stroke-width:0.78025419;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
transform="matrix(0.720683,-0.765584,0.720683,0.765584,12.75768,-8.484701)"
|
||||
d="M -8.0092163 9.3271885 A 6.1843319 6.1843319 0 1 1 -20.37788,9.3271885 A 6.1843319 6.1843319 0 1 1 -8.0092163 9.3271885 z"
|
||||
sodipodi:ry="6.1843319"
|
||||
sodipodi:rx="6.1843319"
|
||||
sodipodi:cy="9.3271885"
|
||||
sodipodi:cx="-14.193548"
|
||||
id="path3837"
|
||||
style="color:black;fill:url(#radialGradient3969);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.467307,-0.877037,0.809399,0.506358,4.907171,0.508321)"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
sodipodi:ry="3.5127239"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:cx="-5.3766184"
|
||||
id="path3851"
|
||||
style="opacity:0.57213931;color:black;fill:url(#radialGradient3967);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.280384,-0.511605,0.48564,0.295376,11.12604,6.701309)"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
sodipodi:ry="3.5127239"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:cx="-5.3766184"
|
||||
id="path3865"
|
||||
style="opacity:0.38308459;color:black;fill:url(#radialGradient3965);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.755433,-0.800557,0.755433,0.800557,12.92679,-9.307296)"
|
||||
d="M -8.0092163 9.3271885 A 6.1843319 6.1843319 0 1 1 -20.37788,9.3271885 A 6.1843319 6.1843319 0 1 1 -8.0092163 9.3271885 z"
|
||||
sodipodi:ry="6.1843319"
|
||||
sodipodi:rx="6.1843319"
|
||||
sodipodi:cy="9.3271885"
|
||||
sodipodi:cx="-14.193548"
|
||||
id="path6607"
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient7488);stroke-width:0.7230863;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 58 KiB |
317
datas/icon-themes/edeneu/scalable/apps/graphics-svg-editor.svg
Normal file
@@ -0,0 +1,317 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg6492"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="inkscape.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs6494">
|
||||
<linearGradient
|
||||
id="linearGradient5702">
|
||||
<stop
|
||||
id="stop5704"
|
||||
offset="0"
|
||||
style="stop-color:#a53114;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5706"
|
||||
offset="1"
|
||||
style="stop-color:#87250e;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5726">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.34334764"
|
||||
offset="0"
|
||||
id="stop5728" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5730" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4831">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4833" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.47639486"
|
||||
offset="1"
|
||||
id="stop4835" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient12367">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.30208334;"
|
||||
offset="0.0000000"
|
||||
id="stop12369" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop12371" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient11631">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.31600001"
|
||||
offset="0"
|
||||
id="stop11633" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop11635" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8691">
|
||||
<stop
|
||||
style="stop-color:#e52d00;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8693" />
|
||||
<stop
|
||||
style="stop-color:#bf2500;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop8695" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7957">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7959" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7961" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7957"
|
||||
id="linearGradient7963"
|
||||
x1="37.406208"
|
||||
y1="3.1771064"
|
||||
x2="44.75386"
|
||||
y2="49.288692"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8691"
|
||||
id="linearGradient8697"
|
||||
x1="44.419872"
|
||||
y1="47.50985"
|
||||
x2="53.103458"
|
||||
y2="101.61526"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.415327,0,0,0.414176,-3.158893,-4.863743)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11631"
|
||||
id="linearGradient11637"
|
||||
x1="76.482338"
|
||||
y1="158.39255"
|
||||
x2="77.484291"
|
||||
y2="83.702858"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.41855,1.710793e-2,-1.710793e-2,0.41855,-1.176734,-5.829958)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12367"
|
||||
id="radialGradient12373"
|
||||
cx="55.608337"
|
||||
cy="112.13576"
|
||||
fx="55.608337"
|
||||
fy="112.13576"
|
||||
r="46.590771"
|
||||
gradientTransform="matrix(1,0,0,0.247312,1.882178e-16,84.40326)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4831"
|
||||
id="linearGradient4837"
|
||||
x1="13.693345"
|
||||
y1="2.9121568"
|
||||
x2="24.474291"
|
||||
y2="43.147198"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5726"
|
||||
id="linearGradient5732"
|
||||
x1="20.938927"
|
||||
y1="44.018185"
|
||||
x2="20.938927"
|
||||
y2="38.781044"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5702"
|
||||
id="linearGradient4827"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.471669,0,0,0.424037,-4.494399,-5.527163)"
|
||||
x1="44.419872"
|
||||
y1="47.50985"
|
||||
x2="53.103458"
|
||||
y2="101.61526" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="143"
|
||||
inkscape:window-y="95"
|
||||
showgrid="false"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata6497">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient11637);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.79169869;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 19.911285,32.761482 C 24.756286,31.336662 31.655164,30.604392 38.571102,30.887082 C 45.487042,31.169762 49.335954,32.359532 47.575038,33.892212 C 45.814127,35.424892 37.437778,36.150892 32.604457,37.700892 C 27.825605,39.233442 36.672653,41.680132 33.055885,42.973162 C 29.439126,44.266182 21.231329,45.108402 14.315392,44.825712 C 7.3994547,44.543032 4.8594627,43.243302 5.3921367,41.842422 C 5.9248167,40.441542 16.650873,38.485582 18.814683,37.210052 C 20.877347,35.994142 15.066285,34.186302 19.911285,32.761482 z "
|
||||
id="path10903"
|
||||
sodipodi:nodetypes="czzzzzzzz" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4827);fill-opacity:1;fill-rule:evenodd;stroke:#a80000;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 17.28125 1.5 C 10.189821 1.5 4.9080975 4.4197742 2.8125 9.09375 C 2.6815252 9.3858735 2.6135709 9.6779615 2.5625 9.96875 C 2.4685118 10.455684 2.4805048 10.955457 2.59375 11.4375 C 3.4149062 15.272966 9.5011192 18.912851 9.65625 22.03125 C 9.8516729 25.95962 3.0906942 32.871373 5.0625 36.96875 C 7.0343068 41.066119 11.75232 44.500002 18.84375 44.5 C 19.10767 44.5 19.363413 44.47801 19.625 44.46875 C 19.903967 44.477889 20.182747 44.5 20.46875 44.5 C 28.2624 44.5 36.032405 40.855235 36.5 35.34375 C 36.967009 29.839185 23.725715 26.788937 25.75 21.8125 C 27.797355 16.779336 35.248774 14.906795 34.03125 9.09375 C 32.86845 3.5419907 26.543652 1.5 18.75 1.5 C 18.485165 1.5 18.228925 1.5245498 17.96875 1.53125 C 17.739418 1.524916 17.513529 1.5 17.28125 1.5 z "
|
||||
id="path3952" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient12373);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path11639"
|
||||
sodipodi:cx="55.608337"
|
||||
sodipodi:cy="112.13576"
|
||||
sodipodi:rx="46.590771"
|
||||
sodipodi:ry="11.522449"
|
||||
d="M 102.19911 112.13576 A 46.590771 11.522449 0 1 1 9.0175667,112.13576 A 46.590771 11.522449 0 1 1 102.19911 112.13576 z"
|
||||
transform="matrix(0.4189,0,0,0.4189,-3.777459,-3.817438)" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient8697);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 3.3138742,9.4184842 C 5.3418712,4.8532036 10.45037,2 17.313042,2 C 24.175714,2 29.763402,4.9044025 30.764564,9.4184842 C 31.765729,13.932565 25.283838,16.938009 23.481045,21.854125 C 21.698569,26.714833 34.048878,32.580401 32.927915,36.633689 C 31.806955,40.686968 25.679598,44 18.816925,44 C 11.954252,44 7.3854256,40.635772 5.4772259,36.633689 C 3.5690271,32.631596 10.111292,25.895934 9.9221728,22.058919 C 9.7418929,18.401265 1.2858772,13.983765 3.3138742,9.4184842 z "
|
||||
id="rect6500"
|
||||
sodipodi:nodetypes="czzzzzzzz" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4837);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.84549356;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 3.5917125,9.7418519 C 4.7911673,5.3334798 10.541676,2.4999991 17.224972,2.4999991 C 23.90827,2.4999991 29.349908,5.3352489 30.324901,9.7418519 C 31.299898,14.148453 24.390879,16.529958 22.901221,21.881404 C 21.417687,27.210853 33.271018,32.853267 32.179355,36.810048 C 31.087694,40.76682 25.372845,43.499993 18.689548,43.499993 C 12.006249,43.499993 7.3561812,39.565268 5.6985189,36.309072 C 4.0071882,32.98674 10.616107,27.176897 10.616107,22.421748 C 10.616107,17.670568 2.3983177,14.127952 3.5917125,9.7418519 z "
|
||||
id="path4821"
|
||||
sodipodi:nodetypes="czzzzzzzz" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#linearGradient7963);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path7229"
|
||||
sodipodi:cx="47.425732"
|
||||
sodipodi:cy="36.655373"
|
||||
sodipodi:rx="29.724577"
|
||||
sodipodi:ry="14.528305"
|
||||
d="M 77.150309 36.655373 A 29.724577 14.528305 0 1 1 17.701155,36.655373 A 29.724577 14.528305 0 1 1 77.150309 36.655373 z"
|
||||
transform="matrix(0.4189,0,0,0.442974,-2.798119,-7.008348)" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#005bff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 30.628337,1.6674011 L 32.880324,21.371644"
|
||||
id="path9439" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#005bff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.2730007,25.377042 L 6.2405857,45.685602"
|
||||
id="path10167" />
|
||||
<rect
|
||||
style="opacity:1;color:black;fill:#499aff;fill-opacity:1;fill-rule:evenodd;stroke:#004dae;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect9437"
|
||||
width="4.0000005"
|
||||
height="4.0599566"
|
||||
x="2.5000012"
|
||||
y="33.499996" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:#499aff;fill-opacity:1;fill-rule:evenodd;stroke:#005bff;stroke-width:2.09562063;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path10899"
|
||||
sodipodi:cx="73.60173"
|
||||
sodipodi:cy="12.065799"
|
||||
sodipodi:rx="4.216548"
|
||||
sodipodi:ry="4.216548"
|
||||
d="M 77.818278 12.065799 A 4.216548 4.216548 0 1 1 69.385182,12.065799 A 4.216548 4.216548 0 1 1 77.818278 12.065799 z"
|
||||
transform="matrix(0.480067,0,0,0.474322,-31.85795,19.77693)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:#499aff;fill-opacity:1;fill-rule:evenodd;stroke:#005bff;stroke-width:2.09562063;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path4815"
|
||||
sodipodi:cx="73.60173"
|
||||
sodipodi:cy="12.065799"
|
||||
sodipodi:rx="4.216548"
|
||||
sodipodi:ry="4.216548"
|
||||
d="M 77.818278 12.065799 A 4.216548 4.216548 0 1 1 69.385182,12.065799 A 4.216548 4.216548 0 1 1 77.818278 12.065799 z"
|
||||
transform="matrix(0.480067,0,0,0.474322,-28.85799,39.77693)"
|
||||
inkscape:transform-center-y="0.58447204" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:#499aff;fill-opacity:1;fill-rule:evenodd;stroke:#005bff;stroke-width:2.09562063;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path4817"
|
||||
sodipodi:cx="73.60173"
|
||||
sodipodi:cy="12.065799"
|
||||
sodipodi:rx="4.216548"
|
||||
sodipodi:ry="4.216548"
|
||||
d="M 77.818278 12.065799 A 4.216548 4.216548 0 1 1 69.385182,12.065799 A 4.216548 4.216548 0 1 1 77.818278 12.065799 z"
|
||||
transform="matrix(0.480067,0,0,0.474322,-2.809536,13.77692)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:#499aff;fill-opacity:1;fill-rule:evenodd;stroke:#005bff;stroke-width:2.09562063;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path4819"
|
||||
sodipodi:cx="73.60173"
|
||||
sodipodi:cy="12.065799"
|
||||
sodipodi:rx="4.216548"
|
||||
sodipodi:ry="4.216548"
|
||||
d="M 77.818278 12.065799 A 4.216548 4.216548 0 1 1 69.385182,12.065799 A 4.216548 4.216548 0 1 1 77.818278 12.065799 z"
|
||||
transform="matrix(0.480067,0,0,0.474322,-4.809536,-3.223076)" />
|
||||
<path
|
||||
style="opacity:0.5;fill:url(#linearGradient5732);fill-opacity:1.0;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.47639483"
|
||||
d="M 30.46875 33.53125 C 28.336701 35.868684 24.211588 38.145404 19.5 38.8125 C 13.524056 39.658612 7.9096708 37.345781 5.84375 34.6875 C 5.6181592 35.1423 5.5 35.635507 5.5 36.15625 C 5.5 39.436792 11.657009 43.999999 19 44 C 26.175999 44 32.593748 40.187455 32.59375 37.15625 C 32.59375 35.832952 31.796543 34.579071 30.46875 33.53125 z "
|
||||
id="path4839" />
|
||||
<rect
|
||||
style="opacity:1;color:black;fill:#499aff;fill-opacity:1;fill-rule:evenodd;stroke:#004dae;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect4825"
|
||||
width="4.0000005"
|
||||
height="4.0599566"
|
||||
x="29.5"
|
||||
y="8.5" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
227
datas/icon-themes/edeneu/scalable/apps/help-browser.svg
Normal file
@@ -0,0 +1,227 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/apps"
|
||||
sodipodi:docname="help-browser.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7752">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.36909872"
|
||||
offset="0"
|
||||
id="stop7754" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7756" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5996">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19313304"
|
||||
offset="0"
|
||||
id="stop5998" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6000" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5104">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5106" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5108" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4197">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4199" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4201" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4187">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4189" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.27843139"
|
||||
offset="1"
|
||||
id="stop4191" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4176">
|
||||
<stop
|
||||
style="stop-color:#51a0f8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4178" />
|
||||
<stop
|
||||
style="stop-color:#0263d0;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4180" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4187"
|
||||
id="linearGradient4193"
|
||||
x1="75.787148"
|
||||
y1="3.4719357"
|
||||
x2="57.994637"
|
||||
y2="98.832764"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378486,0,0,0.418327,-0.644987,-4.569779)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4197"
|
||||
id="radialGradient4203"
|
||||
cx="62.970509"
|
||||
cy="48.729244"
|
||||
fx="62.970509"
|
||||
fy="33.755856"
|
||||
r="32.085793"
|
||||
gradientTransform="matrix(0.430263,0,0,0.325036,-5.125817,-0.134742)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4176"
|
||||
id="radialGradient4227"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="67.655052"
|
||||
cy="76.752853"
|
||||
fx="67.655052"
|
||||
fy="76.752853"
|
||||
r="49.918098"
|
||||
gradientTransform="matrix(0.432475,0,0,0.452376,-1.91343,-2.865935)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5104"
|
||||
id="radialGradient5113"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.34868,0,0,7.72303e-2,1.743401,34.75497)"
|
||||
cx="52.5"
|
||||
cy="114"
|
||||
fx="50.669872"
|
||||
fy="145.41862"
|
||||
r="57.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5996"
|
||||
id="linearGradient6002"
|
||||
x1="17.101027"
|
||||
y1="141.30928"
|
||||
x2="111.17001"
|
||||
y2="86.99852"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.378285,0,0,0.378285,-0.189143,-0.32181)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7752"
|
||||
id="linearGradient7758"
|
||||
x1="113.84499"
|
||||
y1="63.299728"
|
||||
x2="36.392986"
|
||||
y2="63.299728"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.411136,0,0,0.408366,-0.30793,-3.877643)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="70"
|
||||
inkscape:window-y="123"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient6002);fill-opacity:1;stroke:none;stroke-width:3.00000095;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 47.144342,41.66428 C 43.957506,44.41418 32.792911,46.64597 22.22338,46.64597 C 11.65385,46.64597 5.6621049,44.41418 8.8489433,41.66428 C 12.035786,38.91439 23.200376,36.68259 33.769906,36.68259 C 44.339437,36.68259 50.331186,38.91439 47.144342,41.66428 z "
|
||||
id="path5119" />
|
||||
<path
|
||||
style="opacity:0.43096236;fill:url(#radialGradient5113);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 40.098219,43.55926 C 40.098219,46.01055 31.116218,48 20.049109,48 C 8.9820009,48 0,46.01055 0,43.55926 C 0,41.10797 8.9820009,39.11852 20.049109,39.11852 C 31.116218,39.11852 40.098219,41.10797 40.098219,43.55926 z "
|
||||
id="path4229" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4227);fill-opacity:1;stroke:#04448c;stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 43.50002,24.533728 C 43.50002,36.659125 34.092016,46.500022 22.50001,46.500022 C 10.908004,46.500022 1.5000001,36.659125 1.5000001,24.533728 C 1.5000001,12.408329 10.908004,2.5674271 22.50001,2.5674271 C 34.092016,2.5674271 43.50002,12.408329 43.50002,24.533728 z "
|
||||
id="path3305" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient7758);stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 42.000006,24.500005 C 42.000006,35.816003 33.264006,45.000004 22.500002,45.000004 C 11.736002,45.000004 3.0000002,35.816003 3.0000002,24.500005 C 3.0000002,13.184001 11.736002,4.0000005 22.500002,4.0000005 C 33.264006,4.0000005 42.000006,13.184001 42.000006,24.500005 z "
|
||||
id="path6877" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4193);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 40.500005,24.499999 C 40.500005,36.091995 31.988004,45.499992 21.500003,45.499992 C 11.012001,45.499992 2.5,36.091995 2.5,24.499999 C 2.5,12.907998 11.012001,3.5000005 21.500003,3.5000005 C 31.988004,3.5000005 40.500005,12.907998 40.500005,24.499999 z "
|
||||
id="path4185" />
|
||||
<path
|
||||
style="opacity:0.5690377;fill:url(#radialGradient4203);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.27843137"
|
||||
d="M 35.773446,15.704015 C 35.773446,21.460849 29.588651,26.133063 21.968098,26.133063 C 14.347547,26.133063 8.162751,21.460849 8.162751,15.704015 C 8.162751,9.9471834 14.347547,5.2749729 21.968098,5.2749729 C 29.588651,5.2749729 35.773446,9.9471834 35.773446,15.704015 z "
|
||||
id="path4195" />
|
||||
<path
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
d="M 22.70022,28.807258 L 17.170675,28.573034 L 17.170675,27.810668 C 17.170672,26.96016 17.339162,26.442397 17.676149,25.788943 C 18.013123,25.125141 18.722822,24.28498 19.805249,23.268492 L 20.785556,22.366111 C 21.367607,21.826773 21.791381,21.318528 22.056892,20.841401 C 22.332593,20.364294 22.470449,19.887166 22.47046,19.410027 C 22.470449,18.683993 22.225371,18.118708 21.735229,17.714174 C 21.245069,17.299303 20.560897,17.091857 19.682711,17.091841 C 18.855573,17.091857 17.962066,17.619533 17.002189,17.97217 C 16.0423,18.31447 15.041571,19.179244 14,19.863794 L 14,15.329826 C 15.23559,14.894215 16.363962,13.869981 17.38512,13.662514 C 18.406265,13.455092 19.391677,13.000023 20.341355,13 C 22.832958,13.000023 24.732302,13.518633 26.039386,14.555832 C 27.346449,15.582703 27.999985,17.086671 28,19.067741 C 27.999985,20.08424 27.800862,20.99699 27.402625,21.806014 C 27.004362,22.604691 26.325295,23.465578 25.365426,24.388696 L 24.38512,25.275514 C 23.690726,25.918611 23.236314,26.437214 23.021883,26.831351 C 22.80743,27.215132 22.700208,27.640396 22.70022,28.107135 L 22.70022,28.807258 M 17.170675,31.109898 L 22.70022,31.344131 L 22.70022,37 L 17.170675,35.945957 L 17.170675,31.109898"
|
||||
id="text5082"
|
||||
sodipodi:nodetypes="cccccccscscccsscsccccccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:3.00000143;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.91845494"
|
||||
d="M 36.499978,24.500015 C 36.499978,33.884031 29.555984,41.500043 20.999988,41.500043 C 12.443994,41.500043 5.4999991,33.884031 5.4999991,24.500015 C 5.4999991,15.116013 12.443994,7.5000044 20.999988,7.5000044 C 29.555984,7.5000044 36.499978,15.116013 36.499978,24.500015 z "
|
||||
id="path3333" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
1009
datas/icon-themes/edeneu/scalable/apps/internet-ftp-client.svg
Normal file
|
After Width: | Height: | Size: 44 KiB |
278
datas/icon-themes/edeneu/scalable/apps/internet-group-chat.svg
Normal file
@@ -0,0 +1,278 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="internet-group-chat.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5712">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.64806867"
|
||||
offset="0"
|
||||
id="stop5714" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24892704"
|
||||
offset="1"
|
||||
id="stop5716" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5702">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5704" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.39055794"
|
||||
offset="1"
|
||||
id="stop5706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5692">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.81960785"
|
||||
offset="0"
|
||||
id="stop5694" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.40784314"
|
||||
offset="1"
|
||||
id="stop5696" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4806">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.49785408"
|
||||
offset="0"
|
||||
id="stop4808" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4810" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4793">
|
||||
<stop
|
||||
style="stop-color:#f9f9f9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4795" />
|
||||
<stop
|
||||
style="stop-color:#dcdcdc;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4797" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5712"
|
||||
id="linearGradient4928"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.847573,0,0,0.846575,-7.929136e-2,-1.922318)"
|
||||
x1="21.844343"
|
||||
y1="3.5399165"
|
||||
x2="21.844343"
|
||||
y2="22.083397" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5702"
|
||||
id="linearGradient4931"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.865349,0,0,0.804481,-0.528718,-1.956926)"
|
||||
x1="12.125"
|
||||
y1="1.2498183"
|
||||
x2="12.125"
|
||||
y2="44.267635" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5692"
|
||||
id="linearGradient4934"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.847573,0,0,0.804247,-7.929136e-2,-1.710675)"
|
||||
x1="33.625618"
|
||||
y1="33.649742"
|
||||
x2="33.625618"
|
||||
y2="4.2131443" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4806"
|
||||
id="linearGradient4937"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.906425,0,0,0.81124,-1.844872,-2.075225)"
|
||||
x1="37.504166"
|
||||
y1="21.875"
|
||||
x2="27.997295"
|
||||
y2="21.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4793"
|
||||
id="linearGradient4940"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.865999,0,0,0.815479,-0.390148,-2.179779)"
|
||||
x1="17.324116"
|
||||
y1="12.28867"
|
||||
x2="17.324116"
|
||||
y2="37.926449" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5712"
|
||||
id="linearGradient4944"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.885568,0,0,0.915989,16.57282,2.804332)"
|
||||
x1="21.844343"
|
||||
y1="3.5399165"
|
||||
x2="21.844343"
|
||||
y2="22.083397" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5702"
|
||||
id="linearGradient4947"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.890655,0,0,0.872741,16.55502,2.754251)"
|
||||
x1="12.125"
|
||||
y1="1.2498183"
|
||||
x2="12.125"
|
||||
y2="44.267635" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5692"
|
||||
id="linearGradient4950"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.885568,0,0,0.870191,16.57282,3.033328)"
|
||||
x1="33.625618"
|
||||
y1="33.649742"
|
||||
x2="33.625618"
|
||||
y2="4.2131443" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4806"
|
||||
id="linearGradient4953"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.947059,0,0,0.877757,14.72809,2.638887)"
|
||||
x1="37.504166"
|
||||
y1="21.875"
|
||||
x2="27.997295"
|
||||
y2="21.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4793"
|
||||
id="linearGradient4956"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.90482,0,0,0.882344,16.24803,2.52576)"
|
||||
x1="17.324116"
|
||||
y1="12.28867"
|
||||
x2="17.324116"
|
||||
y2="37.926449" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="21.624892"
|
||||
inkscape:cy="31.754834"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="69"
|
||||
inkscape:window-y="111"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient4940);fill-opacity:1;stroke:#8c8c8c;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.2290413,5.5711209 L 25.594367,1.4942272 L 29.032622,2.3053556 C 29.284244,2.3053556 29.48681,2.4320539 29.48681,2.5894346 L 29.48681,30.563062 C 29.48681,30.720443 29.284244,30.847142 29.032622,30.847142 L 25.594367,31.672343 L 17.381105,30.943781 L 13.444387,37.513333 L 9.2243392,37.513333 L 6.915009,29.778985 L 2.2290413,29.216185 C 1.9958677,29.159794 1.7748545,29.089484 1.7748545,28.932105 L 1.7748545,5.855201 C 1.7748545,5.7038296 2.0027228,5.6033901 2.2290413,5.5711209 z "
|
||||
id="path4884"
|
||||
sodipodi:nodetypes="ccccccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4937);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 25.347927,1.98097 L 28.973633,2.792209 L 28.973633,30.348989 L 25.347927,31.18558 L 25.347927,1.98097 z "
|
||||
id="path4886"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4934);stroke-width:0.99999946px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.924129,2.2602941 L 24.924129,31.313712"
|
||||
id="path4888" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4931);stroke-width:0.99999928;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.9254814,6.2715428 L 25.043877,2.4677155 L 28.03496,3.1239551 C 28.270678,3.1868051 28.460442,3.2421682 28.460442,3.389007 L 28.460442,29.589547 C 28.460442,29.736386 28.270678,29.8546 28.03496,29.8546 L 24.814019,30.624529 L 13.373224,29.421475 L 9.3521674,35.959361 L 7.6590647,28.693329 L 2.9254814,28.332882 C 2.707042,28.280267 2.499999,28.214669 2.499999,28.067829 L 2.499999,6.5365947 C 2.499999,6.3953639 2.7134654,6.3016493 2.9254814,6.2715428 z "
|
||||
id="path4890"
|
||||
sodipodi:nodetypes="cccccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.78242678;fill:url(#linearGradient4928);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.8940627,6.4550637 L 25.047646,2.3105618 L 25.047646,19.501343 C 21.220077,12.470041 5.3041413,13.245983 2.463429,19.501343 L 2.463429,6.7438535 C 2.463429,6.5899744 2.6794807,6.4878673 2.8940627,6.4550637 z "
|
||||
id="path4892"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.23175964;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 13.171036,36.972516 L 17.165277,30.439806 L 13.930359,29.978264 L 9.6696253,36.972516 L 13.171036,36.972516 z "
|
||||
id="path4894"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4956);fill-opacity:1;stroke:#969696;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 18.984633,10.912186 L 43.397378,6.5010122 L 46.989762,7.3786483 C 47.252664,7.3786483 47.464311,7.515735 47.464311,7.68602 L 47.464311,37.953315 C 47.464311,38.1236 47.252664,38.260688 46.989762,38.260688 L 43.397378,39.15355 L 34.815932,38.36525 L 30.702739,45.473465 L 26.293515,45.473465 L 23.880662,37.104948 L 18.984633,36.496001 C 18.741006,36.434987 18.510085,36.358912 18.510085,36.188628 L 18.510085,11.219559 C 18.510085,11.055776 18.748169,10.947101 18.984633,10.912186 z "
|
||||
id="path5733"
|
||||
sodipodi:nodetypes="ccccccccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4953);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 43.13989,7.027665 L 46.928129,7.9054207 L 46.928129,37.721688 L 43.13989,38.626875 L 43.13989,7.027665 z "
|
||||
id="path5737"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4950);stroke-width:0.99999934px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 42.697094,7.329892 L 42.697094,38.765513"
|
||||
id="path5739" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4947);stroke-width:0.9999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20.110235,11.680899 L 42.875464,7.5543202 L 45.954019,8.2662413 C 46.19663,8.334424 46.391943,8.3944846 46.391943,8.5537826 L 46.391943,36.977418 C 46.391943,37.136716 46.19663,37.264961 45.954019,37.264961 L 42.638883,38.100217 L 30.863513,36.795086 L 26.724864,43.887705 L 24.982248,36.005157 L 20.110235,35.614126 C 19.885407,35.557048 19.672309,35.485882 19.672309,35.326584 L 19.672309,11.968441 C 19.672309,11.815227 19.892018,11.71356 20.110235,11.680899 z "
|
||||
id="path5741"
|
||||
sodipodi:nodetypes="cccccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.78242678;fill:url(#linearGradient4944);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 19.679465,11.868607 L 42.826148,7.3842814 L 42.826148,25.984602 C 38.826997,18.376776 22.197583,19.216341 19.229527,25.984602 L 19.229527,12.181076 C 19.229527,12.01458 19.455264,11.9041 19.679465,11.868607 z "
|
||||
id="path5743"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.23175964;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 30.417134,44.888305 L 34.590429,37.819952 L 31.210496,37.320567 L 26.758763,44.888305 L 30.417134,44.888305 z "
|
||||
id="path3985"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
392
datas/icon-themes/edeneu/scalable/apps/internet-mail.svg
Normal file
@@ -0,0 +1,392 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/apps"
|
||||
sodipodi:docname="internet-mail.svg">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8448">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8450" />
|
||||
<stop
|
||||
style="stop-color:#cecece;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop8452" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7493"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7495"
|
||||
offset="0"
|
||||
style="stop-color:#9a9a9a;stop-opacity:0.81568629" />
|
||||
<stop
|
||||
id="stop7497"
|
||||
offset="1"
|
||||
style="stop-color:#686868;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7471">
|
||||
<stop
|
||||
style="stop-color:#686868;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7473" />
|
||||
<stop
|
||||
style="stop-color:#686868;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7475" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient7463">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7465" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7467" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6569">
|
||||
<stop
|
||||
style="stop-color:#fcfcfc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6571" />
|
||||
<stop
|
||||
style="stop-color:#c4c4c4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6557">
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6559" />
|
||||
<stop
|
||||
style="stop-color:#cacaca;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6561" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6549">
|
||||
<stop
|
||||
style="stop-color:#f5f5f5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6551" />
|
||||
<stop
|
||||
style="stop-color:#e6e6e6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient6555"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient6575"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient6584"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498"
|
||||
gradientTransform="matrix(1,0,0,0.994048,0,0.270811)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7469"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7471"
|
||||
id="linearGradient7477"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7489"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7491"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7499"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient7532"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.994048,-5.421011e-19,0.270811)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient7534"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient7536"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7538"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7540"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7493"
|
||||
id="linearGradient7542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.639534"
|
||||
y1="34.123028"
|
||||
x2="6.4523492"
|
||||
y2="39.603107" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7463"
|
||||
id="linearGradient7544"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.948893"
|
||||
y1="35.404659"
|
||||
x2="7.601398"
|
||||
y2="40.486992" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6549"
|
||||
id="linearGradient7555"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="13.75"
|
||||
y1="33.625"
|
||||
x2="13.75"
|
||||
y2="44.502872"
|
||||
gradientTransform="matrix(0.953212,0,0,1,8.208847e-2,0)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient7558"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178"
|
||||
gradientTransform="matrix(0.934582,1.391845e-17,-2.059984e-18,0.994975,0.134924,3.664446e-2)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient7561"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.02464,0,0,0.994048,-9.648473e-2,0.270811)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6557"
|
||||
id="linearGradient8439"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.971456,0.500001,0.798747)"
|
||||
x1="21.655146"
|
||||
y1="7.9600782"
|
||||
x2="21.655146"
|
||||
y2="20.101498" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8448"
|
||||
id="linearGradient8454"
|
||||
x1="33.872341"
|
||||
y1="13.361703"
|
||||
x2="33.872341"
|
||||
y2="25.492441"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6569"
|
||||
id="linearGradient8456"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.87501,-0.245431,0.246258,0.962063,0.236188,-5.708788e-8)"
|
||||
x1="16.202868"
|
||||
y1="30.872061"
|
||||
x2="14.022277"
|
||||
y2="38.620178" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="16.309884"
|
||||
inkscape:cy="38.319555"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="5"
|
||||
inkscape:window-y="66"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#linearGradient7561);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651161,17.666656 C 2.4651161,17.666656 18.654739,1.5000001 23.982569,1.5000001 C 29.491431,1.5000001 45.50002,17.666656 45.50002,17.666656 L 45.50002,43.776608 L 42.520506,45.500012 L 2.4651161,42.308523 L 2.4651161,17.666656 z "
|
||||
id="path5674"
|
||||
sodipodi:nodetypes="czccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient8456);fill-opacity:1;stroke:#c6c6c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953316,20.935076 L 33.468134,12.499987 L 39.500025,36.064921 L 9.4272224,42.031924 L 3.3953316,20.935076 z "
|
||||
id="rect6567"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient7555);fill-opacity:1;stroke:#bebebe;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4651177,18.171482 C 2.4651177,17.423073 4.1900548,17.192726 5.1118011,18.171482 C 9.0354466,22.341089 12.229746,30.055122 15.241463,31.879287 C 19.05685,34.190227 25.55437,33.991136 29.041056,31.879287 C 32.249139,29.936185 35.405099,22.876998 39.833041,18.171482 C 40.700603,17.250261 42.500017,17.302446 42.500017,18.171482 L 42.500017,45.500004 L 2.4651177,42.351068 L 2.4651177,18.171482 z "
|
||||
id="rect3925"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.395347,19.12352 C 3.395347,18.428568 4.0845015,18.464675 4.9618063,19.37352 C 8.6962763,23.245299 11.97472,31.283332 14.841228,32.9772 C 18.47266,35.123074 26.085832,34.938204 29.40441,32.9772 C 32.457817,31.172891 35.759308,24.180429 39.973761,19.81102 C 40.799493,18.9556 41.499994,18.316557 41.499994,19.12352 L 41.499994,44.500013 L 3.395347,41.436183 L 3.395347,19.12352 z "
|
||||
id="path6565"
|
||||
sodipodi:nodetypes="ccssccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.3953466,17.931804 C 3.4162732,18.130607 17.963593,4.032047 23.154777,2.5441943 C 28.032521,2.5441943 41.499994,17.931804 41.499994,17.931804 L 41.499994,44.500002 L 3.3953466,41.436172 L 3.3953466,17.931804 z "
|
||||
id="path6582"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
id="g7479"
|
||||
transform="matrix(0.930232,0,0,1,0.139535,0)">
|
||||
<path
|
||||
id="path6586"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7538);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6588"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7540);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g7483"
|
||||
transform="matrix(-0.930232,0,0,1,44.97047,0)">
|
||||
<path
|
||||
id="path7485"
|
||||
d="M 6,41 L 15,32"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7542);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path7487"
|
||||
d="M 6.9419417,41.5 L 15.941942,32.5"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7544);stroke-width:1.0368222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient8454);fill-opacity:1.0;stroke:none;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:1"
|
||||
d="M 24,2 C 23.410136,2 22.66791,2.2019884 21.84375,2.5625 C 22.080153,2.5094367 22.296677,2.5 22.5,2.5 C 27.492357,2.4999999 42,18.09375 42,18.09375 L 42,44.957446 L 42.326738,45.055334 L 45,43.468085 L 45,17.8125 C 45,17.8125 29.376384,2 24,2 z "
|
||||
id="path7564"
|
||||
sodipodi:nodetypes="ccscccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
305
datas/icon-themes/edeneu/scalable/apps/internet-web-browser.svg
Normal file
|
After Width: | Height: | Size: 18 KiB |
@@ -0,0 +1,237 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg1717"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.42+devel"
|
||||
sodipodi:docname="multimedia-volume-control.svg"
|
||||
sodipodi:docbase="/home/jimmac/gfx/ximian/tango-desktop-theme/scalable/apps">
|
||||
<defs
|
||||
id="defs1719">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2335">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2337" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2339" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2327">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2329" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2331" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3574">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3576" />
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3578" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3566">
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3568" />
|
||||
<stop
|
||||
style="stop-color:#a6ae9d;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3570" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3558">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3560" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3562" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3558"
|
||||
id="radialGradient3564"
|
||||
cx="22.571428"
|
||||
cy="30.857143"
|
||||
fx="22.571428"
|
||||
fy="30.857143"
|
||||
r="15.571428"
|
||||
gradientTransform="matrix(1.000000,0.000000,0.000000,0.651376,3.763482e-15,10.75754)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3566"
|
||||
id="linearGradient3572"
|
||||
x1="19.544102"
|
||||
y1="22.640625"
|
||||
x2="36.0625"
|
||||
y2="22.640625"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.184060,0.000000,0.000000,1.184060,-5.942398,-5.052390)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3574"
|
||||
id="linearGradient3580"
|
||||
x1="22.031542"
|
||||
y1="22.78162"
|
||||
x2="20.71196"
|
||||
y2="4.7503953"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.184060,0.000000,0.000000,1.184060,-5.942398,-5.052390)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2327"
|
||||
id="linearGradient2333"
|
||||
x1="17.525631"
|
||||
y1="20.396902"
|
||||
x2="33.474358"
|
||||
y2="15.271904"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.184060,0.000000,0.000000,1.184060,-5.942398,-4.319792)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2335"
|
||||
id="linearGradient2341"
|
||||
x1="23.9375"
|
||||
y1="18.725033"
|
||||
x2="23.9375"
|
||||
y2="16.847691"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.184060,0.000000,0.000000,1.184060,-5.942398,-4.319792)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.12156863"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4"
|
||||
inkscape:cx="35.22146"
|
||||
inkscape:cy="15.407751"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:showpageshadow="false"
|
||||
fill="#3465a4"
|
||||
stroke="#888a85"
|
||||
inkscape:window-width="737"
|
||||
inkscape:window-height="669"
|
||||
inkscape:window-x="355"
|
||||
inkscape:window-y="221" />
|
||||
<metadata
|
||||
id="metadata1722">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:title>Volume Control</dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>multimedia</rdf:li>
|
||||
<rdf:li>sound</rdf:li>
|
||||
<rdf:li>volume</rdf:li>
|
||||
<rdf:li>knob</rdf:li>
|
||||
<rdf:li>control</rdf:li>
|
||||
<rdf:li>mixer</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient3580);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1 1 ;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 3.5532403,33.393643 C -5.5596849,21.573975 6.9131063,9.4946328 20.952673,9.8329353 C 34.99224,10.171238 45.099036,15.118916 47.467155,27.805271 C 47.467155,27.805271 39.728479,27.086378 39.728479,27.086378 C 39.728479,19.305413 32.804297,15.24578 21.121824,15.24578 C 9.107311,15.24578 -2.6269476,18.34756 3.5532403,33.393643 z "
|
||||
id="path2664"
|
||||
sodipodi:nodetypes="cscczc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.47368421;color:#000000;fill:url(#radialGradient3564);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3556"
|
||||
sodipodi:cx="22.571428"
|
||||
sodipodi:cy="30.857143"
|
||||
sodipodi:rx="15.571428"
|
||||
sodipodi:ry="10.142858"
|
||||
d="M 38.142857 30.857143 A 15.571428 10.142858 0 1 1 7,30.857143 A 15.571428 10.142858 0 1 1 38.142857 30.857143 z"
|
||||
transform="matrix(1.408115,0.000000,0.000000,1.408115,-10.54085,-16.32385)" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:#cc0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1 1 ;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 39.390175,28.439589 C 39.390175,28.439589 38.882722,30.638557 38.290692,31.399738 L 46.832838,37.235461 C 47.847746,34.021585 47.509443,29.7928 47.509443,29.7928 L 39.390175,28.439589 z "
|
||||
id="path3539"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient3572);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 20.883958,6.1221749 C 13.55429,6.1221749 7.6002852,10.219577 7.6002852,15.261641 C 7.6002852,16.855622 5.2321652,23.956925 5.2321652,26.732222 C 5.2321652,32.609278 12.155451,37.388761 20.698949,37.388762 C 29.242446,37.388762 36.165734,32.609276 36.165733,26.732222 C 36.165733,24.022217 34.13063,15.261641 34.13063,15.261641 L 33.982622,8.1572805 L 29.690405,8.5272993 C 27.34265,7.0620706 24.305772,6.1221749 20.883958,6.1221749 z "
|
||||
id="path3541"
|
||||
sodipodi:nodetypes="csssssccc" />
|
||||
<path
|
||||
style="opacity:0.73684208;color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2341);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 20.698949,6.6031993 C 14.047951,6.6031993 8.636338,10.051187 8.636338,14.299592 C 8.636338,18.547995 14.047951,21.995982 20.698949,21.995982 C 27.349947,21.995982 32.761559,18.547995 32.76156,14.299592 C 32.76156,13.51384 32.401598,12.793721 32.058525,12.079479 L 33.316588,8.8233143 L 29.653403,9.3043386 C 27.444179,7.6893945 24.31762,6.6031994 20.698949,6.6031993 z "
|
||||
id="path3545" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssssccc"
|
||||
id="path1452"
|
||||
d="M 20.87031,7.2748571 C 14.081079,7.2748571 8.5660815,11.070145 8.5660815,15.740442 C 8.5660815,17.216895 6.3725701,23.794597 6.3725701,26.365264 C 6.3725701,31.808986 12.785381,36.236064 20.698941,36.236065 C 28.6125,36.236065 35.025314,31.808986 35.025312,26.365264 C 35.025312,23.855076 33.140264,15.740442 33.140264,15.740442 L 33.003169,9.1599082 L 29.02743,9.5026438 C 26.852782,8.1454517 24.039823,7.2748571 20.87031,7.2748571 z "
|
||||
style="opacity:0.47368421;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2333);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
317
datas/icon-themes/edeneu/scalable/apps/preferences-date-time.svg
Normal file
@@ -0,0 +1,317 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg3917"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/actions"
|
||||
sodipodi:docname="appointment-new.svg"
|
||||
inkscape:export-filename="/home/silvestre/Desktop/Neu/scalable/apps/evolution.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3919">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8358">
|
||||
<stop
|
||||
style="stop-color:#f5c548;stop-opacity:0.73725492"
|
||||
offset="0"
|
||||
id="stop8360" />
|
||||
<stop
|
||||
style="stop-color:#ffce3e;stop-opacity:0.71372551"
|
||||
offset="1"
|
||||
id="stop8362" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4934">
|
||||
<stop
|
||||
id="stop4938"
|
||||
offset="0"
|
||||
style="stop-color:#f9f9f9;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c3c3c3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4940" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="21.705061"
|
||||
x2="83.525612"
|
||||
y1="367.82727"
|
||||
x1="29.183714"
|
||||
id="linearGradient6540"
|
||||
xlink:href="#linearGradient6534"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.91358,2.206993e-7,-4.100829e-8,0.169753,4.848958,95.59596)"
|
||||
r="54.105412"
|
||||
fy="136.4689"
|
||||
fx="56.109314"
|
||||
cy="115.14162"
|
||||
cx="56.109314"
|
||||
id="radialGradient6525"
|
||||
xlink:href="#linearGradient6519"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4308">
|
||||
<stop
|
||||
id="stop4310"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.22916669;" />
|
||||
<stop
|
||||
id="stop4312"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5044"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5046"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5048"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6519"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6521"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:0.39215687" />
|
||||
<stop
|
||||
id="stop6523"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6534"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6536"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.39600000" />
|
||||
<stop
|
||||
id="stop6538"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4206"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4208"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4210"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.36909872" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4206"
|
||||
id="linearGradient5825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="59.64286"
|
||||
y1="14.832381"
|
||||
x2="59.64286"
|
||||
y2="121.82737"
|
||||
gradientTransform="matrix(0.328065,0,0,0.345482,-2.097786,-0.476988)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5044"
|
||||
id="linearGradient5827"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.356801,0,0,0.39171,-2.564881,-8.788449e-2)"
|
||||
x1="67.070114"
|
||||
y1="-3.7457006"
|
||||
x2="67.070114"
|
||||
y2="69.195572" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4308"
|
||||
id="radialGradient5829"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.33442,-8.977832e-2,8.94562e-2,0.334489,-12.98936,9.897861)"
|
||||
cx="83.842957"
|
||||
cy="105.0536"
|
||||
fx="83.842957"
|
||||
fy="105.0536"
|
||||
r="56.442806" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4934"
|
||||
id="radialGradient5831"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.406265,1.939687e-16,-2.043241e-16,0.406434,-5.70297,-4.325582)"
|
||||
cx="77.420738"
|
||||
cy="82.518806"
|
||||
fx="77.420738"
|
||||
fy="82.518806"
|
||||
r="56.442806" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8358"
|
||||
id="radialGradient8385"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.888349,-0.956685,-0.948891,1.021886,61.9953,19.79207)"
|
||||
cx="21.4375"
|
||||
cy="24.1875"
|
||||
fx="21.4375"
|
||||
fy="24.1875"
|
||||
r="9.6875" />
|
||||
<linearGradient
|
||||
id="linearGradient7473">
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#fffc9d;stop-opacity:0.97254902;"
|
||||
offset="0.5"
|
||||
id="stop7481" />
|
||||
<stop
|
||||
id="stop7483"
|
||||
offset="0.75"
|
||||
style="stop-color:#fff409;stop-opacity:0.67676765;" />
|
||||
<stop
|
||||
id="stop7477"
|
||||
offset="1"
|
||||
style="stop-color:#fff409;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7473"
|
||||
id="radialGradient9365"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="27.930717"
|
||||
cy="18.124739"
|
||||
fx="27.930717"
|
||||
fy="18.124739"
|
||||
r="9.1923885" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="72"
|
||||
inkscape:window-y="111"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata3922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#linearGradient6540);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path6532"
|
||||
sodipodi:cx="67.306274"
|
||||
sodipodi:cy="70.848709"
|
||||
sodipodi:rx="56.442806"
|
||||
sodipodi:ry="56.442806"
|
||||
d="M 123.74908 70.848709 A 56.442806 56.442806 0 1 1 10.863468,70.848709 A 56.442806 56.442806 0 1 1 123.74908 70.848709 z"
|
||||
transform="matrix(0.34867,0,-9.434273e-2,0.106868,9.535079,31.41097)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient6525);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path5065"
|
||||
sodipodi:cx="56.109314"
|
||||
sodipodi:cy="115.14162"
|
||||
sodipodi:rx="54.105412"
|
||||
sodipodi:ry="9.1845608"
|
||||
d="M 110.21473 115.14162 A 54.105412 9.1845608 0 1 1 2.0039024,115.14162 A 54.105412 9.1845608 0 1 1 110.21473 115.14162 z"
|
||||
transform="matrix(0.377952,0,0,0.547296,-0.78805,-20.01254)" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient5831);fill-opacity:1;fill-rule:evenodd;stroke:#1871bc;stroke-width:0.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 41.500013,23.999987 C 41.500013,35.315984 32.319802,44.499978 21.008473,44.499978 C 9.6971422,44.499978 0.51693186,35.315984 0.51693186,23.999987 C 0.51693186,12.683993 9.6971422,3.4999964 21.008473,3.4999964 C 32.319802,3.4999964 41.500013,12.683993 41.500013,23.999987 z "
|
||||
id="path1359" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient5829);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 38.593015,24.635308 C 38.593015,35.303636 30.36523,43.96199 20.227426,43.96199 C 10.08962,43.96199 1.8618376,35.303636 1.8618376,24.635308 C 1.8618376,13.966978 10.08962,5.3086244 20.227426,5.3086244 C 30.36523,5.3086244 38.593015,13.966978 38.593015,24.635308 z "
|
||||
id="path2854" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#5192ca;stroke-width:2.99999714;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 37.535883,23.999987 C 37.535883,34.211983 29.668879,42.499978 19.975611,42.499978 C 10.28234,42.499978 2.4153385,34.211983 2.4153385,23.999987 C 2.4153385,13.787993 10.28234,5.4999961 19.975611,5.4999961 C 29.668879,5.4999961 37.535883,13.787993 37.535883,23.999987 z "
|
||||
id="path5733" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5825);stroke-width:0.99999481;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.79399139;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 38.499994,23.999999 C 38.499994,34.764001 30.204408,43.500003 19.983062,43.500003 C 9.7617148,43.500003 1.4661331,34.764001 1.4661331,23.999999 C 1.4661331,13.235999 9.7617148,4.4999982 19.983062,4.4999982 C 30.204408,4.4999982 38.499994,13.235999 38.499994,23.999999 z "
|
||||
id="path3331" />
|
||||
<path
|
||||
style="opacity:0.68619247;fill:#696969;fill-opacity:0.86266097;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 19.166385,9 L 19.166385,13.25 L 21.164856,13.25 L 21.164856,9 L 19.166385,9 z M 6,22.875 L 6,25.000001 L 9.8793814,25.000001 L 9.8793814,22.875 L 6,22.875 z M 30.451859,22.875 L 30.451859,25.000001 L 34.213683,25.000001 L 34.213683,22.875 L 30.451859,22.875 z M 19.166385,35 L 19.166385,39 L 21.164856,39 L 21.164856,35 L 19.166385,35 z "
|
||||
id="rect5821"
|
||||
sodipodi:nodetypes="cccccccccccccccccccc" />
|
||||
<path
|
||||
style="opacity:0.68619247;fill:#696969;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14.449758,12 L 12.894862,12.982863 L 13.756035,14.595767 L 15.310931,13.612903 L 14.449758,12 z M 25.573245,12 L 24.735993,13.612903 L 26.29089,14.595767 L 27.152063,12.982863 L 25.573245,12 z M 9.4023258,16.637097 L 8.4933096,18.350806 L 9.9525196,19.258065 L 10.861536,17.569557 L 9.4023258,16.637097 z M 30.548913,16.6875 L 29.089702,17.61996 L 29.998718,19.308468 L 31.457929,18.40121 L 30.548913,16.6875 z M 29.998718,29.590726 L 29.089702,31.279233 L 30.548913,32.211694 L 31.457929,30.497984 L 29.998718,29.590726 z M 9.9525196,29.641129 L 8.4933096,30.573588 L 9.4023258,32.262097 L 10.861536,31.329637 L 9.9525196,29.641129 z M 13.684271,34.404233 L 12.847018,36.017137 L 14.401916,37 L 15.263089,35.387097 L 13.684271,34.404233 z M 26.338732,34.404233 L 24.783836,35.387097 L 25.645009,37 L 27.199906,36.017137 L 26.338732,34.404233 z "
|
||||
id="rect5837" />
|
||||
<path
|
||||
style="opacity:0.96610879;fill:#414141;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 29.01564,29.942558 L 21.166329,25.013008 L 11.153591,25.028944 L 11.084617,23 L 20.42026,22.948344 L 21.627402,23.005927 L 30,28.237596 L 29.01564,29.942558 z "
|
||||
id="rect5849"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient8385);fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 20,9.9999754 C 12.824001,9.9999807 7.0000009,16.271991 7,24 L 19.999997,23.999991 L 20,9.9999754 z "
|
||||
id="path7483" />
|
||||
<path
|
||||
style="color:black;fill:#4082bc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999905;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 20.5,4 C 30.754694,4.2823224 39,13.13788 39,24 C 39,34.862123 30.754694,43.717678 20.5,44 C 20.666142,44.004082 20.832881,44 21,44 C 32.039999,44 41,35.040002 41,24 C 41,12.960001 32.039999,4 21,4 C 20.832881,4 20.666142,3.9959175 20.5,4 z "
|
||||
id="path8387" />
|
||||
<path
|
||||
style="opacity:0.68619247;color:black;fill:url(#linearGradient5827);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 36.112092,16.748391 C 36.112092,23.233503 28.882954,28.496784 19.975619,28.496784 C 11.068285,28.496784 3.8391468,23.233503 3.8391468,16.748391 C 3.8391468,11.679755 11.747535,5 19.975619,5 C 29.174306,5 36.112092,11.973626 36.112092,16.748391 z "
|
||||
id="path4316" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.94142259;fill:url(#radialGradient9365);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path6598"
|
||||
sodipodi:cx="27.930717"
|
||||
sodipodi:cy="18.124739"
|
||||
sodipodi:rx="9.1923885"
|
||||
sodipodi:ry="9.1923885"
|
||||
d="M 37.123106 18.124739 A 9.1923885 9.1923885 0 1 1 18.738329,18.124739 A 9.1923885 9.1923885 0 1 1 37.123106 18.124739 z"
|
||||
transform="matrix(0.979071,0,0,0.979071,9.653846,-6.745407)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,260 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg14"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="preferences-desktop-accessibility.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2843">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.79607844"
|
||||
offset="0"
|
||||
id="stop2845" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2838">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2840" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2842" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3579">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.18750000;"
|
||||
offset="0.0000000"
|
||||
id="stop3581" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3583" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3569">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3571" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3549">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.68674695"
|
||||
offset="0"
|
||||
id="stop3551" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2813">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.73092371"
|
||||
offset="0"
|
||||
id="stop2815" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2817" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3569"
|
||||
id="linearGradient3575"
|
||||
x1="90.686348"
|
||||
y1="164.369"
|
||||
x2="106.27306"
|
||||
y2="103.91144"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.377788,0,0,0.377788,-0.178436,0.892191)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3579"
|
||||
id="radialGradient3585"
|
||||
cx="54.317345"
|
||||
cy="112.41328"
|
||||
fx="54.317345"
|
||||
fy="112.41328"
|
||||
r="47.704796"
|
||||
gradientTransform="matrix(1,0,0,0.29703,-2.740863e-16,79.02319)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3579"
|
||||
id="radialGradient3589"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.29703,-6.832645e-16,79.02319)"
|
||||
cx="54.317345"
|
||||
cy="112.41328"
|
||||
fx="54.317345"
|
||||
fy="112.41328"
|
||||
r="47.704796" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2843"
|
||||
id="linearGradient2849"
|
||||
x1="83.318726"
|
||||
y1="-0.056119706"
|
||||
x2="93.686676"
|
||||
y2="122.31063"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.392157,0,0,0.377878,-1.127537,1.059996)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3549"
|
||||
id="linearGradient4825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="47.7048"
|
||||
y1="5.1955714"
|
||||
x2="54.317345"
|
||||
y2="82.184502"
|
||||
gradientTransform="matrix(0.38246,0,0,0.380008,-5.393549,-0.230769)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2813"
|
||||
id="linearGradient4828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="145.00369"
|
||||
y1="70.376381"
|
||||
x2="89.741699"
|
||||
y2="69.431732"
|
||||
gradientTransform="matrix(0.397557,0,0,0.382532,-6.841419,-0.483282)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2838"
|
||||
id="linearGradient4831"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.384943,0,0,0.383323,-0.409092,1.055781)"
|
||||
x1="33.654625"
|
||||
y1="11.391578"
|
||||
x2="71.740967"
|
||||
y2="141.5607" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient3589);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3587"
|
||||
sodipodi:cx="54.317345"
|
||||
sodipodi:cy="112.41328"
|
||||
sodipodi:rx="47.704796"
|
||||
sodipodi:ry="14.169742"
|
||||
d="M 102.02214 112.41328 A 47.704796 14.169742 0 1 1 6.6125488,112.41328 A 47.704796 14.169742 0 1 1 102.02214 112.41328 z"
|
||||
transform="matrix(0.300688,0,0,0.245562,-1.988314,13.25797)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient3585);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3577"
|
||||
sodipodi:cx="54.317345"
|
||||
sodipodi:cy="112.41328"
|
||||
sodipodi:rx="47.704796"
|
||||
sodipodi:ry="14.169742"
|
||||
d="M 102.02214 112.41328 A 47.704796 14.169742 0 1 1 6.6125488,112.41328 A 47.704796 14.169742 0 1 1 102.02214 112.41328 z"
|
||||
transform="matrix(0.377788,0,0,0.308527,2.498144,8.945721)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3575);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 37.650558,46.215611 L 48.000003,42.646841 L 36.579928,38.185871 L 37.650558,46.215611 z "
|
||||
id="path3567" />
|
||||
<path
|
||||
style="fill:#009ed3;fill-opacity:1;fill-rule:evenodd;stroke:#0075b8;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 38.499995,46.068581 L 38.499995,4.2892649 L 32.164595,2.5000008 L 3.5000012,9.5151874 L 3.5000012,39.753749 L 32.164595,47.499993 L 38.499995,46.068581 z "
|
||||
id="path2083"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 32,2.7259517 L 32.046944,47 L 37.998454,45.670149 L 38,4.3718266 L 32,2.7259517 z "
|
||||
id="path2811"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2849);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 32.499997,3.4999989 L 37.500011,4.9170421 L 37.500011,44.327031 L 32.499997,45.649606 L 32.499997,3.4999989 z "
|
||||
id="path1968"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4825);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4,9.9999998 L 4,27.589744 C 12.911828,19.482906 23.449462,18.555555 31.819355,31 L 32,3 L 4,9.9999998 z "
|
||||
id="path2821"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path579"
|
||||
style="font-size:12px;fill:white;fill-opacity:1;stroke:white;stroke-width:1.56723571;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="M 24.216378,31.749435 C 24.216378,31.749435 23.126535,30.62837 22.152424,31.037524 C 22.152424,31.037524 20.723056,25.094653 20.240891,25.125726 L 15.454807,24.282946 L 15.279707,22.045335 L 19.267685,22.747577 L 19.304863,21.476235 L 14.838093,20.689684 L 14.941262,18.636649 C 15.658701,18.47939 16.209987,17.640958 16.242673,16.523197 C 16.281853,15.183366 15.563712,13.964638 14.6385,13.801717 C 13.713469,13.638829 12.931777,14.593452 12.892596,15.933283 C 12.863639,16.923539 13.24943,17.844104 13.825014,18.324902 C 13.78298,19.293529 13.748588,20.607195 13.783118,21.901491 C 12.101042,22.650426 10.869066,24.808408 10.787886,27.584494 C 10.678695,31.318428 12.679398,34.712134 15.256464,35.165928 C 17.833532,35.619725 20.011381,32.961817 20.120571,29.227884 C 20.131001,28.871191 20.119553,28.518853 20.092077,28.170844 C 20.705841,29.733693 21.606143,32.335993 21.506137,33.943411 L 24.216378,31.749435 z M 15.283852,34.241861 C 13.062466,33.850699 11.332241,30.91452 11.426325,27.697182 C 11.493222,25.409504 12.471017,23.605541 13.824945,22.883816 C 13.899049,24.137421 14.057955,25.278851 14.363684,25.949653 L 19.220866,26.804953 C 19.404354,27.537105 19.505578,28.313294 19.482106,29.115988 C 19.387851,32.33303 17.504688,34.632928 15.283852,34.241861 z " />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4831);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.5000022,38.943503 L 4.5000022,10.156899 L 31.500027,3.4999976 L 31.500027,46.499988 L 4.5000022,38.943503 z "
|
||||
id="path1963" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:2.00000095;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.0000048,36.673636 L 7.0000048,12.807265 L 28.000012,7.9361721 L 28.000012,41.97872 L 7.0000048,36.673636 z "
|
||||
id="path3948"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,345 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg14"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="preferences-desktop-assistive-technology.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2843">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.79607844"
|
||||
offset="0"
|
||||
id="stop2845" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2847" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2838">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2840" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2842" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3579">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.18750000;"
|
||||
offset="0.0000000"
|
||||
id="stop3581" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3583" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3569">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3571" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3573" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3549">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.68674695"
|
||||
offset="0"
|
||||
id="stop3551" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3553" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2813">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.73092371"
|
||||
offset="0"
|
||||
id="stop2815" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2817" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3569"
|
||||
id="linearGradient3575"
|
||||
x1="90.686348"
|
||||
y1="164.369"
|
||||
x2="106.27306"
|
||||
y2="103.91144"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.377788,0,0,0.377788,-0.178436,0.892191)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3579"
|
||||
id="radialGradient3585"
|
||||
cx="54.317345"
|
||||
cy="112.41328"
|
||||
fx="54.317345"
|
||||
fy="112.41328"
|
||||
r="47.704796"
|
||||
gradientTransform="matrix(1,0,0,0.29703,-2.740863e-16,79.02319)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3579"
|
||||
id="radialGradient3589"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.29703,-6.832645e-16,79.02319)"
|
||||
cx="54.317345"
|
||||
cy="112.41328"
|
||||
fx="54.317345"
|
||||
fy="112.41328"
|
||||
r="47.704796" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2843"
|
||||
id="linearGradient2849"
|
||||
x1="83.318726"
|
||||
y1="-0.056119706"
|
||||
x2="93.686676"
|
||||
y2="122.31063"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.392157,0,0,0.377878,-1.127537,1.059996)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3549"
|
||||
id="linearGradient4825"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="47.7048"
|
||||
y1="5.1955714"
|
||||
x2="54.317345"
|
||||
y2="82.184502"
|
||||
gradientTransform="matrix(0.38246,0,0,0.380008,-5.393549,-0.230769)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2813"
|
||||
id="linearGradient4828"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="145.00369"
|
||||
y1="70.376381"
|
||||
x2="89.741699"
|
||||
y2="69.431732"
|
||||
gradientTransform="matrix(0.397557,0,0,0.382532,-6.841419,-0.483282)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2838"
|
||||
id="linearGradient4831"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.384943,0,0,0.383323,-0.409092,1.055781)"
|
||||
x1="33.654625"
|
||||
y1="11.391578"
|
||||
x2="71.740967"
|
||||
y2="141.5607" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2049">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2051" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2053" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4234">
|
||||
<stop
|
||||
style="stop-color:#e0e0e0;stop-opacity:1.0000000"
|
||||
offset="0"
|
||||
id="stop4236" />
|
||||
<stop
|
||||
style="stop-color:#c4c4c4;stop-opacity:1.0000000"
|
||||
offset="1"
|
||||
id="stop4238" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6647"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6649"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6651"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.45064378" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6647"
|
||||
id="linearGradient4981"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="38.311138"
|
||||
y1="29.974993"
|
||||
x2="26.017185"
|
||||
y2="26.680838"
|
||||
gradientTransform="matrix(1.009535,0,0,1.008296,-0.414875,-0.369293)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2049"
|
||||
id="linearGradient4984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.367968,0,0,0.377025,1.649346,0.640652)"
|
||||
x1="72.151817"
|
||||
y1="38.213421"
|
||||
x2="72.151817"
|
||||
y2="75.248329" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4234"
|
||||
id="linearGradient4987"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.470304,0,0,0.476988,11.15935,9.20171)"
|
||||
x1="34.812870"
|
||||
y1="16.950554"
|
||||
x2="34.812870"
|
||||
y2="50.460960" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient3589);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3587"
|
||||
sodipodi:cx="54.317345"
|
||||
sodipodi:cy="112.41328"
|
||||
sodipodi:rx="47.704796"
|
||||
sodipodi:ry="14.169742"
|
||||
d="M 102.02214 112.41328 A 47.704796 14.169742 0 1 1 6.6125488,112.41328 A 47.704796 14.169742 0 1 1 102.02214 112.41328 z"
|
||||
transform="matrix(0.300688,0,0,0.245562,-1.988314,13.25797)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient3585);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="path3577"
|
||||
sodipodi:cx="54.317345"
|
||||
sodipodi:cy="112.41328"
|
||||
sodipodi:rx="47.704796"
|
||||
sodipodi:ry="14.169742"
|
||||
d="M 102.02214 112.41328 A 47.704796 14.169742 0 1 1 6.6125488,112.41328 A 47.704796 14.169742 0 1 1 102.02214 112.41328 z"
|
||||
transform="matrix(0.377788,0,0,0.308527,2.498144,8.945721)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3575);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 37.650558,46.215611 L 48.000003,42.646841 L 36.579928,38.185871 L 37.650558,46.215611 z "
|
||||
id="path3567" />
|
||||
<path
|
||||
style="fill:#009ed3;fill-opacity:1;fill-rule:evenodd;stroke:#0075b8;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 38.499995,46.068581 L 38.499995,4.2892649 L 32.164595,2.5000008 L 3.5000012,9.5151874 L 3.5000012,39.753749 L 32.164595,47.499993 L 38.499995,46.068581 z "
|
||||
id="path2083"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 32,2.7259517 L 32.046944,47 L 37.998454,45.670149 L 38,4.3718266 L 32,2.7259517 z "
|
||||
id="path2811"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2849);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 32.499997,3.4999989 L 37.500011,4.9170421 L 37.500011,44.327031 L 32.499997,45.649606 L 32.499997,3.4999989 z "
|
||||
id="path1968"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4825);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 4,9.9999998 L 4,27.589744 C 12.911828,19.482906 23.449462,18.555555 31.819355,31 L 32,3 L 4,9.9999998 z "
|
||||
id="path2821"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path579"
|
||||
style="font-size:12px;fill:white;fill-opacity:1;stroke:white;stroke-width:1.56723571;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="M 24.216378,31.749435 C 24.216378,31.749435 23.126535,30.62837 22.152424,31.037524 C 22.152424,31.037524 20.723056,25.094653 20.240891,25.125726 L 15.454807,24.282946 L 15.279707,22.045335 L 19.267685,22.747577 L 19.304863,21.476235 L 14.838093,20.689684 L 14.941262,18.636649 C 15.658701,18.47939 16.209987,17.640958 16.242673,16.523197 C 16.281853,15.183366 15.563712,13.964638 14.6385,13.801717 C 13.713469,13.638829 12.931777,14.593452 12.892596,15.933283 C 12.863639,16.923539 13.24943,17.844104 13.825014,18.324902 C 13.78298,19.293529 13.748588,20.607195 13.783118,21.901491 C 12.101042,22.650426 10.869066,24.808408 10.787886,27.584494 C 10.678695,31.318428 12.679398,34.712134 15.256464,35.165928 C 17.833532,35.619725 20.011381,32.961817 20.120571,29.227884 C 20.131001,28.871191 20.119553,28.518853 20.092077,28.170844 C 20.705841,29.733693 21.606143,32.335993 21.506137,33.943411 L 24.216378,31.749435 z M 15.283852,34.241861 C 13.062466,33.850699 11.332241,30.91452 11.426325,27.697182 C 11.493222,25.409504 12.471017,23.605541 13.824945,22.883816 C 13.899049,24.137421 14.057955,25.278851 14.363684,25.949653 L 19.220866,26.804953 C 19.404354,27.537105 19.505578,28.313294 19.482106,29.115988 C 19.387851,32.33303 17.504688,34.632928 15.283852,34.241861 z " />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4831);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.5000022,38.943503 L 4.5000022,10.156899 L 31.500027,3.4999976 L 31.500027,46.499988 L 4.5000022,38.943503 z "
|
||||
id="path1963" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:2.00000095;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.0000048,36.673636 L 7.0000048,12.807265 L 28.000012,7.9361721 L 28.000012,41.97872 L 7.0000048,36.673636 z "
|
||||
id="path3948"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="color:black;fill:#8f8f8f;fill-opacity:1;fill-rule:evenodd;stroke:#595959;stroke-width:1.02248359;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 33.569644,12.511242 L 29.780141,16.820495 L 26.885341,15.045145 L 27.885391,15.828331 L 25.116152,13.666299 L 21.253782,16.109691 L 21.793052,22.699443 L 16.283712,24.135861 L 15.511232,28.489541 L 20.262682,32.1028 L 16.793832,37.34498 L 19.694252,41.19518 L 19.718662,41.17658 L 22.813302,43.13508 L 26.165551,41.83194 L 27.477291,45.07498 L 27.525091,45.0619 L 30.610921,47.01489 L 35.959944,47.48876 L 37.912984,41.28403 L 43.436904,42.77968 L 46.002104,38.61851 L 43.057954,32.96169 L 47.488754,28.85975 L 46.308184,23.913734 L 43.185364,21.940603 L 43.189134,21.97383 L 40.711384,21.60362 L 40.740534,16.450285 L 37.606914,14.521361 L 37.606914,14.510381 L 33.569644,12.511242 z M 33.074094,25.972107 C 33.162484,25.972107 33.234774,26.025243 33.321864,26.031341 C 33.906454,26.903508 34.312964,27.963343 34.312964,29.15592 C 34.312964,31.97851 32.351804,34.26483 29.940471,34.26483 C 29.847141,34.26483 29.770021,34.21234 29.678121,34.2056 C 29.090921,33.33648 28.687021,32.2884 28.687021,31.09583 C 28.687021,28.273235 30.662751,25.972107 33.074094,25.972107 z "
|
||||
id="path2041"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccsscsc" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4987);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.86331141;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 33.529154,13 L 29.588771,17.46078 L 25.316962,14.127787 L 21.572982,16.494438 L 22.100822,22.877227 L 16.748792,24.268531 L 15.999992,28.476468 L 20.603242,31.97624 L 17.244702,37.05912 L 20.055752,40.78839 L 25.260482,38.76598 L 27.617341,44.54635 L 32.817184,45 L 34.707574,38.99014 L 40.059614,40.43882 L 42.551504,36.40834 L 39.703634,30.92918 L 43.999994,26.956074 L 42.858394,22.165397 L 37.420424,21.347826 L 37.444974,14.936351 L 33.529154,13 z M 30.006131,24.159122 C 33.088344,24.159122 34.674214,26.387978 34.674214,29.121918 C 34.674214,31.85586 32.345894,34.44687 30.006131,34.44687 C 27.666371,34.44687 25.758871,31.85586 25.758871,29.121918 C 25.758871,26.387977 27.666371,24.159122 30.006131,24.159122 z "
|
||||
id="path2043"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccssss" />
|
||||
<path
|
||||
id="path1317"
|
||||
d="M 33.524424,13 L 29.580281,17.512519 L 25.314162,14.142856 L 21.565492,16.53461 L 22.094452,22.979382 L 16.747422,24.393225 L 15.999992,28.634757 L 16.471452,29 C 19.227612,27.321336 22.880022,26.212399 26.947011,25.854197 C 27.721591,24.893072 28.797471,24.275405 30.005741,24.275405 C 31.648974,24.275405 32.825854,24.944123 33.604924,25.960236 C 36.918754,26.398375 39.878084,27.380102 42.263644,28.729014 L 43.999994,27.103093 L 42.850094,22.260677 L 37.411084,21.435936 L 37.445574,14.955817 L 33.524424,13 z "
|
||||
style="color:black;fill:url(#linearGradient4984);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.86331141;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4981);stroke-width:0.96760046;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 33.396722,13.483804 L 29.642157,17.931401 L 25.134978,14.586563 L 21.915511,16.557444 L 22.687714,22.884395 L 17.041779,24.588072 L 16.483798,28.101938 L 21.142177,31.867299 L 17.611035,36.923188 L 20.178979,40.483884 L 25.079928,38.334732 L 27.548876,44.072632 L 32.616887,44.516211 L 34.459359,38.639721 L 39.675717,40.056256 L 42.104436,36.11522 L 39.32876,30.75766 L 43.5162,26.872722 L 42.489452,22.445799 L 37.189353,21.646372 L 37.213279,15.291371 L 33.396722,13.483804 z M 29.877106,24.137841 C 32.881173,24.137841 34.426841,26.317235 34.426841,28.990502 C 34.426841,31.663765 32.157548,34.19728 29.877106,34.19728 C 27.596658,34.19728 25.737518,31.663765 25.737518,28.990502 C 25.737518,26.317234 27.596658,24.137841 29.877106,24.137841 z "
|
||||
id="path5772"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccssss" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 18 KiB |
@@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg5055"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="gnome-settings-font.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6553">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.31330472"
|
||||
offset="0"
|
||||
id="stop6555" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6557" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6766">
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6768" />
|
||||
<stop
|
||||
id="stop6774"
|
||||
offset="0.5"
|
||||
style="stop-color:#575757;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6770" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5001">
|
||||
<stop
|
||||
style="stop-color:#f0f0f0;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5003" />
|
||||
<stop
|
||||
style="stop-color:#dadada;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5005" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5001"
|
||||
id="linearGradient5007"
|
||||
x1="79.578094"
|
||||
y1="-0.63259059"
|
||||
x2="79.578094"
|
||||
y2="32.894043"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6766"
|
||||
id="linearGradient6772"
|
||||
x1="66.174919"
|
||||
y1="-16.689276"
|
||||
x2="66.174919"
|
||||
y2="16.576611"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.868421,0,0,0.960033,6.663573,-0.666936)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6553"
|
||||
id="linearGradient6559"
|
||||
x1="109.1167"
|
||||
y1="3.4664507"
|
||||
x2="100.93536"
|
||||
y2="3.4664507"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g2106"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="33"
|
||||
inkscape:window-y="45"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(0.684082,0,0,0.684082,-29.64407,24.41546)"
|
||||
id="g2106">
|
||||
<path
|
||||
style="fill:url(#linearGradient5007);fill-opacity:1;stroke:#b4b4b4;stroke-width:1.4519062;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 48.983665,-28.931019 L 101.94935,-32.04126 L 107.85154,-29.428658 C 109.08875,-28.944131 109.85154,-28.536658 109.85154,-27.428658 L 109.85154,26.587238 C 109.85154,27.695238 109.02414,28.199616 107.85154,28.587238 L 101.56173,30.856161 L 48.983665,26.472274 C 47.875665,26.472274 46.983665,25.580274 46.983665,24.472274 L 46.983665,-26.931019 C 46.983665,-28.039019 47.875665,-28.931019 48.983665,-28.931019 z "
|
||||
id="rect4126"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.38591039;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 48.91404,-27.502201 L 101.81481,-30.57328 L 107.92116,-27.87543 C 108.19902,-27.87543 108.42272,-27.651736 108.42272,-27.373873 L 108.42272,26.532453 C 108.42272,26.810316 108.19902,27.03401 107.92116,27.03401 L 101.54024,29.430062 L 48.91404,24.919047 C 48.636177,24.919047 48.412483,24.695353 48.412483,24.41749 L 48.412483,-27.000644 C 48.412483,-27.278507 48.636177,-27.502201 48.91404,-27.502201 z "
|
||||
id="rect5016"
|
||||
sodipodi:nodetypes="ccccccccccc" />
|
||||
<path
|
||||
style="font-size:133.99008179px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient6772);fill-opacity:1;stroke:none;stroke-width:1.28486145;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Luxi Sans"
|
||||
d="M 50.643154,15.639272 L 61.514633,-16.687268 L 67.348109,-16.687268 L 78.181708,15.639272 L 72.215655,15.639272 L 69.355735,7.0115824 L 57.764542,7.0115824 L 54.904623,15.639272 L 50.643154,15.639272 M 59.203971,2.7086571 L 67.916307,2.7086571 L 63.560137,-10.178277 L 59.203971,2.7086571 M 98.750377,11.947935 L 98.882985,15.573751 C 97.65819,15.981473 96.603857,16.185327 95.720022,16.185327 C 93.510359,16.185327 92.039359,15.144184 91.307032,13.061891 L 91.060816,13.061891 C 89.634,15.144184 87.878907,16.185327 85.795533,16.185327 C 83.989927,16.185327 82.518934,15.537344 81.382545,14.241372 C 80.246151,12.959962 79.677958,11.278111 79.677961,9.195809 C 79.677958,3.7352556 82.97349,1.0049758 89.564565,1.0049614 L 91.060816,1.0049614 L 91.060816,-1.1792645 C 91.0608,-3.6692633 89.962291,-4.9142704 87.765277,-4.914291 C 85.909163,-4.9142704 83.825783,-4.2007572 81.515127,-2.7737495 L 81.515127,-7.2295701 C 83.876287,-8.3362212 86.281649,-8.8895577 88.731212,-8.8895818 C 93.870215,-8.8895577 96.439708,-6.3922614 96.439726,-1.3976874 L 96.439726,9.2176488 C 96.439708,11.096086 96.951087,12.035304 97.973852,12.035304 C 98.213736,12.035304 98.472578,12.006185 98.750377,11.947935 M 91.060816,9.5889704 L 91.060816,4.7181445 L 89.735024,4.7181445 C 86.616252,4.718156 85.056873,6.0141282 85.056879,8.6060674 C 85.056873,9.5234511 85.32203,10.280644 85.852354,10.877661 C 86.370036,11.489247 87.032928,11.795039 87.841038,11.795039 C 89.078433,11.795039 90.151688,11.059686 91.060816,9.5889704"
|
||||
id="text1538" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:white;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.80257511"
|
||||
d="M 40.526057,4 L 40.526057,44"
|
||||
id="path4802"
|
||||
transform="matrix(1.461813,0,0,1.461813,43.33409,-35.69084)" />
|
||||
<path
|
||||
style="opacity:0.87029269;fill:url(#linearGradient6559);fill-opacity:1.0;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.80257509"
|
||||
d="M 101.80661,-31.305399 L 109.11568,-28.139822 L 109.11568,27.377398 L 101.80661,30.09075 L 101.80661,-31.305399 z "
|
||||
id="rect5677"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 29 KiB |
@@ -0,0 +1,418 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="preferences-desktop-screensaver.svg"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/apps"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="svg12101"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5817">
|
||||
<stop
|
||||
style="stop-color:#feff07;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5819" />
|
||||
<stop
|
||||
style="stop-color:#feff07;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5821" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4927">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4929" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4931" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5882">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5884" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.49785408"
|
||||
offset="1"
|
||||
id="stop5886" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4999">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5001" />
|
||||
<stop
|
||||
style="stop-color:#454545;stop-opacity:0.81568629"
|
||||
offset="1"
|
||||
id="stop5003" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4991">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4993" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4995" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2110">
|
||||
<stop
|
||||
style="stop-color:#686868;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2112" />
|
||||
<stop
|
||||
style="stop-color:#2d2d2d;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2114" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient21288">
|
||||
<stop
|
||||
id="stop21290"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.71875000;" />
|
||||
<stop
|
||||
id="stop21292"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient19750">
|
||||
<stop
|
||||
id="stop19752"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.13541667;" />
|
||||
<stop
|
||||
id="stop19754"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16695">
|
||||
<stop
|
||||
id="stop16697"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#d2d2d2;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop16703"
|
||||
offset="0.50000000"
|
||||
style="stop-color:#b5b5b5;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop16699"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#e2e2e2;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient15921">
|
||||
<stop
|
||||
id="stop15923"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.69791669;" />
|
||||
<stop
|
||||
id="stop15925"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient14393">
|
||||
<stop
|
||||
id="stop14395"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#727272;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop14397"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#545454;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient19750"
|
||||
id="radialGradient1351"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(2.245984,0.445239)"
|
||||
cx="24.376842"
|
||||
cy="252.11171"
|
||||
fx="24.376842"
|
||||
fy="252.11171"
|
||||
r="25.267321" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15921"
|
||||
id="linearGradient2098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.364101,0,0,0.359687,2.141292,0.5214)"
|
||||
x1="2.3425686"
|
||||
y1="-6.7369881"
|
||||
x2="50.190037"
|
||||
y2="52.214569" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient14393"
|
||||
id="radialGradient2101"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.354756,0,0,0.379465,1.684905,0.223181)"
|
||||
cx="31.560766"
|
||||
cy="37.778625"
|
||||
fx="31.560766"
|
||||
fy="37.778625"
|
||||
r="33.42374" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16695"
|
||||
id="linearGradient2108"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.526005,4.821718e-2,-4.571341e-2,0.49853,0.775493,-17.19677)"
|
||||
x1="39.650043"
|
||||
y1="94.938591"
|
||||
x2="37.900795"
|
||||
y2="113.51712" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2110"
|
||||
id="linearGradient2116"
|
||||
x1="59.498844"
|
||||
y1="122.69814"
|
||||
x2="67.379585"
|
||||
y2="89.817665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.385253,0,0,0.385192,-0.144115,-1.047549)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4991"
|
||||
id="linearGradient4997"
|
||||
x1="31.643028"
|
||||
y1="5.0432639"
|
||||
x2="31.643028"
|
||||
y2="40.581196"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.071217,0,0,1.071046,-0.243328,-3.081271)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4999"
|
||||
id="linearGradient5005"
|
||||
x1="27.753941"
|
||||
y1="30.145554"
|
||||
x2="9.3895664"
|
||||
y2="14.609607"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.095237,0,0,1.041667,-0.714282,-2.312497)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5882"
|
||||
id="linearGradient5888"
|
||||
x1="11.667261"
|
||||
y1="9.5510693"
|
||||
x2="11.667261"
|
||||
y2="38.191074"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.107144,0,0,1.100001,-0.589288,-3.450002)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient21288"
|
||||
id="linearGradient4050"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.894434,0,0,0.157499,-2.057989e-2,0.12712)"
|
||||
x1="20.323792"
|
||||
y1="331.23621"
|
||||
x2="37.489967"
|
||||
y2="241.84418" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4927"
|
||||
id="radialGradient4933"
|
||||
cx="22.071964"
|
||||
cy="49.223579"
|
||||
fx="22.071964"
|
||||
fy="49.223579"
|
||||
r="11.390838"
|
||||
gradientTransform="matrix(2.046119,-7.948727e-17,-4.308865e-8,0.620762,-23.08988,12.46899)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5817"
|
||||
id="radialGradient5823"
|
||||
cx="13.53125"
|
||||
cy="15.59375"
|
||||
fx="13.53125"
|
||||
fy="15.59375"
|
||||
r="2.09375"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5817"
|
||||
id="radialGradient5827"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="13.53125"
|
||||
cy="15.59375"
|
||||
fx="13.53125"
|
||||
fy="15.59375"
|
||||
r="2.09375" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5817"
|
||||
id="radialGradient5831"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="13.53125"
|
||||
cy="15.59375"
|
||||
fx="13.53125"
|
||||
fy="15.59375"
|
||||
r="2.09375" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="84"
|
||||
inkscape:window-x="99"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
borderlayer="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
transform="matrix(0.375321,0,0,0.375339,0.730063,0.314789)"
|
||||
d="M 111.5 112.25 A 56.75 11.25 0 1 1 -2,112.25 A 56.75 11.25 0 1 1 111.5 112.25 z"
|
||||
sodipodi:ry="11.25"
|
||||
sodipodi:rx="56.75"
|
||||
sodipodi:cy="112.25"
|
||||
sodipodi:cx="54.75"
|
||||
id="path18990"
|
||||
style="fill:url(#radialGradient1351);fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4050);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 29.254502,41.789805 L 36.01029,40.100783 L 44.830346,41.132963 L 48.02058,39.162437 L 19.777633,36.816561 L 29.254502,41.789805 z "
|
||||
id="path20528" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2108);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2116);stroke-width:0.72012317;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="M 25.259242,16.386591 C 25.259242,16.386591 32.108402,39.451703 29.671337,41.423251 C 28.873595,42.142748 25.722209,43.59153 22.026572,44.990433 C 15.21747,44.986138 9.7115501,44.735472 6.1377679,41.369496 L 6.2266206,39.812399 C 8.8418301,39.304284 19.150044,38.778282 19.986742,37.974719 C 21.725347,36.304959 16.99066,16.116403 16.99066,16.116403 L 25.259242,16.386591 z "
|
||||
id="path15935"
|
||||
sodipodi:nodetypes="ccccczcc" />
|
||||
<path
|
||||
style="fill:white;fill-opacity:0.6533333;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.5947052,40.137074 C 9.6142129,42.022887 14.168078,43.345941 21.988302,42.942659 L 21.87843,44.611072 C 13.515053,44.648986 9.4159386,43.708543 6.5345452,41.208634 L 6.5947052,40.137074 z "
|
||||
id="path17463"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ddd;fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.499999,8.1103555 L 34.66181,0.50212326 L 37.500002,1.1937809 L 37.500002,35.22333 L 34.66181,35.499992 L 4.499999,33.194459 L 4.499999,8.1103555 z "
|
||||
id="path12111"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.14666664;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34,1 L 34.095238,35 L 36.888888,34.77982 L 37,1.533061 L 34,1 z "
|
||||
id="path12873"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient2101);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5005);stroke-width:0.99999911;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.4999964,10.776822 L 7.4999964,29.679473 L 30.499986,30.500009 L 30.499986,5.5000019 L 7.4999964,10.776822 z "
|
||||
id="path13633"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2098);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8.0287365,11.136186 C 8.1282827,16.757457 7.9291903,22.378723 8.0287365,28 C 12.45143,18.997403 16.703476,10.422827 30,8.9533072 C 29.985778,7.9688714 29.971557,6.9844352 29.957338,6 C 22.548258,7.7120622 15.437817,9.4241244 8.0287365,11.136186 z "
|
||||
id="path15161"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4997);stroke-width:0.99999934px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 33.5,1.2975804 L 33.5,34.5"
|
||||
id="path4989" />
|
||||
<path
|
||||
style="opacity:0.78242678;fill:#feff07;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 19.969888,12.003201 C 20.002258,12.013382 20.032872,12.017968 20.06519,12.028823 C 23.167645,13.071032 24.840692,16.844179 23.800959,20.445176 C 22.761225,24.046172 19.402442,26.126711 16.299987,25.084502 C 14.83087,24.59098 13.692048,23.474949 13,22.066064 C 14.132971,26.153389 18.123406,28.715509 22.110198,27.82248 C 26.225593,26.900642 28.774038,22.647324 27.798688,18.328468 C 26.933064,14.495482 23.589909,11.895909 19.969888,12.003201 z "
|
||||
id="path5808" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5888);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.5000016,8.8866825 L 34.646345,1.5000001 L 36.500028,1.9802996 L 36.500028,34.332896 L 33.833845,34.500015 L 5.5000016,32.326093 L 5.5000016,8.8866825 z "
|
||||
id="path5007"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#radialGradient4933);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.5407377,40 C 10.498186,42.19564 16.057002,42.789911 22,43 C 24.794803,42.09742 26.266088,41.713013 27.442089,40.480065 C 28.672463,39.190112 28.260357,36.64049 28.240077,35.095301"
|
||||
id="path4052"
|
||||
sodipodi:nodetypes="ccsc" />
|
||||
<path
|
||||
transform="matrix(0.955221,0,0,1.19403,-1.925335,-4.119414)"
|
||||
d="M 15.625 15.59375 A 2.09375 2.09375 0 1 1 11.4375,15.59375 A 2.09375 2.09375 0 1 1 15.625 15.59375 z"
|
||||
sodipodi:ry="2.09375"
|
||||
sodipodi:rx="2.09375"
|
||||
sodipodi:cy="15.59375"
|
||||
sodipodi:cx="13.53125"
|
||||
id="path5825"
|
||||
style="opacity:0.78242678;fill:url(#radialGradient5827);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.955221,0,0,1.19403,3.07466,-0.119406)"
|
||||
d="M 15.625 15.59375 A 2.09375 2.09375 0 1 1 11.4375,15.59375 A 2.09375 2.09375 0 1 1 15.625 15.59375 z"
|
||||
sodipodi:ry="2.09375"
|
||||
sodipodi:rx="2.09375"
|
||||
sodipodi:cy="15.59375"
|
||||
sodipodi:cx="13.53125"
|
||||
id="path5829"
|
||||
style="opacity:0.78242678;fill:url(#radialGradient5831);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.78242678;fill:url(#radialGradient5823);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path5815"
|
||||
sodipodi:cx="13.53125"
|
||||
sodipodi:cy="15.59375"
|
||||
sodipodi:rx="2.09375"
|
||||
sodipodi:ry="2.09375"
|
||||
d="M 15.625 15.59375 A 2.09375 2.09375 0 1 1 11.4375,15.59375 A 2.09375 2.09375 0 1 1 15.625 15.59375 z"
|
||||
transform="matrix(0.716418,0,0,0.716418,7.805969,1.328357)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,369 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="preferences-desktop-wallpaper.svg"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="svg12101"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient4853">
|
||||
<stop
|
||||
style="stop-color:#a0a0a0;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4855" />
|
||||
<stop
|
||||
style="stop-color:#696969;stop-opacity:1"
|
||||
offset="1.0000000"
|
||||
id="stop4857" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4927">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4929" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4931" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5882">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5884" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.49785408"
|
||||
offset="1"
|
||||
id="stop5886" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4999">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5001" />
|
||||
<stop
|
||||
style="stop-color:#454545;stop-opacity:0.81568629"
|
||||
offset="1"
|
||||
id="stop5003" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4991">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4993" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4995" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2110">
|
||||
<stop
|
||||
style="stop-color:#686868;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2112" />
|
||||
<stop
|
||||
style="stop-color:#2d2d2d;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2114" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient21288">
|
||||
<stop
|
||||
id="stop21290"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.71875000;" />
|
||||
<stop
|
||||
id="stop21292"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient19750">
|
||||
<stop
|
||||
id="stop19752"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.13541667;" />
|
||||
<stop
|
||||
id="stop19754"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16695">
|
||||
<stop
|
||||
id="stop16697"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#d2d2d2;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop16703"
|
||||
offset="0.50000000"
|
||||
style="stop-color:#b5b5b5;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop16699"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#e2e2e2;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient15921">
|
||||
<stop
|
||||
id="stop15923"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.69791669;" />
|
||||
<stop
|
||||
id="stop15925"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient14393">
|
||||
<stop
|
||||
id="stop14395"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#6eb1f5;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop14397"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#0570b7;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient19750"
|
||||
id="radialGradient1351"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(2.245984,0.445239)"
|
||||
cx="24.376842"
|
||||
cy="252.11171"
|
||||
fx="24.376842"
|
||||
fy="252.11171"
|
||||
r="25.267321" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15921"
|
||||
id="linearGradient2098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.364101,0,0,0.359687,2.141292,0.5214)"
|
||||
x1="2.3425686"
|
||||
y1="-6.7369881"
|
||||
x2="50.190037"
|
||||
y2="52.214569" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4853"
|
||||
id="radialGradient2101"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.354756,0,0,0.379465,1.684905,0.223181)"
|
||||
cx="31.560766"
|
||||
cy="37.778625"
|
||||
fx="31.560766"
|
||||
fy="37.778625"
|
||||
r="33.42374" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16695"
|
||||
id="linearGradient2108"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.526005,4.821718e-2,-4.571341e-2,0.49853,0.775493,-17.19677)"
|
||||
x1="39.650043"
|
||||
y1="94.938591"
|
||||
x2="37.900795"
|
||||
y2="113.51712" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2110"
|
||||
id="linearGradient2116"
|
||||
x1="59.498844"
|
||||
y1="122.69814"
|
||||
x2="67.379585"
|
||||
y2="89.817665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.385253,0,0,0.385192,-0.144115,-1.047549)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4991"
|
||||
id="linearGradient4997"
|
||||
x1="31.643028"
|
||||
y1="5.0432639"
|
||||
x2="31.643028"
|
||||
y2="40.581196"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.071217,0,0,1.071046,-0.243328,-3.081271)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4999"
|
||||
id="linearGradient5005"
|
||||
x1="27.753941"
|
||||
y1="30.145554"
|
||||
x2="9.3895664"
|
||||
y2="14.609607"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.095237,0,0,1.041667,-0.714282,-2.312497)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5882"
|
||||
id="linearGradient5888"
|
||||
x1="11.667261"
|
||||
y1="9.5510693"
|
||||
x2="11.667261"
|
||||
y2="38.191074"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.107144,0,0,1.100001,-0.589288,-3.450002)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient21288"
|
||||
id="linearGradient4050"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.894434,0,0,0.157499,-2.057989e-2,0.12712)"
|
||||
x1="20.323792"
|
||||
y1="331.23621"
|
||||
x2="37.489967"
|
||||
y2="241.84418" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4927"
|
||||
id="radialGradient4933"
|
||||
cx="22.071964"
|
||||
cy="49.223579"
|
||||
fx="22.071964"
|
||||
fy="49.223579"
|
||||
r="11.390838"
|
||||
gradientTransform="matrix(2.046119,-7.948727e-17,-4.308865e-8,0.620762,-23.08988,12.46899)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient14393"
|
||||
id="radialGradient4851"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.339332,0,0,0.364287,2.437737,0.934253)"
|
||||
cx="31.560766"
|
||||
cy="37.778625"
|
||||
fx="31.560766"
|
||||
fy="37.778625"
|
||||
r="33.42374" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="84"
|
||||
inkscape:window-x="99"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="23.753725"
|
||||
inkscape:cx="20.838596"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
borderlayer="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
transform="matrix(0.375321,0,0,0.375339,0.730063,0.314789)"
|
||||
d="M 111.5 112.25 A 56.75 11.25 0 1 1 -2,112.25 A 56.75 11.25 0 1 1 111.5 112.25 z"
|
||||
sodipodi:ry="11.25"
|
||||
sodipodi:rx="56.75"
|
||||
sodipodi:cy="112.25"
|
||||
sodipodi:cx="54.75"
|
||||
id="path18990"
|
||||
style="fill:url(#radialGradient1351);fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4050);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 29.254502,41.789805 L 36.01029,40.100783 L 44.830346,41.132963 L 48.02058,39.162437 L 19.777633,36.816561 L 29.254502,41.789805 z "
|
||||
id="path20528" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2108);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2116);stroke-width:0.72012317;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="M 25.259242,16.386591 C 25.259242,16.386591 32.108402,39.451703 29.671337,41.423251 C 28.873595,42.142748 25.722209,43.59153 22.026572,44.990433 C 15.21747,44.986138 9.7115501,44.735472 6.1377679,41.369496 L 6.2266206,39.812399 C 8.8418301,39.304284 19.150044,38.778282 19.986742,37.974719 C 21.725347,36.304959 16.99066,16.116403 16.99066,16.116403 L 25.259242,16.386591 z "
|
||||
id="path15935"
|
||||
sodipodi:nodetypes="ccccczcc" />
|
||||
<path
|
||||
style="fill:white;fill-opacity:0.6533333;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.5947052,40.137074 C 9.6142129,42.022887 14.168078,43.345941 21.988302,42.942659 L 21.87843,44.611072 C 13.515053,44.648986 9.4159386,43.708543 6.5345452,41.208634 L 6.5947052,40.137074 z "
|
||||
id="path17463"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ddd;fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.499999,8.1103555 L 34.66181,0.50212326 L 37.500002,1.1937809 L 37.500002,35.22333 L 34.66181,35.499992 L 4.499999,33.194459 L 4.499999,8.1103555 z "
|
||||
id="path12111"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.14666664;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34,1 L 34.095238,35 L 36.888888,34.77982 L 37,1.533061 L 34,1 z "
|
||||
id="path12873"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient2101);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5005);stroke-width:0.99999911;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.4999964,10.776822 L 7.4999964,29.679473 L 30.499986,30.500009 L 30.499986,5.5000019 L 7.4999964,10.776822 z "
|
||||
id="path13633"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4997);stroke-width:0.99999934px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 33.5,1.2975804 L 33.5,34.5"
|
||||
id="path4989" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5888);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.5000016,8.8866825 L 34.646345,1.5000001 L 36.500028,1.9802996 L 36.500028,34.332896 L 33.833845,34.500015 L 5.5000016,32.326093 L 5.5000016,8.8866825 z "
|
||||
id="path5007"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#radialGradient4933);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.5407377,40 C 10.498186,42.19564 16.057002,42.789911 22,43 C 24.794803,42.09742 26.266088,41.713013 27.442089,40.480065 C 28.672463,39.190112 28.260357,36.64049 28.240077,35.095301"
|
||||
id="path4052"
|
||||
sodipodi:nodetypes="ccsc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient4851);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999911;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 8,11.065746 L 8,29.212286 L 17.035853,29.52967 C 17.035853,19.59784 21.004313,19.134909 21.004313,8.0957484 L 8,11.065746 z "
|
||||
id="path3976"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2098);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8.0287365,11.136186 C 8.1282827,16.757457 7.9291903,22.378723 8.0287365,28 C 12.45143,18.997403 16.703476,10.422827 30,8.9533072 C 29.985778,7.9688714 29.971557,6.9844352 29.957338,6 C 22.548258,7.7120622 15.437817,9.4241244 8.0287365,11.136186 z "
|
||||
id="path15161"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,388 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="preferences-system-session.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5712">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.64806867"
|
||||
offset="0"
|
||||
id="stop5714" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24892704"
|
||||
offset="1"
|
||||
id="stop5716" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5702">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5704" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.39055794"
|
||||
offset="1"
|
||||
id="stop5706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5692">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.81960785"
|
||||
offset="0"
|
||||
id="stop5694" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.40784314"
|
||||
offset="1"
|
||||
id="stop5696" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4806">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.49785408"
|
||||
offset="0"
|
||||
id="stop4808" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4810" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4793">
|
||||
<stop
|
||||
style="stop-color:#f9f9f9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4795" />
|
||||
<stop
|
||||
style="stop-color:#dcdcdc;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4797" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4793"
|
||||
id="linearGradient5745"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.324116"
|
||||
y1="12.28867"
|
||||
x2="17.324116"
|
||||
y2="37.926449" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4806"
|
||||
id="linearGradient5747"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="37.504166"
|
||||
y1="21.875"
|
||||
x2="27.997295"
|
||||
y2="21.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5692"
|
||||
id="linearGradient5749"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="33.625618"
|
||||
y1="33.649742"
|
||||
x2="33.625618"
|
||||
y2="4.2131443" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5702"
|
||||
id="linearGradient5751"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.125"
|
||||
y1="1.2498183"
|
||||
x2="12.125"
|
||||
y2="44.267635" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5712"
|
||||
id="linearGradient5753"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.052632,0,-0.263158)"
|
||||
x1="21.844343"
|
||||
y1="3.5399165"
|
||||
x2="21.844343"
|
||||
y2="22.083397" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4793"
|
||||
id="linearGradient5755"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.324116"
|
||||
y1="12.28867"
|
||||
x2="17.324116"
|
||||
y2="37.926449" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4806"
|
||||
id="linearGradient5757"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="37.504166"
|
||||
y1="21.875"
|
||||
x2="27.997295"
|
||||
y2="21.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5692"
|
||||
id="linearGradient5759"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="33.625618"
|
||||
y1="33.649742"
|
||||
x2="33.625618"
|
||||
y2="4.2131443" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5702"
|
||||
id="linearGradient5761"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.125"
|
||||
y1="1.2498183"
|
||||
x2="12.125"
|
||||
y2="44.267635" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5712"
|
||||
id="linearGradient5763"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.052632,0,-0.263158)"
|
||||
x1="21.844343"
|
||||
y1="3.5399165"
|
||||
x2="21.844343"
|
||||
y2="22.083397" />
|
||||
<linearGradient
|
||||
id="linearGradient2201">
|
||||
<stop
|
||||
style="stop-color:#479214;stop-opacity:1"
|
||||
offset="0.0000000"
|
||||
id="stop2203" />
|
||||
<stop
|
||||
style="stop-color:#3ee407;stop-opacity:1"
|
||||
offset="1.0000000"
|
||||
id="stop2205" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5714"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3980"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5718"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.40772533" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7471"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7473"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7475"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient3999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.30867,-0.546081,0.534633,-0.315279,24.21209,58.86785)"
|
||||
x1="41.028126"
|
||||
y1="20.863903"
|
||||
x2="13.924223"
|
||||
y2="11.38804" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient4002"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.201268,0.350792,0.344294,-0.200025,29.42289,67.72989)"
|
||||
x1="-38.201668"
|
||||
y1="13.049702"
|
||||
x2="-79.709045"
|
||||
y2="18.544086" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5714"
|
||||
id="linearGradient4005"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.322668,0.542376,-0.558877,0.313141,38.57188,7.286801)"
|
||||
x1="8.7257576"
|
||||
y1="25.099516"
|
||||
x2="36.619328"
|
||||
y2="17.625456" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2201"
|
||||
id="linearGradient4008"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.201268,-0.350792,-0.344294,0.200025,33.42753,-1.939665)"
|
||||
x1="-93.517403"
|
||||
y1="19.253912"
|
||||
x2="-47.049515"
|
||||
y2="41.683594" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7471"
|
||||
id="radialGradient4011"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81277,0,0,0.132311,15.18723,39.99516)"
|
||||
cx="18"
|
||||
cy="43.5"
|
||||
fx="18"
|
||||
fy="43.5"
|
||||
r="17" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="29.97408"
|
||||
inkscape:cy="18.369372"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g5723"
|
||||
transform="translate(0,-3.005335)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="rect3917"
|
||||
d="M 3.0244681,9.5047192 L 30.005253,4.5053348 L 33.975528,5.4999995 C 34.266084,5.4999995 34.499996,5.6553675 34.499996,5.8483583 L 34.499996,40.15166 C 34.499996,40.344651 34.266084,40.500019 33.975528,40.500019 L 30.005253,41.51194 L 3.0244681,40.485936 C 2.7552106,40.416787 2.5000002,40.330568 2.5000002,40.137577 L 2.5000002,9.853078 C 2.5000002,9.6674571 2.7631274,9.54429 3.0244681,9.5047192 z "
|
||||
style="opacity:1;fill:url(#linearGradient5755);fill-opacity:1;stroke:#ababab;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="rect4814"
|
||||
d="M 3,9.9939417 L 29.918593,5 L 34,6.0312499 L 34,11 L 29.918593,10 L 3,14.027301 L 3,9.9939417 z "
|
||||
style="fill:#1882ba;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect4801"
|
||||
d="M 30,5 L 34,6 L 34,39.96875 L 30,41 L 30,5 z "
|
||||
style="opacity:1;fill:url(#linearGradient5757);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path4817"
|
||||
d="M 29.5,4.9375 L 29.5,41.0625"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5759);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="path5700"
|
||||
d="M 3.9916886,10.228302 L 29.551802,5.4999995 L 33.00831,6.3157305 C 33.280706,6.3938555 33.499998,6.462674 33.499998,6.6452002 L 33.499998,39.213474 C 33.499998,39.396 33.280706,39.542944 33.00831,39.542944 L 29.286177,40.499995 L 3.9916886,39.516948 C 3.7392602,39.451548 3.4999999,39.370004 3.4999999,39.187478 L 3.4999999,10.557772 C 3.4999999,10.382216 3.7466815,10.265727 3.9916886,10.228302 z "
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5761);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path5710"
|
||||
d="M 3.5080784,10.153269 L 29.645717,5 L 29.645717,26.375 C 25.129805,17.632287 6.3515792,18.597093 3,26.375 L 3,10.512351 C 3,10.321017 3.2549045,10.194058 3.5080784,10.153269 z "
|
||||
style="opacity:0.78242678;fill:url(#linearGradient5763);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g5731"
|
||||
transform="translate(10,5.98806)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="path5733"
|
||||
d="M 3.0244681,9.5047192 L 30.005253,4.5053348 L 33.975528,5.4999995 C 34.266084,5.4999995 34.499996,5.6553675 34.499996,5.8483583 L 34.499996,40.15166 C 34.499996,40.344651 34.266084,40.500019 33.975528,40.500019 L 30.005253,41.51194 L 3.0244681,38.500019 C 2.7552106,38.43087 2.5000002,38.344651 2.5000002,38.15166 L 2.5000002,9.853078 C 2.5000002,9.6674571 2.7631274,9.54429 3.0244681,9.5047192 z "
|
||||
style="opacity:1;fill:url(#linearGradient5745);fill-opacity:1;stroke:#ababab;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path5735"
|
||||
d="M 3,9.9939417 L 29.918593,5 L 34,6.0312499 L 34,11 L 29.918593,10 L 3,14.027301 L 3,9.9939417 z "
|
||||
style="fill:#1882ba;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5737"
|
||||
d="M 30,5 L 34,6 L 34,39.96875 L 30,41 L 30,5 z "
|
||||
style="opacity:1;fill:url(#linearGradient5747);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path5739"
|
||||
d="M 29.5,4.9375 L 29.5,41.0625"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5749);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="path5741"
|
||||
d="M 3.9916886,10.228302 L 29.551802,5.4999995 L 33.00831,6.3157305 C 33.280706,6.3938555 33.499998,6.462674 33.499998,6.6452002 L 33.499998,39.213474 C 33.499998,39.396 33.280706,39.542944 33.00831,39.542944 L 29.286177,40.499995 L 3.9916886,37.65139 C 3.7392602,37.58599 3.4999999,37.504446 3.4999999,37.32192 L 3.4999999,10.557772 C 3.4999999,10.382216 3.7466815,10.265727 3.9916886,10.228302 z "
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5751);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path5743"
|
||||
d="M 3.5080784,10.153269 L 29.645717,5 L 29.645717,26.375 C 25.129805,17.632287 6.3515792,18.597093 3,26.375 L 3,10.512351 C 3,10.321017 3.2549045,10.194058 3.5080784,10.153269 z "
|
||||
style="opacity:0.78242678;fill:url(#linearGradient5753);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="opacity:0.1;fill:url(#radialGradient4011);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 43.634208,45.750712 C 43.634208,46.992323 37.444145,48.000008 29.817104,48.000008 C 22.190063,48.000008 16,46.992323 16,45.750712 C 16,44.509101 22.190063,43.501416 29.817104,43.501416 C 37.444145,43.501416 43.634208,44.509101 43.634208,45.750712 z "
|
||||
id="path6595" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4008);fill-opacity:1;fill-rule:evenodd;stroke:#397814;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 43.115598,36.748573 C 43.625535,31.969973 44.085329,27.103974 44.595265,22.325373 C 43.320934,23.104699 41.645271,24.000264 40.370941,24.77959 C 32.836126,15.04747 20.976119,19.985322 18.252227,28.128803 C 24.759198,19.583656 32.113158,24.70502 34.12362,28.409112 C 32.935364,29.138432 31.064959,30.147135 29.876701,30.876456 C 34.289727,32.83393 38.702574,34.791098 43.115598,36.748573 z "
|
||||
id="path1381"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4005);stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 42.323841,35.499975 L 43.329778,24.277836 L 40.195802,25.959423 C 32.590594,16.773775 23.390647,20.330093 20.414887,25.308544 C 26.361151,20.351993 33.282365,24.165483 35.397541,28.450541 L 32.04671,30.665773 L 42.323841,35.499975 z "
|
||||
id="path4839"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4002);fill-opacity:1;fill-rule:evenodd;stroke:#397814;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.73482,29.041656 C 19.224882,33.820256 18.765089,38.686255 18.255153,43.464856 C 19.529483,42.68553 21.205147,41.789965 22.479477,41.010639 C 30.014292,50.74276 41.874298,45.804907 44.598191,37.661426 C 38.09122,46.206574 30.73726,41.085209 28.726798,37.381117 C 29.915054,36.651797 31.785459,35.643094 32.973717,34.913774 C 28.560691,32.956299 24.147843,30.999132 19.73482,29.041656 z "
|
||||
id="path3938"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3999);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.578566,30.585128 L 19.585109,41.706997 L 23.021045,39.680782 C 28.175426,48.748801 39.111722,45.290719 41.925541,41.167373 C 36.349614,46.115306 29.689101,41.079378 27.344762,37.000112 L 30.98157,34.940547 L 20.578566,30.585128 z "
|
||||
id="path3940"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,278 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
version="1.0"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/apps"
|
||||
sodipodi:docname="preferences-system-windows.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5712">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.64806867"
|
||||
offset="0"
|
||||
id="stop5714" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.24892704"
|
||||
offset="1"
|
||||
id="stop5716" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5702">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5704" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.39055794"
|
||||
offset="1"
|
||||
id="stop5706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5692">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.81960785"
|
||||
offset="0"
|
||||
id="stop5694" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.40784314"
|
||||
offset="1"
|
||||
id="stop5696" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4806">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.49785408"
|
||||
offset="0"
|
||||
id="stop4808" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4810" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4793">
|
||||
<stop
|
||||
style="stop-color:#f9f9f9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4795" />
|
||||
<stop
|
||||
style="stop-color:#dcdcdc;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4797" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4793"
|
||||
id="linearGradient5745"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.324116"
|
||||
y1="12.28867"
|
||||
x2="17.324116"
|
||||
y2="37.926449" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4806"
|
||||
id="linearGradient5747"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="37.504166"
|
||||
y1="21.875"
|
||||
x2="27.997295"
|
||||
y2="21.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5692"
|
||||
id="linearGradient5749"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="33.625618"
|
||||
y1="33.649742"
|
||||
x2="33.625618"
|
||||
y2="4.2131443" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5702"
|
||||
id="linearGradient5751"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.125"
|
||||
y1="1.2498183"
|
||||
x2="12.125"
|
||||
y2="44.267635" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5712"
|
||||
id="linearGradient5753"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.052632,0,-0.263158)"
|
||||
x1="21.844343"
|
||||
y1="3.5399165"
|
||||
x2="21.844343"
|
||||
y2="22.083397" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4793"
|
||||
id="linearGradient5755"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.324116"
|
||||
y1="12.28867"
|
||||
x2="17.324116"
|
||||
y2="37.926449" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4806"
|
||||
id="linearGradient5757"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="37.504166"
|
||||
y1="21.875"
|
||||
x2="27.997295"
|
||||
y2="21.875" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5692"
|
||||
id="linearGradient5759"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="33.625618"
|
||||
y1="33.649742"
|
||||
x2="33.625618"
|
||||
y2="4.2131443" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5702"
|
||||
id="linearGradient5761"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.125"
|
||||
y1="1.2498183"
|
||||
x2="12.125"
|
||||
y2="44.267635" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5712"
|
||||
id="linearGradient5763"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.052632,0,-0.263158)"
|
||||
x1="21.844343"
|
||||
y1="3.5399165"
|
||||
x2="21.844343"
|
||||
y2="22.083397" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Capa 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g5723"
|
||||
transform="translate(0,-3.005335)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="rect3917"
|
||||
d="M 3.0244681,9.5047192 L 30.005253,4.5053348 L 33.975528,5.4999995 C 34.266084,5.4999995 34.499996,5.6553675 34.499996,5.8483583 L 34.499996,40.15166 C 34.499996,40.344651 34.266084,40.500019 33.975528,40.500019 L 30.005253,41.51194 L 3.0244681,40.485936 C 2.7552106,40.416787 2.5000002,40.330568 2.5000002,40.137577 L 2.5000002,9.853078 C 2.5000002,9.6674571 2.7631274,9.54429 3.0244681,9.5047192 z "
|
||||
style="opacity:1;fill:url(#linearGradient5755);fill-opacity:1;stroke:#ababab;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="rect4814"
|
||||
d="M 3,9.9939417 L 29.918593,5 L 34,6.0312499 L 34,11 L 29.918593,10 L 3,14.027301 L 3,9.9939417 z "
|
||||
style="fill:#1882ba;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect4801"
|
||||
d="M 30,5 L 34,6 L 34,39.96875 L 30,41 L 30,5 z "
|
||||
style="opacity:1;fill:url(#linearGradient5757);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path4817"
|
||||
d="M 29.5,4.9375 L 29.5,41.0625"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5759);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="path5700"
|
||||
d="M 3.9916886,10.228302 L 29.551802,5.4999995 L 33.00831,6.3157305 C 33.280706,6.3938555 33.499998,6.462674 33.499998,6.6452002 L 33.499998,39.213474 C 33.499998,39.396 33.280706,39.542944 33.00831,39.542944 L 29.286177,40.499995 L 3.9916886,39.516948 C 3.7392602,39.451548 3.4999999,39.370004 3.4999999,39.187478 L 3.4999999,10.557772 C 3.4999999,10.382216 3.7466815,10.265727 3.9916886,10.228302 z "
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5761);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path5710"
|
||||
d="M 3.5080784,10.153269 L 29.645717,5 L 29.645717,26.375 C 25.129805,17.632287 6.3515792,18.597093 3,26.375 L 3,10.512351 C 3,10.321017 3.2549045,10.194058 3.5080784,10.153269 z "
|
||||
style="opacity:0.78242678;fill:url(#linearGradient5763);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g5731"
|
||||
transform="translate(10,5.98806)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="path5733"
|
||||
d="M 3.0244681,9.5047192 L 30.005253,4.5053348 L 33.975528,5.4999995 C 34.266084,5.4999995 34.499996,5.6553675 34.499996,5.8483583 L 34.499996,40.15166 C 34.499996,40.344651 34.266084,40.500019 33.975528,40.500019 L 30.005253,41.51194 L 3.0244681,38.500019 C 2.7552106,38.43087 2.5000002,38.344651 2.5000002,38.15166 L 2.5000002,9.853078 C 2.5000002,9.6674571 2.7631274,9.54429 3.0244681,9.5047192 z "
|
||||
style="opacity:1;fill:url(#linearGradient5745);fill-opacity:1;stroke:#ababab;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path5735"
|
||||
d="M 3,9.9939417 L 29.918593,5 L 34,6.0312499 L 34,11 L 29.918593,10 L 3,14.027301 L 3,9.9939417 z "
|
||||
style="fill:#1882ba;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5737"
|
||||
d="M 30,5 L 34,6 L 34,39.96875 L 30,41 L 30,5 z "
|
||||
style="opacity:1;fill:url(#linearGradient5747);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path5739"
|
||||
d="M 29.5,4.9375 L 29.5,41.0625"
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5749);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="path5741"
|
||||
d="M 3.9916886,10.228302 L 29.551802,5.4999995 L 33.00831,6.3157305 C 33.280706,6.3938555 33.499998,6.462674 33.499998,6.6452002 L 33.499998,39.213474 C 33.499998,39.396 33.280706,39.542944 33.00831,39.542944 L 29.286177,40.499995 L 3.9916886,37.65139 C 3.7392602,37.58599 3.4999999,37.504446 3.4999999,37.32192 L 3.4999999,10.557772 C 3.4999999,10.382216 3.7466815,10.265727 3.9916886,10.228302 z "
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5751);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path5743"
|
||||
d="M 3.5080784,10.153269 L 29.645717,5 L 29.645717,26.375 C 25.129805,17.632287 6.3515792,18.597093 3,26.375 L 3,10.512351 C 3,10.321017 3.2549045,10.194058 3.5080784,10.153269 z "
|
||||
style="opacity:0.78242678;fill:url(#linearGradient5753);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,565 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg14"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="preferences-user-information.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient4925">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4927" />
|
||||
<stop
|
||||
id="stop4933"
|
||||
offset="0.5"
|
||||
style="stop-color:#f3f3f3;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4929" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient26840">
|
||||
<stop
|
||||
style="stop-color:#dd1a1a;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop26842" />
|
||||
<stop
|
||||
style="stop-color:#810f0f;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop26844" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient22429">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop22431" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop22433" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient21548">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop21550" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop21552" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient18874">
|
||||
<stop
|
||||
style="stop-color:#ddd;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop18876" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop18878" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient12737">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop12739" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop12741" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient10098">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop10100" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.3004292"
|
||||
offset="1"
|
||||
id="stop10102" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8342">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8344" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop8346" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4832">
|
||||
<stop
|
||||
style="stop-color:#fffdf5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4834" />
|
||||
<stop
|
||||
id="stop4840"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffe16f;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#c4a600;stop-opacity:1;"
|
||||
offset="0.75"
|
||||
id="stop4842" />
|
||||
<stop
|
||||
style="stop-color:#aa9000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4836" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4832"
|
||||
id="radialGradient33236"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.166794,1.633432e-16,-1.633432e-16,1.166794,-14.1775,-2.918896)"
|
||||
cx="83.051956"
|
||||
cy="15.584253"
|
||||
fx="83.051956"
|
||||
fy="15.584253"
|
||||
r="21.75" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8342"
|
||||
id="linearGradient33238"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="85.622726"
|
||||
y1="-5.7974238"
|
||||
x2="85.622726"
|
||||
y2="45.035698" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10098"
|
||||
id="linearGradient33240"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="75.860703"
|
||||
y1="-0.11439113"
|
||||
x2="87.538048"
|
||||
y2="43.466064" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12737"
|
||||
id="linearGradient33242"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="82.341637"
|
||||
y1="22.807331"
|
||||
x2="75.412285"
|
||||
y2="18.754719" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient18874"
|
||||
id="radialGradient33246"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.44898,7.63278e-15,-9.723214)"
|
||||
cx="97.03125"
|
||||
cy="21.656244"
|
||||
fx="97.03125"
|
||||
fy="20.5779"
|
||||
r="1.53125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12737"
|
||||
id="linearGradient33248"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="82.341637"
|
||||
y1="22.807331"
|
||||
x2="75.412285"
|
||||
y2="18.754719" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4925"
|
||||
id="radialGradient33250"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.134321,-0.269128,0.271418,0.699749,-15.12345,27.06597)"
|
||||
cx="76.159027"
|
||||
cy="17.322357"
|
||||
fx="76.159027"
|
||||
fy="17.322357"
|
||||
r="6" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient18874"
|
||||
id="radialGradient33252"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-0.759933,0.680865,1.213188,-14.74497,69.12039)"
|
||||
cx="97.03125"
|
||||
cy="21.656244"
|
||||
fx="97.03125"
|
||||
fy="20.5779"
|
||||
r="1.53125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient22429"
|
||||
id="linearGradient33254"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.015559,0,0,1.034986,69.18036,-75.72993)"
|
||||
x1="89.283569"
|
||||
y1="30.661186"
|
||||
x2="89.283569"
|
||||
y2="42.931355" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient21548"
|
||||
id="linearGradient33256"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.015559,0,0,1.034986,69.18036,-75.72993)"
|
||||
x1="91"
|
||||
y1="41.25"
|
||||
x2="88.553329"
|
||||
y2="32.118896" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient26840"
|
||||
id="linearGradient33258"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.973765,0,0,0.978911,73.26829,-73.92407)"
|
||||
x1="88.379189"
|
||||
y1="41.421585"
|
||||
x2="88.379189"
|
||||
y2="36.394733" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4925"
|
||||
id="radialGradient4931"
|
||||
cx="76.34375"
|
||||
cy="18.108305"
|
||||
fx="76.34375"
|
||||
fy="18.108305"
|
||||
r="6"
|
||||
gradientTransform="matrix(1.25531,2.096951e-16,-4.959457e-16,0.640731,-19.4913,7.401295)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.389815,0,0,0.382452,0.794009,-1.303191)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="63.299728"
|
||||
x2="66.135506"
|
||||
y1="63.299728"
|
||||
x1="109.38406"
|
||||
id="linearGradient7758"
|
||||
xlink:href="#linearGradient7752"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.378285,0,0,0.378285,-0.189143,-0.32181)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="86.99852"
|
||||
x2="111.17001"
|
||||
y1="141.30928"
|
||||
x1="17.101027"
|
||||
id="linearGradient6002"
|
||||
xlink:href="#linearGradient5996"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="57.5"
|
||||
fy="145.41862"
|
||||
fx="50.669872"
|
||||
cy="114"
|
||||
cx="52.5"
|
||||
gradientTransform="matrix(0.34868,0,0,7.72303e-2,1.743401,34.75497)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient5113"
|
||||
xlink:href="#linearGradient5104"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(0.436271,0,0,0.449042,-2.145851,-1.924111)"
|
||||
r="49.918098"
|
||||
fy="76.752853"
|
||||
fx="67.655052"
|
||||
cy="76.752853"
|
||||
cx="67.655052"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient4227"
|
||||
xlink:href="#linearGradient4176"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.433809,0,0,0.300491,-7.155256,0.300831)"
|
||||
r="32.085793"
|
||||
fy="33.755856"
|
||||
fx="62.970509"
|
||||
cy="48.729244"
|
||||
cx="62.970509"
|
||||
id="radialGradient4203"
|
||||
xlink:href="#linearGradient4197"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.35422,0,0,0.400817,5.540209e-2,-2.57936)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="98.832764"
|
||||
x2="57.994637"
|
||||
y1="3.4719357"
|
||||
x1="75.787148"
|
||||
id="linearGradient4193"
|
||||
xlink:href="#linearGradient4187"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4176">
|
||||
<stop
|
||||
id="stop4178"
|
||||
offset="0"
|
||||
style="stop-color:#51a0f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4180"
|
||||
offset="1"
|
||||
style="stop-color:#0363d0;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4187"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4189"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4191"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.27843139" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4197"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4199"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4201"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5104"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5106"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5108"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5996"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5998"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.19313304" />
|
||||
<stop
|
||||
id="stop6000"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7752"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop7754"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.36909872" />
|
||||
<stop
|
||||
id="stop7756"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="29.407252"
|
||||
inkscape:cy="16.101795"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g28659"
|
||||
inkscape:window-width="843"
|
||||
inkscape:window-height="556"
|
||||
inkscape:window-x="58"
|
||||
inkscape:window-y="35"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(1.093438,0,0,1.097101,-152.7469,80.38981)"
|
||||
id="g28659">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#radialGradient33236);fill-opacity:1;stroke:#8e7d00;stroke-width:0.9052462;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path28661"
|
||||
sodipodi:cx="87.875"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:ry="21.25"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
transform="matrix(1.010391,0,0,1.006783,72.86611,-75.16977)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#linearGradient33238);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path28663"
|
||||
sodipodi:cx="87.875"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:ry="21.25"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
transform="matrix(0.774675,0,0,0.502062,93.56871,-72.64417)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient33240);stroke-width:0.94444394;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path28665"
|
||||
sodipodi:cx="87.875"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:ry="21.25"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
transform="matrix(0.968344,0,0,0.96511,76.55007,-74.19966)" />
|
||||
<g
|
||||
id="g28667"
|
||||
transform="matrix(1.025552,0,0,0.992162,65.40017,-77.8893)">
|
||||
<path
|
||||
transform="matrix(1.185096,0,0,2.55102,3.773128,-29.67347)"
|
||||
d="M 83.875 19.9375 A 6 3.0625 0 1 1 71.875,19.9375 A 6 3.0625 0 1 1 83.875 19.9375 z"
|
||||
sodipodi:ry="3.0625"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:cy="19.9375"
|
||||
sodipodi:cx="77.875"
|
||||
id="path28669"
|
||||
style="opacity:0.66527201;fill:black;fill-opacity:0.79399139;stroke:url(#linearGradient33242);stroke-width:0.52056599;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.080929,0,0,2.326792,11.88511,-25.20293)"
|
||||
style="fill:url(#radialGradient4931);fill-opacity:1;stroke:none;stroke-width:0.57513034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 83.875,19.9375 C 83.875,21.628 81.187,23 77.875,23 C 74.563,23 71.875,21.628 71.875,19.9375 C 71.875,18.247 74.563,16.875 77.875,16.875 C 81.187,16.875 83.875,18.247 83.875,19.9375 z "
|
||||
id="path28671" />
|
||||
<path
|
||||
transform="matrix(1.747121,0,0,1.449207,-75.68016,-8.818866)"
|
||||
d="M 98.5625 21.65625 A 1.53125 2.21875 0 1 1 95.5,21.65625 A 1.53125 2.21875 0 1 1 98.5625 21.65625 z"
|
||||
sodipodi:ry="2.21875"
|
||||
sodipodi:rx="1.53125"
|
||||
sodipodi:cy="21.65625"
|
||||
sodipodi:cx="97.03125"
|
||||
id="path28673"
|
||||
style="opacity:1;fill:url(#radialGradient33246);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="g28675"
|
||||
transform="matrix(0.824707,0,0,1.473778,78.89392,-85.8107)">
|
||||
<path
|
||||
transform="matrix(1.185096,0,0,1.515268,-12.91437,-9.335655)"
|
||||
style="opacity:0.66527201;fill:black;fill-opacity:0.79399139;stroke:url(#linearGradient33248);stroke-width:0.61800539;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 83.875,19.9375 C 83.875,21.628 81.187,23 77.875,23 C 76.220509,23 73.617112,22.799384 73.60083,21.885817 C 73.598575,21.75926 73.598253,21.635046 73.599969,21.513043 C 74.130782,21.571138 75.22073,18.599435 74.696801,17.882889 C 74.839131,17.689249 74.997277,17.498679 75.172348,17.309778 C 75.622549,16.824012 76.89588,16.875 77.875,16.875 C 81.187,16.875 83.875,18.247 83.875,19.9375 z "
|
||||
id="path28677"
|
||||
sodipodi:nodetypes="cssccssc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient33250);fill-opacity:1;stroke:none;stroke-width:0.57513034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 83.875,19.9375 C 83.875,21.628 81.187,23 77.875,23 C 76.144565,23 73.445601,22.712646 73.489089,21.764069 C 72.913112,20.085941 73.752281,18.315767 75.067938,17.35527 C 75.685082,16.904724 76.861096,16.875 77.875,16.875 C 81.187,16.875 83.875,18.247 83.875,19.9375 z "
|
||||
id="path28679"
|
||||
sodipodi:nodetypes="cscssc"
|
||||
transform="matrix(1.080929,0,0,1.38208,-4.80239,-6.680221)" />
|
||||
<path
|
||||
transform="matrix(1.810516,0,0,0.836246,-93.63618,2.765509)"
|
||||
d="M 98.5625 21.65625 A 1.53125 2.21875 0 1 1 95.5,21.65625 A 1.53125 2.21875 0 1 1 98.5625 21.65625 z"
|
||||
sodipodi:ry="2.21875"
|
||||
sodipodi:rx="1.53125"
|
||||
sodipodi:cy="21.65625"
|
||||
sodipodi:cx="97.03125"
|
||||
id="path28681"
|
||||
style="fill:url(#radialGradient33252);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient33254);fill-opacity:1;stroke:url(#linearGradient33256);stroke-width:0.91301847;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 170.35542,-39.602439 C 170.35542,-36.835146 165.02374,-32.713314 158.45434,-32.713314 C 151.88494,-32.713314 146.55326,-36.835146 146.55326,-39.602439 C 146.55326,-42.369733 151.88494,-42.739741 158.45434,-42.739741 C 165.02374,-42.739741 170.35542,-42.369733 170.35542,-39.602439 z "
|
||||
id="path28683"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient33258);fill-opacity:1;stroke:#811111;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 154.882,-39.050335 C 152.04348,-39.050335 151.16953,-37.763308 151.16953,-36.14419 C 151.16953,-28.076046 165.71514,-28.075622 165.71514,-35.593552 C 165.71514,-37.197151 164.66069,-39.050335 161.08976,-39.050335 C 159.17761,-39.050335 158.66579,-37.890217 157.95546,-37.520783 C 157.24511,-37.890217 156.7525,-39.050335 154.882,-39.050335 z "
|
||||
id="path28685"
|
||||
sodipodi:nodetypes="cssscc" />
|
||||
<g
|
||||
id="g5817"
|
||||
inkscape:label="Capa 1"
|
||||
transform="matrix(0.537582,0,0,0.541449,157.7884,-55.51264)">
|
||||
<path
|
||||
id="path5119"
|
||||
d="M 47.144342,41.66428 C 43.957506,44.41418 32.792911,46.64597 22.22338,46.64597 C 11.65385,46.64597 5.6621049,44.41418 8.8489433,41.66428 C 12.035786,38.91439 23.200376,36.68259 33.769906,36.68259 C 44.339437,36.68259 50.331186,38.91439 47.144342,41.66428 z "
|
||||
style="fill:url(#linearGradient6002);fill-opacity:1;stroke:none;stroke-width:3.00000095;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path4229"
|
||||
d="M 40.098219,43.55926 C 40.098219,46.01055 31.116218,48 20.049109,48 C 8.9820009,48 0,46.01055 0,43.55926 C 0,41.10797 8.9820009,39.11852 20.049109,39.11852 C 31.116218,39.11852 40.098219,41.10797 40.098219,43.55926 z "
|
||||
style="opacity:0.43096236;fill:url(#radialGradient5113);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3305"
|
||||
d="M 43.666007,25.273649 C 43.666007,37.309698 34.175467,47.078081 22.481767,47.078081 C 10.788066,47.078081 1.2975254,37.309698 1.2975254,25.273649 C 1.2975254,13.237602 10.788066,3.4692132 22.481767,3.4692132 C 34.175467,3.4692132 43.666007,13.237602 43.666007,25.273649 z "
|
||||
style="fill:url(#radialGradient4227);fill-opacity:1;stroke:#04448c;stroke-width:1.85352588;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path6877"
|
||||
d="M 40.907885,25.273643 C 40.907885,35.871543 32.624928,44.472735 22.419139,44.472735 C 12.213351,44.472735 3.930392,35.871543 3.930392,25.273643 C 3.930392,14.675741 12.213351,6.0745457 22.419139,6.0745457 C 32.624928,6.0745457 40.907885,14.675741 40.907885,25.273643 z "
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient7758);stroke-width:3.70704985;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path4185"
|
||||
d="M 38.562358,25.273659 C 38.562358,36.380455 30.596109,45.394664 20.780553,45.394664 C 10.964996,45.394664 2.9987471,36.380455 2.9987471,25.273659 C 2.9987471,14.166857 10.964996,5.152646 20.780553,5.152646 C 30.596109,5.152646 38.562358,14.166857 38.562358,25.273659 z "
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient4193);stroke-width:1.85352635;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
id="path4195"
|
||||
d="M 34.080965,14.943501 C 34.080965,20.265598 27.845215,24.584983 20.16188,24.584983 C 12.478543,24.584983 6.2427932,20.265598 6.2427932,14.943501 C 6.2427932,9.6214045 12.478543,5.302023 20.16188,5.302023 C 27.845215,5.302023 34.080965,9.6214045 34.080965,14.943501 z "
|
||||
style="opacity:0.5690377;fill:url(#radialGradient4203);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.27843137" />
|
||||
<path
|
||||
id="text4205"
|
||||
d="M 25.35154,36.465211 L 24.955564,38.196745 C 23.767631,38.696962 22.819695,39.075335 22.111753,39.331858 C 21.403789,39.601205 20.581846,39.73588 19.645914,39.73588 C 18.206003,39.73588 17.084078,39.363924 16.280135,38.620008 C 15.488186,37.863265 15.092209,36.907716 15.092213,35.753361 C 15.092209,35.304448 15.122209,34.849121 15.182206,34.387375 C 15.242201,33.912812 15.338195,33.380527 15.470187,32.790518 L 16.946092,27.172662 C 17.07808,26.633976 17.186071,26.127342 17.270071,25.652762 C 17.366058,25.165382 17.414055,24.722879 17.414062,24.325253 C 17.414055,23.607005 17.276064,23.106786 17.000089,22.824594 C 16.724103,22.542434 16.196138,22.401347 15.416194,22.401331 C 15.032215,22.401347 14.636242,22.465478 14.22827,22.593723 C 13.832296,22.722 13.490317,22.84385 13.202336,22.959268 L 13.598313,21.227737 C 14.570244,20.804494 15.500182,20.445362 16.388129,20.150341 C 17.276064,19.842531 18.11601,19.688619 18.907962,19.688599 C 20.33586,19.688619 21.433789,20.060575 22.201748,20.804474 C 22.981683,21.535584 23.371658,22.49113 23.37167,23.671121 C 23.371658,23.914832 23.34166,24.344509 23.281672,24.960149 C 23.233668,25.575819 23.137674,26.140167 22.993691,26.653202 L 21.517789,32.251818 C 21.397789,32.700741 21.289797,33.213787 21.193812,33.790958 C 21.09781,34.368139 21.049813,34.804228 21.04982,35.099226 C 21.049813,35.843146 21.205801,36.349779 21.517789,36.619125 C 21.82976,36.888477 22.369724,37.023151 23.137682,37.023149 C 23.497651,37.023151 23.905621,36.959022 24.361602,36.830757 C 24.817562,36.689671 25.14754,36.567823 25.35154,36.465211 M 25.729514,12.974104 C 25.729498,13.948919 25.381522,14.782618 24.68558,15.475205 C 24.001614,16.155015 23.173668,16.494907 22.201748,16.494886 C 21.229799,16.494907 20.395858,16.155015 19.699911,15.475205 C 19.003948,14.782618 18.655972,13.948919 18.65598,12.974104 C 18.655972,11.999344 19.003948,11.165645 19.699911,10.473005 C 20.395858,9.780422 21.229799,9.4341164 22.201748,9.4340858 C 23.173668,9.4341164 24.001614,9.780422 24.68558,10.473005 C 25.381522,11.165645 25.729498,11.999344 25.729514,12.974104"
|
||||
style="font-size:95.01869965px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Georgia" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 25 KiB |
767
datas/icon-themes/edeneu/scalable/apps/sound-juicer.svg
Normal file
@@ -0,0 +1,767 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="sound-juicer.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient5974"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5976"
|
||||
offset="0"
|
||||
style="stop-color:#7f7f7f;stop-opacity:0.627451" />
|
||||
<stop
|
||||
id="stop5978"
|
||||
offset="1"
|
||||
style="stop-color:#7f7f7f;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5968"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5970"
|
||||
offset="0"
|
||||
style="stop-color:#8e8e8e;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop5972"
|
||||
offset="1"
|
||||
style="stop-color:#a0a0a0;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4836">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4838" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.58823532"
|
||||
offset="1"
|
||||
id="stop4840" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8655">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.30208334;"
|
||||
offset="0.0000000"
|
||||
id="stop8657" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop8659" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7917">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.16666669;"
|
||||
offset="0.0000000"
|
||||
id="stop7919" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7921" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6455">
|
||||
<stop
|
||||
style="stop-color:#f1f1f1;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6457" />
|
||||
<stop
|
||||
style="stop-color:#cecece;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop6459" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5703">
|
||||
<stop
|
||||
id="stop5705"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.83333325;" />
|
||||
<stop
|
||||
id="stop5707"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5691">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.83333325;"
|
||||
offset="0.0000000"
|
||||
id="stop5693" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000"
|
||||
offset="1"
|
||||
id="stop5695" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5691"
|
||||
id="linearGradient5697"
|
||||
x1="31.114616"
|
||||
y1="33.89996"
|
||||
x2="48.388142"
|
||||
y2="61.223637"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.421923,0,0,0.437354,-1.266044,-4.270551)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5703"
|
||||
id="linearGradient5723"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="59.902058"
|
||||
y1="95.622185"
|
||||
x2="33.750458"
|
||||
y2="78.300934"
|
||||
gradientTransform="matrix(0.42539,0,0,0.416527,-0.5394,-2.924339)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6455"
|
||||
id="linearGradient6461"
|
||||
x1="21.100939"
|
||||
y1="33.477123"
|
||||
x2="54.294334"
|
||||
y2="75.682442"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4487,0,0,0.446559,-1.827632,-5.393746)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7917"
|
||||
id="radialGradient7923"
|
||||
cx="51.231888"
|
||||
cy="110.19082"
|
||||
fx="51.231888"
|
||||
fy="110.19082"
|
||||
r="48.06039"
|
||||
gradientTransform="matrix(1,0,0,0.228426,5.880713e-16,85.02033)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8655"
|
||||
id="linearGradient8661"
|
||||
x1="59.867424"
|
||||
y1="177.41431"
|
||||
x2="86.77282"
|
||||
y2="84.96209"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.383382,0,0,0.470667,2.012779,-7.988872)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5974"
|
||||
id="linearGradient4834"
|
||||
x1="100.05664"
|
||||
y1="65.067497"
|
||||
x2="24.326601"
|
||||
y2="65.067497"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.446388,0,0,0.441471,-2.379523,-5.064504)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4836"
|
||||
id="linearGradient4842"
|
||||
x1="38.183765"
|
||||
y1="21.226875"
|
||||
x2="59.657269"
|
||||
y2="101.36707"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.452495,0,0,0.445896,-2.9217,-5.073736)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5968"
|
||||
id="linearGradient5724"
|
||||
x1="99.25"
|
||||
y1="65.5"
|
||||
x2="43.49057"
|
||||
y2="65.5"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4487,0,0,0.446559,-2.725032,-5.393746)" />
|
||||
<linearGradient
|
||||
id="linearGradient2447">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop2449" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2451" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2423">
|
||||
<stop
|
||||
id="stop2425"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop2427"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2403">
|
||||
<stop
|
||||
id="stop2405"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#aadf00;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop2409"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#4dc721;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2383">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop2385" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2389" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2423"
|
||||
id="linearGradient5084"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.242052,0,0,0.251733,-1.018195,0.167528)"
|
||||
x1="147.57317"
|
||||
y1="108.61332"
|
||||
x2="161.74821"
|
||||
y2="84.142044" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2447"
|
||||
id="linearGradient5087"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.242052,0,0,0.273368,-13.01817,3.337079e-2)"
|
||||
x1="147.57317"
|
||||
y1="108.61332"
|
||||
x2="161.74821"
|
||||
y2="84.142044" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2383"
|
||||
id="linearGradient5090"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.330411,0,0,0.16975,-9.899978,1.863624)"
|
||||
x1="130.02267"
|
||||
y1="21.914911"
|
||||
x2="132.50201"
|
||||
y2="46.608990" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2403"
|
||||
id="linearGradient5093"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.217381,0,0,0.261948,-10.57598,2.021886)"
|
||||
x1="206.98412"
|
||||
y1="15.598222"
|
||||
x2="177.10718"
|
||||
y2="81.863159" />
|
||||
<linearGradient
|
||||
id="linearGradient2773">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop2775" />
|
||||
<stop
|
||||
id="stop1465"
|
||||
offset="0.83333331"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2777" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2763">
|
||||
<stop
|
||||
style="stop-color:#f57900;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2765" />
|
||||
<stop
|
||||
style="stop-color:#f57900;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2767" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2662">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2664" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2666" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2654">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2656" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2658" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2646">
|
||||
<stop
|
||||
style="stop-color:#fcaf3e;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2648" />
|
||||
<stop
|
||||
style="stop-color:#fcaf3e;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2650" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2530">
|
||||
<stop
|
||||
style="stop-color:#fed393;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2532" />
|
||||
<stop
|
||||
style="stop-color:#fed393;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2534" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2522">
|
||||
<stop
|
||||
style="stop-color:#bb5300;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2524" />
|
||||
<stop
|
||||
style="stop-color:#ce5c00;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2526" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient2652"
|
||||
x1="21.436686"
|
||||
y1="13.453218"
|
||||
x2="21.436686"
|
||||
y2="25.460827"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.531581,7.180463)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient2668"
|
||||
x1="19.659914"
|
||||
y1="19.958755"
|
||||
x2="19.659914"
|
||||
y2="23.501108"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.965926,-0.258819,0.258819,0.965926,-5.531581,7.180463)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2530"
|
||||
id="linearGradient4367"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.997609,3.888502e-4,3.888654e-4,0.997258,0.27439,-0.98496)"
|
||||
x1="23.289394"
|
||||
y1="18.364347"
|
||||
x2="23.560387"
|
||||
y2="20.904043" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2522"
|
||||
id="linearGradient4369"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.997609,3.888502e-4,3.888654e-4,0.997258,0.27439,-0.98496)"
|
||||
x1="25.068272"
|
||||
y1="24.253113"
|
||||
x2="25.001196"
|
||||
y2="29.901463" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient4371"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="28.685675"
|
||||
y1="13.20891"
|
||||
x2="24.875528"
|
||||
y2="20.703079" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient4373"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="25.592447"
|
||||
y1="16.583702"
|
||||
x2="25.085266"
|
||||
y2="19.677641" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient4375"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="21.436686"
|
||||
y1="13.453218"
|
||||
x2="21.436686"
|
||||
y2="25.460827" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient4377"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="19.659914"
|
||||
y1="19.958755"
|
||||
x2="19.659914"
|
||||
y2="23.501108" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient4379"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="32.415615"
|
||||
y1="15.366133"
|
||||
x2="27.183016"
|
||||
y2="22.061451" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient4381"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="30.893356"
|
||||
y1="19.400782"
|
||||
x2="28.31155"
|
||||
y2="21.643337" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient4383"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="21.436686"
|
||||
y1="13.453218"
|
||||
x2="21.436686"
|
||||
y2="25.460827" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient4385"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="19.659914"
|
||||
y1="19.958755"
|
||||
x2="19.659914"
|
||||
y2="23.501108" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient4387"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="35.611439"
|
||||
y1="19.649118"
|
||||
x2="30.817972"
|
||||
y2="25.035822" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient4389"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="32.68705"
|
||||
y1="19.639395"
|
||||
x2="30.000105"
|
||||
y2="23.002033" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient4391"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="21.436686"
|
||||
y1="13.453218"
|
||||
x2="21.143581"
|
||||
y2="22.364006" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient4393"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="19.659914"
|
||||
y1="19.958755"
|
||||
x2="19.975048"
|
||||
y2="22.18712" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient4395"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="21.436686"
|
||||
y1="13.453218"
|
||||
x2="21.436686"
|
||||
y2="25.460827" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient4397"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="19.659914"
|
||||
y1="19.958755"
|
||||
x2="19.659914"
|
||||
y2="23.501108" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2646"
|
||||
id="linearGradient4399"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="20.261574"
|
||||
y1="15.122634"
|
||||
x2="22.749992"
|
||||
y2="21.351147" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2662"
|
||||
id="linearGradient4401"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.866026,-0.5,0.5,0.866026,-9.016237,15.54794)"
|
||||
x1="19.788017"
|
||||
y1="18.636177"
|
||||
x2="20.919437"
|
||||
y2="20.150311" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2654"
|
||||
id="linearGradient4403"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="18.037781"
|
||||
y1="21.326878"
|
||||
x2="17.778023"
|
||||
y2="31.255089" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2763"
|
||||
id="linearGradient4405"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="24.219482"
|
||||
y1="18.1894"
|
||||
x2="24.157726"
|
||||
y2="20.032583" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2773"
|
||||
id="radialGradient4407"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.350177,-0.56658,0.535266,0.330821,1.104526,36.3957)"
|
||||
cx="33.555569"
|
||||
cy="21.553221"
|
||||
fx="33.555569"
|
||||
fy="21.553221"
|
||||
r="8.3309488" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="160"
|
||||
inkscape:window-y="148"
|
||||
showborder="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:nodetypes="csssccsssc"
|
||||
style="opacity:1;color:black;fill:url(#linearGradient8661);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.66170299;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 36.350491,32.005854 C 26.680472,31.849235 15.54161,34.854351 11.483891,38.71453 C 7.4261716,42.574709 11.976322,45.837546 21.646342,45.994152 C 31.31636,46.150771 42.458967,43.142099 46.516685,39.28192 C 50.574404,35.421742 46.020513,32.162472 36.350491,32.005854 z M 28.413123,38.073103 C 29.662614,38.093333 30.255276,38.511275 29.730966,39.010055 C 29.206657,39.508846 27.766149,39.897472 26.516658,39.877242 C 25.267164,39.857 24.678245,39.435502 25.202555,38.936722 C 25.726864,38.437931 27.163631,38.052862 28.413123,38.073103 z "
|
||||
id="path7925" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient7923);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.78400005;visibility:visible;display:inline;overflow:visible"
|
||||
id="path7189"
|
||||
sodipodi:cx="51.231888"
|
||||
sodipodi:cy="110.19082"
|
||||
sodipodi:rx="48.06039"
|
||||
sodipodi:ry="10.978262"
|
||||
d="M 99.292278 110.19082 A 48.06039 10.978262 0 1 1 3.1714973,110.19082 A 48.06039 10.978262 0 1 1 99.292278 110.19082 z"
|
||||
transform="matrix(0.416143,0,0,0.455446,-1.319796,-7.185913)" />
|
||||
<path
|
||||
style="opacity:1;color:black;fill:url(#linearGradient6461);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5724);stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 20.999989,1.4999996 C 9.682439,1.4999996 0.49999951,11.352451 0.49999951,23.493013 C 0.49999951,35.633571 9.6824401,45.499982 20.999989,45.499982 C 32.317535,45.499982 41.499975,35.633582 41.499975,23.493013 C 41.499976,11.35245 32.317535,1.4999996 20.999989,1.4999996 z M 19.219209,15.817787 C 23.177046,15.817787 26.398412,19.279139 26.398412,23.548833 C 26.398413,27.818531 23.177046,31.279878 19.219209,31.279878 C 15.261373,31.279878 12.054029,27.818531 12.054029,23.548833 C 12.054028,19.27914 15.261374,15.817787 19.219209,15.817787 z "
|
||||
id="path1308" />
|
||||
<g
|
||||
id="layer4"
|
||||
inkscape:label="Arancia"
|
||||
style="display:inline"
|
||||
transform="matrix(0.976908,0,0,1.052418,-0.978641,-0.3392)">
|
||||
<g
|
||||
id="g2300"
|
||||
transform="matrix(0.850643,-0.525743,0.525743,0.850643,-11.28786,14.5586)">
|
||||
<path
|
||||
id="path2292"
|
||||
d="M 45.485011,24.650406 C 45.489502,36.169162 36.087252,45.514052 24.497845,45.509535 C 12.908437,45.505018 3.4988962,36.152795 3.4944046,24.634039 C 3.489913,13.115282 12.892164,3.770392 24.481571,3.7749093 C 36.070978,3.7794267 45.480519,13.131649 45.485011,24.650406 z "
|
||||
style="color:black;fill:url(#linearGradient4367);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4369);stroke-width:0.98623258;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<g
|
||||
transform="matrix(0.965926,0.258819,-0.258819,0.965926,7.201537,-5.504116)"
|
||||
style="fill:url(#linearGradient2652);fill-opacity:1;stroke:url(#linearGradient2668);stroke-width:0.96691018"
|
||||
id="g2636">
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4371);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4373);stroke-width:0.48345509;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 13.34375,13.34375 C 14.897134,15.437441 21.190617,20.852925 24.5,24.5 L 24.527344,7.7190722 C 24.527344,6.3878355 22.928837,6.0533433 20.335423,6.0533433 C 17.829889,6.0533433 16.600241,6.6909795 14.358797,8.6972031 C 12.328775,10.514191 12.054759,11.606415 13.34375,13.34375 z "
|
||||
id="path2298"
|
||||
sodipodi:nodetypes="ccczzs" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccczzs"
|
||||
id="use2349"
|
||||
d="M 36.21175,35.65625 C 34.658366,33.562559 28.364883,28.147075 25.0555,24.5 L 25.028156,41.280928 C 25.028156,42.612164 26.626663,42.946657 29.220077,42.946657 C 31.725611,42.946657 32.955259,42.309021 35.196703,40.302797 C 37.226725,38.485809 37.500741,37.393585 36.21175,35.65625 z "
|
||||
style="color:black;fill:url(#linearGradient4375);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4377);stroke-width:0.48345509;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4379);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4381);stroke-width:0.48345509;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 24.58135,8.5262881 L 24.58135,24.303613 L 35.77629,13.147343 C 36.717617,12.206016 36.012089,10.650914 34.178268,8.8170923 C 32.406587,7.0454117 31.086217,6.626796 28.082662,6.46047 C 25.362414,6.3098322 24.58135,6.9905478 24.58135,8.5262881 z "
|
||||
id="path2360"
|
||||
sodipodi:nodetypes="ccczzs" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccczzs"
|
||||
id="use2362"
|
||||
d="M 24.974148,40.473736 C 25.356203,37.894864 24.735364,29.615371 24.974148,24.696411 L 13.088901,36.542987 C 12.147575,37.484314 13.041368,38.851152 14.875189,40.684973 C 16.64687,42.456653 17.967239,42.875269 20.970795,43.041595 C 23.691043,43.192233 24.657121,42.613672 24.974148,40.473736 z "
|
||||
style="color:black;fill:url(#linearGradient4383);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4385);stroke-width:0.48345527;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4387);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4389);stroke-width:0.48345509;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 35.93401,13.066004 L 24.77776,24.222254 L 40.582448,24.249598 C 41.913684,24.249598 42.514424,22.651091 42.514424,20.057677 C 42.514424,17.552143 41.876788,16.322495 39.870564,14.081051 C 38.053576,12.051029 37.019942,11.980072 35.93401,13.066004 z "
|
||||
id="path2366"
|
||||
sodipodi:nodetypes="ccczzs" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccczzs"
|
||||
id="use2368"
|
||||
d="M 13.62151,35.934004 C 15.715201,34.38062 21.130685,28.087137 24.77776,24.777754 L 7.996832,24.75041 C 6.665596,24.75041 6.331103,26.348917 6.331103,28.942331 C 6.331103,31.447865 6.968739,32.677513 8.974963,34.918957 C 10.791951,36.948979 11.884175,37.222995 13.62151,35.934004 z "
|
||||
style="color:black;fill:url(#linearGradient4391);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4393);stroke-width:0.48345509;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient4395);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4397);stroke-width:0.48345509;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 40.751472,24.30361 L 24.974147,24.30361 L 36.130417,35.49855 C 37.071744,36.439877 38.626846,35.734349 40.460668,33.900528 C 42.232348,32.128847 42.650964,30.808477 42.81729,27.804922 C 42.967928,25.084674 42.287212,24.30361 40.751472,24.30361 z "
|
||||
id="path2378"
|
||||
sodipodi:nodetypes="ccczzs" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccczzs"
|
||||
id="use2380"
|
||||
d="M 8.8040241,24.696408 C 11.382896,25.078463 19.662389,24.457624 24.581349,24.696408 L 12.734773,12.811161 C 11.793446,11.869835 10.426608,12.763628 8.5927872,14.597449 C 6.8211066,16.36913 6.4024908,17.689499 6.2361651,20.693055 C 6.0855272,23.413303 6.6640878,24.379381 8.8040241,24.696408 z "
|
||||
style="color:black;fill:url(#linearGradient4399);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4401);stroke-width:0.48345527;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccscccccccccc"
|
||||
id="path2384"
|
||||
d="M 24.782615,6.0633182 C 21.970362,5.6754195 19.097379,6.5102769 16.901947,8.2046397 C 16.657332,8.7131169 16.325147,10.354052 16.359542,10.363716 C 16.30599,10.367405 15.241199,9.9828914 14.618537,9.6269847 C 10.972225,10.252347 8.2051779,13.497188 7.5829475,17.054339 C 6.7457134,18.353718 8.4380358,20.237011 8.6590975,20.551129 C 6.9457366,21.211628 5.992152,22.868082 5.7386025,24.498967 C 5.005193,27.498186 6.4723856,30.526981 8.360898,32.787766 C 9.114817,33.184205 11.334116,32.616281 9.9177825,33.865612 C 9.6198062,36.494854 11.554867,38.768429 13.50637,40.267363 C 15.304126,41.272793 17.820518,42.599165 19.791102,41.438254 C 20.300255,40.67791 21.165665,40.310357 20.862821,41.612976 C 22.162406,43.523817 24.778956,43.734466 26.887856,43.819257 C 29.201385,43.626807 33.016067,42.130099 33.048289,40.965875 L 33.121704,38.313331 L 34.583344,38.787513 C 38.682376,38.336297 41.594477,34.319526 41.742555,30.373587 C 41.861658,29.068433 39.861471,28.415249 41.68847,27.703853 C 43.634121,25.456989 43.716653,22.119691 42.613639,19.465076 C 42.109573,18.131094 41.58526,16.847192 40.42702,15.917807 C 38.242298,15.985608 39.209032,13.695119 38.129288,12.100397 C 36.996828,9.7778907 34.593634,8.6459837 32.298061,7.8039398 C 31.182521,6.9360527 29.284178,8.1442425 29.045417,8.223029 C 28.872246,6.0112781 26.371319,6.6142457 24.782615,6.0633182 z "
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4403);stroke-width:1.93382037;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
transform="matrix(0.999539,-3.037338e-2,3.037338e-2,0.999539,-0.735408,0.757723)"
|
||||
style="opacity:0.7;color:black;fill:url(#linearGradient4405);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 12.577264,12.496149 C 13.532239,11.373447 21.852046,23.893134 22.988615,22.954707 C 24.128451,22.013583 14.510505,12.817657 15.664001,11.893325 C 16.81419,10.971642 22.036236,23.387632 23.329864,22.681261 C 24.627211,21.972859 17.648557,10.905342 18.956138,10.216015 C 20.259972,9.5286631 22.312765,22.926123 23.716697,22.477337 C 25.124665,22.027262 20.060006,8.6379323 21.474414,8.2085231 C 22.884768,7.7803446 22.671637,22.525288 24.135132,22.350308 C 25.602833,22.174826 23.145678,8.4311989 24.615791,8.2772281 C 26.081692,8.1236985 23.099883,22.199613 24.570046,22.304764 C 26.044434,22.410217 25.782491,8.4740419 27.255177,8.6010744 C 28.723642,8.7277428 23.582024,21.96087 25.005719,22.34235 C 26.433506,22.724928 29.627219,9.938092 31.049251,10.341536 C 32.467207,10.743825 24.100635,21.817687 25.426406,22.46171 C 26.755988,23.107584 32.423589,9.7973387 33.74357,10.462614 C 35.059769,11.125982 24.636971,21.775239 25.816902,22.658527 C 27.000224,23.544354 34.841202,11.808353 36.011425,12.711414 C 37.178295,13.611886 25.171649,21.83506 26.163093,22.92569 C 27.157387,24.019454 36.360005,14.148428 37.338175,15.256636 C 38.313542,16.361667 25.685343,21.994989 26.452467,23.253542 C 27.221797,24.515712 38.026618,17.27584 38.777382,18.54914 C 39.525995,19.818792 26.159486,22.249245 26.674566,23.630233 C 27.191125,25.015191 40.453481,19.429991 40.949704,20.822364 C 41.444504,22.210747 26.576944,22.588639 26.821361,24.04215 C 27.066481,25.499839 41.24621,22.455074 41.469957,23.916197 C 41.693063,25.373131 26.922626,23.000903 26.887548,24.474404 C 26.852368,25.95214 41.033391,25.086911 40.976575,26.563974 C 40.919923,28.036803 27.18404,23.471138 26.870734,24.911373 C 26.556527,26.355746 40.645025,28.18993 40.309701,29.629547 C 39.975337,31.065039 27.351738,23.982349 26.771527,25.337262 C 26.189649,26.69607 39.676428,31.163373 39.074714,32.513515 C 38.474724,33.859786 27.419657,24.516058 26.593513,25.736681 C 25.764994,26.960812 38.162607,33.899775 37.31625,35.111642 C 36.47232,36.320036 27.385345,25.052976 26.343125,26.095192 C 25.29791,27.140403 36.158275,36.300234 35.097866,37.330027 C 34.040496,38.356869 27.250039,25.573698 26.029414,26.399838 C 24.805279,27.228353 33.735874,38.277991 32.499738,39.08849 C 31.267145,39.896667 27.018632,26.059403 25.663717,26.639608 C 24.304907,27.221482 30.982956,39.761565 29.615771,40.323477 C 28.252504,40.88378 26.699486,26.492536 25.259251,26.805837 C 23.814876,27.120039 27.999018,40.697335 26.550197,40.990352 C 25.105529,41.282529 26.304137,26.857444 24.830636,26.892517 C 23.3529,26.927691 24.891909,41.051481 23.413816,41.065012 C 21.93996,41.078504 25.846873,27.140936 24.393363,26.896514 C 22.935674,26.651389 21.773926,40.811203 20.319984,40.544758 C 18.870209,40.279077 25.344221,27.332768 23.963235,26.817684 C 22.578279,26.301119 18.757763,39.985185 17.38052,39.448395 C 16.007224,38.913143 24.814348,27.426006 23.555798,26.658876 C 22.293631,25.889542 15.95243,38.603282 14.701664,37.815547 C 13.454483,37.03007 24.276405,27.417279 23.185779,26.425831 C 22.092019,25.431533 13.45932,36.715439 12.380237,35.70523 C 11.304247,34.697917 23.749836,27.306904 22.866551,26.12697 C 21.980728,24.943645 11.368541,34.389887 10.500141,33.193716 C 9.6342307,32.000974 23.25367,27.09887 22.609652,25.773096 C 21.963783,24.443512 9.7556582,31.710678 9.1293285,30.371779 C 8.5047939,29.036716 22.805842,26.800695 22.424366,25.376999 C 22.041794,23.94921 8.678966,28.774646 8.3173434,27.341409 C 7.9567571,25.912279 22.422536,26.423156 22.317391,24.952993 C 22.211943,23.478605 8.5961009,26.176511 8.5122553,24.700736 C 8.42865,23.229191 22.117607,25.979899 22.292592,24.516405 C 22.46808,23.048705 9.203933,23.39175 9.4008948,21.926777 C 9.5972921,20.466002 21.902075,25.486944 22.350866,24.083014 C 22.800947,22.675047 9.8579191,19.579854 10.32857,18.17863 C 10.797871,16.781422 21.783731,24.962108 22.490107,23.668482 C 23.198514,22.371138 9.8037348,16.275932 10.531063,14.989101 C 11.256307,13.705958 21.766851,24.42436 22.705282,23.287794 C 23.646411,22.147961 11.619545,13.622078 12.577264,12.496149 z "
|
||||
id="path2736"
|
||||
sodipodi:nodetypes="csssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssc" />
|
||||
<path
|
||||
style="color:black;fill:url(#radialGradient4407);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 24.157201,21.636534 L 26.972524,15.433966 L 26.26055,22.313586 L 32.388741,19.934901 L 27.269094,24.279626 L 21.514109,24.748427 L 15.372459,22.191176 L 22.191161,22.645079 L 19.465425,16.008496 L 24.157201,21.636534 z "
|
||||
id="path2771"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient5697);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 20.331174,3.0004399 C 19.511013,2.993733 18.661207,3.0637798 17.799631,3.2054489 C 18.045429,9.3424698 18.2922,15.478257 18.537998,21.615277 C 19.03184,21.626061 19.470567,21.83915 19.830139,22.161967 C 23.886295,17.373858 27.943846,12.585766 32,7.797656 C 30.65243,6.3619791 26.072296,3.0473853 20.331174,3.0004399 z M 16.903043,25.619791 C 13.370921,29.789304 9.8343331,33.955836 6.3022107,38.125348 C 10.487688,42.761235 14.671067,44.845401 19.474141,45 C 19.225603,38.79456 18.971127,32.590588 18.722589,26.38516 C 18.645085,26.394601 18.578176,26.439824 18.498443,26.439824 C 17.855971,26.439824 17.299083,26.119211 16.903043,25.619791 z "
|
||||
id="path4955" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5723);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 21.235288,4.0004189 C 20.408388,3.9940327 19.551599,4.0607423 18.682944,4.1956662 C 18.930762,10.040448 19.179561,15.884055 19.427378,21.728836 C 19.925278,21.739107 20.367611,21.942049 20.730138,22.249494 C 24.819623,17.689388 28.910517,13.129302 33,8.5691957 C 31.641358,7.2018855 27.023588,4.0451286 21.235288,4.0004189 z M 17.778988,25.542653 C 14.217842,29.513621 10.652194,33.481757 7.091046,37.452714 C 11.310916,41.867847 15.52867,43.852757 20.371213,44 C 20.120633,38.090065 19.864066,32.18152 19.613486,26.271585 C 19.535345,26.280578 19.467886,26.323645 19.387498,26.323645 C 18.739746,26.323645 18.178283,26.018302 17.778988,25.542653 z "
|
||||
id="path5701" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssccsssc"
|
||||
style="opacity:1;color:black;fill:#f2f2f2;fill-opacity:0.41199999;fill-rule:evenodd;stroke:#e3e3e3;stroke-width:0.53548694;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.64800002;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 19.213352,16.123049 C 15.419454,16.123049 12.344059,19.423355 12.344059,23.494708 C 12.344059,27.566065 15.419454,30.877886 19.213352,30.877886 C 23.007249,30.877886 26.093376,27.566065 26.093378,23.494708 C 26.093378,19.423355 23.007249,16.123049 19.213352,16.123049 z M 19.213352,20.31568 C 20.848646,20.31568 22.175735,21.739822 22.175735,23.494708 C 22.175735,25.249596 20.848646,26.673742 19.213352,26.673742 C 17.578058,26.673742 16.250969,25.249596 16.250969,23.494708 C 16.250968,21.739823 17.578059,20.31568 19.213352,20.31568 z "
|
||||
id="path2055" />
|
||||
<path
|
||||
style="opacity:1;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4834);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 20.999996,3.0000007 C 10.510557,3.0000007 1.9999997,12.180699 1.9999997,23.493504 C 1.9999997,34.806304 10.510558,44.000011 20.999996,44.000011 C 31.489434,44.000011 39.999994,34.806304 39.999994,23.493504 C 39.999995,12.180699 31.489436,3.0000007 20.999996,3.0000007 z "
|
||||
id="path4818"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="opacity:1;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4842);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 19.999996,3.5000003 C 9.7865948,3.5000003 1.4999999,12.680697 1.4999999,23.993499 C 1.4999999,35.306294 9.7865948,44.500002 19.999996,44.500002 C 30.213396,44.500002 38.499994,35.306294 38.499994,23.993499 C 38.499995,12.680697 30.213396,3.5000003 19.999996,3.5000003 z "
|
||||
id="path3330"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
d="M 40.500032,4.5000012 L 26.515035,7.3498335 L 26.515035,12.275087 L 26.515035,20.836157 C 26.076385,20.618403 25.468175,20.487673 24.953901,20.487673 C 23.048015,20.487673 21.500006,21.06322 21.500006,23.775089 C 21.500006,25.830528 23.048015,27.500005 24.953901,27.500005 C 26.859791,27.500005 28.485925,25.830528 28.485925,23.775089 C 28.485925,23.700893 28.468356,23.631381 28.464385,23.558253 L 28.500284,23.558253 L 28.500284,11.864649 L 38.512098,9.8356922 L 38.512098,18.842964 C 38.073577,18.625365 37.54585,18.502223 37.031774,18.502223 C 35.125883,18.502223 33.585055,18.973675 33.585055,21.781896 C 33.585055,23.837335 35.125883,25.506813 37.031774,25.506812 C 38.937659,25.506812 40.485668,23.837336 40.485668,21.781896 C 40.485668,21.706936 40.468184,21.63893 40.464128,21.565061 L 40.500032,21.565061 L 40.500032,9.4252545 L 40.500032,5.1427623 L 40.500032,4.5000012 z "
|
||||
style="fill:url(#linearGradient5093);fill-opacity:1;stroke:#3cb30c;stroke-width:1.00000048;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path1139"
|
||||
sodipodi:nodetypes="ccccsssscccccssssccccc" />
|
||||
<path
|
||||
d="M 27,11.79179 L 27.100002,7.7386248 L 40,5 L 39.899999,8.9436196 L 27,11.79179 z "
|
||||
style="fill:url(#linearGradient5090);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path1778" />
|
||||
<path
|
||||
d="M 28,23.564473 C 28,25.264704 27.323638,27 25.163634,27 C 23.658181,27 22,25.264704 22,23.564473 C 22,21.864243 23.439999,20.484346 24.945454,20.484346 C 26.450912,20.484346 28,21.864243 28,23.564473 z "
|
||||
style="fill:url(#linearGradient5087);fill-opacity:1;stroke:none;stroke-width:3.59371519;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path2409" />
|
||||
<path
|
||||
d="M 40,21.836364 C 40,23.402038 39.323639,25 37.163635,25 C 35.658181,25 34,23.402038 34,21.836364 C 34,20.270691 35.44,19 36.945454,19 C 38.450912,19 40,20.270691 40,21.836364 z "
|
||||
style="fill:url(#linearGradient5084);fill-opacity:1;stroke:none;stroke-width:3.59371519;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3036" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 42 KiB |
499
datas/icon-themes/edeneu/scalable/apps/system-file-manager.svg
Normal file
@@ -0,0 +1,499 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="system-file-manager.svg"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/apps"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0"
|
||||
inkscape:export-filename="/home/silvestre/Neu/scalable/actions/document-open.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2871">
|
||||
<stop
|
||||
style="stop-color:#ffa740;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2873" />
|
||||
<stop
|
||||
style="stop-color:#bf731a;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop2875" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2865">
|
||||
<stop
|
||||
style="stop-color:#ffa740;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2867" />
|
||||
<stop
|
||||
style="stop-color:#ca6b18;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop2869" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2857">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2859" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.21960784"
|
||||
offset="1"
|
||||
id="stop2861" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10475"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop10477"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop10479"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10457">
|
||||
<stop
|
||||
id="stop10459"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.32291666;" />
|
||||
<stop
|
||||
id="stop10461"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8158">
|
||||
<stop
|
||||
id="stop8160"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.73958331;" />
|
||||
<stop
|
||||
id="stop8162"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5866">
|
||||
<stop
|
||||
id="stop5868"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.61458331;" />
|
||||
<stop
|
||||
id="stop5870"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5098"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5100"
|
||||
offset="0"
|
||||
style="stop-color:#ae5b00;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5102"
|
||||
offset="1"
|
||||
style="stop-color:#ae5b00;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10457"
|
||||
id="radialGradient1351"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(2.110067,0.473919)"
|
||||
cx="24.734711"
|
||||
cy="210.29031"
|
||||
fx="24.734711"
|
||||
fy="210.29031"
|
||||
r="20.929369" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10475"
|
||||
id="linearGradient2837"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.867558,0,0,0.289185,-2.059701,-6.499992)"
|
||||
x1="34.211731"
|
||||
y1="28.907038"
|
||||
x2="37.014332"
|
||||
y2="52.198448" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5866"
|
||||
id="linearGradient2840"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.624329,0,0,0.345144,-2.314271,-2.12809)"
|
||||
x1="30.223124"
|
||||
y1="28.559177"
|
||||
x2="30.810305"
|
||||
y2="95.25663" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2865"
|
||||
id="linearGradient2843"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.527789,0,0,0.427758,-1.911711,-4.317301)"
|
||||
x1="42.137558"
|
||||
y1="68.160683"
|
||||
x2="42.137558"
|
||||
y2="105.10196" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5098"
|
||||
id="linearGradient2845"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.526729,0,0,0.428621,-1.911711,-3.379913)"
|
||||
x1="29.539867"
|
||||
y1="74.338982"
|
||||
x2="7.0335331"
|
||||
y2="73.219803" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8158"
|
||||
id="linearGradient2849"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.483204,0,0,0.47061,-0.287594,-4.714333)"
|
||||
x1="22.531561"
|
||||
y1="95.898132"
|
||||
x2="49.017395"
|
||||
y2="27.309816" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2857"
|
||||
id="linearGradient2863"
|
||||
x1="17.033184"
|
||||
y1="38.662212"
|
||||
x2="56.610294"
|
||||
y2="108.22483"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.413232,0,0,0.402058,-4.298054,-2.649836)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2871"
|
||||
id="linearGradient2877"
|
||||
x1="113.84419"
|
||||
y1="76.00531"
|
||||
x2="113.84419"
|
||||
y2="101.19212"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.415746,0,0,0.415053,-3.953611,-3.858144)" />
|
||||
<linearGradient
|
||||
id="linearGradient3853">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3855" />
|
||||
<stop
|
||||
id="stop3861"
|
||||
offset="0.61764705"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3857" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.30653265"
|
||||
offset="0"
|
||||
id="stop3841" />
|
||||
<stop
|
||||
id="stop3847"
|
||||
offset="0.61764705"
|
||||
style="stop-color:#9ec4f0;stop-opacity:0.3137255;" />
|
||||
<stop
|
||||
style="stop-color:#9ec4f0;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3843" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3821">
|
||||
<stop
|
||||
style="stop-color:#ceba00;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3823" />
|
||||
<stop
|
||||
style="stop-color:#f18200;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3825" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3799">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3801" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.33725491"
|
||||
offset="1"
|
||||
id="stop3803" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2912">
|
||||
<stop
|
||||
style="stop-color:#c9c9c9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2914" />
|
||||
<stop
|
||||
id="stop2920"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#a5a5a5;stop-opacity:1;"
|
||||
offset="0.75"
|
||||
id="stop2922" />
|
||||
<stop
|
||||
style="stop-color:#d4d4d4;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4820"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4822"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4824"
|
||||
offset="1"
|
||||
style="stop-color:white;stop-opacity:0.57939917" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3821"
|
||||
id="linearGradient4175"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.337261,-1.343742,1.337261,1.343742,-79.31007,17.42598)"
|
||||
x1="10.628082"
|
||||
y1="20.32057"
|
||||
x2="7.3931365"
|
||||
y2="20.264719" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2912"
|
||||
id="linearGradient4177"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.919372,-1.919374,1.244767,1.244768,-82.22997,24.39475)"
|
||||
x1="6.9188247"
|
||||
y1="17.483641"
|
||||
x2="10.358043"
|
||||
y2="17.483641" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4820"
|
||||
id="linearGradient4179"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.188058,-1.190399,1.188058,1.190399,-77.22577,22.20938)"
|
||||
x1="7.9148936"
|
||||
y1="3.8297873"
|
||||
x2="7.9148936"
|
||||
y2="41.371349" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3799"
|
||||
id="linearGradient4181"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.285184,-1.287716,1.285184,1.287716,-77.36267,18.39551)"
|
||||
x1="4.0145416"
|
||||
y1="2.715862"
|
||||
x2="10.090094"
|
||||
y2="13.239027" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3839"
|
||||
id="radialGradient4183"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.227473,-2.855792e-16,-4.785394e-17,1.227473,3.136218,-2.253726)"
|
||||
cx="-13.583885"
|
||||
cy="10.198135"
|
||||
fx="-13.583885"
|
||||
fy="10.198135"
|
||||
r="6.1843319" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3853"
|
||||
id="radialGradient4185"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-5.995909e-16,5.01213e-16,0.803279,-7.152935e-15,0.985551)"
|
||||
cx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
fy="5.0098858"
|
||||
r="4.372983" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3853"
|
||||
id="radialGradient4187"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-2.475099e-16,-6.438298e-17,0.803279,3.575212e-15,0.985551)"
|
||||
cx="-5.3766184"
|
||||
cy="5.0098858"
|
||||
fx="-5.3766184"
|
||||
fy="5.0098858"
|
||||
r="4.372983" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="72"
|
||||
inkscape:window-x="123"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
showborder="false"
|
||||
showgrid="false"
|
||||
width="48px"
|
||||
height="48px" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
transform="matrix(0.461536,7.970305e-2,-7.970305e-2,0.461536,6.234354,-8.204039)"
|
||||
d="M 96.354244 99.660515 A 44.162361 9.9188194 0 1 1 8.0295219,99.660515 A 44.162361 9.9188194 0 1 1 96.354244 99.660515 z"
|
||||
sodipodi:ry="9.9188194"
|
||||
sodipodi:rx="44.162361"
|
||||
sodipodi:cy="99.660515"
|
||||
sodipodi:cx="52.191883"
|
||||
id="path9697"
|
||||
style="opacity:0.60792954;fill:url(#radialGradient1351);fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
id="path2055"
|
||||
d="M 34.575041,4.5023928 L 21.951162,5.6239601 L 20.42861,9.3133249 L 6.8734599,10.420135 L 6.6517297,13.2093 L 0.50239285,13.53396 C 0.50239285,33.31114 2.7671271,37.20551 4.5231137,38.518333 L 39.260952,44.318014 L 39.260952,44.303265 L 39.379211,44.318014 C 42.032532,44.318014 45.292036,20.680098 45.292036,7.2915524 L 36.43758,8.0146686 L 34.575041,4.5023928 z "
|
||||
style="fill:url(#linearGradient2877);fill-opacity:1;fill-rule:evenodd;stroke:#833800;stroke-width:1.00478566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path3578"
|
||||
d="M 10.126456,11.837705 L 9.4915145,35.746469 L 37.958071,43.008486 C 39.647915,32.414659 42.233254,24.814663 42.508486,9.4915145 L 10.126456,11.837705 z "
|
||||
style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#dcdcdc;stroke-width:0.983;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path7390"
|
||||
d="M 9.6713914,11.380176 L 9,35.635265 L 38.289732,42.899791 C 40.068337,34.571881 42.980951,21.251458 43,9 L 9.6713914,11.380176 z "
|
||||
style="fill:url(#linearGradient2849);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path8166"
|
||||
d="M 38.748563,15 C 38.005755,24.252525 37.600205,36.288903 39,43.428228 L 33.646542,42.160758 L 30,15.238465 L 38.748563,15 z "
|
||||
style="fill:black;fill-opacity:0.15999995;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path1293"
|
||||
d="M 1.5037443,14.312633 L 34.878393,12.503744 C 35.688696,23.359513 35.581128,36.214574 39.496256,43.496256 L 5.3902843,38.005089 C 2.0283695,32.477141 1.89443,23.428626 1.5037443,14.312633 z "
|
||||
style="fill:url(#linearGradient2843);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2845);stroke-width:1.00748861;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5106"
|
||||
d="M 1,14.911391 C 12.051681,14.448017 22.711228,13.947334 33.762909,13.48396 C 34.334326,21.549683 34.801174,27.227647 36,34 C 22.213497,24.946426 13.720031,21.147409 3.4176172,31.020782 C 2.4810337,25.638554 1.9365825,20.29362 1,14.911391 z "
|
||||
style="opacity:0.52719667;fill:url(#linearGradient2840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path10473"
|
||||
d="M 21,10 L 22.567165,6.0000008 L 34.097014,5 L 36,8.5000001 L 21,10 z "
|
||||
style="fill:url(#linearGradient2837);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2863);stroke-width:0.99536294;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.89699557"
|
||||
d="M 5.4230791,37.689719 C 3.6641529,37.385561 1.7551373,32.948703 1.4976814,14.96677 L 33.659286,13.497682 C 33.903029,24.472601 34.904635,37.575622 37.502319,42.3019 L 5.4230791,37.689719 z "
|
||||
id="path1961"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<g
|
||||
id="g4165"
|
||||
transform="matrix(1,0,0,0.99748,78.90748,4.543246)">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="rect3819"
|
||||
d="M -46.365462,32.002783 L -41.484777,27.098434 L -35.248344,33.3651 C -32.401275,36.22597 -37.481851,40.929459 -40.129034,38.26945 L -46.365462,32.002783 z "
|
||||
style="color:black;fill:url(#linearGradient4175);fill-opacity:1;fill-rule:nonzero;stroke:#834f06;stroke-width:1.00126219;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:white;stroke-width:1.00126219;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.35678394;visibility:visible;display:inline;overflow:visible"
|
||||
d="M -44.35124,32.672451 L -40.829047,29.147632 L -35.97798,34.002317 C -33.923368,36.058463 -37.589812,39.438923 -39.500174,37.527139 L -44.35124,32.672451 z "
|
||||
id="path3892"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="rect3807"
|
||||
d="M -48.402672,30.702689 L -42.76121,25.061227 L -39.370271,28.452167 L -45.011732,34.093628 L -48.402672,30.702689 z "
|
||||
style="color:black;fill:url(#linearGradient4177);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:1.00126219;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
id="path2034"
|
||||
d="M -65.599932,8.4038749 C -70.900182,13.990974 -70.790022,22.841225 -65.318792,28.323232 C -59.760722,33.892256 -50.715552,33.892258 -45.157482,28.323233 C -39.599406,22.75421 -39.639565,13.731449 -45.197642,8.1624279 C -50.755712,2.5934064 -59.760722,2.5531636 -65.318792,8.1221869 C -65.405642,8.2092029 -65.515802,8.3151899 -65.599932,8.4038749 z M -63.672152,10.415932 C -63.572212,10.307873 -63.455712,10.199065 -63.350862,10.094002 C -58.877042,5.6113729 -51.639392,5.6516149 -47.165582,10.134245 C -42.691764,14.616873 -42.6516,21.868788 -47.125412,26.351418 C -51.599232,30.834048 -58.877042,30.834048 -63.350862,26.351418 C -67.719822,21.97385 -67.836322,14.918379 -63.672152,10.415932 z "
|
||||
style="color:black;fill:url(#linearGradient4179);fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:1.00126219;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssssc"
|
||||
id="path3797"
|
||||
d="M -65.049302,8.9277359 C -70.067332,14.217344 -69.963042,22.596355 -64.783132,27.786465 C -59.521012,33.058958 -50.957452,33.058958 -45.695332,27.786465 C -40.433203,22.513969 -40.471227,13.971639 -45.733352,8.6991459 C -50.995472,3.4266527 -59.521012,3.3885518 -64.783132,8.6610479 C -64.865352,8.7434299 -64.969652,8.8437739 -65.049302,8.9277359 z "
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4181);stroke-width:0.50063109;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
transform="matrix(1.28544,-1.287972,1.28544,1.287972,-48.99747,-12.02529)"
|
||||
d="M -8.0092163 9.3271885 A 6.1843319 6.1843319 0 1 1 -20.37788,9.3271885 A 6.1843319 6.1843319 0 1 1 -8.0092163 9.3271885 z"
|
||||
sodipodi:ry="6.1843319"
|
||||
sodipodi:rx="6.1843319"
|
||||
sodipodi:cy="9.3271885"
|
||||
sodipodi:cx="-14.193548"
|
||||
id="path3837"
|
||||
style="color:black;fill:url(#radialGradient4183);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.840084,-1.457935,1.455068,0.841739,-62.87107,4.402713)"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
sodipodi:ry="3.5127239"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:cx="-5.3766184"
|
||||
id="path3851"
|
||||
style="opacity:0.57213931;color:black;fill:url(#radialGradient4185);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.465624,-0.808071,0.806482,0.466541,-50.67427,14.96597)"
|
||||
d="M -1.0036354 5.0098858 A 4.372983 3.5127239 0 1 1 -9.7496014,5.0098858 A 4.372983 3.5127239 0 1 1 -1.0036354 5.0098858 z"
|
||||
sodipodi:ry="3.5127239"
|
||||
sodipodi:rx="4.372983"
|
||||
sodipodi:cy="5.0098858"
|
||||
sodipodi:cx="-5.3766184"
|
||||
id="path3865"
|
||||
style="opacity:0.38308459;color:black;fill:url(#radialGradient4187);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |
393
datas/icon-themes/edeneu/scalable/apps/system-installer.svg
Normal file
@@ -0,0 +1,393 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="system-installer.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6664">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6666" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6668" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5756">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.85490197"
|
||||
offset="0"
|
||||
id="stop5758" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.4509804"
|
||||
offset="1"
|
||||
id="stop5760" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5746">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.90987122"
|
||||
offset="0"
|
||||
id="stop5748" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.60392159"
|
||||
offset="1"
|
||||
id="stop5750" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5736">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0.60085839"
|
||||
offset="0"
|
||||
id="stop5738" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5740" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5717">
|
||||
<stop
|
||||
style="stop-color:#6981b3;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5719" />
|
||||
<stop
|
||||
style="stop-color:#8195bf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5721" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4836">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4838" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.58823532"
|
||||
offset="1"
|
||||
id="stop4840" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4828">
|
||||
<stop
|
||||
style="stop-color:#5a72a4;stop-opacity:0.627451"
|
||||
offset="0"
|
||||
id="stop4830" />
|
||||
<stop
|
||||
style="stop-color:#5a72a4;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4832" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient8655">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.30208334;"
|
||||
offset="0.0000000"
|
||||
id="stop8657" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop8659" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7917">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.16666669;"
|
||||
offset="0.0000000"
|
||||
id="stop7919" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7921" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6455">
|
||||
<stop
|
||||
style="stop-color:#e2e5ff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop6457" />
|
||||
<stop
|
||||
style="stop-color:#b5c6e7;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop6459" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5703">
|
||||
<stop
|
||||
id="stop5705"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.83333325;" />
|
||||
<stop
|
||||
id="stop5707"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5691">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.83333325;"
|
||||
offset="0.0000000"
|
||||
id="stop5693" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.0000000"
|
||||
offset="1"
|
||||
id="stop5695" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7917"
|
||||
id="radialGradient3966"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.228426,-1.9564e-14,85.02033)"
|
||||
cx="51.231888"
|
||||
cy="110.19082"
|
||||
fx="51.231888"
|
||||
fy="110.19082"
|
||||
r="48.06039" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5736"
|
||||
id="linearGradient5742"
|
||||
x1="46.266068"
|
||||
y1="23.75"
|
||||
x2="33.85746"
|
||||
y2="23.75"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5746"
|
||||
id="linearGradient5752"
|
||||
x1="17.67767"
|
||||
y1="6.2806997"
|
||||
x2="17.67767"
|
||||
y2="46.009853"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5756"
|
||||
id="linearGradient5762"
|
||||
x1="34.559845"
|
||||
y1="5.9246836"
|
||||
x2="34.559845"
|
||||
y2="45.264244"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4836"
|
||||
id="linearGradient5765"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.305739,0,0,0.31539,12.51236,10.43566)"
|
||||
x1="38.183765"
|
||||
y1="21.226875"
|
||||
x2="59.657269"
|
||||
y2="101.36707" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4828"
|
||||
id="linearGradient5768"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.306163,0,0,0.296958,12.99622,11.57534)"
|
||||
x1="100.05664"
|
||||
y1="65.067497"
|
||||
x2="57.319603"
|
||||
y2="65.067497" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5703"
|
||||
id="linearGradient5772"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.296884,0,0,0.291154,13.77009,12.40365)"
|
||||
x1="59.902058"
|
||||
y1="95.622185"
|
||||
x2="33.750458"
|
||||
y2="78.300934" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5691"
|
||||
id="linearGradient5775"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.294465,0,0,0.305712,13.26295,11.46264)"
|
||||
x1="31.114616"
|
||||
y1="33.89996"
|
||||
x2="48.388142"
|
||||
y2="61.223637" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6455"
|
||||
id="linearGradient5778"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.317423,0,0,0.314659,12.84888,10.63873)"
|
||||
x1="21.100939"
|
||||
y1="33.477123"
|
||||
x2="54.294334"
|
||||
y2="75.682442" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5717"
|
||||
id="linearGradient5780"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.317423,0,0,0.314659,12.21402,10.63873)"
|
||||
x1="99.25"
|
||||
y1="65.5"
|
||||
x2="43.49057"
|
||||
y2="65.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8655"
|
||||
id="linearGradient5784"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.267567,0,0,0.328998,15.55128,8.863517)"
|
||||
x1="59.867424"
|
||||
y1="177.41431"
|
||||
x2="86.77282"
|
||||
y2="84.96209" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6664"
|
||||
id="linearGradient6670"
|
||||
x1="9.875"
|
||||
y1="9.6618271"
|
||||
x2="10.1875"
|
||||
y2="20.630049"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="24"
|
||||
inkscape:cy="24"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
showborder="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:#d9d3c1;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.57254902"
|
||||
d="M 3,6.9445437 L 35.008976,5 L 42,7.9886057 L 42,42.991035 L 35.008976,46 L 3,44.055456 L 3,6.9445437 z "
|
||||
id="rect3980"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#b71f1f;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:0.57254902"
|
||||
d="M 3,6.9424218 L 34.993351,5 L 42,7.9899594 L 42,19.981339 L 34.993351,19.011178 L 3,20 L 3,6.9424218 z "
|
||||
id="path4856"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#796a43;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.4999995,6.4919685 L 35.048477,4.4999975 L 42.500009,7.717745 L 42.500009,43.292631 L 35.079727,46.499984 L 2.4999995,44.508013 L 2.4999995,6.4919685 z "
|
||||
id="path5731"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5742);fill-opacity:1.0;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 35,5 L 42,8.03125 L 42,42.96875 L 35,46 L 35,5 z "
|
||||
id="rect5733"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;stroke:url(#linearGradient5752);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3.4999983,7.3971206 L 34.889765,5.500004 L 41.499962,8.3145275 L 41.499962,42.664146 L 34.919453,45.500019 L 3.4999983,43.602904 L 3.4999983,7.3971206 z "
|
||||
id="path5744"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5762);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.87029289"
|
||||
d="M 34.5,5.5 L 34.5,45.5"
|
||||
id="path5754" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssccsssc"
|
||||
style="color:black;fill:url(#linearGradient5784);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.66170299;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 39.515948,36.81999 C 32.767135,36.710513 24.993201,38.811101 22.161274,41.509381 C 19.329347,44.207662 22.504947,46.488398 29.25376,46.597866 C 36.002572,46.707344 43.77912,44.60427 46.611046,41.905989 C 49.442973,39.207709 46.264762,36.929467 39.515948,36.81999 z M 33.976371,41.061021 C 34.848405,41.075162 35.26203,41.367305 34.896108,41.715954 C 34.530187,42.064611 33.524841,42.336263 32.652807,42.322122 C 31.780772,42.307972 31.369759,42.013344 31.73568,41.664694 C 32.101601,41.316038 33.104337,41.046873 33.976371,41.061021 z "
|
||||
id="path7925" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:black;fill:url(#radialGradient3966);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.78400005;visibility:visible;display:inline;overflow:visible"
|
||||
id="path7189"
|
||||
sodipodi:cx="51.231888"
|
||||
sodipodi:cy="110.19082"
|
||||
sodipodi:rx="48.06039"
|
||||
sodipodi:ry="10.978262"
|
||||
d="M 99.292278 110.19082 A 48.06039 10.978262 0 1 1 3.1714973,110.19082 A 48.06039 10.978262 0 1 1 99.292278 110.19082 z"
|
||||
transform="matrix(0.290431,0,0,0.318359,13.22544,9.424788)" />
|
||||
<path
|
||||
style="color:black;fill:url(#linearGradient5778);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5780);stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 28.997762,15.496274 C 20.991414,15.496274 14.495502,22.438609 14.495502,30.993216 C 14.495502,39.547822 20.991414,46.499993 28.997762,46.499993 C 37.004108,46.499993 43.500021,39.547829 43.500021,30.993216 C 43.500022,22.438608 37.004108,15.496274 28.997762,15.496274 z M 27.737989,25.585019 C 30.537873,25.585019 32.816756,28.023993 32.816756,31.032549 C 32.816757,34.041107 30.537873,36.480078 27.737989,36.480078 C 24.938106,36.480078 22.669142,34.041107 22.669142,31.032549 C 22.669142,28.023994 24.938107,25.585019 27.737989,25.585019 z "
|
||||
id="path1308" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5775);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 28.33589,16.545089 C 27.763491,16.540401 27.170402,16.589364 26.569098,16.688392 C 26.740643,20.978194 26.912868,25.267134 27.084413,29.556935 C 27.42907,29.564473 27.735263,29.713423 27.986212,29.939074 C 30.817048,26.592166 33.648858,23.245271 36.479692,19.898363 C 35.539208,18.894819 32.342682,16.577905 28.33589,16.545089 z M 25.94336,32.356106 C 23.478253,35.270613 21.010029,38.183035 18.544922,41.097541 C 21.466013,44.338044 24.385639,45.794885 27.737757,45.90295 C 27.5643,41.565323 27.386698,37.228721 27.213241,32.891102 C 27.15915,32.897702 27.112453,32.929313 27.056807,32.929313 C 26.608419,32.929313 26.21976,32.705203 25.94336,32.356106 z "
|
||||
id="path4955" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5772);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 28.966881,17.244079 C 28.389778,17.239615 27.791816,17.286245 27.185572,17.380557 C 27.358527,21.466083 27.532167,25.550788 27.705121,29.636313 C 28.052611,29.643493 28.36132,29.78535 28.614331,30.000255 C 31.468428,26.812723 34.323508,23.625205 37.177603,20.437672 C 36.229392,19.481917 33.006599,17.275331 28.966881,17.244079 z M 26.554691,32.302187 C 24.069328,35.077909 21.580823,37.851652 19.095459,40.627367 C 22.040553,43.713563 24.98417,45.101023 28.363834,45.203946 C 28.188951,41.072878 28.00989,36.942781 27.835008,32.811713 C 27.780472,32.817999 27.733392,32.848103 27.677288,32.848103 C 27.225215,32.848103 26.833364,32.634667 26.554691,32.302187 z "
|
||||
id="path5701" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssccsssc"
|
||||
style="color:black;fill:#f2f2f2;fill-opacity:0.41199999;fill-rule:evenodd;stroke:#e3e3e3;stroke-width:0.5354867;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.64800002;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 27.55575,25.717846 C 24.907947,25.717846 22.761595,28.024773 22.761595,30.870665 C 22.761595,33.71656 24.907947,36.031536 27.55575,36.031536 C 30.203552,36.031536 32.357394,33.71656 32.357396,30.870665 C 32.357396,28.024773 30.203552,25.717846 27.55575,25.717846 z M 27.55575,28.648512 C 28.697039,28.648512 29.623229,29.643993 29.623229,30.870665 C 29.623229,32.097339 28.697039,33.092822 27.55575,33.092822 C 26.41446,33.092822 25.48827,32.097339 25.48827,30.870665 C 25.488269,29.643993 26.414461,28.648512 27.55575,28.648512 z "
|
||||
id="path2055" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5768);stroke-width:1.99999881;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 29.031484,16.999997 C 21.837115,16.999997 15.999998,23.17546 15.999998,30.785098 C 15.999998,38.394734 21.837116,44.578947 29.031484,44.578947 C 36.225852,44.578947 42.062972,38.394734 42.062972,30.785098 C 42.062973,23.17546 36.225854,16.999997 29.031484,16.999997 z "
|
||||
id="path4818"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5765);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 27.999995,16.500007 C 21.099048,16.500007 15.499998,22.99367 15.499998,30.995407 C 15.499998,38.99714 21.099048,45.500006 27.999995,45.500006 C 34.900941,45.500006 40.499994,38.99714 40.499994,30.995407 C 40.499995,22.99367 34.900941,16.500007 27.999995,16.500007 z "
|
||||
id="path3330"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="font-size:9.50416279px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient6670);fill-opacity:1.0;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
||||
d="M 9.8274367,16.27936 L 7.1465169,16.411561 L 6.7234482,17.915013 L 5,18 L 7.462705,9.7406556 L 9.5067948,9.6398589 L 11.969499,17.656323 L 10.246052,17.741308 L 9.8274367,16.27936 M 7.5740389,14.880633 L 9.395461,14.790816 L 8.4869766,11.597894 L 7.5740389,14.880633 M 12.846811,9.4751569 L 15.692504,9.3348309 C 16.538638,9.2931149 17.187342,9.4918724 17.63862,9.9311047 C 18.092857,10.366572 18.319977,11.009455 18.319984,11.859759 C 18.319977,12.713708 18.092857,13.382625 17.63862,13.866515 C 17.187342,14.34663 16.538638,14.607549 15.692504,14.64927 L 14.561352,14.70505 L 14.561352,17.528513 L 12.846811,17.61306 L 12.846811,9.4751569 M 14.561352,10.911357 L 14.561352,13.184301 L 15.509916,13.137526 C 15.84243,13.121134 16.09924,13.010357 16.280347,12.805197 C 16.461446,12.596412 16.551998,12.310326 16.552001,11.946942 C 16.551998,11.583567 16.461446,11.30823 16.280347,11.120928 C 16.09924,10.933641 15.84243,10.848191 15.509916,10.864582 L 14.561352,10.911357 M 19.526843,9.1457533 L 22.372536,9.0054275 C 23.218669,8.9637114 23.867373,9.162469 24.318652,9.6017011 C 24.772888,10.037168 25.000009,10.680052 25.000016,11.530356 C 25.000009,12.384304 24.772888,13.053222 24.318652,13.537111 C 23.867373,14.017227 23.218669,14.278145 22.372536,14.319867 L 21.241384,14.375646 L 21.241384,17.19911 L 19.526843,17.283657 L 19.526843,9.1457533 M 21.241384,10.581954 L 21.241384,12.854898 L 22.189948,12.808122 C 22.522462,12.79173 22.779272,12.680954 22.960379,12.475794 C 23.141477,12.267009 23.232029,11.980923 23.232034,11.617538 C 23.232029,11.254163 23.141477,10.978827 22.960379,10.791524 C 22.779272,10.604236 22.522462,10.518787 22.189948,10.535179 L 21.241384,10.581954"
|
||||
id="text5786" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 20 KiB |
593
datas/icon-themes/edeneu/scalable/apps/system-lock-screen.svg
Normal file
@@ -0,0 +1,593 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="system-lock-screen.svg"
|
||||
sodipodi:docbase="/home/silvestre/Neu/scalable/actions"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:version="0.32"
|
||||
id="svg12101"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5882">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5884" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.49785408"
|
||||
offset="1"
|
||||
id="stop5886" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4999">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop5001" />
|
||||
<stop
|
||||
style="stop-color:#00488a;stop-opacity:0.81568629"
|
||||
offset="1"
|
||||
id="stop5003" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4991">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4993" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4995" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4981">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4983" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4985" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4971">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4973" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.32941177"
|
||||
offset="1"
|
||||
id="stop4975" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4961">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4963" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.16738197"
|
||||
offset="1"
|
||||
id="stop4965" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2217">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.61600000"
|
||||
offset="0"
|
||||
id="stop2219" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2221" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2199">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2201" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2203" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2181">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.42399997"
|
||||
offset="0"
|
||||
id="stop2183" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2185" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2163">
|
||||
<stop
|
||||
style="stop-color:#ffb93e;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2165" />
|
||||
<stop
|
||||
style="stop-color:#d79c34;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2167" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2145"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2147"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:0.54000002" />
|
||||
<stop
|
||||
id="stop2149"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2140">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.87199998"
|
||||
offset="0"
|
||||
id="stop2142" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2144" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2110">
|
||||
<stop
|
||||
style="stop-color:#686868;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2112" />
|
||||
<stop
|
||||
style="stop-color:#2d2d2d;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2114" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient21288">
|
||||
<stop
|
||||
id="stop21290"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.71875000;" />
|
||||
<stop
|
||||
id="stop21292"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient19750">
|
||||
<stop
|
||||
id="stop19752"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#000000;stop-opacity:0.13541667;" />
|
||||
<stop
|
||||
id="stop19754"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient16695">
|
||||
<stop
|
||||
id="stop16697"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#d2d2d2;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop16703"
|
||||
offset="0.50000000"
|
||||
style="stop-color:#b5b5b5;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop16699"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#e2e2e2;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient15921">
|
||||
<stop
|
||||
id="stop15923"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.69791669;" />
|
||||
<stop
|
||||
id="stop15925"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient14393">
|
||||
<stop
|
||||
id="stop14395"
|
||||
offset="0.00000000"
|
||||
style="stop-color:#00aee4;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop14397"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#0085cd;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient21288"
|
||||
id="linearGradient1349"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.857066,0,0,0.150912,2.209062e-17,2.053121)"
|
||||
x1="20.323792"
|
||||
y1="331.23621"
|
||||
x2="37.489967"
|
||||
y2="241.84418" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient19750"
|
||||
id="radialGradient1351"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(2.245984,0.445239)"
|
||||
cx="24.376842"
|
||||
cy="252.11171"
|
||||
fx="24.376842"
|
||||
fy="252.11171"
|
||||
r="25.267321" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15921"
|
||||
id="linearGradient2098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.326989,0,0,0.348518,2.980843,2.691526)"
|
||||
x1="2.3425686"
|
||||
y1="-6.7369881"
|
||||
x2="50.190037"
|
||||
y2="52.214569" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient14393"
|
||||
id="radialGradient2101"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.323909,0,0,0.364287,2.190563,2.434251)"
|
||||
cx="31.560766"
|
||||
cy="37.778625"
|
||||
fx="31.560766"
|
||||
fy="37.778625"
|
||||
r="33.42374" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient16695"
|
||||
id="linearGradient2108"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.491035,4.501878e-2,-4.267428e-2,0.465461,0.858471,-13.02487)"
|
||||
x1="39.650043"
|
||||
y1="94.938591"
|
||||
x2="37.900795"
|
||||
y2="113.51712" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2110"
|
||||
id="linearGradient2116"
|
||||
x1="59.498844"
|
||||
y1="122.69814"
|
||||
x2="67.379585"
|
||||
y2="89.817665"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.359641,0,0,0.359641,2.209062e-17,2.053121)" />
|
||||
<linearGradient
|
||||
id="linearGradient7470">
|
||||
<stop
|
||||
id="stop7472"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#da8200;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop7474"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#975a00;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2140"
|
||||
id="linearGradient4039"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="83.085045"
|
||||
y1="132.94974"
|
||||
x2="91.570328"
|
||||
y2="111.20621"
|
||||
gradientTransform="matrix(0.457362,0,0,0.458691,-2.693542,-9.697049)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2145"
|
||||
id="linearGradient4066"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.255842,0,0,0.259608,13.49265,15.49261)"
|
||||
x1="41.748001"
|
||||
y1="21.793085"
|
||||
x2="42.081985"
|
||||
y2="105.95706" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2181"
|
||||
id="linearGradient4072"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.259137,0,0,0.230112,13.62488,18.43492)"
|
||||
x1="117.60885"
|
||||
y1="82.89299"
|
||||
x2="70.376381"
|
||||
y2="84.782288" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2163"
|
||||
id="linearGradient4075"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.243864,0,0,0.233943,15.25391,18.10772)"
|
||||
x1="9.0540819"
|
||||
y1="82.89299"
|
||||
x2="99.580605"
|
||||
y2="82.89299" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient7470"
|
||||
id="linearGradient4077"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.243864,0,0,0.233943,15.25391,18.10772)"
|
||||
x1="7.7103319"
|
||||
y1="82.89299"
|
||||
x2="100.92435"
|
||||
y2="82.89299" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2199"
|
||||
id="linearGradient4080"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.243418,0,0,0.220372,14.39509,16.85343)"
|
||||
x1="95.185448"
|
||||
y1="34.484478"
|
||||
x2="81.492096"
|
||||
y2="38.158298" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2217"
|
||||
id="linearGradient4083"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.258466,0,0,0.232371,13.24294,16.4535)"
|
||||
x1="50.765572"
|
||||
y1="40.663181"
|
||||
x2="34.901329"
|
||||
y2="34.317482" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4961"
|
||||
id="linearGradient4967"
|
||||
x1="19.622213"
|
||||
y1="25.991302"
|
||||
x2="30.566313"
|
||||
y2="46.304565"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4971"
|
||||
id="linearGradient4977"
|
||||
x1="34.559845"
|
||||
y1="30.145554"
|
||||
x2="34.559845"
|
||||
y2="44.828697"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4981"
|
||||
id="linearGradient4987"
|
||||
x1="26.383921"
|
||||
y1="18.389904"
|
||||
x2="27.983469"
|
||||
y2="24.359499"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4991"
|
||||
id="linearGradient4997"
|
||||
x1="31.643028"
|
||||
y1="5.0432639"
|
||||
x2="31.643028"
|
||||
y2="40.581196"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4999"
|
||||
id="linearGradient5005"
|
||||
x1="27.753941"
|
||||
y1="30.145554"
|
||||
x2="9.3895664"
|
||||
y2="14.609607"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5882"
|
||||
id="linearGradient5888"
|
||||
x1="11.667261"
|
||||
y1="9.5510693"
|
||||
x2="11.667261"
|
||||
y2="38.191074"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-width="823"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="24"
|
||||
inkscape:cx="24"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
width="48px"
|
||||
height="48px"
|
||||
inkscape:showpageshadow="false"
|
||||
showgrid="false"
|
||||
borderlayer="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
transform="matrix(0.359641,0,0,0.359641,0.719282,2.232941)"
|
||||
d="M 111.5 112.25 A 56.75 11.25 0 1 1 -2,112.25 A 56.75 11.25 0 1 1 111.5 112.25 z"
|
||||
sodipodi:ry="11.25"
|
||||
sodipodi:rx="56.75"
|
||||
sodipodi:cy="112.25"
|
||||
sodipodi:cx="54.75"
|
||||
id="path18990"
|
||||
style="fill:url(#radialGradient1351);fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient1349);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 28.052005,41.973281 L 34.525545,40.354901 L 42.97711,41.343911 L 46.03406,39.455801 L 18.971068,37.208041 L 28.052005,41.973281 z "
|
||||
id="path20528" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2108);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2116);stroke-width:0.72012359;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="M 23.714488,18.330801 C 23.714488,18.330801 30.108301,39.865931 27.833257,41.706701 C 27.088551,42.378471 24.146676,43.731151 20.696732,45.037261 C 14.340314,45.033251 9.2004398,44.799211 5.8642504,41.656511 L 5.9471959,40.202701 C 8.3885407,39.728291 18.011442,39.237181 18.792515,38.486921 C 20.415534,36.927921 15.995619,18.078535 15.995619,18.078535 L 23.714488,18.330801 z "
|
||||
id="path15935"
|
||||
sodipodi:nodetypes="ccccczcc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.20666665;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 20.689661,43.119461 C 22.827076,42.592281 25.124848,41.959271 27.00481,40.625091 C 27.557596,40.073141 26.915749,35.133081 26.109283,32.317221 C 26.426091,32.476831 26.742898,32.636451 27.059705,32.796061 C 27.45176,35.202311 28.494752,40.285861 27.642951,41.387901 C 27.157416,41.918391 23.73819,43.554641 20.57709,44.675951 L 20.689661,43.119461 z "
|
||||
id="path18223"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:white;fill-opacity:0.6533333;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.2908067,40.505811 C 9.1095696,42.266531 13.360682,43.501821 20.660997,43.125291 L 20.55843,44.683031 C 12.751072,44.718431 8.9244771,43.840371 6.2346462,41.506291 L 6.2908067,40.505811 z "
|
||||
id="path17463"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ddd;fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.5000055,10.515606 L 31.919854,3.4999991 L 34.500031,4.1377817 L 34.500031,35.516679 L 31.919854,35.771791 L 4.5000055,33.645842 L 4.5000055,10.515606 z "
|
||||
id="path12111"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:black;fill-opacity:0.14666664;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 31.465278,4.0915306 L 31.545745,35.240961 L 33.906121,35.039241 L 34,4.5798996 L 31.465278,4.0915306 z "
|
||||
id="path12873"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient2101);fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5005);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.499998,12.565745 L 7.499998,30.712289 L 28.500001,31.500003 L 28.500001,7.4999983 L 7.499998,12.565745 z "
|
||||
id="path13633"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2098);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8,12.976693 C 8.0893998,18.423409 8.1787994,23.870119 8.2681992,29.316841 C 12.240102,20.593799 16.058748,12.285486 28,10.861599 C 27.987228,9.9077326 27.974457,8.9538658 27.961685,8 C 21.307791,9.658898 14.653895,11.317796 8,12.976693 z "
|
||||
id="path15161"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4039);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 39.187247,46.258478 L 48,42.690701 L 38.459588,40.663553 L 39.187247,46.258478 z "
|
||||
id="path1410" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4997);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 31.5,4.0883883 L 31.5,35.088388"
|
||||
id="path4989" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient5888);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.4999985,11.021737 L 31.091834,4.4999991 L 33.499996,5.0928846 L 33.499996,34.26284 L 31.091834,34.499993 L 5.4999985,32.523701 L 5.4999985,11.021737 z "
|
||||
id="path5007"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#d6d6d6;fill-opacity:1;fill-rule:evenodd;stroke:#757575;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.522132,30.5 C 19.522132,30.5 18.680481,18.05541 27.37758,17.518079 C 35.988358,16.980747 36.441558,28.608594 36.441558,28.608594 L 32.2117,28.350675 C 32.2117,28.350675 31.649735,20.82674 27.463903,21.386863 C 23.398019,21.930937 23.600287,29.296379 23.600287,29.296379 L 19.522132,30.5 z "
|
||||
id="path7480"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4083);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.429128,28.269533 C 22.594666,28.37301 21.760205,28.554097 20.925743,28.657575 C 21.645105,25.734324 22.796089,20.541027 26.623102,21.032547 C 24.644851,21.756892 23.249289,24.557263 23.429128,28.269533 z "
|
||||
id="path8208"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4080);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.069178,27.028878 C 33.85238,24.673652 33.249421,22.355226 33.032628,20 C 34.577289,21.453616 35.674809,24.011245 36,27.120879 C 35.241218,27.047278 34.827955,27.102478 34.069178,27.028878 z "
|
||||
id="path8218"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4987);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.519601,30.500003 C 20.519601,30.500003 19.774406,19.012676 27.474788,18.516677 C 35.098741,18.020678 35.500003,28.754088 35.500003,28.754088 L 33.301697,28.648591 C 33.301697,28.648591 32.406388,20.200811 27.46283,20.408488 C 22.563465,20.616166 22.671978,30.361239 22.671978,30.361239 L 20.519601,30.500003 z "
|
||||
id="path4979"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4075);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4077);stroke-width:0.9999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.499993,30.041429 C 21.704178,28.586548 28.84553,27.518408 34.431911,27.499993 C 36.639589,27.61049 38.328938,28.052479 39.499969,28.494467 L 39.499969,45.953038 C 38.444124,46.800183 36.581996,47.150092 34.431911,47.5 C 28.672756,47.389499 21.992135,46.560774 17.499993,44.848062 L 17.499993,30.041429 z "
|
||||
id="path5270"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4072);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.025631,47 L 34.003996,28 C 36.2968,28.153142 37.226481,28.402351 39,28.882122 L 39,45.673803 C 37.882799,46.365647 36.116493,46.673215 34.025631,47 z "
|
||||
id="path6008"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<g
|
||||
id="g8247"
|
||||
transform="matrix(0.258466,0,0,0.259217,13.24294,14.55384)">
|
||||
<path
|
||||
sodipodi:nodetypes="csccccsc"
|
||||
id="path8238"
|
||||
d="M 40.73975,78.292968 C 36.932299,78.292968 33.840106,82.815614 33.840106,88.396407 C 33.840106,92.772927 35.75462,96.469749 38.411036,97.875694 L 35.616582,113.93783 L 46.315342,115.97894 L 43.201531,97.807428 C 45.788859,96.349402 47.639394,92.700278 47.639394,88.396407 C 47.639394,82.815614 44.5472,78.292968 40.73975,78.292968 z "
|
||||
style="opacity:1;color:black;fill:black;fill-opacity:0.49200003;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
sodipodi:nodetypes="csccccsc"
|
||||
id="path8245"
|
||||
d="M 42.950424,79.484971 C 39.929313,79.484971 37.475738,83.781927 37.475738,89.084224 C 37.475738,93.242344 38.994855,96.754687 41.102651,98.090472 L 38.70832,114.56023 L 46.36425,115.98591 L 43.133742,97.958381 C 45.18672,96.573114 47.754163,92.829013 47.754163,88.739915 C 47.754163,83.437618 45.971536,79.484971 42.950424,79.484971 z "
|
||||
style="opacity:1;color:black;fill:black;fill-opacity:0.83999999;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient4066);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 18,30.492774 C 18,34.076589 18.021364,37.768786 18.021364,41.352599 C 21.211394,35.398843 27.135738,32.219655 34,43 C 34,37.999998 34,33.000001 34,28 C 30.404093,28 23.433022,28.563584 18,30.492774 z "
|
||||
id="path8228"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4967);stroke-width:0.99999964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18.500004,30.787291 C 22.321996,29.477898 28.814145,28.516573 33.892682,28.499998 C 35.899666,28.599446 37.43544,28.997236 38.500015,29.395025 L 38.500015,45.107732 C 37.540154,45.870162 35.847308,46.18508 33.892682,46.499997 C 28.657078,46.400546 22.583775,45.654694 18.500004,44.113254 L 18.500004,30.787291 z "
|
||||
id="path4959"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient4977);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 34.5,29.5 L 34.5,46.5"
|
||||
id="path4969" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 24 KiB |
642
datas/icon-themes/edeneu/scalable/apps/system-users.svg
Normal file
@@ -0,0 +1,642 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg14"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/silvestre/Desktop/Neu/scalable/apps"
|
||||
sodipodi:docname="system-users.svg"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient4925">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4927" />
|
||||
<stop
|
||||
id="stop4933"
|
||||
offset="0.5"
|
||||
style="stop-color:#f3f3f3;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#bfbfbf;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4929" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient28711">
|
||||
<stop
|
||||
id="stop28713"
|
||||
offset="0"
|
||||
style="stop-color:white;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#bcbcbc;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop28715" />
|
||||
<stop
|
||||
id="stop28717"
|
||||
offset="0.75"
|
||||
style="stop-color:#9b9b9b;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop28719"
|
||||
offset="1"
|
||||
style="stop-color:#797979;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient26840">
|
||||
<stop
|
||||
style="stop-color:#dd1a1a;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop26842" />
|
||||
<stop
|
||||
style="stop-color:#971212;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop26844" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient22429">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop22431" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop22433" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient21548">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop21550" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop21552" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient18874">
|
||||
<stop
|
||||
style="stop-color:#ddd;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop18876" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop18878" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient12737">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop12739" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop12741" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient10098">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop10100" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.3004292"
|
||||
offset="1"
|
||||
id="stop10102" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient8342">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8344" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop8346" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4832">
|
||||
<stop
|
||||
style="stop-color:#fffdf5;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4834" />
|
||||
<stop
|
||||
id="stop4840"
|
||||
offset="0.5"
|
||||
style="stop-color:#ffe16f;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#c4a600;stop-opacity:1;"
|
||||
offset="0.75"
|
||||
id="stop4842" />
|
||||
<stop
|
||||
style="stop-color:#aa9000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4836" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient28711"
|
||||
id="radialGradient33212"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.166794,1.633432e-16,-1.633432e-16,1.166794,-14.1775,-2.918896)"
|
||||
cx="83.051956"
|
||||
cy="15.584253"
|
||||
fx="83.051956"
|
||||
fy="15.584253"
|
||||
r="21.75" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8342"
|
||||
id="linearGradient33214"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="85.622726"
|
||||
y1="-5.7974238"
|
||||
x2="85.622726"
|
||||
y2="45.035698" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10098"
|
||||
id="linearGradient33216"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="75.860703"
|
||||
y1="-0.11439113"
|
||||
x2="87.538048"
|
||||
y2="43.466064" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12737"
|
||||
id="linearGradient33218"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="82.341637"
|
||||
y1="22.807331"
|
||||
x2="75.412285"
|
||||
y2="18.754719" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4925"
|
||||
id="radialGradient33220"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.144552,4.995918e-16,-1.181575e-15,0.584199,-11.08144,8.437594)"
|
||||
cx="76.660767"
|
||||
cy="17.937725"
|
||||
fx="76.660767"
|
||||
fy="17.937725"
|
||||
r="6" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient18874"
|
||||
id="radialGradient33222"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.44898,-1.92277e-14,-9.723214)"
|
||||
cx="97.03125"
|
||||
cy="21.656244"
|
||||
fx="97.03125"
|
||||
fy="20.5779"
|
||||
r="1.53125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12737"
|
||||
id="linearGradient33224"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="82.341637"
|
||||
y1="22.807331"
|
||||
x2="75.412285"
|
||||
y2="18.754719" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4925"
|
||||
id="radialGradient33226"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.134321,-0.269128,0.271418,0.699749,-15.12345,27.06597)"
|
||||
cx="76.159027"
|
||||
cy="17.322357"
|
||||
fx="76.159027"
|
||||
fy="17.322357"
|
||||
r="6" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient18874"
|
||||
id="radialGradient33228"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-0.759933,0.680865,1.213188,-14.74497,69.12039)"
|
||||
cx="97.03125"
|
||||
cy="21.656244"
|
||||
fx="97.03125"
|
||||
fy="20.5779"
|
||||
r="1.53125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient22429"
|
||||
id="linearGradient33230"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(74,-75)"
|
||||
x1="90.093956"
|
||||
y1="31.230932"
|
||||
x2="89.283569"
|
||||
y2="42.931355" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient21548"
|
||||
id="linearGradient33232"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(74,-75)"
|
||||
x1="90.67585"
|
||||
y1="37.868645"
|
||||
x2="89.849945"
|
||||
y2="33.890083" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient26840"
|
||||
id="linearGradient33234"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(74,-75)"
|
||||
x1="88.379189"
|
||||
y1="39.938652"
|
||||
x2="88.379189"
|
||||
y2="36.394733" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4832"
|
||||
id="radialGradient33236"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.166794,1.633432e-16,-1.633432e-16,1.166794,-14.1775,-2.918896)"
|
||||
cx="83.051956"
|
||||
cy="15.584253"
|
||||
fx="83.051956"
|
||||
fy="15.584253"
|
||||
r="21.75" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient8342"
|
||||
id="linearGradient33238"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="85.622726"
|
||||
y1="-5.7974238"
|
||||
x2="85.622726"
|
||||
y2="45.035698" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10098"
|
||||
id="linearGradient33240"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="75.860703"
|
||||
y1="-0.11439113"
|
||||
x2="87.538048"
|
||||
y2="43.466064" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12737"
|
||||
id="linearGradient33242"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="82.341637"
|
||||
y1="22.807331"
|
||||
x2="75.412285"
|
||||
y2="18.754719" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient18874"
|
||||
id="radialGradient33246"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.44898,-1.976544e-14,-9.723214)"
|
||||
cx="97.03125"
|
||||
cy="21.656244"
|
||||
fx="97.03125"
|
||||
fy="20.5779"
|
||||
r="1.53125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12737"
|
||||
id="linearGradient33248"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="82.341637"
|
||||
y1="22.807331"
|
||||
x2="75.412285"
|
||||
y2="18.754719" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4925"
|
||||
id="radialGradient33250"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.134321,-0.269128,0.271418,0.699749,-15.12345,27.06597)"
|
||||
cx="76.159027"
|
||||
cy="17.322357"
|
||||
fx="76.159027"
|
||||
fy="17.322357"
|
||||
r="6" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient18874"
|
||||
id="radialGradient33252"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-0.759933,0.680865,1.213188,-14.74497,69.12039)"
|
||||
cx="97.03125"
|
||||
cy="21.656244"
|
||||
fx="97.03125"
|
||||
fy="20.5779"
|
||||
r="1.53125" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient22429"
|
||||
id="linearGradient33254"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(74,-75)"
|
||||
x1="89.283569"
|
||||
y1="30.661186"
|
||||
x2="89.283569"
|
||||
y2="42.931355" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient21548"
|
||||
id="linearGradient33256"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(74,-75)"
|
||||
x1="91"
|
||||
y1="41.25"
|
||||
x2="88.553329"
|
||||
y2="32.118896" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient26840"
|
||||
id="linearGradient33258"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(74,-75)"
|
||||
x1="88.379189"
|
||||
y1="39.938652"
|
||||
x2="88.379189"
|
||||
y2="36.394733" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4925"
|
||||
id="radialGradient4931"
|
||||
cx="76.34375"
|
||||
cy="18.108305"
|
||||
fx="76.34375"
|
||||
fy="18.108305"
|
||||
r="6"
|
||||
gradientTransform="matrix(1.25531,2.096951e-16,-4.959457e-16,0.640731,-19.4913,7.401295)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="29.998586"
|
||||
inkscape:cy="5.2056508"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:window-width="823"
|
||||
inkscape:window-height="536"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:showpageshadow="false"
|
||||
width="48px"
|
||||
height="48px"
|
||||
showgrid="false"
|
||||
showborder="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(0.771239,0,0,0.771239,-105.6149,58.62974)"
|
||||
id="g28659">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#radialGradient33236);fill-opacity:1;stroke:#8e7d00;stroke-width:1.28557706;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path28661"
|
||||
sodipodi:cx="87.875"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:ry="21.25"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
transform="matrix(1.010391,0,0,1.006783,72.86611,-75.16977)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#linearGradient33238);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path28663"
|
||||
sodipodi:cx="87.875"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:ry="21.25"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
transform="matrix(0.776982,0,0,0.503453,93.59768,-72.70658)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient33240);stroke-width:1.37096775;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path28665"
|
||||
sodipodi:cx="87.875"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:ry="21.25"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
transform="matrix(0.945766,0,0,0.945766,78.4684,-73.72824)" />
|
||||
<g
|
||||
id="g28667"
|
||||
transform="translate(68.1291,-78.37396)">
|
||||
<path
|
||||
transform="matrix(1.185096,0,0,2.55102,3.773128,-29.67347)"
|
||||
d="M 83.875 19.9375 A 6 3.0625 0 1 1 71.875,19.9375 A 6 3.0625 0 1 1 83.875 19.9375 z"
|
||||
sodipodi:ry="3.0625"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:cy="19.9375"
|
||||
sodipodi:cx="77.875"
|
||||
id="path28669"
|
||||
style="opacity:0.66527201;fill:black;fill-opacity:0.79399139;stroke:url(#linearGradient33242);stroke-width:0.74572259;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(1.080929,0,0,2.326792,11.88511,-25.20293)"
|
||||
style="fill:url(#radialGradient4931);fill-opacity:1;stroke:none;stroke-width:0.57513034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 83.875,19.9375 C 83.875,21.628 81.187,23 77.875,23 C 74.563,23 71.875,21.628 71.875,19.9375 C 71.875,18.247 74.563,16.875 77.875,16.875 C 81.187,16.875 83.875,18.247 83.875,19.9375 z "
|
||||
id="path28671" />
|
||||
<path
|
||||
transform="matrix(1.693537,0,0,1.460974,-69.58096,-9.187924)"
|
||||
d="M 98.5625 21.65625 A 1.53125 2.21875 0 1 1 95.5,21.65625 A 1.53125 2.21875 0 1 1 98.5625 21.65625 z"
|
||||
sodipodi:ry="2.21875"
|
||||
sodipodi:rx="1.53125"
|
||||
sodipodi:cy="21.65625"
|
||||
sodipodi:cx="97.03125"
|
||||
id="path28673"
|
||||
style="opacity:1;fill:url(#radialGradient33246);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="g28675"
|
||||
transform="matrix(0.838817,0,0,1.496679,77.85311,-86.3315)">
|
||||
<path
|
||||
transform="matrix(1.185096,0,0,1.515268,-12.91437,-9.335655)"
|
||||
style="opacity:0.66527201;fill:black;fill-opacity:0.79399139;stroke:url(#linearGradient33248);stroke-width:0.86355793;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 83.875,19.9375 C 83.875,21.628 81.187,23 77.875,23 C 76.220509,23 73.617112,22.799384 73.60083,21.885817 C 73.598575,21.75926 73.598253,21.635046 73.599969,21.513043 C 74.130782,21.571138 75.22073,18.599435 74.696801,17.882889 C 74.839131,17.689249 74.997277,17.498679 75.172348,17.309778 C 75.622549,16.824012 76.89588,16.875 77.875,16.875 C 81.187,16.875 83.875,18.247 83.875,19.9375 z "
|
||||
id="path28677"
|
||||
sodipodi:nodetypes="cssccssc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient33250);fill-opacity:1;stroke:none;stroke-width:0.57513034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 83.875,19.9375 C 83.875,21.628 81.187,23 77.875,23 C 76.144565,23 73.445601,22.712646 73.489089,21.764069 C 72.913112,20.085941 73.752281,18.315767 75.067938,17.35527 C 75.685082,16.904724 76.861096,16.875 77.875,16.875 C 81.187,16.875 83.875,18.247 83.875,19.9375 z "
|
||||
id="path28679"
|
||||
sodipodi:nodetypes="cscssc"
|
||||
transform="matrix(1.080929,0,0,1.38208,-4.80239,-6.680221)" />
|
||||
<path
|
||||
transform="matrix(2.018976,0,0,0.97927,-116.1862,0.835945)"
|
||||
d="M 98.5625 21.65625 A 1.53125 2.21875 0 1 1 95.5,21.65625 A 1.53125 2.21875 0 1 1 98.5625 21.65625 z"
|
||||
sodipodi:ry="2.21875"
|
||||
sodipodi:rx="1.53125"
|
||||
sodipodi:cy="21.65625"
|
||||
sodipodi:cx="97.03125"
|
||||
id="path28681"
|
||||
style="fill:url(#radialGradient33252);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient33254);fill-opacity:1;stroke:url(#linearGradient33256);stroke-width:1.29661441;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 173.625,-40.09375 C 173.625,-37.42 168.375,-33.4375 161.90625,-33.4375 C 155.4375,-33.4375 150.1875,-37.42 150.1875,-40.09375 C 150.1875,-42.7675 155.4375,-43.125 161.90625,-43.125 C 168.375,-43.125 173.625,-42.7675 173.625,-40.09375 z "
|
||||
id="path28683"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="opacity:1;fill:url(#linearGradient33258);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 157.8125,-39.375 C 154.8975,-39.375 153.14895,-37.846903 154,-36.40625 C 156.06157,-32.916427 166.4898,-33.241043 168.9375,-35.84375 C 170.08381,-37.062657 167.85463,-39.375 164.1875,-39.375 C 163.20775,-39.375 161.69823,-38.189893 160.96875,-37.8125 C 160.23927,-38.189893 158.79225,-39.375 157.8125,-39.375 z "
|
||||
id="path28685"
|
||||
sodipodi:nodetypes="cssscc" />
|
||||
</g>
|
||||
<g
|
||||
id="g27727"
|
||||
transform="matrix(0.771239,0,0,0.776316,-93.76171,70.88323)">
|
||||
<path
|
||||
transform="translate(74,-75)"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
sodipodi:ry="21.25"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:cx="87.875"
|
||||
id="path3957"
|
||||
style="opacity:1;fill:url(#radialGradient33212);fill-opacity:1;stroke:#969696;stroke-width:1.29236782;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.776982,0,0,0.503453,93.59768,-72.70658)"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
sodipodi:ry="21.25"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:cx="87.875"
|
||||
id="path5721"
|
||||
style="opacity:1;fill:url(#linearGradient33214);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.945766,0,0,0.939581,78.65873,-73.5726)"
|
||||
d="M 109.125 23.625 A 21.25 21.25 0 1 1 66.625,23.625 A 21.25 21.25 0 1 1 109.125 23.625 z"
|
||||
sodipodi:ry="21.25"
|
||||
sodipodi:rx="21.25"
|
||||
sodipodi:cy="23.625"
|
||||
sodipodi:cx="87.875"
|
||||
id="path8350"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient33216);stroke-width:1.37096822;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<g
|
||||
transform="matrix(1,0,0,1.066266,69.61607,-76.54277)"
|
||||
id="g19763">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.66527201;fill:black;fill-opacity:0.79399139;stroke:url(#linearGradient33218);stroke-width:0.71981293;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path11854"
|
||||
sodipodi:cx="77.875"
|
||||
sodipodi:cy="19.9375"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="3.0625"
|
||||
d="M 83.875 19.9375 A 6 3.0625 0 1 1 71.875,19.9375 A 6 3.0625 0 1 1 83.875 19.9375 z"
|
||||
transform="matrix(1.185096,0,0,2.55102,3.773128,-29.67347)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#radialGradient33220);fill-opacity:1;stroke:none;stroke-width:0.57513034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path13622"
|
||||
sodipodi:cx="77.875"
|
||||
sodipodi:cy="19.9375"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="3.0625"
|
||||
d="M 83.875 19.9375 A 6 3.0625 0 1 1 71.875,19.9375 A 6 3.0625 0 1 1 83.875 19.9375 z"
|
||||
transform="matrix(1.080929,0,0,2.326792,11.88511,-25.20293)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:url(#radialGradient33222);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path17124"
|
||||
sodipodi:cx="97.03125"
|
||||
sodipodi:cy="21.65625"
|
||||
sodipodi:rx="1.53125"
|
||||
sodipodi:ry="2.21875"
|
||||
d="M 98.5625 21.65625 A 1.53125 2.21875 0 1 1 95.5,21.65625 A 1.53125 2.21875 0 1 1 98.5625 21.65625 z"
|
||||
transform="matrix(1.704167,0,0,1.361216,-68.03547,-6.479224)" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.846598,0,0,1.511123,77.52817,-85.56481)"
|
||||
id="g22441">
|
||||
<path
|
||||
sodipodi:nodetypes="cssccssc"
|
||||
id="path19770"
|
||||
d="M 83.875,19.9375 C 83.875,21.628 81.187,23 77.875,23 C 76.220509,23 73.617112,22.799384 73.60083,21.885817 C 73.598575,21.75926 73.598253,21.635046 73.599969,21.513043 C 74.130782,21.571138 75.22073,18.599435 74.696801,17.882889 C 74.839131,17.689249 74.997277,17.498679 75.172348,17.309778 C 75.622549,16.824012 76.89588,16.875 77.875,16.875 C 81.187,16.875 83.875,18.247 83.875,19.9375 z "
|
||||
style="opacity:0.66527201;fill:black;fill-opacity:0.79399139;stroke:url(#linearGradient33224);stroke-width:0.85266036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
transform="matrix(1.185096,0,0,1.515268,-12.91437,-9.335655)" />
|
||||
<path
|
||||
transform="matrix(1.080929,0,0,1.38208,-4.80239,-6.680221)"
|
||||
sodipodi:nodetypes="cscssc"
|
||||
id="path19772"
|
||||
d="M 83.875,19.9375 C 83.875,21.628 81.187,23 77.875,23 C 76.144565,23 73.445601,22.712646 73.489089,21.764069 C 72.913112,20.085941 73.752281,18.315767 75.067938,17.35527 C 75.685082,16.904724 76.861096,16.875 77.875,16.875 C 81.187,16.875 83.875,18.247 83.875,19.9375 z "
|
||||
style="fill:url(#radialGradient33226);fill-opacity:1;stroke:none;stroke-width:0.57513034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:url(#radialGradient33228);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path19774"
|
||||
sodipodi:cx="97.03125"
|
||||
sodipodi:cy="21.65625"
|
||||
sodipodi:rx="1.53125"
|
||||
sodipodi:ry="2.21875"
|
||||
d="M 98.5625 21.65625 A 1.53125 2.21875 0 1 1 95.5,21.65625 A 1.53125 2.21875 0 1 1 98.5625 21.65625 z"
|
||||
transform="matrix(1.70415,0,0,0.863603,-83.77707,3.281845)" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="csssc"
|
||||
id="path19791"
|
||||
d="M 173.625,-40.09375 C 173.625,-37.42 168.375,-33.4375 161.90625,-33.4375 C 155.4375,-33.4375 150.1875,-37.42 150.1875,-40.09375 C 150.1875,-42.7675 155.4375,-43.125 161.90625,-43.125 C 168.375,-43.125 173.625,-42.7675 173.625,-40.09375 z "
|
||||
style="fill:url(#linearGradient33230);fill-opacity:1;stroke:url(#linearGradient33232);stroke-width:1.29236782;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="csssscc"
|
||||
id="path25962"
|
||||
d="M 157.8125,-39.375 C 154.8975,-39.375 152.89174,-37.662477 154,-36.40625 C 154.92451,-35.358303 158.51374,-34.211713 161.26056,-34.112609 C 164.31105,-34.004148 167.85852,-34.788874 168.9375,-35.84375 C 170.13428,-37.013801 167.85463,-39.375 164.1875,-39.375 C 163.20775,-39.375 161.69823,-38.189893 160.96875,-37.8125 C 160.23927,-38.189893 158.79225,-39.375 157.8125,-39.375 z "
|
||||
style="opacity:1;fill:url(#linearGradient33234);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 26 KiB |