2007-02-25 Benny Malengier <bm@cage.ugent.be>
* src/gramps_main.py: new icons, register them * src/DateEdit.py : use icon * src/PageView.py : use icon * src/DisplayTabs/_AddrEmbedList.py and src/DisplayTabs/_AttrEmbedList.py : use icon svn: r8236
@ -1,3 +1,9 @@
|
||||
2007-02-25 Benny Malengier <bm@cage.ugent.be>
|
||||
* src/gramps_main.py: new icons, register them
|
||||
* src/DateEdit.py : use icon
|
||||
* src/PageView.py : use icon
|
||||
* src/DisplayTabs/_AddrEmbedList.py and
|
||||
src/DisplayTabs/_AttrEmbedList.py : use icon
|
||||
2007-02-25 Don Allingham <don@gramps-project.org>
|
||||
* src/DataViews/Makefile.am: install _NoteView.py
|
||||
* src/DisplayTabs/Makefile.am: install NoteModel.py
|
||||
|
@ -120,7 +120,7 @@ class DateEdit:
|
||||
self.button_obj = button_obj
|
||||
|
||||
image = gtk.Image()
|
||||
image.set_from_stock('gramps-date', gtk.ICON_SIZE_BUTTON)
|
||||
image.set_from_stock('gramps-date-edit', gtk.ICON_SIZE_BUTTON)
|
||||
self.button_obj.set_image(image)
|
||||
self.button_obj.set_relief(gtk.RELIEF_NORMAL)
|
||||
self.pixmap_obj = button_obj.get_child()
|
||||
|
@ -60,6 +60,9 @@ class AddrEmbedList(EmbeddedList):
|
||||
self.data = data
|
||||
EmbeddedList.__init__(self, dbstate, uistate, track,
|
||||
_('Addresses'), AddressModel)
|
||||
|
||||
def get_icon_name(self):
|
||||
return 'gramps-address'
|
||||
|
||||
def get_data(self):
|
||||
return self.data
|
||||
|
@ -65,6 +65,9 @@ class AttrEmbedList(EmbeddedList):
|
||||
def get_user_values(self):
|
||||
return self.dbstate.db.get_person_attribute_types()
|
||||
|
||||
def get_icon_name(self):
|
||||
return 'gramps-attribute'
|
||||
|
||||
def get_data(self):
|
||||
return self.data
|
||||
|
||||
|
@ -247,9 +247,9 @@ class BookMarkView(PageView):
|
||||
def define_actions(self):
|
||||
self.book_action = gtk.ActionGroup(self.title + '/Bookmark')
|
||||
self.book_action.add_actions([
|
||||
('AddBook','gramps-add-bookmark', _('_Add bookmark'),'<control>d',None,
|
||||
('AddBook','gramps-bookmark-new', _('_Add bookmark'),'<control>d',None,
|
||||
self.add_bookmark),
|
||||
('EditBook','gramps-edit-bookmark', _('_Edit bookmarks'),'<control>b',None,
|
||||
('EditBook','gramps-bookmark-edit', _('_Edit bookmarks'),'<control>b',None,
|
||||
self.edit_bookmarks),
|
||||
])
|
||||
|
||||
|
@ -64,45 +64,64 @@ from QuestionDialog import ErrorDialog
|
||||
|
||||
|
||||
def register_stock_icons ():
|
||||
'''
|
||||
Add the gramps names for its icons (eg gramps-person) to the GTK icon
|
||||
factory. This allows all gramps modules to call up the icons by their name
|
||||
'''
|
||||
|
||||
#iconpath to the base image. The front of the list has highest priority
|
||||
if platform.system() == "Windows":
|
||||
iconpaths = [(os.path.join(const.image_dir,'48x48'),'.png'),
|
||||
(const.image_dir,'.png')]
|
||||
iconpaths = [
|
||||
(os.path.join(const.image_dir,'48x48'),'.png'),
|
||||
(const.image_dir,'.png'),
|
||||
]
|
||||
else :
|
||||
iconpaths = [(os.path.join(const.image_dir,'scalable'),'.svg'),
|
||||
(const.image_dir,'.svg'), (const.image_dir,'.png')]
|
||||
iconpaths = [
|
||||
(os.path.join(const.image_dir,'scalable'),'.svg'),
|
||||
(const.image_dir,'.svg'), (const.image_dir,'.png'),
|
||||
]
|
||||
|
||||
#sizes: menu=16,small_toolbar=18,large_toolbar=24,button=20,dnd=32,dialog=48
|
||||
extraiconsize = [('22x22',gtk.ICON_SIZE_LARGE_TOOLBAR),
|
||||
('16x16',gtk.ICON_SIZE_MENU),
|
||||
('22x22',gtk.ICON_SIZE_BUTTON),
|
||||
#sizes: menu=16, small_toolbar=18, large_toolbar=24,
|
||||
# button=20, dnd=32, dialog=48
|
||||
#add to the back of this list to overrule images set at beginning of list
|
||||
extraiconsize = [
|
||||
(os.path.join(const.image_dir, '22x22'),
|
||||
gtk.ICON_SIZE_LARGE_TOOLBAR),
|
||||
(os.path.join(const.image_dir, '16x16'),
|
||||
gtk.ICON_SIZE_MENU),
|
||||
(os.path.join(const.image_dir, '22x22'),
|
||||
gtk.ICON_SIZE_BUTTON),
|
||||
]
|
||||
|
||||
items = [
|
||||
('gramps-person',_('Person'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-parents',_('Add Parents'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-spouse',_('Add Spouse'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-relation',_('Relationships'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-family',_('Family'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-media',_('Media'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-pedigree',_('Pedigree'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-repository',_('Repositories'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-source',_('Sources'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-event',_('Events'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-place',_('Places'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-tools',_('Tools'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-reports',_('Reports'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-notes',_('Notes'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-address',_('Address'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-attribute',_('Attribute'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
#('gramps-bookmark',_('Bookmarks'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
#('gramps-bookmark-delete',_('Delete bookmark'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-bookmark-edit',_('Edit Bookmarks'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-bookmark-new',_('Add Bookmark'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-date',_('Date'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-date-edit',_('Edit Date'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-event',_('Events'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-family',_('Family'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-media',_('Media'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-notes',_('Notes'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-parents',_('Add Parents'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-pedigree',_('Pedigree'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-person',_('Person'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-place',_('Places'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-relation',_('Relationships'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-reports',_('Reports'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-repository',_('Repositories'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-source',_('Sources'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-spouse',_('Add Spouse'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-tools',_('Tools'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
]
|
||||
# the following icons are not yet in new directory structure
|
||||
# they should be ported in the near future
|
||||
items_legacy = [
|
||||
('gramps-date',_('Date'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-parents',_('Add Parents'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-export',_('Export'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-undo-history',_('Undo History'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-add-bookmark',_('Add bookmark'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-edit-bookmark',_('Edit bookmarks'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-url',_('URL'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-sharefamily',_('Share Family'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
('gramps-viewmedia',_('View'),gtk.gdk.CONTROL_MASK,0,''),
|
||||
@ -136,7 +155,7 @@ def register_stock_icons ():
|
||||
for size in extraiconsize :
|
||||
pixbuf = 0
|
||||
icon_file = os.path.expanduser(
|
||||
os.path.join(const.image_dir, size[0], data[0]+'.png'))
|
||||
os.path.join(size[0], data[0]+'.png'))
|
||||
if os.path.isfile(icon_file):
|
||||
try:
|
||||
pixbuf = gtk.gdk.pixbuf_new_from_file (icon_file)
|
||||
|
@ -5,13 +5,23 @@ SUBDIRS =
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/images/16x16
|
||||
|
||||
dist_pkgdata_DATA = \
|
||||
gramps-attribute.png \
|
||||
gramps-address.png \
|
||||
gramps-bookmark-delete.png \
|
||||
gramps-bookmark-edit.png \
|
||||
gramps-bookmark-new.png \
|
||||
gramps-bookmark.png \
|
||||
gramps-date-edit.png \
|
||||
gramps-date.png \
|
||||
gramps-event.png \
|
||||
gramps-family.png \
|
||||
gramps-media.png \
|
||||
gramps-notes.png \
|
||||
gramps-parents.png \
|
||||
gramps-pedigree.png \
|
||||
gramps-person.png \
|
||||
gramps-place.png \
|
||||
gramps-relation.png \
|
||||
gramps-repository.png \
|
||||
gramps-source.png
|
||||
gramps-source.png \
|
||||
gramps-spouse.png
|
BIN
src/images/16x16/gramps-address.png
Normal file
After Width: | Height: | Size: 530 B |
BIN
src/images/16x16/gramps-attribute.png
Normal file
After Width: | Height: | Size: 732 B |
BIN
src/images/16x16/gramps-bookmark-delete.png
Normal file
After Width: | Height: | Size: 675 B |
BIN
src/images/16x16/gramps-bookmark-edit.png
Normal file
After Width: | Height: | Size: 772 B |
BIN
src/images/16x16/gramps-bookmark-new.png
Normal file
After Width: | Height: | Size: 777 B |
BIN
src/images/16x16/gramps-bookmark.png
Normal file
After Width: | Height: | Size: 633 B |
BIN
src/images/16x16/gramps-date-edit.png
Normal file
After Width: | Height: | Size: 885 B |
BIN
src/images/16x16/gramps-date.png
Normal file
After Width: | Height: | Size: 604 B |
BIN
src/images/16x16/gramps-parents.png
Normal file
After Width: | Height: | Size: 857 B |
BIN
src/images/16x16/gramps-spouse.png
Normal file
After Width: | Height: | Size: 759 B |
@ -5,13 +5,23 @@ SUBDIRS =
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/images/22x22
|
||||
|
||||
dist_pkgdata_DATA = \
|
||||
gramps-attribute.png \
|
||||
gramps-address.png \
|
||||
gramps-bookmark-delete.png \
|
||||
gramps-bookmark-edit.png \
|
||||
gramps-bookmark-new.png \
|
||||
gramps-bookmark.png \
|
||||
gramps-date-edit.png \
|
||||
gramps-date.png \
|
||||
gramps-event.png \
|
||||
gramps-family.png \
|
||||
gramps-media.png \
|
||||
gramps-notes.png \
|
||||
gramps-parents.png \
|
||||
gramps-pedigree.png \
|
||||
gramps-person.png \
|
||||
gramps-place.png \
|
||||
gramps-relation.png \
|
||||
gramps-repository.png \
|
||||
gramps-source.png
|
||||
gramps-source.png \
|
||||
gramps-spouse.png
|
BIN
src/images/22x22/gramps-address.png
Normal file
After Width: | Height: | Size: 725 B |
BIN
src/images/22x22/gramps-attribute.png
Normal file
After Width: | Height: | Size: 878 B |
BIN
src/images/22x22/gramps-bookmark-delete.png
Normal file
After Width: | Height: | Size: 888 B |
BIN
src/images/22x22/gramps-bookmark-edit.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
src/images/22x22/gramps-bookmark-new.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
src/images/22x22/gramps-bookmark.png
Normal file
After Width: | Height: | Size: 804 B |
BIN
src/images/22x22/gramps-date-edit.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
BIN
src/images/22x22/gramps-parents.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
src/images/22x22/gramps-spouse.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
@ -5,6 +5,14 @@ SUBDIRS =
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/images/48x48
|
||||
|
||||
dist_pkgdata_DATA = \
|
||||
gramps-attribute.png \
|
||||
gramps-address.png \
|
||||
gramps-bookmark-delete.png \
|
||||
gramps-bookmark-edit.png \
|
||||
gramps-bookmark-new.png \
|
||||
gramps-bookmark.png \
|
||||
gramps-date-edit.png \
|
||||
gramps-date.png \
|
||||
gramps-event.png \
|
||||
gramps-family.png \
|
||||
gramps-media.png \
|
||||
@ -15,8 +23,7 @@ dist_pkgdata_DATA = \
|
||||
gramps-place.png \
|
||||
gramps.png \
|
||||
gramps-relation.png \
|
||||
gramps-reports.png \
|
||||
gramps-repository.png \
|
||||
gramps-source.png \
|
||||
gramps-spouse.png \
|
||||
gramps-tools.png
|
||||
gramps-tools.png
|
BIN
src/images/48x48/gramps-address.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
src/images/48x48/gramps-attribute.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/images/48x48/gramps-bookmark-delete.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
src/images/48x48/gramps-bookmark-edit.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
src/images/48x48/gramps-bookmark-new.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
src/images/48x48/gramps-bookmark.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
src/images/48x48/gramps-date-edit.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
src/images/48x48/gramps-date.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
@ -60,13 +60,7 @@ dist_pkgdata_DATA = \
|
||||
gramps.png\
|
||||
locked.png\
|
||||
logo.png\
|
||||
gramps-parents.svg\
|
||||
splash.jpg\
|
||||
gramps-add-bookmark.png\
|
||||
gramps-date.png\
|
||||
stock_bookmark.png\
|
||||
stock_delete-bookmark.png\
|
||||
gramps-edit-bookmark.png\
|
||||
gramps-export.png\
|
||||
gramps-url.png\
|
||||
stock_new-html.png\
|
||||
|
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
@ -5,18 +5,25 @@ SUBDIRS =
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/images/scalable
|
||||
|
||||
dist_pkgdata_DATA = \
|
||||
gramps-event.svg \
|
||||
gramps-family.svg \
|
||||
gramps-media.svg \
|
||||
gramps-notes.svg \
|
||||
gramps-parents.svg \
|
||||
gramps-pedigree.svg \
|
||||
gramps-person.svg \
|
||||
gramps-place.svg \
|
||||
gramps.svg \
|
||||
gramps-relation.svg \
|
||||
gramps-reports.svg \
|
||||
gramps-repository.svg \
|
||||
gramps-source.svg \
|
||||
gramps-spouse.svg \
|
||||
gramps-tools.svg
|
||||
gramps-attribute.png \
|
||||
gramps-address.png \
|
||||
gramps-bookmark-delete.png \
|
||||
gramps-bookmark-edit.png \
|
||||
gramps-bookmark-new.png \
|
||||
gramps-bookmark.png \
|
||||
gramps-date-edit.png \
|
||||
gramps-date.png \
|
||||
gramps-event.png \
|
||||
gramps-family.png \
|
||||
gramps-media.png \
|
||||
gramps-notes.png \
|
||||
gramps-parents.png \
|
||||
gramps-pedigree.png \
|
||||
gramps-person.png \
|
||||
gramps-place.png \
|
||||
gramps.png \
|
||||
gramps-relation.png \
|
||||
gramps-repository.png \
|
||||
gramps-source.png \
|
||||
gramps-spouse.png \
|
||||
gramps-tools.png
|
423
src/images/scalable/gramps-address.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"
|
||||
sodipodi:docname="gramps-address.svg"
|
||||
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
|
||||
inkscape:version="0.43"
|
||||
sodipodi:version="0.32"
|
||||
id="svg5816"
|
||||
height="48px"
|
||||
width="48px"
|
||||
inkscape:export-filename="/home/benny/programms/gramps/myicons/16x16/gramps-address.png"
|
||||
inkscape:export-xdpi="30"
|
||||
inkscape:export-ydpi="30">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient2624">
|
||||
<stop
|
||||
id="stop2626"
|
||||
offset="0"
|
||||
style="stop-color:#dfe0df;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#a6b0a6;stop-opacity:1;"
|
||||
offset="0.23809524"
|
||||
id="stop2630" />
|
||||
<stop
|
||||
id="stop2628"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#b5beb5;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2573">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2575" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2577" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2274">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.12871288;"
|
||||
offset="0.0000000"
|
||||
id="stop2276" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2278" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient9749">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop9751" />
|
||||
<stop
|
||||
style="stop-color:#ededed;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop9753" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient15107">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop15109" />
|
||||
<stop
|
||||
style="stop-color:#e2e2e2;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop15111" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient10691"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop10693"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop10695"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4274">
|
||||
<stop
|
||||
id="stop4276"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:0.25490198;" />
|
||||
<stop
|
||||
id="stop4278"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2187">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2189" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2191" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6901"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6903"
|
||||
offset="0"
|
||||
style="stop-color:#3465a4;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6905"
|
||||
offset="1"
|
||||
style="stop-color:#3465a4;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6925"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop6927"
|
||||
offset="0"
|
||||
style="stop-color:#204a87;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6929"
|
||||
offset="1"
|
||||
style="stop-color:#204a87;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6901"
|
||||
id="linearGradient2562"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1,-1,0,37.07553,-5.879343)"
|
||||
x1="14.751649"
|
||||
y1="15.868432"
|
||||
x2="12.252101"
|
||||
y2="30.55784" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6925"
|
||||
id="linearGradient2564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1,-1,0,37.07553,-5.879343)"
|
||||
x1="12.25"
|
||||
y1="18.25"
|
||||
x2="9.5821323"
|
||||
y2="27.057337" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2187"
|
||||
id="linearGradient2566"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.412791e-16,0.914114,-0.914114,-1.412791e-16,39.78243,-9.748047)"
|
||||
x1="33.059906"
|
||||
y1="27.394117"
|
||||
x2="12.624337"
|
||||
y2="12.583769" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4274"
|
||||
id="linearGradient2365"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0,1,-1,0,37.07553,-5.879343)"
|
||||
x1="32.058014"
|
||||
y1="8.6689339"
|
||||
x2="27.90929"
|
||||
y2="18.068739" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10691"
|
||||
id="radialGradient1481"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(1.902215,0.525703)"
|
||||
cx="6.7027131"
|
||||
cy="73.615714"
|
||||
fx="6.7027131"
|
||||
fy="73.615714"
|
||||
r="7.2284161" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15107"
|
||||
id="linearGradient1483"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.343475,0,0,1.505846,2.879511,-2.266018)"
|
||||
x1="11.572842"
|
||||
y1="4.7461626"
|
||||
x2="18.475286"
|
||||
y2="26.022910" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2624"
|
||||
id="linearGradient1487"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.454781,0,0,0.762004,2.88175,0.337386)"
|
||||
x1="9.1643066"
|
||||
y1="38.070892"
|
||||
x2="9.8855038"
|
||||
y2="52.090679" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2274"
|
||||
id="radialGradient1491"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.629929,0.459373,-0.147675,0.248512,16.51724,9.053737)"
|
||||
cx="27.741131"
|
||||
cy="38.711506"
|
||||
fx="27.741131"
|
||||
fy="38.711506"
|
||||
r="17.977943" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15107"
|
||||
id="linearGradient1493"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.276531,0,0,-1.406115,24.24763,33.3374)"
|
||||
x1="11.74217"
|
||||
y1="11.48487"
|
||||
x2="13.846983"
|
||||
y2="11.981981" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15107"
|
||||
id="linearGradient1497"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.296015,0,0,-1.43692,3.746576,33.20516)"
|
||||
x1="11.74217"
|
||||
y1="11.48487"
|
||||
x2="13.846983"
|
||||
y2="11.981981" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15107"
|
||||
id="linearGradient1501"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.570607,0,0,-1.231511,2.973436,33.33485)"
|
||||
x1="10.027"
|
||||
y1="20.219761"
|
||||
x2="17.178024"
|
||||
y2="-7.5274644" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient9749"
|
||||
id="linearGradient1503"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.370928,0,0,-1.46456,2.525057,33.71269)"
|
||||
x1="11.841544"
|
||||
y1="4.2507305"
|
||||
x2="40.024059"
|
||||
y2="7.4121075" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2573"
|
||||
id="linearGradient1505"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.397203"
|
||||
y1="33.357376"
|
||||
x2="22.17771"
|
||||
y2="31.026741" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="303"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="535"
|
||||
inkscape:window-width="760"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="21"
|
||||
inkscape:cx="34.5"
|
||||
inkscape:zoom="4.5853659"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.16862745"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:grid-points="true"
|
||||
gridempspacing="2"
|
||||
gridtolerance="2"
|
||||
inkscape:object-bbox="true"
|
||||
inkscape:object-points="true"
|
||||
objecttolerance="2"
|
||||
guidetolerance="2"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
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" />
|
||||
<dc:title>Mail Reply</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Garrett LeSage</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner, Andreas Nilsson</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>mail</rdf:li>
|
||||
<rdf:li>e-mail</rdf:li>
|
||||
<rdf:li>reply</rdf:li>
|
||||
<rdf:li>sender</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</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
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.3;color:#000000;fill:url(#radialGradient1481);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;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"
|
||||
id="path10699"
|
||||
sodipodi:cx="12.75"
|
||||
sodipodi:cy="38.700001"
|
||||
sodipodi:rx="13.75"
|
||||
sodipodi:ry="3.8"
|
||||
d="M 26.5 38.700001 A 13.75 3.8 0 1 1 -1,38.700001 A 13.75 3.8 0 1 1 26.5 38.700001 z"
|
||||
transform="matrix(1.596973,0,0,1.526064,3.680228,-19.70947)"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<g
|
||||
id="g2570"
|
||||
transform="matrix(1.004727,0,0,1.006001,5.456518e-2,-9.119156)"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true">
|
||||
<path
|
||||
id="path12723"
|
||||
d="M 6.34375,15.454879 L 6.34375,41.44216 L 43.3125,41.44216 L 43.25,15.554447 C 43.249987,15.548732 43.250374,15.527358 43.25,15.521258 C 43.249269,15.514776 43.251086,15.494928 43.25,15.488068 C 43.248562,15.480833 43.220538,15.462487 43.21875,15.454879 L 6.34375,15.454879 z "
|
||||
style="fill:url(#linearGradient1483);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99466482;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
id="path1634"
|
||||
d="M 20.490674,29.058712 L 7.09471,40.0307 L 21.003552,30.426394 L 30.02171,30.426394 L 42.440757,39.908587 L 30.577332,29.058712 L 20.490674,29.058712 z "
|
||||
style="fill:url(#linearGradient1487);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
id="path15103"
|
||||
d="M 7.34375,16.733862 C 7.3370547,16.747199 7.3491438,16.753505 7.34375,16.765454 C 7.3413822,16.771079 7.3145363,16.791778 7.3125,16.797048 C 7.3107976,16.801959 7.313866,16.824087 7.3125,16.82864 C 7.3114729,16.83283 7.3131858,16.85641 7.3125,16.860233 L 7.34375,40.333651 L 42.28125,40.333651 L 42.21875,16.986604 C 42.218063,16.982892 42.219774,16.959094 42.21875,16.955011 C 42.204092,16.906933 42.176921,16.822855 42.125,16.733862 L 7.34375,16.733862 z "
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99466479;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
id="path2563"
|
||||
d="M 23.329298,32.996721 C 20.937189,32.550375 7.9003872,18.771125 6.5966059,16.372022 C 6.5816495,16.343448 6.5559705,16.288608 6.5446896,16.2636 L 41.057803,16.2636 C 40.780724,18.766404 33.533576,32.769346 31.496524,32.996721 C 31.488351,32.997189 31.475247,32.996721 31.467251,32.996721 L 23.446392,32.996721 C 23.412766,32.996721 23.368838,33.004099 23.329298,32.996721 z "
|
||||
style="fill:url(#radialGradient1491);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.85660434;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
id="path1613"
|
||||
d="M 20.77475,31.085394 C 18.407309,30.694257 7.945269,18.619435 7.1185841,16.517089 C 7.109327,16.49205 7.094677,16.443993 7.088438,16.422079 L 42.630645,16.422079 C 41.807029,18.615299 31.332195,30.886144 29.185502,31.085394 C 29.176984,31.085803 29.16359,31.085394 29.155355,31.085394 L 20.895334,31.085394 C 20.860706,31.085394 20.813881,31.091858 20.77475,31.085394 z "
|
||||
style="fill:url(#linearGradient1497);fill-opacity:1;fill-rule:evenodd;stroke:#989898;stroke-width:0.85203391;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
id="path18153"
|
||||
d="M 20.625174,30.490479 C 18.519211,29.999928 7.7224803,17.987711 7.0314243,16.466377 C 7.0288882,16.460379 7.0336023,16.439689 7.0314243,16.434063 C 7.0259731,16.418307 7.002328,16.381764 7.0001743,16.369436 C 7.000203,16.366104 6.9997682,16.34006 7.0001743,16.337122 C 7.0013435,16.334982 7.0298695,16.338859 7.0314243,16.337122 L 7.1251743,16.240181 L 42.593924,16.240181 C 42.591209,16.264507 42.57124,16.307054 42.562674,16.337122 C 42.555173,16.360727 42.542103,16.407355 42.531424,16.434063 C 41.609326,18.615 31.023436,30.200512 29.187674,30.490479 C 29.172746,30.492123 29.138826,30.490479 29.125174,30.490479 L 20.750174,30.490479 C 20.719887,30.488811 20.66042,30.498689 20.625174,30.490479 z "
|
||||
style="fill:url(#linearGradient1501);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
id="path1616"
|
||||
d="M 20.875174,30.051141 C 18.427215,29.501671 8.7040003,18.433898 7.5314243,16.451725 L 42.125174,16.451725 C 40.634986,18.784896 31.078502,29.863516 28.968924,30.051141 C 28.960181,30.051543 28.946142,30.051141 28.937674,30.051141 L 21.031424,30.051141 C 21.00503,30.051141 20.966542,30.054692 20.937674,30.051141 C 20.917888,30.047995 20.896025,30.055821 20.875174,30.051141 z "
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient1503);stroke-width:0.85203373;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path1636"
|
||||
d="M 20.959511,30.447113 L 9.018012,38.717969 L 11.237445,38.724076 L 21.23557,31.855136 L 30.057478,30.432298 L 20.959511,30.447113 z "
|
||||
style="fill:url(#linearGradient1505);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
557
src/images/scalable/gramps-attribute.svg
Normal file
After Width: | Height: | Size: 56 KiB |
514
src/images/scalable/gramps-bookmark-delete.svg
Normal file
@ -0,0 +1,514 @@
|
||||
<?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"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/benny/programms/gramps/myicons/16x16/gramps-bookmark-delete.png"
|
||||
sodipodi:docname="gramps-bookmark-delete.svg"
|
||||
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
|
||||
inkscape:version="0.43"
|
||||
sodipodi:version="0.32"
|
||||
id="svg249"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient7384">
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop7386" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop7388" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2833">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2835" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.56273764"
|
||||
offset="1"
|
||||
id="stop2837" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3704" />
|
||||
<stop
|
||||
id="stop3710"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient2098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient2096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3688">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3690" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3692" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient2094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
id="linearGradient5345">
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5347" />
|
||||
<stop
|
||||
id="stop1936"
|
||||
offset="0.42469135"
|
||||
style="stop-color:#cc0000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7129"
|
||||
offset="0.9041152"
|
||||
style="stop-color:#cc0000;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5349" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2378">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2380" />
|
||||
<stop
|
||||
id="stop4146"
|
||||
offset="0.25"
|
||||
style="stop-color:#fefede;stop-opacity:0.91836733;" />
|
||||
<stop
|
||||
id="stop2386"
|
||||
offset="0.5"
|
||||
style="stop-color:#f5f328;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#f5f32d;stop-opacity:0.12234043;"
|
||||
offset="1"
|
||||
id="stop2382" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4790">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4792" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4794" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2251">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2253" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2255" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2251"
|
||||
id="linearGradient8166"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-3.277938e-2,-0.999463,0.999463,-3.277938e-2,-0.709646,45.06274)"
|
||||
x1="33.396004"
|
||||
y1="36.921333"
|
||||
x2="34.170048"
|
||||
y2="38.070381" />
|
||||
<linearGradient
|
||||
id="linearGradient15662">
|
||||
<stop
|
||||
id="stop15664"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop15666"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient269">
|
||||
<stop
|
||||
id="stop270"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop271"
|
||||
offset="1"
|
||||
style="stop-color:#8a8a8a;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient259">
|
||||
<stop
|
||||
id="stop260"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop261"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient15656"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9717435,0,0,1.0360674,3.2383519,0.5060885)"
|
||||
cx="8.824419"
|
||||
cy="3.7561285"
|
||||
fx="8.824419"
|
||||
fy="3.7561285"
|
||||
r="37.751713" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient15658"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9639356,0,0,1.0444591,-0.127221,-0.1424244)"
|
||||
cx="33.966679"
|
||||
cy="35.736916"
|
||||
fx="33.966679"
|
||||
fy="35.736916"
|
||||
r="86.70845" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15662"
|
||||
id="radialGradient15668"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9731786,0,0,1.034993,3.1656505,0.5540137)"
|
||||
cx="8.1435566"
|
||||
cy="7.2678967"
|
||||
fx="8.1435566"
|
||||
fy="7.2678967"
|
||||
r="38.158695" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient5350"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.331735,0,0,0.3585438,20.10526,9.5269319)"
|
||||
cx="31.863327"
|
||||
cy="2.3667307"
|
||||
fx="31.863327"
|
||||
fy="2.3667307"
|
||||
r="37.751713" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient5352"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.148355,1.022578e-2,-1.104438e-2,0.1645276,25.06011,12.804777)"
|
||||
cx="30.653816"
|
||||
cy="14.9373"
|
||||
fx="30.653816"
|
||||
fy="14.9373"
|
||||
r="86.70845" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4790"
|
||||
id="radialGradient4796"
|
||||
cx="37.030354"
|
||||
cy="12.98915"
|
||||
fx="37.030354"
|
||||
fy="12.98915"
|
||||
r="4.2929163"
|
||||
gradientTransform="matrix(1.744653,2.313551e-22,-1.663e-22,1.283833,-26.58256,-3.478359)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2378"
|
||||
id="radialGradient3271"
|
||||
cx="38.658855"
|
||||
cy="9.3411446"
|
||||
fx="38.658855"
|
||||
fy="9.3411446"
|
||||
r="8.341651"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5345"
|
||||
id="linearGradient5351"
|
||||
x1="17.948223"
|
||||
y1="17.797228"
|
||||
x2="17.948223"
|
||||
y2="4.361907"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9309477,0,0,1,0.6917802,-4.41941e-2)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2833"
|
||||
id="linearGradient2839"
|
||||
x1="13.46875"
|
||||
y1="3.0304594"
|
||||
x2="13.46875"
|
||||
y2="5.5014644"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="93"
|
||||
inkscape:window-x="96"
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-width="755"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer5"
|
||||
inkscape:cy="24.243139"
|
||||
inkscape:cx="25.244483"
|
||||
inkscape:zoom="9.0606793"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.3254902"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="true" />
|
||||
<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" />
|
||||
<dc:title>Delete Bookmark</dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>text</rdf:li>
|
||||
<rdf:li>plaintext</rdf:li>
|
||||
<rdf:li>regular</rdf:li>
|
||||
<rdf:li>document</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Andreas Nilsson, B. Malengier</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://www.gnome.org</dc:source>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Luca Ferretti
|
||||
Jakub Steiner
|
||||
Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:date>January 2007</dc:date>
|
||||
</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>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
id="g2043"
|
||||
inkscape:label="Shadow"
|
||||
transform="matrix(1,0,0,0.555556,-1.8e-5,19.888883)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g2036"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
id="g3712"
|
||||
style="opacity:0.4"
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)">
|
||||
<rect
|
||||
y="40"
|
||||
x="38"
|
||||
height="7"
|
||||
width="5"
|
||||
id="rect2801"
|
||||
style="opacity:1;fill:url(#radialGradient2094);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="scale(-1,-1)"
|
||||
y="-47"
|
||||
x="-10"
|
||||
height="7"
|
||||
width="5"
|
||||
id="rect3696"
|
||||
style="opacity:1;fill:url(#radialGradient2096);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
y="40"
|
||||
x="10"
|
||||
height="7.0000005"
|
||||
width="28"
|
||||
id="rect3700"
|
||||
style="opacity:1;fill:url(#linearGradient2098);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#radialGradient15658);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15656);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-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 7.6531674,3.5156747 L 31.184222,3.4999998 C 31.184222,3.4999998 41.5,13.07421 41.5,13.712818 L 41.5,43.414218 C 41.5,44.052825 40.985687,44.566938 40.346833,44.566938 L 7.6531674,44.566938 C 7.0143129,44.566938 6.5000004,44.052825 6.5000004,43.414218 L 6.5000004,4.6683954 C 6.5000004,4.0297882 7.0143129,3.5156747 7.6531674,3.5156747 z "
|
||||
id="rect15391"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15668);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-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 7.6498034,4.4999998 L 32.652226,4.4999998 C 32.652226,4.4999998 40.441938,12.538716 40.441938,12.621467 L 40.441938,43.380959 C 40.441938,43.46371 40.375127,43.53033 40.292135,43.53033 L 7.6498034,43.53033 C 7.5668121,43.53033 7.4999997,43.46371 7.4999997,43.380959 L 7.4999997,4.6493697 C 7.4999997,4.5666188 7.5668121,4.4999998 7.6498034,4.4999998 z "
|
||||
id="rect15660"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Text"
|
||||
style="display:inline">
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
style="opacity:0.35714285;color:#000000;fill:url(#radialGradient4796);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;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"
|
||||
d="M 40.985189,13.861445 C 40.256827,12.514817 34.882221,10.130934 32.084635,9.3314083 C 32.254143,10.904354 31.961856,15.649439 31.961856,15.649439 C 34.024356,14.274439 40.204485,13.699331 40.985189,13.861445 z "
|
||||
id="path5348"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5352);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5350);stroke-width:1;stroke-linecap:butt;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:block;overflow:visible"
|
||||
d="M 41.410559,13.739267 C 41.423724,12.305276 35.058025,3.3960606 31.175441,3.500918 C 32.148479,3.7370164 32.925796,9.7511015 31.536076,12.601062 C 34.286076,12.601062 40.446694,11.856343 41.410559,13.739267 z "
|
||||
id="path2210"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2247"
|
||||
d="M 39.121563,11.586207 C 38.393201,10.239579 34.963027,6.5166576 33.040441,5.2796316 C 33.279381,6.7054805 33.577496,8.9620596 32.961856,11.524439 C 32.961856,11.524439 38.340859,11.424093 39.121563,11.586207 z "
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8166);stroke-width:1.00000024;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"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
style="opacity:0.15;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;display:inline"
|
||||
d="M 18.207447,17.331843 L 22,21.784178 L 22,23.928002 L 17.340112,18.224159 L 18.207447,17.331843 z "
|
||||
id="path7273"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5351);fill-opacity:1;fill-rule:evenodd;stroke:#ef2929;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;opacity:0.55497382"
|
||||
d="M 10.018213,2.5 L 21.422873,2.5 C 22.994417,2.5 23.499999,3.0073903 23.499999,4.470952 L 23.499999,23.441904 L 18.015643,16.748699 L 12.461209,23.513902 L 12.508084,4.4558059 C 12.508084,2.8706328 10.935315,2.5 10.018213,2.5 z "
|
||||
id="path4386"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
sodipodi:type="inkscape:offset"
|
||||
inkscape:radius="-1.03125"
|
||||
inkscape:original="M 10.03125 2.5 C 10.948352 2.5 12.5 2.883577 12.5 4.46875 L 12.46875 23.5 L 18.03125 16.75 L 23.5 23.4375 L 23.5 4.46875 C 23.5 3.0051883 23.009044 2.5 21.4375 2.5 L 10.03125 2.5 z "
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient2839);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;opacity:0.6"
|
||||
id="path1934"
|
||||
d="M 13.25,3.53125 C 13.362221,3.8338001 13.53125,4.1151264 13.53125,4.46875 L 13.5,20.625 L 17.25,16.09375 C 17.445904,15.855316 17.738283,15.717133 18.046875,15.717133 C 18.355467,15.717133 18.647846,15.855316 18.84375,16.09375 L 22.46875,20.53125 L 22.46875,4.46875 C 22.46875,3.8522811 22.365083,3.7081684 22.34375,3.6875 C 22.322417,3.6668316 22.11277,3.53125 21.4375,3.53125 L 13.25,3.53125 z " />
|
||||
<rect
|
||||
style="opacity:1;fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69375002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect7378"
|
||||
width="7.9117684"
|
||||
height="7.9148932"
|
||||
x="13.995325"
|
||||
y="6.9414892"
|
||||
rx="1.2322961"
|
||||
ry="1.4664209" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#a40000;stroke-width:2.88226986;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.486983,8.300531 L 15.429074,13.412233"
|
||||
id="path7413"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path7423"
|
||||
d="M 15.438684,8.300531 L 20.546217,13.412233"
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#a40000;stroke-width:2.89637423;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.67098475;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647"
|
||||
d="M 15.425699,8.2606381 L 20.55835,13.40255"
|
||||
id="path7380"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.66284752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.497416,8.2606381 L 15.43951,13.37234"
|
||||
id="path7382"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path7392"
|
||||
d="M 11.98098,3.8105661 L 12.063516,22.016712 L 10.96121,24 L 10.96121,3.9419039 C 10.96121,3.404299 12.898082,3.8105661 11.98098,3.8105661 z "
|
||||
style="opacity:0.15;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;display:inline" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
566
src/images/scalable/gramps-bookmark-edit.svg
Normal file
@ -0,0 +1,566 @@
|
||||
<?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"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/benny/programms/gramps/myicons/48x48/gramps-bookmark-edit.png"
|
||||
sodipodi:docname="gramps-bookmark-edit.svg"
|
||||
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
|
||||
inkscape:version="0.43"
|
||||
sodipodi:version="0.32"
|
||||
id="svg249"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient2301"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2303"
|
||||
offset="0"
|
||||
style="stop-color:#c4a000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2305"
|
||||
offset="1"
|
||||
style="stop-color:#edd400" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2301"
|
||||
id="linearGradient3277"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="29.03377"
|
||||
y1="14.298466"
|
||||
x2="25.991804"
|
||||
y2="11.2565" />
|
||||
<linearGradient
|
||||
id="linearGradient2275"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2277"
|
||||
offset="0"
|
||||
style="stop-color:#fce94f;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2279"
|
||||
offset="1"
|
||||
style="stop-color:#c4a000" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2275"
|
||||
id="linearGradient3275"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="26.993084"
|
||||
y1="11.252465"
|
||||
x2="30.432114"
|
||||
y2="14.691495" />
|
||||
<linearGradient
|
||||
id="linearGradient1813"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop1815"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop1817"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1813"
|
||||
id="linearGradient3273"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="18.1875"
|
||||
y1="18.53828"
|
||||
x2="32.9375"
|
||||
y2="18.392296"
|
||||
gradientTransform="matrix(1,0,0,0.415008,0,14.33231)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2833">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2835" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.56273764"
|
||||
offset="1"
|
||||
id="stop2837" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3704" />
|
||||
<stop
|
||||
id="stop3710"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient2098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient2096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3688">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3690" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3692" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient2094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
id="linearGradient5345">
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5347" />
|
||||
<stop
|
||||
id="stop1936"
|
||||
offset="0.42469135"
|
||||
style="stop-color:#cc0000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7129"
|
||||
offset="0.9041152"
|
||||
style="stop-color:#cc0000;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5349" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2378">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2380" />
|
||||
<stop
|
||||
id="stop4146"
|
||||
offset="0.25"
|
||||
style="stop-color:#fefede;stop-opacity:0.91836733;" />
|
||||
<stop
|
||||
id="stop2386"
|
||||
offset="0.5"
|
||||
style="stop-color:#f5f328;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#f5f32d;stop-opacity:0.12234043;"
|
||||
offset="1"
|
||||
id="stop2382" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4790">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4792" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4794" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2251">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2253" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2255" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2251"
|
||||
id="linearGradient8166"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-3.277938e-2,-0.999463,0.999463,-3.277938e-2,-0.709646,45.06274)"
|
||||
x1="33.396004"
|
||||
y1="36.921333"
|
||||
x2="34.170048"
|
||||
y2="38.070381" />
|
||||
<linearGradient
|
||||
id="linearGradient15662">
|
||||
<stop
|
||||
id="stop15664"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop15666"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient269">
|
||||
<stop
|
||||
id="stop270"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop271"
|
||||
offset="1"
|
||||
style="stop-color:#8a8a8a;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient259">
|
||||
<stop
|
||||
id="stop260"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop261"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient15656"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9717435,0,0,1.0360674,3.2383519,0.5060885)"
|
||||
cx="8.824419"
|
||||
cy="3.7561285"
|
||||
fx="8.824419"
|
||||
fy="3.7561285"
|
||||
r="37.751713" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient15658"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9639356,0,0,1.0444591,-0.127221,-0.1424244)"
|
||||
cx="33.966679"
|
||||
cy="35.736916"
|
||||
fx="33.966679"
|
||||
fy="35.736916"
|
||||
r="86.70845" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15662"
|
||||
id="radialGradient15668"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9731786,0,0,1.034993,3.1656505,0.5540137)"
|
||||
cx="8.1435566"
|
||||
cy="7.2678967"
|
||||
fx="8.1435566"
|
||||
fy="7.2678967"
|
||||
r="38.158695" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient5350"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.331735,0,0,0.3585438,20.10526,9.5269319)"
|
||||
cx="31.863327"
|
||||
cy="2.3667307"
|
||||
fx="31.863327"
|
||||
fy="2.3667307"
|
||||
r="37.751713" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient5352"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.148355,1.022578e-2,-1.104438e-2,0.1645276,25.06011,12.804777)"
|
||||
cx="30.653816"
|
||||
cy="14.9373"
|
||||
fx="30.653816"
|
||||
fy="14.9373"
|
||||
r="86.70845" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4790"
|
||||
id="radialGradient4796"
|
||||
cx="37.030354"
|
||||
cy="12.98915"
|
||||
fx="37.030354"
|
||||
fy="12.98915"
|
||||
r="4.2929163"
|
||||
gradientTransform="matrix(1.744653,2.313551e-22,-1.663e-22,1.283833,-26.58256,-3.478359)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2378"
|
||||
id="radialGradient3271"
|
||||
cx="38.658855"
|
||||
cy="9.3411446"
|
||||
fx="38.658855"
|
||||
fy="9.3411446"
|
||||
r="8.341651"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5345"
|
||||
id="linearGradient5351"
|
||||
x1="17.948223"
|
||||
y1="17.797228"
|
||||
x2="17.948223"
|
||||
y2="4.361907"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9309477,0,0,1,0.6917802,-4.41941e-2)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2833"
|
||||
id="linearGradient2839"
|
||||
x1="13.46875"
|
||||
y1="3.0304594"
|
||||
x2="13.46875"
|
||||
y2="5.5014644"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="284"
|
||||
inkscape:window-x="46"
|
||||
inkscape:window-height="535"
|
||||
inkscape:window-width="755"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer5"
|
||||
inkscape:cy="21"
|
||||
inkscape:cx="25.5"
|
||||
inkscape:zoom="6.0645161"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.3254902"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="true" />
|
||||
<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" />
|
||||
<dc:title>Edit Bookmark</dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>text</rdf:li>
|
||||
<rdf:li>plaintext</rdf:li>
|
||||
<rdf:li>regular</rdf:li>
|
||||
<rdf:li>document</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Andreas Nilsson B. Malengier</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://www.gnome.org</dc:source>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Luca Ferretti
|
||||
Jakub Steiner
|
||||
Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:date>December 2006</dc:date>
|
||||
</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>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
id="g2043"
|
||||
inkscape:label="Shadow"
|
||||
transform="matrix(1,0,0,0.555556,-1.8e-5,19.888883)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g2036"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
id="g3712"
|
||||
style="opacity:0.4"
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)">
|
||||
<rect
|
||||
y="40"
|
||||
x="38"
|
||||
height="7"
|
||||
width="5"
|
||||
id="rect2801"
|
||||
style="opacity:1;fill:url(#radialGradient2094);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="scale(-1,-1)"
|
||||
y="-47"
|
||||
x="-10"
|
||||
height="7"
|
||||
width="5"
|
||||
id="rect3696"
|
||||
style="opacity:1;fill:url(#radialGradient2096);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
y="40"
|
||||
x="10"
|
||||
height="7.0000005"
|
||||
width="28"
|
||||
id="rect3700"
|
||||
style="opacity:1;fill:url(#linearGradient2098);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#radialGradient15658);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15656);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-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 7.6531674,3.5156747 L 31.184222,3.4999998 C 31.184222,3.4999998 41.5,13.07421 41.5,13.712818 L 41.5,43.414218 C 41.5,44.052825 40.985687,44.566938 40.346833,44.566938 L 7.6531674,44.566938 C 7.0143129,44.566938 6.5000004,44.052825 6.5000004,43.414218 L 6.5000004,4.6683954 C 6.5000004,4.0297882 7.0143129,3.5156747 7.6531674,3.5156747 z "
|
||||
id="rect15391"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15668);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-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 7.6498034,4.4999998 L 32.652226,4.4999998 C 32.652226,4.4999998 40.441938,12.538716 40.441938,12.621467 L 40.441938,43.380959 C 40.441938,43.46371 40.375127,43.53033 40.292135,43.53033 L 7.6498034,43.53033 C 7.5668121,43.53033 7.4999997,43.46371 7.4999997,43.380959 L 7.4999997,4.6493697 C 7.4999997,4.5666188 7.5668121,4.4999998 7.6498034,4.4999998 z "
|
||||
id="rect15660"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Text"
|
||||
style="display:inline">
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
style="opacity:0.35714285;color:#000000;fill:url(#radialGradient4796);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;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"
|
||||
d="M 40.985189,13.861445 C 40.256827,12.514817 34.882221,10.130934 32.084635,9.3314083 C 32.254143,10.904354 31.961856,15.649439 31.961856,15.649439 C 34.024356,14.274439 40.204485,13.699331 40.985189,13.861445 z "
|
||||
id="path5348"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5352);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5350);stroke-width:1;stroke-linecap:butt;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:block;overflow:visible"
|
||||
d="M 41.410559,13.739267 C 41.423724,12.305276 35.058025,3.3960606 31.175441,3.500918 C 32.148479,3.7370164 32.925796,9.7511015 31.536076,12.601062 C 34.286076,12.601062 40.446694,11.856343 41.410559,13.739267 z "
|
||||
id="path2210"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2247"
|
||||
d="M 39.121563,11.586207 C 38.393201,10.239579 34.963027,6.5166576 33.040441,5.2796316 C 33.279381,6.7054805 33.577496,8.9620596 32.961856,11.524439 C 32.961856,11.524439 38.340859,11.424093 39.121563,11.586207 z "
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8166);stroke-width:1.00000024;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"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;display:inline;opacity:0.15"
|
||||
d="M 8.518214,2.986098 L 22,2.986098 L 22,23.928002 L 16.515644,17.234797 L 10.96121,24 L 10.96121,3.9419039 C 10.96121,3.404299 9.435316,2.986098 8.518214,2.986098 z "
|
||||
id="path7273"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5351);fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 10.018213,2.5 L 21.422873,2.5 C 22.994417,2.5 23.499999,3.0073903 23.499999,4.470952 L 23.499999,23.441904 L 18.015643,16.748699 L 12.461209,23.513902 L 12.508084,4.4558059 C 12.508084,2.8706328 10.935315,2.5 10.018213,2.5 z "
|
||||
id="path4386"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
sodipodi:type="inkscape:offset"
|
||||
inkscape:radius="-1.03125"
|
||||
inkscape:original="M 10.03125 2.5 C 10.948352 2.5 12.5 2.883577 12.5 4.46875 L 12.46875 23.5 L 18.03125 16.75 L 23.5 23.4375 L 23.5 4.46875 C 23.5 3.0051883 23.009044 2.5 21.4375 2.5 L 10.03125 2.5 z "
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient2839);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;opacity:0.6"
|
||||
id="path1934"
|
||||
d="M 13.25,3.53125 C 13.362221,3.8338001 13.53125,4.1151264 13.53125,4.46875 L 13.5,20.625 L 17.25,16.09375 C 17.445904,15.855316 17.738283,15.717133 18.046875,15.717133 C 18.355467,15.717133 18.647846,15.855316 18.84375,16.09375 L 22.46875,20.53125 L 22.46875,4.46875 C 22.46875,3.8522811 22.365083,3.7081684 22.34375,3.6875 C 22.322417,3.6668316 22.11277,3.53125 21.4375,3.53125 L 13.25,3.53125 z " />
|
||||
<g
|
||||
transform="translate(4.391957,14.85372)"
|
||||
id="g2369">
|
||||
<path
|
||||
id="path2334"
|
||||
d="M 34.53125,16.03125 L 19.53125,20.504163 L 19.40625,20.569008 L 19.3125,20.646822 L 16.5625,23.5 L 24,22.657016 L 24.28125,22.631078 L 24.46875,22.553264 L 34.53125,19.870071 L 34.53125,16.03125 z "
|
||||
style="opacity:0.23529412;fill:url(#linearGradient3273);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;display:inline"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<g
|
||||
id="g2321"
|
||||
transform="translate(-0.15625,-0.25)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path2273"
|
||||
d="M 19.5,18 L 36.5,1 C 38.675049,1.359961 39.584719,2.7322249 40,4.5 L 23,21.5 L 17.5,23 L 19.5,18 z "
|
||||
style="fill:url(#linearGradient3275);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3277);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
id="path2313"
|
||||
d="M 20.399998,18.5 L 36.897748,2.1022524 C 37.987493,2.280687 38.415009,3.0901961 38.897748,4.1022524 L 22.5,20.600002 L 19.199997,21.500003 L 20.399998,18.5 z "
|
||||
style="opacity:0.28235294;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.0000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
sodipodi:nodetypes="cczcc"
|
||||
id="path2298"
|
||||
d="M 18.34633,22.276561 L 19.94414,18.268127 C 19.94414,18.268127 21.094356,18.503399 21.796875,19.203125 C 22.499394,19.902851 22.754217,21.067032 22.754217,21.067032 L 18.34633,22.276561 z "
|
||||
style="opacity:0.50196078;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.31200001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path2283"
|
||||
d="M 17.5625,21.5 L 16.65625,23.75 L 19,23.09375 C 19.00202,23.061913 19,23.032344 19,23 C 19,22.197875 18.354692,21.540199 17.5625,21.5 z "
|
||||
style="fill:#000000;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;display:inline"
|
||||
sodipodi:nodetypes="cccsc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
495
src/images/scalable/gramps-bookmark-new.svg
Normal file
@ -0,0 +1,495 @@
|
||||
<?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"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/benny/programms/gramps/myicons/48x48/gramps-bookmark-new.png"
|
||||
sodipodi:docname="gramps-bookmark-new.svg"
|
||||
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
|
||||
inkscape:version="0.43"
|
||||
sodipodi:version="0.32"
|
||||
id="svg249"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2833">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2835" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.56273764"
|
||||
offset="1"
|
||||
id="stop2837" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3704" />
|
||||
<stop
|
||||
id="stop3710"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient2098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient2096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3688">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3690" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3692" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient2094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
id="linearGradient5345">
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5347" />
|
||||
<stop
|
||||
id="stop1936"
|
||||
offset="0.42469135"
|
||||
style="stop-color:#cc0000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7129"
|
||||
offset="0.9041152"
|
||||
style="stop-color:#cc0000;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5349" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2378">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2380" />
|
||||
<stop
|
||||
id="stop4146"
|
||||
offset="0.25"
|
||||
style="stop-color:#fefede;stop-opacity:0.91836733;" />
|
||||
<stop
|
||||
id="stop2386"
|
||||
offset="0.5"
|
||||
style="stop-color:#f5f328;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#f5f32d;stop-opacity:0.12234043;"
|
||||
offset="1"
|
||||
id="stop2382" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4790">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4792" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4794" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2251">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2253" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2255" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2251"
|
||||
id="linearGradient8166"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-3.277938e-2,-0.999463,0.999463,-3.277938e-2,-0.709646,45.06274)"
|
||||
x1="33.396004"
|
||||
y1="36.921333"
|
||||
x2="34.170048"
|
||||
y2="38.070381" />
|
||||
<linearGradient
|
||||
id="linearGradient15662">
|
||||
<stop
|
||||
id="stop15664"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop15666"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient269">
|
||||
<stop
|
||||
id="stop270"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop271"
|
||||
offset="1"
|
||||
style="stop-color:#8a8a8a;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient259">
|
||||
<stop
|
||||
id="stop260"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop261"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient15656"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9717435,0,0,1.0360674,3.2383519,0.5060885)"
|
||||
cx="8.824419"
|
||||
cy="3.7561285"
|
||||
fx="8.824419"
|
||||
fy="3.7561285"
|
||||
r="37.751713" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient15658"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9639356,0,0,1.0444591,-0.127221,-0.1424244)"
|
||||
cx="33.966679"
|
||||
cy="35.736916"
|
||||
fx="33.966679"
|
||||
fy="35.736916"
|
||||
r="86.70845" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15662"
|
||||
id="radialGradient15668"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9731786,0,0,1.034993,3.1656505,0.5540137)"
|
||||
cx="8.1435566"
|
||||
cy="7.2678967"
|
||||
fx="8.1435566"
|
||||
fy="7.2678967"
|
||||
r="38.158695" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient5350"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.331735,0,0,0.3585438,20.10526,9.5269319)"
|
||||
cx="31.863327"
|
||||
cy="2.3667307"
|
||||
fx="31.863327"
|
||||
fy="2.3667307"
|
||||
r="37.751713" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient5352"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.148355,1.022578e-2,-1.104438e-2,0.1645276,25.06011,12.804777)"
|
||||
cx="30.653816"
|
||||
cy="14.9373"
|
||||
fx="30.653816"
|
||||
fy="14.9373"
|
||||
r="86.70845" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4790"
|
||||
id="radialGradient4796"
|
||||
cx="37.030354"
|
||||
cy="12.98915"
|
||||
fx="37.030354"
|
||||
fy="12.98915"
|
||||
r="4.2929163"
|
||||
gradientTransform="matrix(1.744653,2.313551e-22,-1.663e-22,1.283833,-26.58256,-3.478359)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2378"
|
||||
id="radialGradient3271"
|
||||
cx="38.658855"
|
||||
cy="9.3411446"
|
||||
fx="38.658855"
|
||||
fy="9.3411446"
|
||||
r="8.341651"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5345"
|
||||
id="linearGradient5351"
|
||||
x1="17.948223"
|
||||
y1="17.797228"
|
||||
x2="17.948223"
|
||||
y2="4.361907"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9309477,0,0,1,0.6917802,-4.41941e-2)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2833"
|
||||
id="linearGradient2839"
|
||||
x1="13.46875"
|
||||
y1="3.0304594"
|
||||
x2="13.46875"
|
||||
y2="5.5014644"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="303"
|
||||
inkscape:window-x="389"
|
||||
inkscape:window-height="535"
|
||||
inkscape:window-width="755"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer5"
|
||||
inkscape:cy="21"
|
||||
inkscape:cx="25.5"
|
||||
inkscape:zoom="6.0645161"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.3254902"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="true" />
|
||||
<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" />
|
||||
<dc:title>New Bookmark</dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>text</rdf:li>
|
||||
<rdf:li>plaintext</rdf:li>
|
||||
<rdf:li>regular</rdf:li>
|
||||
<rdf:li>document</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Andreas Nilsson</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://www.gnome.org</dc:source>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Luca Ferretti
|
||||
Jakub Steiner
|
||||
Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:date>December 2006</dc:date>
|
||||
</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>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
id="g2043"
|
||||
inkscape:label="Shadow"
|
||||
transform="matrix(1,0,0,0.555556,-1.8e-5,19.888883)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g2036"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
id="g3712"
|
||||
style="opacity:0.4"
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)">
|
||||
<rect
|
||||
y="40"
|
||||
x="38"
|
||||
height="7"
|
||||
width="5"
|
||||
id="rect2801"
|
||||
style="opacity:1;fill:url(#radialGradient2094);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="scale(-1,-1)"
|
||||
y="-47"
|
||||
x="-10"
|
||||
height="7"
|
||||
width="5"
|
||||
id="rect3696"
|
||||
style="opacity:1;fill:url(#radialGradient2096);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
y="40"
|
||||
x="10"
|
||||
height="7.0000005"
|
||||
width="28"
|
||||
id="rect3700"
|
||||
style="opacity:1;fill:url(#linearGradient2098);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#radialGradient15658);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15656);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-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 7.6531674,3.5156747 L 31.184222,3.4999998 C 31.184222,3.4999998 41.5,13.07421 41.5,13.712818 L 41.5,43.414218 C 41.5,44.052825 40.985687,44.566938 40.346833,44.566938 L 7.6531674,44.566938 C 7.0143129,44.566938 6.5000004,44.052825 6.5000004,43.414218 L 6.5000004,4.6683954 C 6.5000004,4.0297882 7.0143129,3.5156747 7.6531674,3.5156747 z "
|
||||
id="rect15391"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15668);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-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 7.6498034,4.4999998 L 32.652226,4.4999998 C 32.652226,4.4999998 40.441938,12.538716 40.441938,12.621467 L 40.441938,43.380959 C 40.441938,43.46371 40.375127,43.53033 40.292135,43.53033 L 7.6498034,43.53033 C 7.5668121,43.53033 7.4999997,43.46371 7.4999997,43.380959 L 7.4999997,4.6493697 C 7.4999997,4.5666188 7.5668121,4.4999998 7.6498034,4.4999998 z "
|
||||
id="rect15660"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Text"
|
||||
style="display:inline">
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
style="opacity:0.35714285;color:#000000;fill:url(#radialGradient4796);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;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"
|
||||
d="M 40.985189,13.861445 C 40.256827,12.514817 34.882221,10.130934 32.084635,9.3314083 C 32.254143,10.904354 31.961856,15.649439 31.961856,15.649439 C 34.024356,14.274439 40.204485,13.699331 40.985189,13.861445 z "
|
||||
id="path5348"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5352);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5350);stroke-width:1;stroke-linecap:butt;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:block;overflow:visible"
|
||||
d="M 41.410559,13.739267 C 41.423724,12.305276 35.058025,3.3960606 31.175441,3.500918 C 32.148479,3.7370164 32.925796,9.7511015 31.536076,12.601062 C 34.286076,12.601062 40.446694,11.856343 41.410559,13.739267 z "
|
||||
id="path2210"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2247"
|
||||
d="M 39.121563,11.586207 C 38.393201,10.239579 34.963027,6.5166576 33.040441,5.2796316 C 33.279381,6.7054805 33.577496,8.9620596 32.961856,11.524439 C 32.961856,11.524439 38.340859,11.424093 39.121563,11.586207 z "
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8166);stroke-width:1.00000024;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"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:url(#radialGradient3271);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="path2388"
|
||||
sodipodi:cx="38.658855"
|
||||
sodipodi:cy="9.3411446"
|
||||
sodipodi:rx="8.341651"
|
||||
sodipodi:ry="8.341651"
|
||||
d="M 47.000506 9.3411446 A 8.341651 8.341651 0 1 1 30.317204,9.3411446 A 8.341651 8.341651 0 1 1 47.000506 9.3411446 z"
|
||||
transform="matrix(1.14985,0,0,1.14985,-7.595328,0.490895)" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5;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"
|
||||
id="path1345"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="36.9375"
|
||||
sodipodi:cy="11.125"
|
||||
sodipodi:r1="8.755579"
|
||||
sodipodi:r2="5.0676599"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:arg2="1.1519173"
|
||||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0.18352206"
|
||||
inkscape:randomized="0"
|
||||
d="M 44.520054,15.50279 C 44.012883,16.381236 39.925351,15.341967 38.998703,15.754538 C 38.072055,16.167108 36.109289,19.900142 35.117113,19.689249 C 34.124936,19.478355 33.850222,15.26973 33.171495,14.515926 C 32.492767,13.762123 28.335913,13.048993 28.229885,12.040207 C 28.123857,11.031421 32.041607,9.4696164 32.548778,8.5911701 C 33.055949,7.7127238 32.449637,3.5389508 33.376285,3.1263806 C 34.302933,2.7138103 36.998949,5.957187 37.991126,6.1680807 C 38.983302,6.3789743 42.765436,4.5125708 43.444163,5.2663741 C 44.122891,6.0201775 41.871371,9.5864995 41.977399,10.595285 C 42.083426,11.604071 45.027225,14.624343 44.520054,15.50279 z "
|
||||
transform="matrix(0.674116,0.299577,-0.299577,0.674116,15.46413,-7.192469)" />
|
||||
<path
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;display:inline;opacity:0.15"
|
||||
d="M 8.518214,2.986098 L 22,2.986098 L 22,23.928002 L 16.515644,17.234797 L 10.96121,24 L 10.96121,3.9419039 C 10.96121,3.404299 9.435316,2.986098 8.518214,2.986098 z "
|
||||
id="path7273"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5351);fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 10.018213,2.5 L 21.422873,2.5 C 22.994417,2.5 23.499999,3.0073903 23.499999,4.470952 L 23.499999,23.441904 L 18.015643,16.748699 L 12.461209,23.513902 L 12.508084,4.4558059 C 12.508084,2.8706328 10.935315,2.5 10.018213,2.5 z "
|
||||
id="path4386"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
sodipodi:type="inkscape:offset"
|
||||
inkscape:radius="-1.03125"
|
||||
inkscape:original="M 10.03125 2.5 C 10.948352 2.5 12.5 2.883577 12.5 4.46875 L 12.46875 23.5 L 18.03125 16.75 L 23.5 23.4375 L 23.5 4.46875 C 23.5 3.0051883 23.009044 2.5 21.4375 2.5 L 10.03125 2.5 z "
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient2839);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;opacity:0.6"
|
||||
id="path1934"
|
||||
d="M 13.25,3.53125 C 13.362221,3.8338001 13.53125,4.1151264 13.53125,4.46875 L 13.5,20.625 L 17.25,16.09375 C 17.445904,15.855316 17.738283,15.717133 18.046875,15.717133 C 18.355467,15.717133 18.647846,15.855316 18.84375,16.09375 L 22.46875,20.53125 L 22.46875,4.46875 C 22.46875,3.8522811 22.365083,3.7081684 22.34375,3.6875 C 22.322417,3.6668316 22.11277,3.53125 21.4375,3.53125 L 13.25,3.53125 z " />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
469
src/images/scalable/gramps-bookmark.svg
Normal file
@ -0,0 +1,469 @@
|
||||
<?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"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/benny/programms/gramps/myicons/48x48/gramps-bookmark.png"
|
||||
sodipodi:docname="gramps-bookmark.svg"
|
||||
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
|
||||
inkscape:version="0.43"
|
||||
sodipodi:version="0.32"
|
||||
id="svg249"
|
||||
height="48"
|
||||
width="48"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2833">
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2835" />
|
||||
<stop
|
||||
style="stop-color:white;stop-opacity:0.56273764"
|
||||
offset="1"
|
||||
id="stop2837" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3704" />
|
||||
<stop
|
||||
id="stop3710"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient2098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient2096"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3688">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3690" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3692" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient2094"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
id="linearGradient5345">
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5347" />
|
||||
<stop
|
||||
id="stop1936"
|
||||
offset="0.42469135"
|
||||
style="stop-color:#cc0000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7129"
|
||||
offset="0.9041152"
|
||||
style="stop-color:#cc0000;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5349" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2378">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2380" />
|
||||
<stop
|
||||
id="stop4146"
|
||||
offset="0.25"
|
||||
style="stop-color:#fefede;stop-opacity:0.91836733;" />
|
||||
<stop
|
||||
id="stop2386"
|
||||
offset="0.5"
|
||||
style="stop-color:#f5f328;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#f5f32d;stop-opacity:0.12234043;"
|
||||
offset="1"
|
||||
id="stop2382" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4790">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4792" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4794" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2251">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2253" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2255" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2251"
|
||||
id="linearGradient8166"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-3.277938e-2,-0.999463,0.999463,-3.277938e-2,-0.709646,45.06274)"
|
||||
x1="33.396004"
|
||||
y1="36.921333"
|
||||
x2="34.170048"
|
||||
y2="38.070381" />
|
||||
<linearGradient
|
||||
id="linearGradient15662">
|
||||
<stop
|
||||
id="stop15664"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop15666"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient269">
|
||||
<stop
|
||||
id="stop270"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop271"
|
||||
offset="1"
|
||||
style="stop-color:#8a8a8a;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient259">
|
||||
<stop
|
||||
id="stop260"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop261"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient15656"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9717435,0,0,1.0360674,3.2383519,0.5060885)"
|
||||
cx="8.824419"
|
||||
cy="3.7561285"
|
||||
fx="8.824419"
|
||||
fy="3.7561285"
|
||||
r="37.751713" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient15658"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9639356,0,0,1.0444591,-0.127221,-0.1424244)"
|
||||
cx="33.966679"
|
||||
cy="35.736916"
|
||||
fx="33.966679"
|
||||
fy="35.736916"
|
||||
r="86.70845" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient15662"
|
||||
id="radialGradient15668"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9731786,0,0,1.034993,3.1656505,0.5540137)"
|
||||
cx="8.1435566"
|
||||
cy="7.2678967"
|
||||
fx="8.1435566"
|
||||
fy="7.2678967"
|
||||
r="38.158695" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient5350"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.331735,0,0,0.3585438,20.10526,9.5269319)"
|
||||
cx="31.863327"
|
||||
cy="2.3667307"
|
||||
fx="31.863327"
|
||||
fy="2.3667307"
|
||||
r="37.751713" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient5352"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.148355,1.022578e-2,-1.104438e-2,0.1645276,25.06011,12.804777)"
|
||||
cx="30.653816"
|
||||
cy="14.9373"
|
||||
fx="30.653816"
|
||||
fy="14.9373"
|
||||
r="86.70845" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4790"
|
||||
id="radialGradient4796"
|
||||
cx="37.030354"
|
||||
cy="12.98915"
|
||||
fx="37.030354"
|
||||
fy="12.98915"
|
||||
r="4.2929163"
|
||||
gradientTransform="matrix(1.744653,2.313551e-22,-1.663e-22,1.283833,-26.58256,-3.478359)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2378"
|
||||
id="radialGradient3271"
|
||||
cx="38.658855"
|
||||
cy="9.3411446"
|
||||
fx="38.658855"
|
||||
fy="9.3411446"
|
||||
r="8.341651"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5345"
|
||||
id="linearGradient5351"
|
||||
x1="17.948223"
|
||||
y1="17.797228"
|
||||
x2="17.948223"
|
||||
y2="4.361907"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9309477,0,0,1,0.6917802,-4.41941e-2)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2833"
|
||||
id="linearGradient2839"
|
||||
x1="13.46875"
|
||||
y1="3.0304594"
|
||||
x2="13.46875"
|
||||
y2="5.5014644"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="303"
|
||||
inkscape:window-x="389"
|
||||
inkscape:window-height="535"
|
||||
inkscape:window-width="755"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer5"
|
||||
inkscape:cy="21"
|
||||
inkscape:cx="25.5"
|
||||
inkscape:zoom="6.0645161"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.3254902"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="true" />
|
||||
<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" />
|
||||
<dc:title>Bookmark</dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>text</rdf:li>
|
||||
<rdf:li>plaintext</rdf:li>
|
||||
<rdf:li>regular</rdf:li>
|
||||
<rdf:li>document</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Andreas Nilsson</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://www.gnome.org</dc:source>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Luca Ferretti
|
||||
Jakub Steiner
|
||||
Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:date>December 2006</dc:date>
|
||||
</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>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
id="g2043"
|
||||
inkscape:label="Shadow"
|
||||
transform="matrix(1,0,0,0.555556,-1.8e-5,19.888883)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g2036"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
id="g3712"
|
||||
style="opacity:0.4"
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)">
|
||||
<rect
|
||||
y="40"
|
||||
x="38"
|
||||
height="7"
|
||||
width="5"
|
||||
id="rect2801"
|
||||
style="opacity:1;fill:url(#radialGradient2094);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="scale(-1,-1)"
|
||||
y="-47"
|
||||
x="-10"
|
||||
height="7"
|
||||
width="5"
|
||||
id="rect3696"
|
||||
style="opacity:1;fill:url(#radialGradient2096);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
y="40"
|
||||
x="10"
|
||||
height="7.0000005"
|
||||
width="28"
|
||||
id="rect3700"
|
||||
style="opacity:1;fill:url(#linearGradient2098);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1">
|
||||
<path
|
||||
style="color:#000000;fill:url(#radialGradient15658);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15656);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-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 7.6531674,3.5156747 L 31.184222,3.4999998 C 31.184222,3.4999998 41.5,13.07421 41.5,13.712818 L 41.5,43.414218 C 41.5,44.052825 40.985687,44.566938 40.346833,44.566938 L 7.6531674,44.566938 C 7.0143129,44.566938 6.5000004,44.052825 6.5000004,43.414218 L 6.5000004,4.6683954 C 6.5000004,4.0297882 7.0143129,3.5156747 7.6531674,3.5156747 z "
|
||||
id="rect15391"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15668);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-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 7.6498034,4.4999998 L 32.652226,4.4999998 C 32.652226,4.4999998 40.441938,12.538716 40.441938,12.621467 L 40.441938,43.380959 C 40.441938,43.46371 40.375127,43.53033 40.292135,43.53033 L 7.6498034,43.53033 C 7.5668121,43.53033 7.4999997,43.46371 7.4999997,43.380959 L 7.4999997,4.6493697 C 7.4999997,4.5666188 7.5668121,4.4999998 7.6498034,4.4999998 z "
|
||||
id="rect15660"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Text"
|
||||
style="display:inline">
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
style="opacity:0.35714285;color:#000000;fill:url(#radialGradient4796);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;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"
|
||||
d="M 40.985189,13.861445 C 40.256827,12.514817 34.882221,10.130934 32.084635,9.3314083 C 32.254143,10.904354 31.961856,15.649439 31.961856,15.649439 C 34.024356,14.274439 40.204485,13.699331 40.985189,13.861445 z "
|
||||
id="path5348"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient5352);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5350);stroke-width:1;stroke-linecap:butt;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:block;overflow:visible"
|
||||
d="M 41.410559,13.739267 C 41.423724,12.305276 35.058025,3.3960606 31.175441,3.500918 C 32.148479,3.7370164 32.925796,9.7511015 31.536076,12.601062 C 34.286076,12.601062 40.446694,11.856343 41.410559,13.739267 z "
|
||||
id="path2210"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2247"
|
||||
d="M 39.121563,11.586207 C 38.393201,10.239579 34.963027,6.5166576 33.040441,5.2796316 C 33.279381,6.7054805 33.577496,8.9620596 32.961856,11.524439 C 32.961856,11.524439 38.340859,11.424093 39.121563,11.586207 z "
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8166);stroke-width:1.00000024;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"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;display:inline;opacity:0.15"
|
||||
d="M 8.518214,2.986098 L 22,2.986098 L 22,23.928002 L 16.515644,17.234797 L 10.96121,24 L 10.96121,3.9419039 C 10.96121,3.404299 9.435316,2.986098 8.518214,2.986098 z "
|
||||
id="path7273"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient5351);fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 10.018213,2.5 L 21.422873,2.5 C 22.994417,2.5 23.499999,3.0073903 23.499999,4.470952 L 23.499999,23.441904 L 18.015643,16.748699 L 12.461209,23.513902 L 12.508084,4.4558059 C 12.508084,2.8706328 10.935315,2.5 10.018213,2.5 z "
|
||||
id="path4386"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
sodipodi:type="inkscape:offset"
|
||||
inkscape:radius="-1.03125"
|
||||
inkscape:original="M 10.03125 2.5 C 10.948352 2.5 12.5 2.883577 12.5 4.46875 L 12.46875 23.5 L 18.03125 16.75 L 23.5 23.4375 L 23.5 4.46875 C 23.5 3.0051883 23.009044 2.5 21.4375 2.5 L 10.03125 2.5 z "
|
||||
style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:url(#linearGradient2839);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;opacity:0.6"
|
||||
id="path1934"
|
||||
d="M 13.25,3.53125 C 13.362221,3.8338001 13.53125,4.1151264 13.53125,4.46875 L 13.5,20.625 L 17.25,16.09375 C 17.445904,15.855316 17.738283,15.717133 18.046875,15.717133 C 18.355467,15.717133 18.647846,15.855316 18.84375,16.09375 L 22.46875,20.53125 L 22.46875,4.46875 C 22.46875,3.8522811 22.365083,3.7081684 22.34375,3.6875 C 22.322417,3.6668316 22.11277,3.53125 21.4375,3.53125 L 13.25,3.53125 z " />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |
1119
src/images/scalable/gramps-date-edit.svg
Normal file
After Width: | Height: | Size: 47 KiB |
913
src/images/scalable/gramps-date.svg
Normal file
@ -0,0 +1,913 @@
|
||||
<?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"
|
||||
inkscape:export-ydpi="90.000000"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg11300"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.43+devel"
|
||||
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/mimetypes"
|
||||
sodipodi:docname="x-office-calendar.svg">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient4604">
|
||||
<stop
|
||||
style="stop-color:#383936;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4606" />
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4608" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6105">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6107" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6109" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6087">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6089" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6091" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2224">
|
||||
<stop
|
||||
style="stop-color:#7c7c7c;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2226" />
|
||||
<stop
|
||||
style="stop-color:#b8b8b8;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop2228" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2224"
|
||||
id="linearGradient6055"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.734574,0,0,0.73094,13.14657,3.97815)"
|
||||
x1="35.996582"
|
||||
y1="40.458221"
|
||||
x2="33.664921"
|
||||
y2="37.770721" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2251">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2253" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2255" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2251"
|
||||
id="linearGradient6052"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.734574,0,0,0.73094,13.35394,3.76021)"
|
||||
x1="33.396004"
|
||||
y1="36.921333"
|
||||
x2="34.170048"
|
||||
y2="38.070381" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4776">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4778" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4780" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4754">
|
||||
<stop
|
||||
id="stop4756"
|
||||
offset="0"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4758"
|
||||
offset="1"
|
||||
style="stop-color:#888a85;stop-opacity:0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4748">
|
||||
<stop
|
||||
style="stop-color:#999a98;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4750" />
|
||||
<stop
|
||||
id="stop4760"
|
||||
offset="0.5"
|
||||
style="stop-color:#caccc8;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#616161;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4752" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4693">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4695" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4697" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4573">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4575" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4577" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4565">
|
||||
<stop
|
||||
id="stop4567"
|
||||
offset="0"
|
||||
style="stop-color:#7f7f70;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4569"
|
||||
offset="1"
|
||||
style="stop-color:#a6a69c;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4537">
|
||||
<stop
|
||||
id="stop6075"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6073"
|
||||
offset="1"
|
||||
style="stop-color:#e6e6e6;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient11520">
|
||||
<stop
|
||||
id="stop11522"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop11524"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#dcdcdc;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient11508"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop11510"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop11512"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient11494"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop11496"
|
||||
offset="0"
|
||||
style="stop-color:#ef2929;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop11498"
|
||||
offset="1"
|
||||
style="stop-color:#ef2929;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient11415">
|
||||
<stop
|
||||
id="stop11417"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#204a87;stop-opacity:0.0000000;" />
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1.0000000;"
|
||||
offset="0.50000000"
|
||||
id="stop11423" />
|
||||
<stop
|
||||
id="stop11419"
|
||||
offset="1"
|
||||
style="stop-color:#204a87;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient11399"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop11401"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop11403"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(-60.28571,-0.285714)"
|
||||
y2="34.462429"
|
||||
x2="43.615788"
|
||||
y1="3.7744560"
|
||||
x1="15.828360"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient11425"
|
||||
xlink:href="#linearGradient11415"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
gradientTransform="translate(-60.57143,0.000000)"
|
||||
y2="39.033859"
|
||||
x2="35.679932"
|
||||
y1="9.3458843"
|
||||
x1="9.6957054"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient11427"
|
||||
xlink:href="#linearGradient11415"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="33.462429"
|
||||
x2="26.758644"
|
||||
y1="19.774456"
|
||||
x1="13.267134"
|
||||
gradientTransform="translate(-60.85714,0.428571)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient11439"
|
||||
xlink:href="#linearGradient11415"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="8.5000000"
|
||||
fy="39.142857"
|
||||
fx="12.071428"
|
||||
cy="39.142857"
|
||||
cx="12.071428"
|
||||
gradientTransform="matrix(1.000000,0.000000,0.000000,0.487395,0.000000,20.06483)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient11441"
|
||||
xlink:href="#linearGradient11399"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(1.243453,2.106784e-16,-2.106784e-16,1.243453,-6.713754,-3.742847)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="3.8335034"
|
||||
fy="15.048258"
|
||||
fx="27.577173"
|
||||
cy="15.048258"
|
||||
cx="27.577173"
|
||||
id="radialGradient11500"
|
||||
xlink:href="#linearGradient11494"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="3.8335034"
|
||||
fy="16.049133"
|
||||
fx="27.577173"
|
||||
cy="16.049133"
|
||||
cx="27.577173"
|
||||
gradientTransform="matrix(1.243453,2.106784e-16,-2.106784e-16,1.243453,-6.713754,-3.742847)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient11504"
|
||||
xlink:href="#linearGradient11494"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,2.166583e-14,29.48178)"
|
||||
r="6.5659914"
|
||||
fy="44.565483"
|
||||
fx="30.203562"
|
||||
cy="44.565483"
|
||||
cx="30.203562"
|
||||
id="radialGradient11514"
|
||||
xlink:href="#linearGradient11508"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(1.995058,-1.651527e-32,0.000000,1.995058,-24.32488,-35.70087)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="20.530962"
|
||||
fy="35.878170"
|
||||
fx="24.445690"
|
||||
cy="35.878170"
|
||||
cx="24.445690"
|
||||
id="radialGradient11526"
|
||||
xlink:href="#linearGradient11520"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
r="6.5659914"
|
||||
fy="44.565483"
|
||||
fx="30.203562"
|
||||
cy="44.565483"
|
||||
cx="30.203562"
|
||||
gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,3.185827e-15,29.48178)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient11532"
|
||||
xlink:href="#linearGradient11508"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11508"
|
||||
id="radialGradient1348"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,-1.353344e-14,29.48178)"
|
||||
cx="30.203562"
|
||||
cy="44.565483"
|
||||
fx="30.203562"
|
||||
fy="44.565483"
|
||||
r="6.5659914" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11520"
|
||||
id="radialGradient1350"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.995058,-1.651527e-32,0.000000,1.995058,-24.32488,-35.70087)"
|
||||
cx="24.445690"
|
||||
cy="35.878170"
|
||||
fx="24.445690"
|
||||
fy="35.878170"
|
||||
r="20.530962" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11494"
|
||||
id="radialGradient1352"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.243453,2.106784e-16,-2.106784e-16,1.243453,-6.713754,-3.742847)"
|
||||
cx="27.577173"
|
||||
cy="16.049133"
|
||||
fx="27.577173"
|
||||
fy="16.049133"
|
||||
r="3.8335034" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11494"
|
||||
id="radialGradient1354"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.243453,2.106784e-16,-2.106784e-16,1.243453,-6.713754,-3.742847)"
|
||||
cx="27.577173"
|
||||
cy="15.048258"
|
||||
fx="27.577173"
|
||||
fy="15.048258"
|
||||
r="3.8335034" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11508"
|
||||
id="radialGradient1356"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,2.220359e-14,29.48178)"
|
||||
cx="30.203562"
|
||||
cy="44.565483"
|
||||
fx="30.203562"
|
||||
fy="44.565483"
|
||||
r="6.5659914" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient11520"
|
||||
id="radialGradient1366"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.049266,-1.696401e-32,0.000000,2.049266,-25.65002,-37.31089)"
|
||||
cx="24.445690"
|
||||
cy="35.878170"
|
||||
fx="24.445690"
|
||||
fy="35.878170"
|
||||
r="20.530962" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4537"
|
||||
id="linearGradient4543"
|
||||
x1="37.270947"
|
||||
y1="27.272932"
|
||||
x2="35.871902"
|
||||
y2="22.67392"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.125982,0,0,1.272791,-4.167995,-7.706526)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4573"
|
||||
id="radialGradient4579"
|
||||
cx="24.969707"
|
||||
cy="42.210564"
|
||||
fx="24.969707"
|
||||
fy="42.210564"
|
||||
r="20.815456"
|
||||
gradientTransform="matrix(1,0,0,0.286624,-1.249436e-15,30.11199)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4693"
|
||||
id="radialGradient4699"
|
||||
cx="12.887021"
|
||||
cy="16.771133"
|
||||
fx="12.887021"
|
||||
fy="16.771133"
|
||||
r="1.5909903"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.944444,4.466041e-15,-4.466041e-15,1.944444,-12.77212,-16.7839)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4693"
|
||||
id="radialGradient4705"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.944444,4.466041e-15,-4.466041e-15,1.944444,-12.77212,-16.7839)"
|
||||
cx="12.887021"
|
||||
cy="16.771133"
|
||||
fx="12.887021"
|
||||
fy="16.771133"
|
||||
r="1.5909903" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4693"
|
||||
id="radialGradient4712"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.944444,4.466041e-15,-4.466041e-15,1.944444,-12.77212,-16.7839)"
|
||||
cx="12.887021"
|
||||
cy="16.771133"
|
||||
fx="12.887021"
|
||||
fy="16.771133"
|
||||
r="1.5909903" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4748"
|
||||
id="linearGradient4744"
|
||||
x1="10.998293"
|
||||
y1="11.928971"
|
||||
x2="14.539844"
|
||||
y2="13.486036"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4754"
|
||||
id="linearGradient4746"
|
||||
x1="24.804379"
|
||||
y1="7.3598351"
|
||||
x2="24.804379"
|
||||
y2="13.861036"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4748"
|
||||
id="linearGradient4764"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="10.998293"
|
||||
y1="11.928971"
|
||||
x2="14.539844"
|
||||
y2="13.486036" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4748"
|
||||
id="linearGradient4772"
|
||||
x1="24.03125"
|
||||
y1="7.53125"
|
||||
x2="24.03125"
|
||||
y2="15.53125"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.125982,0,0,1.126747,-4.079607,-5.365805)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4776"
|
||||
id="radialGradient4782"
|
||||
cx="13.832776"
|
||||
cy="17.903767"
|
||||
fx="13.832776"
|
||||
fy="17.903767"
|
||||
r="1.8119612"
|
||||
gradientTransform="matrix(1,0,0,2.02439,-3.663953e-15,-18.34044)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4776"
|
||||
id="radialGradient4786"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,2.02439,1.66256e-14,-18.34044)"
|
||||
cx="13.832776"
|
||||
cy="17.903767"
|
||||
fx="13.832776"
|
||||
fy="17.903767"
|
||||
r="1.8119612" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4776"
|
||||
id="radialGradient4790"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,2.02439,1.463672e-16,-18.34044)"
|
||||
cx="13.832776"
|
||||
cy="17.903767"
|
||||
fx="13.832776"
|
||||
fy="17.903767"
|
||||
r="1.8119612" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6087"
|
||||
id="linearGradient6093"
|
||||
x1="23.20356"
|
||||
y1="24.077753"
|
||||
x2="30.741646"
|
||||
y2="36.054375"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6105"
|
||||
id="radialGradient6111"
|
||||
cx="12.993087"
|
||||
cy="18.399908"
|
||||
fx="12.993087"
|
||||
fy="18.399908"
|
||||
r="2.1617265"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6105"
|
||||
id="radialGradient6115"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="12.993087"
|
||||
cy="18.399908"
|
||||
fx="12.993087"
|
||||
fy="18.399908"
|
||||
r="2.1617265" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6105"
|
||||
id="radialGradient6119"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="12.993087"
|
||||
cy="18.399908"
|
||||
fx="12.993087"
|
||||
fy="18.399908"
|
||||
r="2.1617265" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4604"
|
||||
id="linearGradient4610"
|
||||
x1="25.348972"
|
||||
y1="37.548233"
|
||||
x2="25.348972"
|
||||
y2="39.750675"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.951156,0,0,1,1.172114,0)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
stroke="#ef2929"
|
||||
fill="#eeeeec"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.25490196"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568542"
|
||||
inkscape:cx="68.499104"
|
||||
inkscape:cy="8.964032"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-width="1224"
|
||||
inkscape:window-height="1080"
|
||||
inkscape:window-x="2348"
|
||||
inkscape:window-y="0" />
|
||||
<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" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:title />
|
||||
</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
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.38461537;color:#000000;fill:url(#radialGradient4579);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;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:block;overflow:visible"
|
||||
id="path4571"
|
||||
sodipodi:cx="24.969707"
|
||||
sodipodi:cy="42.210564"
|
||||
sodipodi:rx="20.815456"
|
||||
sodipodi:ry="5.9662137"
|
||||
d="M 45.785164 42.210564 A 20.815456 5.9662137 0 1 1 4.1542511,42.210564 A 20.815456 5.9662137 0 1 1 45.785164 42.210564 z"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
transform="matrix(1.199821,0,0,0.650174,-5.937679,13.54051)" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient4610);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:butt;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:block;overflow:visible"
|
||||
d="M 7.1903818,30.619256 L 6.9579435,41.499992 L 41.036463,41.499992 L 40.503612,28.827804 L 7.1903818,30.619256 z "
|
||||
id="path4535"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.23076923;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
d="M 7.5296067,37.613897 L 7.3305593,41 L 41.314314,41 L 7.8281776,40.502043 L 7.5296067,37.613897 z "
|
||||
id="path6079"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
id="path8616"
|
||||
d="M 6.8123473,11.277009 L 39.685523,11.277009 L 43.018667,36.964114 L 5.0307392,36.964114 L 6.8123473,11.277009 z "
|
||||
style="opacity:1;color:#000000;fill:#cacaca;fill-opacity:1;fill-rule:evenodd;stroke:#686868;stroke-width:1.00000072;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:block;overflow:visible" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient4543);fill-opacity:1;fill-rule:evenodd;stroke:#868a84;stroke-width:1.00000083;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:block;overflow:visible"
|
||||
d="M 6.1824687,8.5000038 L 39.920999,8.5000038 L 43.341885,35.500012 L 4.3539614,35.500012 L 6.1824687,8.5000038 z "
|
||||
id="path3660"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
id="path4545"
|
||||
d="M 7.12847,9.5000031 L 39.02851,9.5000031 L 42.073547,34.500001 L 5.423245,34.500001 L 7.12847,9.5000031 z "
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;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:block;overflow:visible"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:0.20879122;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
d="M 42.811018,35.038881 L 42.089624,29.15164 L 35.826652,35.061723 L 42.811018,35.038881 z "
|
||||
id="path6077"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.33516487;color:#000000;fill:url(#radialGradient4790);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
id="path4788"
|
||||
sodipodi:cx="13.832776"
|
||||
sodipodi:cy="17.903767"
|
||||
sodipodi:rx="1.8119612"
|
||||
sodipodi:ry="3.6681163"
|
||||
d="M 15.644737 17.903767 A 1.8119612 3.6681163 0 1 1 12.020815,17.903767 A 1.8119612 3.6681163 0 1 1 15.644737 17.903767 z"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
transform="matrix(1.620316,0,0,1.126747,0.837299,-7.689396)" />
|
||||
<path
|
||||
transform="matrix(1.125982,0,0,0.958072,19.31959,-5.288202)"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
d="M 15.644737 17.903767 A 1.8119612 3.6681163 0 1 1 12.020815,17.903767 A 1.8119612 3.6681163 0 1 1 15.644737 17.903767 z"
|
||||
sodipodi:ry="3.6681163"
|
||||
sodipodi:rx="1.8119612"
|
||||
sodipodi:cy="17.903767"
|
||||
sodipodi:cx="13.832776"
|
||||
id="path4784"
|
||||
style="opacity:0.33516487;color:#000000;fill:url(#radialGradient4786);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.33516487;color:#000000;fill:url(#radialGradient4782);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
id="path4774"
|
||||
sodipodi:cx="13.832776"
|
||||
sodipodi:cy="17.903767"
|
||||
sodipodi:rx="1.8119612"
|
||||
sodipodi:ry="3.6681163"
|
||||
d="M 15.644737 17.903767 A 1.8119612 3.6681163 0 1 1 12.020815,17.903767 A 1.8119612 3.6681163 0 1 1 15.644737 17.903767 z"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
transform="matrix(1.125982,0,0,1.054458,-4.566089,-6.660313)" />
|
||||
<path
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient6093);fill-opacity:1.0;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Segoe"
|
||||
d="M 19.718956,29.3237 L 17.369387,29.3237 L 17.369387,18.734619 L 14.383844,19.636192 L 14.383844,17.647425 L 19.718956,16.180157 L 19.718956,29.3237 M 32.023276,29.3237 L 23.967612,29.3237 L 23.967612,27.441 C 26.599831,24.77753 28.092601,23.260174 28.445926,22.888931 C 28.805126,22.511811 29.090726,22.117004 29.302723,21.704511 C 29.520596,21.286141 29.629536,20.832408 29.629543,20.34331 C 29.629536,19.777626 29.444044,19.323893 29.073066,18.982109 C 28.707964,18.634454 28.195652,18.460621 27.536129,18.460611 C 27.106255,18.460621 26.632219,18.575527 26.114022,18.805329 C 25.595819,19.02926 25.127674,19.344517 24.709581,19.751099 L 24.709581,17.373417 C 25.869641,16.701669 26.967872,16.365788 28.004277,16.365774 C 29.234997,16.365788 30.19779,16.695776 30.892657,17.355739 C 31.593397,18.009835 31.94377,18.914354 31.943779,20.069302 C 31.94377,20.78232 31.743557,21.504169 31.343137,22.234849 C 30.948591,22.965543 30.350894,23.702122 29.550045,24.44459 L 26.432008,27.35261 L 32.023276,27.35261 L 32.023276,29.3237"
|
||||
id="text4581"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
transform="matrix(1.1813,0,0,1.182048,-4.864643,-6.422489)"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
d="M 14.584077 16.710526 A 1.5909903 1.5909903 0 1 1 11.402097,16.710526 A 1.5909903 1.5909903 0 1 1 14.584077 16.710526 z"
|
||||
sodipodi:ry="1.5909903"
|
||||
sodipodi:rx="1.5909903"
|
||||
sodipodi:cy="16.710526"
|
||||
sodipodi:cx="12.993087"
|
||||
id="path6095"
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6111);stroke-width:0.84625739;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:block;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4699);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;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:block;overflow:visible"
|
||||
id="path4691"
|
||||
sodipodi:cx="12.993087"
|
||||
sodipodi:cy="16.710526"
|
||||
sodipodi:rx="1.5909903"
|
||||
sodipodi:ry="1.5909903"
|
||||
d="M 14.584077 16.710526 A 1.5909903 1.5909903 0 1 1 11.402097,16.710526 A 1.5909903 1.5909903 0 1 1 14.584077 16.710526 z"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
transform="matrix(0.875764,0,0,0.876359,-0.916889,-1.31427)" />
|
||||
<path
|
||||
transform="matrix(0.875764,0,0,0.876359,23.09141,-1.31427)"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
d="M 14.584077 16.710526 A 1.5909903 1.5909903 0 1 1 11.402097,16.710526 A 1.5909903 1.5909903 0 1 1 14.584077 16.710526 z"
|
||||
sodipodi:ry="1.5909903"
|
||||
sodipodi:rx="1.5909903"
|
||||
sodipodi:cy="16.710526"
|
||||
sodipodi:cx="12.993087"
|
||||
id="path4703"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4705);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;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:block;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(-0.783152,0,0,1.126747,45.83291,-5.199614)"
|
||||
sodipodi:open="true"
|
||||
sodipodi:end="6.2899875"
|
||||
sodipodi:start="1.6592322"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
d="M 14.411076,16.251658 A 1.4584079,4.3310289 0 1 1 15.998258,11.967015"
|
||||
sodipodi:ry="4.3310289"
|
||||
sodipodi:rx="1.4584079"
|
||||
sodipodi:cy="11.937554"
|
||||
sodipodi:cx="14.539884"
|
||||
id="path4701"
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4744);stroke-width:1.59681714;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:block;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4764);stroke-width:1.33171868;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:block;overflow:visible"
|
||||
id="path4762"
|
||||
sodipodi:cx="14.539884"
|
||||
sodipodi:cy="11.937554"
|
||||
sodipodi:rx="1.4584079"
|
||||
sodipodi:ry="4.3310289"
|
||||
d="M 14.411076,16.251658 A 1.4584079,4.3310289 0 1 1 15.998258,11.967015"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:start="1.6592322"
|
||||
sodipodi:end="6.2899875"
|
||||
sodipodi:open="true"
|
||||
transform="matrix(1.125982,0,0,1.126747,-5.884205,-5.199614)" />
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:#868a84;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
id="rect4707"
|
||||
width="24.582342"
|
||||
height="1"
|
||||
x="10.417658"
|
||||
y="8"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4712);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;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:block;overflow:visible"
|
||||
id="path4710"
|
||||
sodipodi:cx="12.993087"
|
||||
sodipodi:cy="16.710526"
|
||||
sodipodi:rx="1.5909903"
|
||||
sodipodi:ry="1.5909903"
|
||||
d="M 14.584077 16.710526 A 1.5909903 1.5909903 0 1 1 11.402097,16.710526 A 1.5909903 1.5909903 0 1 1 14.584077 16.710526 z"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
transform="matrix(0.875764,0,0,0.876359,11.61742,-1.366726)" />
|
||||
<rect
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient4772);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
id="rect4714"
|
||||
width="2.3223372"
|
||||
height="11.47873"
|
||||
x="21.817968"
|
||||
y="2.3101559"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
rx="1.03125"
|
||||
ry="1.03125" />
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
style="color:#000000;fill:url(#linearGradient6055);fill-opacity:1;fill-rule:evenodd;stroke:#868a84;stroke-width:1.00000048;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"
|
||||
d="M 34.917822,35.178277 C 37.249002,35.331024 42.536021,32.353306 42.047266,28.569116 C 40.898934,30.340254 38.55178,29.421256 35.533594,29.537483 C 35.533594,29.537483 35.912409,34.636031 34.917822,35.178277 z "
|
||||
id="path2210"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2247"
|
||||
d="M 36.5,33.5 C 37.506203,33.000162 39.752875,31.931063 40.707366,30.556162 C 39.490723,30.83227 38.586176,30.620903 36.562775,30.606948 C 36.562775,30.606948 36.637818,32.933544 36.5,33.5 z "
|
||||
style="opacity:0.36931817;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6052);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" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.55494505;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
id="path6081"
|
||||
sodipodi:cx="22.96875"
|
||||
sodipodi:cy="5.03125"
|
||||
sodipodi:rx="0.84375"
|
||||
sodipodi:ry="0.84375"
|
||||
d="M 23.8125 5.03125 A 0.84375 0.84375 0 1 1 22.125,5.03125 A 0.84375 0.84375 0 1 1 23.8125 5.03125 z"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
transform="matrix(0.592592,0,0,0.592592,9.076399,1.51852)" />
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
d="M 23.8125 5.03125 A 0.84375 0.84375 0 1 1 22.125,5.03125 A 0.84375 0.84375 0 1 1 23.8125 5.03125 z"
|
||||
sodipodi:ry="0.84375"
|
||||
sodipodi:rx="0.84375"
|
||||
sodipodi:cy="5.03125"
|
||||
sodipodi:cx="22.96875"
|
||||
id="path6083"
|
||||
style="opacity:0.55494505;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
sodipodi:type="arc"
|
||||
transform="matrix(0.62963,0,0,0.62963,-4.993064,1.363424)" />
|
||||
<path
|
||||
transform="matrix(0.62963,0,0,0.62963,20.88194,1.363424)"
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.55494504;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;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:block;overflow:visible"
|
||||
id="path6085"
|
||||
sodipodi:cx="22.96875"
|
||||
sodipodi:cy="5.03125"
|
||||
sodipodi:rx="0.84375"
|
||||
sodipodi:ry="0.84375"
|
||||
d="M 23.8125 5.03125 A 0.84375 0.84375 0 1 1 22.125,5.03125 A 0.84375 0.84375 0 1 1 23.8125 5.03125 z"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6115);stroke-width:0.84625739;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:block;overflow:visible"
|
||||
id="path6113"
|
||||
sodipodi:cx="12.993087"
|
||||
sodipodi:cy="16.710526"
|
||||
sodipodi:rx="1.5909903"
|
||||
sodipodi:ry="1.5909903"
|
||||
d="M 14.584077 16.710526 A 1.5909903 1.5909903 0 1 1 11.402097,16.710526 A 1.5909903 1.5909903 0 1 1 14.584077 16.710526 z"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
transform="matrix(1.1813,0,0,1.182048,7.664405,-6.422489)" />
|
||||
<path
|
||||
transform="matrix(1.1813,0,0,1.182048,19.17699,-6.422489)"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
d="M 14.584077 16.710526 A 1.5909903 1.5909903 0 1 1 11.402097,16.710526 A 1.5909903 1.5909903 0 1 1 14.584077 16.710526 z"
|
||||
sodipodi:ry="1.5909903"
|
||||
sodipodi:rx="1.5909903"
|
||||
sodipodi:cy="16.710526"
|
||||
sodipodi:cx="12.993087"
|
||||
id="path6117"
|
||||
style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6119);stroke-width:0.84625739;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:block;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 39 KiB |
@ -7,17 +7,131 @@
|
||||
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg2108"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.44"
|
||||
sodipodi:docbase="/home/dona/gramps-svn/src/images"
|
||||
sodipodi:docname="parents.svg">
|
||||
inkscape:version="0.43"
|
||||
sodipodi:docbase="/home/benny/programms/gramps/myicons/scalable"
|
||||
sodipodi:docname="gramps-parents_2.svg">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient1739"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.386065,0,0,1.320668,-57.80026,8.794486)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1736"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,17.35724,3.355106)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1702"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<linearGradient
|
||||
id="linearGradient3493">
|
||||
<stop
|
||||
id="stop3495"
|
||||
offset="0"
|
||||
style="stop-color:#888a85;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3497"
|
||||
offset="1"
|
||||
style="stop-color:#555753;stop-opacity:0.94117647;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3493"
|
||||
id="radialGradient1732"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.798508,3.805072e-16,-2.72323e-16,1.168568,-52.17368,24.56388)"
|
||||
cx="28.089741"
|
||||
cy="27.203083"
|
||||
fx="28.089741"
|
||||
fy="27.203083"
|
||||
r="13.56536" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient1729"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.386065,0,0,1.320668,-40.58826,18.03917)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1708"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<linearGradient
|
||||
id="linearGradient2614">
|
||||
<stop
|
||||
id="stop2616"
|
||||
offset="0"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2618"
|
||||
offset="1"
|
||||
style="stop-color:#aeb1a9;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2614"
|
||||
id="radialGradient1710"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.787998,3.877637e-16,-3.877637e-16,0.787998,6.221198,3.617627)"
|
||||
cx="29.344931"
|
||||
cy="17.064077"
|
||||
fx="29.344931"
|
||||
fy="17.064077"
|
||||
r="9.1620579" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1720"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.363022,0.239817,-0.251693,1.298712,-31.9507,14.53746)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1717"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,35.79723,12.82885)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4356">
|
||||
@ -382,6 +496,98 @@
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient3573"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.386065,0,0,1.320668,-57.80026,8.794486)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient3575"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,17.35724,3.355106)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient3577"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3493"
|
||||
id="radialGradient3579"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.798508,3.805072e-16,-2.72323e-16,1.168568,-52.17368,24.56388)"
|
||||
cx="28.089741"
|
||||
cy="27.203083"
|
||||
fx="28.089741"
|
||||
fy="27.203083"
|
||||
r="13.56536" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient3581"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.386065,0,0,1.320668,-40.58826,18.03917)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient3583"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2614"
|
||||
id="radialGradient3585"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.787998,3.877637e-16,-3.877637e-16,0.787998,6.221198,3.617627)"
|
||||
cx="29.344931"
|
||||
cy="17.064077"
|
||||
fx="29.344931"
|
||||
fy="17.064077"
|
||||
r="9.1620579" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient3587"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.363022,0.239817,-0.251693,1.298712,-31.9507,14.53746)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient3589"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,35.79723,12.82885)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:showpageshadow="false"
|
||||
@ -392,8 +598,8 @@
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="31.201438"
|
||||
inkscape:cy="13.80024"
|
||||
inkscape:cx="18.263989"
|
||||
inkscape:cy="-3.148881"
|
||||
inkscape:current-layer="g2292"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
@ -401,9 +607,9 @@
|
||||
fill="#9db029"
|
||||
stroke="#727e0a"
|
||||
inkscape:window-width="914"
|
||||
inkscape:window-height="815"
|
||||
inkscape:window-x="265"
|
||||
inkscape:window-y="121" />
|
||||
inkscape:window-height="814"
|
||||
inkscape:window-x="66"
|
||||
inkscape:window-y="57" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
@ -622,82 +828,92 @@
|
||||
id="g2292"
|
||||
transform="translate(-8.237686,3.795331)">
|
||||
<g
|
||||
id="g2330"
|
||||
transform="matrix(0.788681,0,0,0.813202,6.548296,8.214314)">
|
||||
id="g3540"
|
||||
transform="matrix(0.63351,0,0,0.63351,29.8034,-3.50389)">
|
||||
<path
|
||||
transform="matrix(1.77551,0,0,0.959183,-24.25322,18.77153)"
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2343);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="path2294"
|
||||
sodipodi:cx="31.112698"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:ry="8.6620579"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
|
||||
id="path3514"
|
||||
d="M -9.2855096,53.742947 L -3.4049346,53.742947 L -6.8352696,50.707924 L -7.5703416,51.641777 L -8.3054146,50.941387 L -9.2855096,53.742947 z "
|
||||
style="color:#000000;fill:url(#linearGradient3573);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="opacity:1;color:black;fill:url(#radialGradient2345);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;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 25.986174,41.636039 L 36.592776,41.636039 C 39.59798,41.636039 42.57326,40.534107 43.663843,37.393398 C 44.699482,34.410922 43.84062,28.73134 37.123106,24.135146 L 24.57196,24.135146 C 17.854446,28.377786 17.014969,34.179977 18.561553,37.570174 C 20.137148,41.023964 22.804193,41.636039 25.986174,41.636039 z "
|
||||
id="path2296"
|
||||
sodipodi:nodetypes="cczcczc" />
|
||||
<path
|
||||
style="opacity:1;color:black;fill:url(#linearGradient2347);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.693281,25.726136 C 29.875261,28.554563 31.289475,38.807612 31.289475,38.807612 C 31.289475,38.807612 32.703688,28.554564 35.178562,25.54936 L 26.693281,25.726136 z "
|
||||
id="path2298"
|
||||
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient3575);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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 -2.5356956,61.282317 C -0.82910164,60.515038 -0.034707641,58.637916 -0.034707641,58.637916 C -1.3641106,53.298477 -5.5459086,49.600821 -5.5459086,49.600821 C -5.5459086,49.600821 -2.1298226,57.977292 -2.5356956,61.282317 z "
|
||||
id="path3516"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2300"
|
||||
d="M 28.972721,26.786797 C 28.972721,26.786797 26.821398,28.447132 27.00673,30.44733 C 24.965504,28.646536 24.906857,25.195806 24.906857,25.195806 L 28.972721,26.786797 z "
|
||||
style="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
sodipodi:ry="8.6620579"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:cx="31.112698"
|
||||
id="path3518"
|
||||
style="color:#000000;fill:url(#radialGradient3577);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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"
|
||||
transform="matrix(2.460972,0,0,1.266762,-74.20479,42.83012)" />
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
id="path2302"
|
||||
d="M 25.914862,40.593933 L 36.408309,40.571836 C 39.048032,40.571836 41.66147,39.603917 42.619421,36.845169 C 43.52911,34.225409 42.524699,29.236555 36.624142,25.199332 L 25.099417,24.956264 C 19.19886,28.682931 18.056797,33.779483 19.437388,37.000446 C 20.81798,40.221409 22.832599,40.571836 25.914862,40.593933 z "
|
||||
style="opacity:0.21518986;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999976px;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="path3520"
|
||||
d="M -4.5697286,73.026546 L 10.131711,73.026546 C 14.297119,73.026546 18.421051,71.57126 19.93267,67.423426 C 21.368133,63.484565 20.177694,55.983723 10.866783,49.913676 L -6.5299206,49.913676 C -15.840832,55.516795 -17.004402,63.179563 -14.860736,67.656888 C -12.676859,72.218198 -8.9801606,73.026546 -4.5697286,73.026546 z "
|
||||
style="color:#000000;fill:url(#radialGradient3579);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.35297143px;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="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.410795,26.786797 C 33.410795,26.786797 35.562118,28.447132 35.376786,30.44733 C 37.418012,28.646536 37.476659,25.195806 37.476659,25.195806 L 33.410795,26.786797 z "
|
||||
id="path2304"
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3522"
|
||||
d="M -3.5896316,52.014846 C 0.82079936,55.750259 2.7809914,69.291133 2.7809914,69.291133 C 2.7809914,69.291133 4.7411824,55.75026 8.1715194,51.781384 L -3.5896316,52.014846 z "
|
||||
style="color:#000000;fill:url(#linearGradient3581);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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 -0.43017964,53.415627 C -0.43017964,53.415627 -3.4120536,55.608378 -3.1551716,58.249976 C -5.9844436,55.871725 -6.0657316,51.314456 -6.0657316,51.314456 L -0.43017964,53.415627 z "
|
||||
id="path3524"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
sodipodi:ry="8.6620579"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:cx="31.112698"
|
||||
id="path2306"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2349);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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"
|
||||
transform="translate(-0.125,3.5)" />
|
||||
style="opacity:0.21518986;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.35297108px;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 -4.6685716,71.65027 L 9.8760284,71.621087 C 13.534855,71.621087 17.15725,70.342787 18.485033,66.699397 C 19.745921,63.239564 18.353742,56.650944 10.175186,51.319113 L -5.7988316,50.998101 C -13.977387,55.919791 -15.56036,62.650644 -13.646771,66.904467 C -11.733181,71.158289 -8.9407886,71.621087 -4.6685716,71.65027 z "
|
||||
id="path3526"
|
||||
sodipodi:nodetypes="cczcczc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3528"
|
||||
d="M 5.7212794,53.415627 C 5.7212794,53.415627 8.7031524,55.608378 8.4462704,58.249976 C 11.275542,55.871725 11.35683,51.314456 11.35683,51.314456 L 5.7212794,53.415627 z "
|
||||
style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.386065,0,0,1.320668,-40.76151,22.6615)"
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient2351);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;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="path2308"
|
||||
style="color:#000000;fill:url(#radialGradient3583);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="path3530"
|
||||
sodipodi:cx="31.112698"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:ry="8.6620579"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
|
||||
<path
|
||||
transform="matrix(1.386065,0,0,1.320668,-40.58825,18.03917)"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
sodipodi:ry="8.6620579"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:cx="31.112698"
|
||||
id="path2310"
|
||||
style="opacity:0.19620254;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.14012825px;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"
|
||||
transform="matrix(0.877095,0,0,0.877095,3.823927,2.336267)" />
|
||||
id="path3532"
|
||||
style="color:#000000;fill:url(#radialGradient3585);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1px;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="opacity:0.22784807;color:black;fill:url(#linearGradient2353);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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 21.85179,40.775197 C 20.604183,40.230228 20.045796,38.91692 20.045796,38.91692 C 20.887077,34.847784 23.765721,31.870704 23.765721,31.870704 C 23.765721,31.870704 21.4864,38.282218 21.85179,40.775197 z "
|
||||
id="path2312"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
transform="matrix(1.215711,0,0,1.158351,-35.28805,21.1246)"
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.19620254;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;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="path3534"
|
||||
sodipodi:cx="31.112698"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:ry="8.6620579"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2314"
|
||||
d="M 40.757497,39.916846 C 41.988748,39.335868 42.561877,37.914525 42.561877,37.914525 C 41.602757,33.871542 38.585728,31.071704 38.585728,31.071704 C 38.585728,31.071704 41.050321,37.414306 40.757497,39.916846 z "
|
||||
style="opacity:0.22784807;color:black;fill:url(#linearGradient2355);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="path3536"
|
||||
d="M -10.300254,71.889659 C -12.029518,71.169936 -12.803478,69.435492 -12.803478,69.435492 C -11.637409,64.061515 -7.6474206,60.12978 -7.6474206,60.12978 C -7.6474206,60.12978 -10.806708,68.597262 -10.300254,71.889659 z "
|
||||
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient3587);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="opacity:0.22784807;color:#000000;fill:url(#linearGradient3589);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.904285,70.756063 C 17.610879,69.988784 18.405273,68.111661 18.405273,68.111661 C 17.07587,62.772223 12.894072,59.074567 12.894072,59.074567 C 12.894072,59.074567 16.310158,67.451038 15.904285,70.756063 z "
|
||||
id="path3538"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 45 KiB |
@ -7,17 +7,101 @@
|
||||
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://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg2108"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.44"
|
||||
sodipodi:docbase="/home/dona/gramps-svn/src/images"
|
||||
sodipodi:docname="spouse.svg">
|
||||
inkscape:version="0.43"
|
||||
sodipodi:docbase="/home/benny/programms/gramps/myicons"
|
||||
sodipodi:docname="gramps-spouse_2.svg">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1397"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,38.93076,-6.86866)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1400"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,-9.94712,-5.57492)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
id="linearGradient4338">
|
||||
<stop
|
||||
id="stop4340"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#e9b15e;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop4342"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#966416;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4338"
|
||||
id="radialGradient4328"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
|
||||
cx="29.344931"
|
||||
cy="17.064077"
|
||||
fx="29.344931"
|
||||
fy="17.064077"
|
||||
r="9.1620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient4330"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<linearGradient
|
||||
id="linearGradient4344">
|
||||
<stop
|
||||
style="stop-color:#727e0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#5b6508;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4348" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4344"
|
||||
id="radialGradient1412"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.681917,-2.875,12.48377)"
|
||||
cx="16.214741"
|
||||
cy="19.836468"
|
||||
fx="16.214741"
|
||||
fy="19.836468"
|
||||
r="13.565360" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient4336"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4356">
|
||||
@ -30,37 +114,15 @@
|
||||
offset="1"
|
||||
id="stop4360" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4344">
|
||||
<stop
|
||||
style="stop-color:#727e0a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4346" />
|
||||
<stop
|
||||
style="stop-color:#5b6508;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4348" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4338">
|
||||
<stop
|
||||
id="stop4340"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#e9b15e;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop4342"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#966416;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4163">
|
||||
<stop
|
||||
style="stop-color:#3b74bc;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4165" />
|
||||
<stop
|
||||
style="stop-color:#2d5990;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#555753;stop-opacity:0.94117647;"
|
||||
offset="1"
|
||||
id="stop4167" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
@ -89,112 +151,51 @@
|
||||
<linearGradient
|
||||
id="linearGradient3800">
|
||||
<stop
|
||||
style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3802" />
|
||||
<stop
|
||||
style="stop-color:#df9725;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#aeb1a9;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3804" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="radialGradient3806"
|
||||
cx="29.344931"
|
||||
cy="17.064077"
|
||||
fx="29.344931"
|
||||
fy="17.064077"
|
||||
r="9.1620579"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient4175"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1407"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486"
|
||||
gradientTransform="translate(0.707108,0.000000)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient4326"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-12.41789,-7.000000)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4338"
|
||||
id="radialGradient4328"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1413"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="radialGradient1415"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.787998,3.877637e-16,-3.877637e-16,0.787998,6.221198,3.617627)"
|
||||
cx="29.344931"
|
||||
cy="17.064077"
|
||||
fx="29.344931"
|
||||
fy="17.064077"
|
||||
r="9.1620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient4330"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient4332"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486"
|
||||
gradientTransform="translate(-13.12500,-7.000000)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient4336"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4344"
|
||||
id="radialGradient4350"
|
||||
cx="16.214741"
|
||||
cy="19.836468"
|
||||
fx="16.214741"
|
||||
fy="19.836468"
|
||||
r="13.565360"
|
||||
gradientTransform="matrix(1.000000,0.000000,0.000000,0.681917,0.000000,8.233773)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient4372"
|
||||
id="linearGradient2315"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,-7.072120,-9.824920)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient4374"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,41.80576,-11.11866)"
|
||||
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,57.48475,-16.61568)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
@ -202,19 +203,9 @@
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1366"
|
||||
id="linearGradient2318"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,41.80576,-11.11866)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1369"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,-7.07212,-9.82492)"
|
||||
gradientTransform="matrix(1.363022,0.239817,-0.251693,1.298712,-10.26318,-14.90707)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
@ -222,28 +213,68 @@
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient1372"
|
||||
id="linearGradient2327"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-12.41789,-7)"
|
||||
gradientTransform="matrix(1.386065,0,0,1.320668,-18.90074,-11.40536)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4344"
|
||||
id="radialGradient1381"
|
||||
xlink:href="#linearGradient4163"
|
||||
id="radialGradient2330"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.681917,0,8.233773)"
|
||||
cx="16.214741"
|
||||
cy="19.836468"
|
||||
fx="16.214741"
|
||||
fy="19.836468"
|
||||
gradientTransform="matrix(1.798508,3.805072e-16,-2.72323e-16,1.168568,-30.48616,-4.880645)"
|
||||
cx="28.089741"
|
||||
cy="27.203083"
|
||||
fx="28.089741"
|
||||
fy="27.203083"
|
||||
r="13.565360" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient2334"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,39.04476,-26.08942)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient2337"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.386065,0,0,1.320668,-36.11274,-20.65004)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient4020"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.386065,0,0,1.320668,-36.11274,-20.65004)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient4022"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,39.04476,-26.08942)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1978"
|
||||
id="radialGradient4024"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
@ -253,9 +284,9 @@
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4163"
|
||||
id="radialGradient1980"
|
||||
id="radialGradient4026"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.297564,0,0,0.884831,-8.358505,4.940469)"
|
||||
gradientTransform="matrix(1.798508,3.805072e-16,-2.72323e-16,1.168568,-30.48616,-4.880645)"
|
||||
cx="28.089741"
|
||||
cy="27.203083"
|
||||
fx="28.089741"
|
||||
@ -264,8 +295,9 @@
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient1982"
|
||||
id="linearGradient4028"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.386065,0,0,1.320668,-18.90074,-11.40536)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
@ -273,7 +305,7 @@
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1984"
|
||||
id="radialGradient4030"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
@ -283,9 +315,9 @@
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="radialGradient1986"
|
||||
id="radialGradient4032"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
|
||||
gradientTransform="matrix(0.787998,3.877637e-16,-3.877637e-16,0.787998,6.221198,3.617627)"
|
||||
cx="29.344931"
|
||||
cy="17.064077"
|
||||
fx="29.344931"
|
||||
@ -294,9 +326,9 @@
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1988"
|
||||
id="linearGradient4034"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,6.231716,-2.651466)"
|
||||
gradientTransform="matrix(1.363022,0.239817,-0.251693,1.298712,-10.26318,-14.90707)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
@ -304,9 +336,9 @@
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1990"
|
||||
id="linearGradient4036"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,55.1096,-3.945209)"
|
||||
gradientTransform="matrix(-1.355135,0.277439,0.291178,1.291197,57.48475,-16.61568)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
@ -322,17 +354,17 @@
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="31.201438"
|
||||
inkscape:cy="13.80024"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="13.669068"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
fill="#9db029"
|
||||
stroke="#727e0a"
|
||||
inkscape:window-width="914"
|
||||
inkscape:window-height="815"
|
||||
inkscape:window-x="265"
|
||||
inkscape:window-y="121" />
|
||||
inkscape:window-width="755"
|
||||
inkscape:window-height="814"
|
||||
inkscape:window-x="389"
|
||||
inkscape:window-y="67" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
@ -378,10 +410,16 @@
|
||||
id="layer1"
|
||||
inkscape:label="cipek"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="dalsi cipek"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g1965"
|
||||
transform="translate(-2.875,3.5)">
|
||||
style="display:inline"
|
||||
id="g8831"
|
||||
transform="translate(-0.112686,0.42033)">
|
||||
<path
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
sodipodi:ry="8.6620579"
|
||||
@ -389,33 +427,33 @@
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:cx="31.112698"
|
||||
id="path4177"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient4336);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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"
|
||||
style="color:#000000;fill:url(#radialGradient4336);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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"
|
||||
transform="matrix(1.77551,0,0,0.959183,-37.37822,11.77153)" />
|
||||
transform="matrix(1.77551,0,0,0.959183,-40.25322,16.02153)" />
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
id="path2329"
|
||||
d="M 12.861174,34.636039 L 23.467776,34.636039 C 26.47298,34.636039 29.44826,33.534107 30.538843,30.393398 C 31.574482,27.410922 30.71562,21.73134 23.998106,17.135146 L 11.44696,17.135146 C 4.729446,21.377786 3.889969,27.179977 5.436553,30.570174 C 7.012148,34.023964 9.679193,34.636039 12.861174,34.636039 z "
|
||||
style="opacity:1;color:black;fill:url(#radialGradient1381);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;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.986174,38.886039 L 20.592776,38.886039 C 23.59798,38.886039 26.57326,37.784107 27.663843,34.643398 C 28.699482,31.660922 27.84062,25.98134 21.123106,21.385146 L 8.57196,21.385146 C 1.854446,25.627786 1.014969,31.429977 2.561553,34.820174 C 4.137148,38.273964 6.804193,38.886039 9.986174,38.886039 z "
|
||||
style="color:#000000;fill:url(#radialGradient1412);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;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="opacity:1;color:black;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.932367,19.786797 C 17.932367,19.786797 15.781044,21.447132 15.966376,23.44733 C 13.92515,21.646536 13.866503,18.195806 13.866503,18.195806 L 17.932367,19.786797 z "
|
||||
style="color:#000000;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.057367,24.036797 C 15.057367,24.036797 12.906044,25.697132 13.091376,27.69733 C 11.05015,25.896536 10.991503,22.445806 10.991503,22.445806 L 15.057367,24.036797 z "
|
||||
id="path3812"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:0.21518986;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999976px;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 12.966639,33.571836 L 23.283309,33.571836 C 25.923032,33.571836 28.53647,32.603917 29.494421,29.845169 C 30.40411,27.225409 29.399699,22.236555 23.499142,18.199332 L 11.974417,18.199332 C 6.07386,21.925999 5.086477,27.022551 6.444971,30.000446 C 7.828949,33.0342 10.171638,33.571836 12.966639,33.571836 z "
|
||||
style="opacity:0.21518986;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;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.091639,37.821836 L 20.408309,37.821836 C 23.048032,37.821836 25.66147,36.853917 26.619421,34.095169 C 27.52911,31.475409 26.524699,26.486555 20.624142,22.449332 L 9.099417,22.449332 C 3.19886,26.175999 2.211477,31.272551 3.569971,34.250446 C 4.953949,37.2842 7.296638,37.821836 10.091639,37.821836 z "
|
||||
id="path3838"
|
||||
sodipodi:nodetypes="cczcczc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path3810"
|
||||
d="M 18.910795,19.786797 C 18.910795,19.786797 21.062118,21.447132 20.876786,23.44733 C 22.918012,21.646536 22.976659,18.195806 22.976659,18.195806 L 18.910795,19.786797 z "
|
||||
style="opacity:1;color:black;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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 16.035795,24.036797 C 16.035795,24.036797 18.187118,25.697132 18.001786,27.69733 C 20.043012,25.896536 20.101659,22.445806 20.101659,22.445806 L 16.035795,24.036797 z "
|
||||
style="color:#000000;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="translate(-13.25,-3.5)"
|
||||
transform="translate(-16.125,0.75)"
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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"
|
||||
style="color:#000000;fill:url(#radialGradient4330);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="path3814"
|
||||
sodipodi:cx="31.112698"
|
||||
sodipodi:cy="19.008621"
|
||||
@ -423,123 +461,123 @@
|
||||
sodipodi:ry="8.6620579"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
|
||||
<path
|
||||
transform="translate(-13.125,-7)"
|
||||
transform="translate(-16,-2.75)"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
sodipodi:ry="8.6620579"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:cx="31.112698"
|
||||
id="path2327"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;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"
|
||||
style="color:#000000;fill:url(#radialGradient4328);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;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.877095,0,0,0.877095,-9.301073,-4.663733)"
|
||||
transform="matrix(0.877095,0,0,0.877095,-12.17607,-0.413733)"
|
||||
sodipodi:type="arc"
|
||||
style="opacity:0.12658231;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.14012825px;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"
|
||||
style="opacity:0.12658231;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;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="path3834"
|
||||
sodipodi:cx="31.112698"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:ry="8.6620579"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
|
||||
<path
|
||||
id="path4173"
|
||||
d="M 22.583894,27.034641 L 26.826534,27.034641 L 24.351661,24.736544 L 23.821331,25.443651 L 23.291,24.913321 L 22.583894,27.034641 z "
|
||||
style="opacity:1;color:black;fill:url(#linearGradient1372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="cccc"
|
||||
id="path4368"
|
||||
d="M 8.5479535,33.601747 C 7.3003465,33.056778 6.7419595,31.74347 6.7419595,31.74347 C 7.5832405,27.674334 10.461885,24.697254 10.461885,24.697254 C 10.461885,24.697254 8.1825635,31.108768 8.5479535,33.601747 z "
|
||||
style="opacity:0.22784807;color:black;fill:url(#linearGradient1369);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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 5.6729535,37.851747 C 4.4253465,37.306778 3.8669595,35.99347 3.8669595,35.99347 C 4.7082405,31.924334 7.586885,28.947254 7.586885,28.947254 C 7.586885,28.947254 5.3075635,35.358768 5.6729535,37.851747 z "
|
||||
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1400);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="opacity:0.22784807;color:black;fill:url(#linearGradient1366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.453661,32.743396 C 28.684912,32.162418 29.258041,30.741075 29.258041,30.741075 C 28.298921,26.698092 25.281892,23.898254 25.281892,23.898254 C 25.281892,23.898254 27.746485,30.240856 27.453661,32.743396 z "
|
||||
id="path4370"
|
||||
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient1397);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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 24.578661,36.993396 C 25.809912,36.412418 26.383041,34.991075 26.383041,34.991075 C 25.423921,30.948092 22.406892,28.148254 22.406892,28.148254 C 22.406892,28.148254 24.871485,34.490856 24.578661,36.993396 z "
|
||||
id="path4083"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="dalsi cipek"
|
||||
style="opacity:1;display:inline">
|
||||
<g
|
||||
id="g1952"
|
||||
transform="translate(2.125,-3.125)">
|
||||
id="g3992"
|
||||
transform="matrix(0.7244,0,0,0.7244,15.87825,7.849471)">
|
||||
<path
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
sodipodi:ry="8.6620579"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:cx="31.112698"
|
||||
id="path4306"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient1978);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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"
|
||||
transform="matrix(1.77551,0,0,0.959183,-24.25322,18.77153)" />
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
id="path4308"
|
||||
d="M 25.986174,41.636039 L 36.592776,41.636039 C 39.59798,41.636039 42.57326,40.534107 43.663843,37.393398 C 44.699482,34.410922 43.84062,28.73134 37.123106,24.135146 L 24.57196,24.135146 C 17.854446,28.377786 17.014969,34.179977 18.561553,37.570174 C 20.137148,41.023964 22.804193,41.636039 25.986174,41.636039 z "
|
||||
style="opacity:1;color:black;fill:url(#radialGradient1980);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;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" />
|
||||
style="color:#000000;fill:url(#linearGradient4020);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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 12.402006,24.298421 L 18.282581,24.298421 L 14.852246,21.263398 L 14.117174,22.197251 L 13.382101,21.496861 L 12.402006,24.298421 z "
|
||||
id="path3994" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path4310"
|
||||
d="M 26.693281,25.726136 C 29.875261,28.554563 31.289475,38.807612 31.289475,38.807612 C 31.289475,38.807612 32.703688,28.554564 35.178562,25.54936 L 26.693281,25.726136 z "
|
||||
style="opacity:1;color:black;fill:url(#linearGradient1982);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="path3996"
|
||||
d="M 19.15182,31.837791 C 20.858414,31.070512 21.652808,29.19339 21.652808,29.19339 C 20.323405,23.853951 16.141607,20.156295 16.141607,20.156295 C 16.141607,20.156295 19.557693,28.532766 19.15182,31.837791 z "
|
||||
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient4022);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.972721,26.786797 C 28.972721,26.786797 26.821398,28.447132 27.00673,30.44733 C 24.965504,28.646536 24.906857,25.195806 24.906857,25.195806 L 28.972721,26.786797 z "
|
||||
id="path4312"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
transform="matrix(2.460972,0,0,1.266762,-52.51728,13.38559)"
|
||||
sodipodi:type="arc"
|
||||
style="color:#000000;fill:url(#radialGradient4024);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="path3998"
|
||||
sodipodi:cx="31.112698"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:ry="8.6620579"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
|
||||
<path
|
||||
style="opacity:0.21518986;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:0.99999976px;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 25.914862,40.593933 L 36.408309,40.571836 C 39.048032,40.571836 41.66147,39.603917 42.619421,36.845169 C 43.52911,34.225409 42.524699,29.236555 36.624142,25.199332 L 25.099417,24.956264 C 19.19886,28.682931 18.056797,33.779483 19.437388,37.000446 C 20.81798,40.221409 22.832599,40.571836 25.914862,40.593933 z "
|
||||
id="path4314"
|
||||
style="color:#000000;fill:url(#radialGradient4026);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1.35297143px;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.117787,43.58202 L 31.819227,43.58202 C 35.984635,43.58202 40.108567,42.126734 41.620186,37.9789 C 43.055649,34.040039 41.86521,26.539197 32.554299,20.46915 L 15.157595,20.46915 C 5.8466837,26.072269 4.683114,33.735037 6.82678,38.212362 C 9.010657,42.773672 12.707355,43.58202 17.117787,43.58202 z "
|
||||
id="path4000"
|
||||
sodipodi:nodetypes="cczcczc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path4316"
|
||||
d="M 33.410795,26.786797 C 33.410795,26.786797 35.562118,28.447132 35.376786,30.44733 C 37.418012,28.646536 37.476659,25.195806 37.476659,25.195806 L 33.410795,26.786797 z "
|
||||
style="opacity:1;color:black;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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" />
|
||||
style="color:#000000;fill:url(#linearGradient4028);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.097884,22.57032 C 22.508315,26.305733 24.468507,39.846607 24.468507,39.846607 C 24.468507,39.846607 26.428698,26.305734 29.859035,22.336858 L 18.097884,22.57032 z "
|
||||
id="path4002"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
transform="translate(-0.125,3.5)"
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient1984);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="path4318"
|
||||
sodipodi:cx="31.112698"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:ry="8.6620579"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path4004"
|
||||
d="M 21.257336,23.971101 C 21.257336,23.971101 18.275462,26.163852 18.532344,28.80545 C 15.703072,26.427199 15.621784,21.86993 15.621784,21.86993 L 21.257336,23.971101 z "
|
||||
style="color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="cczcczc"
|
||||
id="path4006"
|
||||
d="M 17.018944,42.205744 L 31.563544,42.176561 C 35.222371,42.176561 38.844766,40.898261 40.172549,37.254871 C 41.433437,33.795038 40.041258,27.206418 31.862702,21.874587 L 15.888684,21.553575 C 7.7101289,26.475265 6.1271553,33.206118 8.0407442,37.459941 C 9.9543344,41.713763 12.746727,42.176561 17.018944,42.205744 z "
|
||||
style="opacity:0.21518986;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.35297108px;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:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.408795,23.971101 C 27.408795,23.971101 30.390668,26.163852 30.133786,28.80545 C 32.963058,26.427199 33.044346,21.86993 33.044346,21.86993 L 27.408795,23.971101 z "
|
||||
id="path4008"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
sodipodi:ry="8.6620579"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:cx="31.112698"
|
||||
id="path4320"
|
||||
style="opacity:1;color:black;fill:url(#radialGradient1986);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;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.877095,0,0,0.877095,3.823927,2.336267)"
|
||||
id="path4010"
|
||||
style="color:#000000;fill:url(#radialGradient4030);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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"
|
||||
style="opacity:0.19620254;color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.14012825px;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="path4322"
|
||||
transform="matrix(1.386065,0,0,1.320668,-19.074,-6.783026)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="color:#000000;fill:url(#radialGradient4032);fill-opacity:1;fill-rule:evenodd;stroke:#555753;stroke-width:1px;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="path4012"
|
||||
sodipodi:cx="31.112698"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:ry="8.6620579"
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z" />
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
transform="matrix(1.386065,0,0,1.320668,-18.90074,-11.40536)" />
|
||||
<path
|
||||
d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1 22.45064,19.008621 A 8.6620579 8.6620579 0 1 1 39.774755 19.008621 z"
|
||||
sodipodi:ry="8.6620579"
|
||||
sodipodi:rx="8.6620579"
|
||||
sodipodi:cy="19.008621"
|
||||
sodipodi:cx="31.112698"
|
||||
id="path4014"
|
||||
style="opacity:0.19620254;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;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"
|
||||
transform="matrix(1.215711,0,0,1.158351,-13.60053,-8.319931)" />
|
||||
<path
|
||||
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient4034);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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.387262,42.445133 C 9.6579979,41.72541 8.8840372,39.990966 8.8840372,39.990966 C 10.050107,34.616989 14.040095,30.685254 14.040095,30.685254 C 14.040095,30.685254 10.880808,39.152736 11.387262,42.445133 z "
|
||||
id="path4016"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path4354"
|
||||
d="M 21.85179,40.775197 C 20.604183,40.230228 20.045796,38.91692 20.045796,38.91692 C 20.887077,34.847784 23.765721,31.870704 23.765721,31.870704 C 23.765721,31.870704 21.4864,38.282218 21.85179,40.775197 z "
|
||||
style="opacity:0.22784807;color:black;fill:url(#linearGradient1988);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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="opacity:0.22784807;color:black;fill:url(#linearGradient1990);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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 40.757497,39.916846 C 41.988748,39.335868 42.561877,37.914525 42.561877,37.914525 C 41.602757,33.871542 38.585728,31.071704 38.585728,31.071704 C 38.585728,31.071704 41.050321,37.414306 40.757497,39.916846 z "
|
||||
id="path4364"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
id="path4018"
|
||||
d="M 37.591801,41.311537 C 39.298395,40.544258 40.092789,38.667135 40.092789,38.667135 C 38.763386,33.327697 34.581588,29.630041 34.581588,29.630041 C 34.581588,29.630041 37.997674,38.006512 37.591801,41.311537 z "
|
||||
style="opacity:0.22784807;color:#000000;fill:url(#linearGradient4036);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;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>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |