2006-11-08 Don Allingham <don@gramps-project.org>
* src/DataViews/_RelationView.py: add toolbar buttons * src/images/Makefile.am: install new svg files * src/images/parents.svg: button for toolbar * src/images/spouse.svg: button for toolbar * src/gramps_main.py: register new stock icons svn: r7587
This commit is contained in:
parent
52ef7d3371
commit
c142fa04f9
@ -1,3 +1,10 @@
|
||||
2006-11-08 Don Allingham <don@gramps-project.org>
|
||||
* src/DataViews/_RelationView.py: add toolbar buttons
|
||||
* src/images/Makefile.am: install new svg files
|
||||
* src/images/parents.svg: button for toolbar
|
||||
* src/images/spouse.svg: button for toolbar
|
||||
* src/gramps_main.py: register new stock icons
|
||||
|
||||
2006-11-07 Don Allingham <don@gramps-project.org>
|
||||
* src/plugins/RemoveUnused.py: general cleanup
|
||||
* src/DataViews/_RelationshipView.py: Optionally hide Edit buttons
|
||||
|
@ -227,6 +227,8 @@ class RelationshipView(PageView.PersonNavView):
|
||||
</placeholder>
|
||||
</menu>
|
||||
<menu action="EditMenu">
|
||||
<menuitem action="AddParents"/>
|
||||
<menuitem action="AddSpouse"/>
|
||||
<menuitem action="ChangeOrder"/>
|
||||
<menuitem action="FilterEdit"/>
|
||||
</menu>
|
||||
@ -248,6 +250,8 @@ class RelationshipView(PageView.PersonNavView):
|
||||
<toolitem action="HomePerson"/>
|
||||
</placeholder>
|
||||
<placeholder name="CommonEdit">
|
||||
<toolitem action="AddParents"/>
|
||||
<toolitem action="AddSpouse"/>
|
||||
<toolitem action="ChangeOrder"/>
|
||||
</placeholder>
|
||||
</toolbar>
|
||||
@ -265,9 +269,19 @@ class RelationshipView(PageView.PersonNavView):
|
||||
self.order_action = gtk.ActionGroup(self.title + '/ChangeOrder')
|
||||
self.order_action.add_actions([
|
||||
('ChangeOrder', gtk.STOCK_SORT_ASCENDING, _('_Reorder'), None ,
|
||||
_("Reorder the relationships"), self.reorder)
|
||||
_("Reorder the relationships"), self.reorder),
|
||||
])
|
||||
|
||||
self.family_action = gtk.ActionGroup(self.title + '/Family')
|
||||
self.family_action.add_actions([
|
||||
('AddSpouse', 'gramps-spouse', _('Add Spouse'), None ,
|
||||
_("Adds a new relationship"), self.add_spouse),
|
||||
('AddParents', 'gramps-parents', _('Add Parents'), None ,
|
||||
_("Adds a new set of parents"), self.add_parents),
|
||||
])
|
||||
|
||||
self.add_action_group(self.order_action)
|
||||
self.add_action_group(self.family_action)
|
||||
|
||||
self.add_toggle_action('Details', None, _('Show details'),
|
||||
None, None, self.details_toggle,
|
||||
@ -592,8 +606,8 @@ class RelationshipView(PageView.PersonNavView):
|
||||
call_fcn = self.add_family
|
||||
del_fcn = self.delete_family
|
||||
|
||||
add = GrampsWidgets.IconButton(call_fcn, None, gtk.STOCK_ADD)
|
||||
hbox.pack_start(add, False)
|
||||
# add = GrampsWidgets.IconButton(call_fcn, None, gtk.STOCK_ADD)
|
||||
# hbox.pack_start(add, False)
|
||||
|
||||
if is_parent:
|
||||
add = GrampsWidgets.IconButton(self.select_family, None, gtk.STOCK_INDEX)
|
||||
@ -970,6 +984,21 @@ class RelationshipView(PageView.PersonNavView):
|
||||
except Errors.WindowActiveError:
|
||||
pass
|
||||
|
||||
def add_spouse(self, obj):
|
||||
from Editors import EditFamily
|
||||
family = RelLib.Family()
|
||||
person = self.dbstate.active
|
||||
|
||||
if person.gender == RelLib.Person.MALE:
|
||||
family.set_father_handle(person.handle)
|
||||
else:
|
||||
family.set_mother_handle(person.handle)
|
||||
|
||||
try:
|
||||
EditFamily(self.dbstate, self.uistate, [], family)
|
||||
except Errors.WindowActiveError:
|
||||
pass
|
||||
|
||||
def select_family(self, obj, event, handle):
|
||||
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
||||
from Selectors import selector_factory
|
||||
@ -990,6 +1019,20 @@ class RelationshipView(PageView.PersonNavView):
|
||||
self.dbstate.db,
|
||||
family,
|
||||
child)
|
||||
|
||||
def add_parents(self, obj):
|
||||
from Editors import EditFamily
|
||||
family = RelLib.Family()
|
||||
person = self.dbstate.active
|
||||
|
||||
ref = RelLib.ChildRef()
|
||||
ref.ref = person.handle
|
||||
family.add_child_ref(ref)
|
||||
|
||||
try:
|
||||
EditFamily(self.dbstate, self.uistate, [], family)
|
||||
except Errors.WindowActiveError:
|
||||
pass
|
||||
|
||||
def add_parent_family(self, obj, event, handle):
|
||||
if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1:
|
||||
|
@ -72,6 +72,8 @@ if platform.system() == "Windows":
|
||||
events_icon = "events.png"
|
||||
tools_icon = "tools.png"
|
||||
reports_icon = "reports.png"
|
||||
parents_icon = "parents.png"
|
||||
spouse_icon = "spouse.png"
|
||||
else:
|
||||
person_icon = "person.svg"
|
||||
relation_icon = "relation.svg"
|
||||
@ -82,11 +84,17 @@ else:
|
||||
events_icon = "events.svg"
|
||||
tools_icon = "tools.svg"
|
||||
reports_icon = "reports.svg"
|
||||
parents_icon = "parents.svg"
|
||||
spouse_icon = "spouse.svg"
|
||||
|
||||
def register_stock_icons ():
|
||||
items = [
|
||||
(os.path.join(const.image_dir, person_icon),
|
||||
('gramps-person',_('Person'),gtk.gdk.CONTROL_MASK,0,'')),
|
||||
(os.path.join(const.image_dir, parents_icon),
|
||||
('gramps-parents',_('Add Parents'),gtk.gdk.CONTROL_MASK,0,'')),
|
||||
(os.path.join(const.image_dir, spouse_icon),
|
||||
('gramps-spouse',_('Add Spouse'),gtk.gdk.CONTROL_MASK,0,'')),
|
||||
(os.path.join(const.image_dir, relation_icon),
|
||||
('gramps-family',_('Relationships'),gtk.gdk.CONTROL_MASK,0,'')),
|
||||
(os.path.join(const.image_dir, family_icon),
|
||||
|
@ -67,6 +67,8 @@ dist_pkgdata_DATA = \
|
||||
person.png\
|
||||
tools.svg\
|
||||
tools.png\
|
||||
parents.svg\
|
||||
spouse.svg\
|
||||
place.svg\
|
||||
place.png\
|
||||
relation.svg\
|
||||
|
704
gramps2/src/images/parents.svg
Normal file
704
gramps2/src/images/parents.svg
Normal file
@ -0,0 +1,704 @@
|
||||
<?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://sodipodi.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">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4356">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4358" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
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"
|
||||
id="stop4165" />
|
||||
<stop
|
||||
style="stop-color:#2d5990;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4167" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3824">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3826" />
|
||||
<stop
|
||||
style="stop-color:#c9c9c9;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3828" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3816">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3818" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3820" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3800">
|
||||
<stop
|
||||
style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3802" />
|
||||
<stop
|
||||
style="stop-color:#df9725;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
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"
|
||||
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" />
|
||||
<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
|
||||
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"
|
||||
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)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1366"
|
||||
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)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient1372"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-12.41789,-7)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4344"
|
||||
id="radialGradient1381"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.681917,0,8.233773)"
|
||||
cx="16.214741"
|
||||
cy="19.836468"
|
||||
fx="16.214741"
|
||||
fy="19.836468"
|
||||
r="13.565360" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1978"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4163"
|
||||
id="radialGradient1980"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.297564,0,0,0.884831,-8.358505,4.940469)"
|
||||
cx="28.089741"
|
||||
cy="27.203083"
|
||||
fx="28.089741"
|
||||
fy="27.203083"
|
||||
r="13.565360" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient1982"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="radialGradient1986"
|
||||
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" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1988"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,6.231716,-2.651466)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1990"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,55.1096,-3.945209)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient2343"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4163"
|
||||
id="radialGradient2345"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.297564,0,0,0.884831,-8.358505,4.940469)"
|
||||
cx="28.089741"
|
||||
cy="27.203083"
|
||||
fx="28.089741"
|
||||
fy="27.203083"
|
||||
r="13.565360" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient2347"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient2349"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="radialGradient2351"
|
||||
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" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient2353"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,6.231716,-2.651466)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient2355"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,55.1096,-3.945209)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:showpageshadow="false"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="31.201438"
|
||||
inkscape:cy="13.80024"
|
||||
inkscape:current-layer="g2292"
|
||||
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" />
|
||||
<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>People</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>users</rdf:li>
|
||||
<rdf:li>people</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</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="cipek"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g1965"
|
||||
transform="translate(-2.875,3.5)">
|
||||
<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="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"
|
||||
sodipodi:type="arc"
|
||||
transform="matrix(1.77551,0,0,0.959183,-37.37822,11.77153)" />
|
||||
<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" />
|
||||
<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 "
|
||||
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 "
|
||||
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" />
|
||||
<path
|
||||
transform="translate(-13.25,-3.5)"
|
||||
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"
|
||||
id="path3814"
|
||||
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="translate(-13.125,-7)"
|
||||
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"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.877095,0,0,0.877095,-9.301073,-4.663733)"
|
||||
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"
|
||||
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" />
|
||||
<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"
|
||||
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)">
|
||||
<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" />
|
||||
<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" />
|
||||
<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" />
|
||||
<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"
|
||||
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" />
|
||||
<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" />
|
||||
<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)"
|
||||
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"
|
||||
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="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" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="child">
|
||||
<g
|
||||
style="opacity:1;display:inline"
|
||||
id="g2292"
|
||||
transform="translate(-8.237686,3.795331)">
|
||||
<g
|
||||
id="g2330"
|
||||
transform="matrix(0.788681,0,0,0.813202,6.548296,8.214314)">
|
||||
<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" />
|
||||
<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"
|
||||
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" />
|
||||
<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" />
|
||||
<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" />
|
||||
<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)" />
|
||||
<path
|
||||
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"
|
||||
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
|
||||
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)" />
|
||||
<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" />
|
||||
<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" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 37 KiB |
545
gramps2/src/images/spouse.svg
Normal file
545
gramps2/src/images/spouse.svg
Normal file
@ -0,0 +1,545 @@
|
||||
<?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://sodipodi.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">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4356">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4358" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
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"
|
||||
id="stop4165" />
|
||||
<stop
|
||||
style="stop-color:#2d5990;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4167" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3824">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3826" />
|
||||
<stop
|
||||
style="stop-color:#c9c9c9;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop3828" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3816">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3818" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3820" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3800">
|
||||
<stop
|
||||
style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop3802" />
|
||||
<stop
|
||||
style="stop-color:#df9725;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
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"
|
||||
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" />
|
||||
<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
|
||||
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"
|
||||
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)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1366"
|
||||
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)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient1372"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-12.41789,-7)"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4344"
|
||||
id="radialGradient1381"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.681917,0,8.233773)"
|
||||
cx="16.214741"
|
||||
cy="19.836468"
|
||||
fx="16.214741"
|
||||
fy="19.836468"
|
||||
r="13.565360" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1978"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4163"
|
||||
id="radialGradient1980"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.297564,0,0,0.884831,-8.358505,4.940469)"
|
||||
cx="28.089741"
|
||||
cy="27.203083"
|
||||
fx="28.089741"
|
||||
fy="27.203083"
|
||||
r="13.565360" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3824"
|
||||
id="linearGradient1982"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="30.935921"
|
||||
y1="29.553486"
|
||||
x2="30.935921"
|
||||
y2="35.803486" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3816"
|
||||
id="radialGradient1984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cx="31.112698"
|
||||
cy="19.008621"
|
||||
fx="31.112698"
|
||||
fy="19.008621"
|
||||
r="8.6620579" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3800"
|
||||
id="radialGradient1986"
|
||||
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" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1988"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,6.231716,-2.651466)"
|
||||
x1="20.661695"
|
||||
y1="35.817974"
|
||||
x2="22.626925"
|
||||
y2="36.217758" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4356"
|
||||
id="linearGradient1990"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,55.1096,-3.945209)"
|
||||
x1="22.686766"
|
||||
y1="36.390400"
|
||||
x2="21.408455"
|
||||
y2="35.739632" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:showpageshadow="false"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="31.201438"
|
||||
inkscape:cy="13.80024"
|
||||
inkscape:current-layer="layer1"
|
||||
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" />
|
||||
<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>People</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://jimmac.musichall.cz</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>users</rdf:li>
|
||||
<rdf:li>people</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
</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="cipek"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g1965"
|
||||
transform="translate(-2.875,3.5)">
|
||||
<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="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"
|
||||
sodipodi:type="arc"
|
||||
transform="matrix(1.77551,0,0,0.959183,-37.37822,11.77153)" />
|
||||
<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" />
|
||||
<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 "
|
||||
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 "
|
||||
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" />
|
||||
<path
|
||||
transform="translate(-13.25,-3.5)"
|
||||
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"
|
||||
id="path3814"
|
||||
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="translate(-13.125,-7)"
|
||||
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"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.877095,0,0,0.877095,-9.301073,-4.663733)"
|
||||
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"
|
||||
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" />
|
||||
<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"
|
||||
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)">
|
||||
<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" />
|
||||
<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" />
|
||||
<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" />
|
||||
<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"
|
||||
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" />
|
||||
<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" />
|
||||
<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)"
|
||||
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"
|
||||
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="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" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 27 KiB |
Loading…
Reference in New Issue
Block a user