some basic initial work
This commit is contained in:
parent
c118c0cf71
commit
1d391ed2db
5 changed files with 1360 additions and 3440 deletions
|
@ -5,46 +5,43 @@ from schedulelib import *
|
|||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://cfp.ctbk.de/fsck-2024/schedule/export/schedule.xml'
|
||||
scheduleUrl = "https://cfp.ctbk.de/fsck-2024/schedule/export/schedule.xml"
|
||||
|
||||
|
||||
def introFrames(args):
|
||||
for frame in range(0, fps):
|
||||
frames = 2*fps
|
||||
for _ in range(0, frames):
|
||||
yield (
|
||||
('title', 'style', 'opacity', 0),
|
||||
('persons', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', int(i<=frame)) for i in range(0,26))
|
||||
("title", "style", "opacity", 0),
|
||||
("persons", "style", "opacity", 0),
|
||||
("glogo", "style", "opacity", 0),
|
||||
)
|
||||
|
||||
|
||||
|
||||
# fade in title and persons
|
||||
frames = 1 * fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('title', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('persons', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('gfactoryreset', 'style', 'opacity', 1),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
("title", "style", "opacity", easeInQuad(i, 0, 1, frames)),
|
||||
("persons", "style", "opacity", easeInQuad(i, 0, 1, frames)),
|
||||
("glogo", "style", "opacity", 1),
|
||||
)
|
||||
|
||||
# show whole image for 5 seconds
|
||||
frames = 5 * fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('title', 'style', 'opacity', 1),
|
||||
('persons', 'style', 'opacity', 1),
|
||||
('gfactoryreset', 'style', 'opacity', 1),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
("title", "style", "opacity", 1),
|
||||
("persons", "style", "opacity", 1),
|
||||
("glogo", "style", "opacity", 1),
|
||||
)
|
||||
|
||||
# fade out image and text
|
||||
frames = 1 * fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('title', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
('persons', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
('gfactoryreset', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
*((f'g{g}', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)) for g in range(0,26))
|
||||
("title", "style", "opacity", easeOutQuad(i, 1, -1, frames)),
|
||||
("persons", "style", "opacity", easeOutQuad(i, 1, -1, frames)),
|
||||
("glogo", "style", "opacity", easeOutQuad(i, 1, -1, frames)),
|
||||
)
|
||||
|
||||
|
||||
|
@ -52,94 +49,31 @@ def outroFrames(args):
|
|||
frames = 3 * fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('cc-text', 'style', 'opacity', 1),
|
||||
('logo', 'style', 'opacity', 1),
|
||||
("cc-text", "style", "opacity", 1),
|
||||
("logo", "style", "opacity", 1),
|
||||
)
|
||||
# fadeout outro graphics
|
||||
frames = 3 * fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('cc-text', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
('logo', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
("cc-text", "style", "opacity", easeOutQuad(i, 1, -1, frames)),
|
||||
("logo", "style", "opacity", easeOutQuad(i, 1, -1, frames)),
|
||||
)
|
||||
|
||||
def pauseFrames(params):
|
||||
# kringel
|
||||
for frame in range(0, fps):
|
||||
yield (
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', int(i<=frame)) for i in range(0,26))
|
||||
)
|
||||
# ease in factory
|
||||
frames = int(0.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# show factory
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', 1),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# ease out factory
|
||||
frames = int(0.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# ease in pause
|
||||
frames = int(0.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# show pause
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', 1),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# ease out pause
|
||||
frames = int(0.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pause', 'style', 'opacity', easeOutQuad(i, 1, -1, frames)),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', 1) for i in range(0,26))
|
||||
)
|
||||
# kringel
|
||||
for frame in range(0, fps+2):
|
||||
yield (
|
||||
('pause', 'style', 'opacity', 0),
|
||||
('gfactoryreset', 'style', 'opacity', 0),
|
||||
*((f'g{i}', 'style', 'opacity', int(i>=frame)) for i in range(0,26))
|
||||
)
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
"intro.svg",
|
||||
"../intro.ts",
|
||||
introFrames,
|
||||
{
|
||||
'$title': "Long Long Long title is LONG ",
|
||||
'$personnames': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||
}
|
||||
"$title": "Long Long Long title is LONG ",
|
||||
"$personnames": "Long Name of Dr. Dr. Prof. Dr. Long Long",
|
||||
},
|
||||
)
|
||||
|
||||
# render('outro.svg',
|
||||
# '../outro.ts',
|
||||
# '../outro.mkv',
|
||||
# outroFrames
|
||||
# )
|
||||
|
||||
|
@ -147,45 +81,41 @@ def debug():
|
|||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
if event['room'] not in ('Medientheater', "Vortragssaal", "Blauer Salon"):
|
||||
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||
if event["room"] not in ("Medientheater", "Vortragssaal", "Blauer Salon"):
|
||||
print("skipping room %s (%s)" % (event["room"], event["title"]))
|
||||
continue
|
||||
if event['day'] not in ('0', '1', '2', '3', '4'):
|
||||
print("skipping day %s" % (event['day']))
|
||||
if event["day"] not in ("0", "1", "2", "3", "4"):
|
||||
print("skipping day %s" % (event["day"]))
|
||||
continue
|
||||
if not (idlist == []):
|
||||
if 000000 in idlist:
|
||||
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||
print("skipping id (%s [%s])" % (event["title"], event["id"]))
|
||||
continue
|
||||
if int(event['id']) not in idlist:
|
||||
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||
if int(event["id"]) not in idlist:
|
||||
print("skipping id (%s [%s])" % (event["title"], event["id"]))
|
||||
continue
|
||||
|
||||
# generate a task description and put it into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
queue.put(
|
||||
Rendertask(
|
||||
infile="intro.svg",
|
||||
outfile=str(event["id"]) + ".ts",
|
||||
sequence=introFrames,
|
||||
parameters={
|
||||
'$title': event['title'],
|
||||
'$personnames': event['personnames']
|
||||
}
|
||||
))
|
||||
"$title": event["title"],
|
||||
"$personnames": event["personnames"],
|
||||
},
|
||||
)
|
||||
)
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
||||
queue.put(
|
||||
Rendertask(infile="outro.svg", outfile="outro.ts", sequence=outroFrames)
|
||||
)
|
||||
|
||||
if not 'pause' in skiplist:
|
||||
if not "pause" in skiplist:
|
||||
# place the pause-sequence into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'pause.svg',
|
||||
outfile = 'pause.ts',
|
||||
sequence = pauseFrames
|
||||
))
|
||||
|
||||
|
||||
queue.put(
|
||||
Rendertask(infile="pause.svg", outfile="pause.ts", sequence=pauseFrames)
|
||||
)
|
||||
|
|
609
fsck2025/artwork/FSCK_Logo_NoOutline.svg
Normal file
609
fsck2025/artwork/FSCK_Logo_NoOutline.svg
Normal file
|
@ -0,0 +1,609 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="141.733px" height="110.551px" viewBox="167.146 125.956 141.733 110.551"
|
||||
enable-background="new 167.146 125.956 141.733 110.551" xml:space="preserve">
|
||||
<g id="Path">
|
||||
</g>
|
||||
<g id="Logo" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" inkscape:export-ydpi="198.46001" inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" sodipodi:docname="Screen-FSCK-Logov3-JX-noBG.svg" inkscape:export-filename="Screen-FSCK-Logov3-JX-noBG.png" inkscape:export-xdpi="198.46001">
|
||||
<g id="g8037-6" transform="translate(-545.47229,-718.4672)">
|
||||
<path id="path8023-7" sodipodi:nodetypes="ccccccc" fill="#122E5C" d="M718.288,914.687c43.321-4.726,86.784-4.782,130.393,0
|
||||
v-32.145v-32.147c-43.609,4.782-87.072,4.727-130.393,0v32.147V914.687z"/>
|
||||
|
||||
<path id="path8033-5" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" fill="#FBBA00" d="
|
||||
M740.355,878.988l-3.022-0.03v-6.423l-3.012-0.129v-7.934l-3.014-0.154v-7.003l-6.029-0.557V864l3.004,0.161v7.898l3.016,0.189
|
||||
v6.649l3.049,0.03v3.615v3.613l-3.049,0.032v6.647l-3.016,0.189v7.897l-3.004,0.164v7.241l6.029-0.56v-7.002l3.014-0.155v-7.934
|
||||
l3.012-0.129v-6.422l3.022-0.028v-3.555V878.988z M841.692,901.085l-3.014-0.164v-7.904l-3.013-0.189v-6.641l-3.014-0.032v-7.229
|
||||
l3.014-0.03v-6.641l3.013-0.191v-7.904l3.014-0.162v-7.239l-6.026,0.559v6.999l-3.014,0.154v7.942l-3.014,0.131v6.412l-3.013,0.03
|
||||
v-20.945l-6.026,0.406v48.187l6.026,0.404v-14.607l3.013,0.106v7.924l3.014,0.147v6.896l9.04,0.817V901.085z M816.743,892.245
|
||||
l-6.026-0.026v7.396l-6.026-0.226v-7.151l-3.013,0.02v-19.432l3.013,0.02v-7.151l6.026-0.226v7.395l6.026-0.025v-7.619
|
||||
l-3.013,0.128v-6.51l-12.053,0.489v6.47l-3.014,0.093v6.913l-3.013-0.026v19.531l3.013-0.026v6.914l3.014,0.093v6.469
|
||||
l12.053,0.488v-6.508l3.013,0.126V892.245z M791.793,885.838l-3.013-0.01v-6.571l-12.052-0.008v-13.161l6.027,0.065v6.554
|
||||
l6.025,0.018v-6.614l-3.014,0.034v-6.55l-12.052-0.079v6.511l-3.013-0.074v13.268l3.013,0.015v6.608l12.052-0.023v13.115
|
||||
l-9.039,0.057v-6.639l-6.026-0.042v6.816l3.013-0.075v6.511l15.066-0.059v-6.536l3.013,0.053V885.838z M766.845,859.366
|
||||
l-21.092-0.963v48.279l6.027-0.354v-20.335l12.052-0.092v-6.716l-12.052-0.093v-13.805l15.065,0.629V859.366z"/>
|
||||
</g>
|
||||
<g id="g31679-7" transform="matrix(1.5068325,0.25514865,-0.25514865,1.5068325,31.59908,11.558857)">
|
||||
<path id="rect31651-0" fill="#989898" d="M185.745,104.822l-19.633-3.544c-0.793-0.143-1.723,0.181-2.078,0.724l-5.442,8.307
|
||||
c-0.355,0.543-0.002,1.098,0.791,1.242l19.633,3.542c0.793,0.144,1.723-0.179,2.079-0.722l5.443-8.307
|
||||
C186.892,105.521,186.538,104.966,185.745,104.822z"/>
|
||||
<path id="rect31653-9" fill="#989898" d="M168.58,85.872l19.753,3.528c0.798,0.144,1.337,0.919,1.206,1.738l-2.007,12.506
|
||||
c-0.132,0.816-0.884,1.363-1.681,1.219l-19.753-3.527c-0.797-0.143-1.337-0.921-1.206-1.738l2.007-12.506
|
||||
C167.031,86.276,167.783,85.729,168.58,85.872z"/>
|
||||
<path id="rect31655-3" fill="#2B2B2B" d="M169.07,86.755l18.524,3.309c0.719,0.128,1.207,0.831,1.089,1.569l-1.805,11.246
|
||||
c-0.118,0.738-0.798,1.231-1.517,1.104l-18.524-3.31c-0.719-0.13-1.207-0.83-1.089-1.567l1.804-11.248
|
||||
C167.671,87.12,168.351,86.625,169.07,86.755z"/>
|
||||
<g id="text31667-6" transform="rotate(10.109675)">
|
||||
<path id="path13031" fill="#FBBA00" d="M182.628,57.851c-0.167-0.005-0.31-0.036-0.429-0.09l0.001-0.281
|
||||
c0.056,0.031,0.122,0.059,0.202,0.086c0.08,0.026,0.155,0.038,0.227,0.043l0-0.387c-0.151-0.058-0.26-0.12-0.328-0.184
|
||||
c-0.067-0.064-0.1-0.149-0.1-0.253c0-0.124,0.041-0.22,0.121-0.29c0.079-0.07,0.183-0.112,0.308-0.126l0.001-0.156l0.147,0.002
|
||||
l0.001,0.153c0.07,0.003,0.141,0.013,0.208,0.028c0.068,0.016,0.132,0.039,0.193,0.068l-0.087,0.242
|
||||
c-0.05-0.023-0.102-0.042-0.158-0.055c-0.054-0.014-0.106-0.023-0.156-0.027l0,0.366c0.082,0.031,0.154,0.063,0.217,0.099
|
||||
s0.113,0.08,0.147,0.134c0.037,0.051,0.054,0.118,0.054,0.196c0.001,0.113-0.035,0.207-0.107,0.283
|
||||
c-0.069,0.078-0.174,0.125-0.313,0.145l0,0.215l-0.147,0L182.628,57.851z M182.63,56.624c-0.095,0.013-0.142,0.063-0.143,0.15
|
||||
c0,0.035,0.012,0.065,0.036,0.089c0.024,0.022,0.06,0.045,0.106,0.064L182.63,56.624z M182.776,57.594
|
||||
c0.092-0.017,0.136-0.071,0.137-0.157c0-0.04-0.012-0.07-0.035-0.091c-0.022-0.023-0.057-0.045-0.102-0.067L182.776,57.594z"/>
|
||||
<path id="path13033" fill="#FBBA00" d="M184.059,57.067c-0.065,0.001-0.115-0.017-0.151-0.05
|
||||
c-0.037-0.036-0.055-0.084-0.054-0.148c0-0.133,0.069-0.198,0.207-0.199c0.064,0,0.115,0.017,0.149,0.052
|
||||
c0.037,0.034,0.055,0.084,0.054,0.146c0.001,0.062-0.018,0.109-0.055,0.145C184.173,57.05,184.123,57.068,184.059,57.067z
|
||||
M184.058,57.95c-0.064,0.001-0.115-0.018-0.152-0.053c-0.036-0.034-0.054-0.082-0.054-0.146c0-0.133,0.069-0.2,0.207-0.199
|
||||
c0.065-0.001,0.115,0.017,0.15,0.051c0.036,0.035,0.053,0.084,0.053,0.147c0.001,0.06-0.018,0.11-0.054,0.146
|
||||
C184.171,57.93,184.121,57.949,184.058,57.95z"/>
|
||||
<path id="path13035" fill="#FBBA00" d="M185.49,58.298c-0.104-0.13-0.183-0.28-0.238-0.448c-0.054-0.167-0.08-0.345-0.08-0.537
|
||||
c0-0.195,0.028-0.377,0.082-0.549c0.056-0.17,0.136-0.322,0.239-0.455l0.27,0c-0.101,0.145-0.177,0.302-0.23,0.472
|
||||
c-0.05,0.168-0.075,0.343-0.075,0.529c-0.001,0.18,0.025,0.353,0.077,0.52c0.053,0.168,0.127,0.323,0.223,0.467L185.49,58.298z"
|
||||
/>
|
||||
<path id="path13037" fill="#FBBA00" d="M186.714,56.308c0.104,0.132,0.184,0.281,0.238,0.448
|
||||
c0.054,0.165,0.081,0.345,0.081,0.538c0,0.195-0.029,0.376-0.085,0.546c-0.056,0.17-0.134,0.322-0.237,0.455l-0.27,0
|
||||
c0.102-0.143,0.177-0.298,0.228-0.467c0.052-0.171,0.077-0.349,0.078-0.532c0-0.179-0.025-0.352-0.076-0.519
|
||||
c-0.051-0.168-0.125-0.323-0.224-0.47L186.714,56.308z"/>
|
||||
<path id="path13039" fill="#FBBA00" d="M188.513,58.288c-0.123-0.001-0.22-0.011-0.291-0.034c-0.07-0.02-0.12-0.058-0.15-0.106
|
||||
c-0.029-0.05-0.042-0.115-0.043-0.199l0.001-0.332c0-0.134-0.086-0.199-0.258-0.2l0-0.249c0.085,0,0.149-0.016,0.192-0.046
|
||||
c0.043-0.033,0.066-0.083,0.066-0.152l0-0.334c0.001-0.08,0.014-0.144,0.042-0.195c0.029-0.048,0.078-0.086,0.148-0.109
|
||||
c0.069-0.024,0.168-0.037,0.296-0.036l-0.002,0.242c-0.062,0.002-0.109,0.013-0.145,0.036c-0.036,0.018-0.052,0.058-0.053,0.121
|
||||
l0,0.329c0,0.151-0.078,0.238-0.233,0.262l0.001,0.015c0.154,0.023,0.231,0.108,0.231,0.257l-0.001,0.33
|
||||
c0.001,0.06,0.016,0.102,0.048,0.122c0.032,0.02,0.083,0.033,0.15,0.037L188.513,58.288z"/>
|
||||
<path id="path13041" fill="#FBBA00" d="M189.507,57.06c-0.065,0.001-0.116-0.017-0.153-0.053
|
||||
c-0.036-0.033-0.054-0.082-0.054-0.145c0-0.134,0.069-0.201,0.207-0.2c0.064-0.001,0.115,0.017,0.149,0.051
|
||||
c0.037,0.035,0.054,0.084,0.054,0.147c0,0.06-0.018,0.11-0.054,0.146C189.62,57.041,189.571,57.059,189.507,57.06L189.507,57.06z
|
||||
M189.506,57.942c-0.065,0-0.116-0.018-0.152-0.052c-0.037-0.036-0.055-0.084-0.054-0.148c0-0.131,0.069-0.198,0.206-0.199
|
||||
c0.066,0.002,0.115,0.017,0.15,0.053c0.036,0.033,0.055,0.084,0.054,0.148c0,0.06-0.019,0.107-0.054,0.144
|
||||
C189.619,57.925,189.57,57.943,189.506,57.942L189.506,57.942z"/>
|
||||
<path id="path13043" fill="#FBBA00" d="M190.74,58.461l0.003-2.264h0.252l-0.003,2.263L190.74,58.461z"/>
|
||||
<path id="path13045" fill="#FBBA00" d="M192.231,57.057c-0.066-0.002-0.117-0.019-0.152-0.053
|
||||
c-0.037-0.034-0.055-0.084-0.054-0.148c0-0.131,0.069-0.198,0.206-0.199c0.066,0.001,0.116,0.018,0.151,0.053
|
||||
c0.036,0.033,0.054,0.084,0.054,0.148c0,0.06-0.019,0.106-0.054,0.144C192.344,57.038,192.294,57.057,192.231,57.057
|
||||
L192.231,57.057z M192.229,57.937c-0.064,0.001-0.115-0.016-0.151-0.05c-0.037-0.036-0.054-0.084-0.054-0.148
|
||||
c0-0.134,0.069-0.198,0.207-0.2c0.065,0,0.115,0.017,0.15,0.053c0.036,0.034,0.054,0.082,0.053,0.145
|
||||
c0,0.061-0.018,0.11-0.055,0.145C192.343,57.919,192.292,57.938,192.229,57.937L192.229,57.937z"/>
|
||||
<path id="path13047" fill="#FBBA00" d="M193.403,57.937c-0.096,0-0.178-0.02-0.241-0.058c-0.062-0.037-0.109-0.089-0.138-0.15
|
||||
c-0.03-0.066-0.045-0.138-0.045-0.221c0-0.092,0.021-0.173,0.064-0.249c0.044-0.075,0.11-0.151,0.198-0.224
|
||||
c-0.031-0.047-0.06-0.099-0.089-0.161c-0.028-0.062-0.042-0.132-0.042-0.213c0-0.119,0.034-0.212,0.1-0.281
|
||||
c0.067-0.068,0.156-0.101,0.266-0.103c0.122,0.001,0.215,0.034,0.279,0.098c0.066,0.062,0.1,0.15,0.1,0.261
|
||||
c0,0.075-0.023,0.149-0.068,0.223c-0.044,0.072-0.105,0.146-0.184,0.217l0.203,0.266c0.021-0.048,0.037-0.099,0.05-0.148
|
||||
c0.014-0.048,0.025-0.094,0.03-0.136l0.291,0.001c-0.013,0.088-0.034,0.18-0.064,0.271c-0.031,0.091-0.07,0.177-0.12,0.256
|
||||
l0.247,0.326l-0.359,0l-0.081-0.111c-0.053,0.041-0.113,0.072-0.179,0.096C193.553,57.923,193.481,57.936,193.403,57.937
|
||||
L193.403,57.937z M193.382,56.644c0,0.046,0.007,0.09,0.02,0.127c0.015,0.039,0.031,0.073,0.047,0.1
|
||||
c0.04-0.033,0.073-0.068,0.1-0.105c0.027-0.039,0.041-0.084,0.041-0.132c0-0.045-0.009-0.08-0.027-0.102
|
||||
c-0.018-0.021-0.042-0.033-0.072-0.033c-0.034-0.001-0.06,0.011-0.079,0.037C193.392,56.558,193.382,56.595,193.382,56.644
|
||||
L193.382,56.644z M193.27,57.49c0,0.045,0.014,0.089,0.043,0.126c0.03,0.039,0.07,0.056,0.127,0.057
|
||||
c0.039-0.002,0.076-0.009,0.108-0.024c0.035-0.015,0.068-0.034,0.096-0.062l-0.245-0.338c-0.041,0.037-0.073,0.074-0.096,0.111
|
||||
C193.281,57.397,193.269,57.438,193.27,57.49L193.27,57.49z"/>
|
||||
<path id="path13049" fill="#FBBA00" d="M194.586,56.288c0.124,0,0.22,0.011,0.291,0.034c0.069,0.02,0.118,0.056,0.148,0.107
|
||||
c0.03,0.048,0.044,0.112,0.045,0.198l-0.001,0.332c0,0.134,0.086,0.201,0.257,0.2l0,0.249c-0.085,0-0.149,0.015-0.194,0.046
|
||||
c-0.042,0.031-0.063,0.08-0.064,0.152l0,0.333c0,0.081-0.014,0.145-0.041,0.195c-0.027,0.048-0.076,0.086-0.147,0.108
|
||||
c-0.07,0.022-0.168,0.035-0.295,0.037l0-0.242c0.062-0.004,0.11-0.015,0.145-0.035c0.035-0.018,0.052-0.059,0.053-0.121
|
||||
l-0.001-0.329c0.001-0.15,0.078-0.238,0.232-0.263l-0.001-0.015c-0.154-0.022-0.231-0.108-0.231-0.257l0.002-0.329
|
||||
c0-0.06-0.018-0.102-0.05-0.123c-0.031-0.021-0.08-0.033-0.148-0.036L194.586,56.288z"/>
|
||||
<path id="path13051" fill="#FBBA00" d="M196.366,57.05c-0.065,0.001-0.116-0.016-0.152-0.052
|
||||
c-0.037-0.035-0.055-0.083-0.055-0.146c0-0.133,0.069-0.201,0.207-0.199c0.065-0.001,0.115,0.017,0.15,0.051
|
||||
c0.037,0.035,0.055,0.084,0.054,0.147c0,0.06-0.018,0.11-0.054,0.145C196.479,57.031,196.429,57.049,196.366,57.05z
|
||||
M196.074,58.262c0.017-0.066,0.033-0.138,0.048-0.22c0.015-0.081,0.029-0.158,0.041-0.235c0.014-0.08,0.026-0.146,0.035-0.205
|
||||
l0.311,0l0.016,0.026c-0.012,0.049-0.03,0.11-0.051,0.184c-0.019,0.073-0.043,0.149-0.07,0.23
|
||||
c-0.026,0.079-0.055,0.153-0.087,0.222L196.074,58.262z"/>
|
||||
<path id="path13053" fill="#FBBA00" d="M197.678,57.048c-0.065,0.002-0.116-0.016-0.153-0.053
|
||||
c-0.036-0.033-0.054-0.081-0.053-0.145c0-0.134,0.068-0.201,0.206-0.199c0.065,0,0.115,0.017,0.15,0.05
|
||||
c0.036,0.037,0.055,0.085,0.054,0.148c0,0.06-0.018,0.11-0.055,0.145C197.791,57.029,197.741,57.047,197.678,57.048z
|
||||
M197.677,57.932c-0.066-0.002-0.116-0.017-0.153-0.053c-0.036-0.033-0.055-0.084-0.055-0.148
|
||||
c0.001-0.131,0.07-0.198,0.207-0.199c0.066,0.002,0.116,0.02,0.15,0.052c0.037,0.036,0.055,0.085,0.054,0.148
|
||||
c0,0.06-0.019,0.107-0.054,0.145C197.79,57.912,197.74,57.93,197.677,57.932z"/>
|
||||
<path id="path13055" fill="#FBBA00" d="M198.67,56.282c0.125,0.001,0.221,0.01,0.291,0.034c0.069,0.02,0.119,0.057,0.148,0.107
|
||||
c0.03,0.048,0.045,0.113,0.046,0.199l-0.001,0.332c0,0.133,0.086,0.199,0.257,0.199l0,0.249c-0.085,0-0.15,0.016-0.194,0.046
|
||||
c-0.042,0.032-0.063,0.083-0.063,0.152l0,0.334c0,0.079-0.014,0.144-0.042,0.195c-0.027,0.049-0.077,0.085-0.147,0.108
|
||||
c-0.07,0.023-0.168,0.036-0.295,0.036l0-0.241c0.061-0.004,0.11-0.016,0.145-0.036c0.036-0.018,0.053-0.058,0.052-0.121
|
||||
l0.001-0.329c0-0.15,0.077-0.237,0.232-0.262l0-0.013c-0.154-0.024-0.23-0.109-0.231-0.259l0.001-0.329
|
||||
c0.001-0.061-0.016-0.101-0.049-0.121c-0.031-0.023-0.08-0.035-0.148-0.039L198.67,56.282z"/>
|
||||
<path id="path13057" fill="#FBBA00" d="M182.623,61.514c-0.166-0.004-0.309-0.034-0.428-0.089l0.001-0.281
|
||||
c0.055,0.031,0.122,0.059,0.202,0.086c0.08,0.025,0.156,0.04,0.227,0.043l0-0.388c-0.151-0.058-0.261-0.12-0.329-0.184
|
||||
c-0.067-0.065-0.1-0.15-0.1-0.254c0-0.124,0.041-0.22,0.121-0.29c0.08-0.071,0.184-0.11,0.309-0.124l0-0.156l0.148-0.001
|
||||
l-0.001,0.154c0.072,0.003,0.142,0.012,0.209,0.029c0.067,0.014,0.132,0.037,0.193,0.066l-0.087,0.242
|
||||
c-0.05-0.023-0.103-0.042-0.158-0.055c-0.055-0.014-0.107-0.023-0.157-0.027l0,0.366c0.081,0.03,0.153,0.062,0.217,0.099
|
||||
c0.064,0.036,0.113,0.08,0.147,0.133c0.036,0.052,0.055,0.118,0.054,0.197c0,0.113-0.035,0.206-0.108,0.282
|
||||
c-0.068,0.079-0.173,0.126-0.313,0.145l0,0.216l-0.147,0L182.623,61.514z M182.625,60.288c-0.096,0.013-0.143,0.062-0.144,0.149
|
||||
c0,0.035,0.012,0.065,0.037,0.089c0.025,0.023,0.06,0.045,0.107,0.067L182.625,60.288z M182.771,61.258
|
||||
c0.091-0.017,0.136-0.071,0.136-0.157c-0.001-0.04-0.012-0.07-0.034-0.092c-0.023-0.022-0.057-0.044-0.101-0.063L182.771,61.258z
|
||||
"/>
|
||||
<path id="path13059" fill="#FBBA00" d="M184.422,61.957c-0.122-0.001-0.219-0.01-0.29-0.035c-0.069-0.019-0.12-0.053-0.149-0.105
|
||||
c-0.03-0.05-0.043-0.115-0.044-0.2l0.001-0.332c0-0.133-0.086-0.199-0.257-0.199l0-0.249c0.085,0,0.149-0.015,0.191-0.046
|
||||
c0.044-0.033,0.066-0.081,0.066-0.152l0.001-0.332c-0.001-0.081,0.013-0.146,0.041-0.197c0.029-0.048,0.078-0.086,0.147-0.108
|
||||
c0.07-0.024,0.168-0.037,0.295-0.036l0,0.242c-0.062,0.002-0.111,0.013-0.145,0.035c-0.035,0.019-0.052,0.059-0.053,0.12l0,0.33
|
||||
c0,0.15-0.078,0.238-0.232,0.262l0,0.014c0.154,0.023,0.231,0.109,0.232,0.258l-0.001,0.329c0,0.06,0.017,0.102,0.048,0.123
|
||||
c0.033,0.021,0.083,0.034,0.15,0.035L184.422,61.957z"/>
|
||||
<path id="path13061" fill="#FBBA00" d="M185.415,60.73c-0.064,0.001-0.115-0.017-0.151-0.053
|
||||
c-0.036-0.033-0.054-0.082-0.054-0.145c0-0.133,0.069-0.201,0.207-0.199c0.065-0.001,0.114,0.016,0.149,0.05
|
||||
c0.037,0.036,0.055,0.084,0.055,0.148c0,0.06-0.019,0.109-0.055,0.145C185.529,60.711,185.479,60.73,185.415,60.73z
|
||||
M185.415,61.613c-0.066-0.002-0.116-0.018-0.153-0.053c-0.036-0.034-0.055-0.084-0.055-0.148c0.001-0.131,0.07-0.199,0.207-0.2
|
||||
c0.066,0.002,0.115,0.019,0.151,0.053c0.036,0.035,0.055,0.085,0.054,0.148c0,0.06-0.019,0.107-0.055,0.145
|
||||
C185.529,61.594,185.478,61.612,185.415,61.613z"/>
|
||||
<path id="path13063" fill="#FBBA00" d="M186.649,62.131l0.003-2.263l0.252,0.001l-0.003,2.262L186.649,62.131z"/>
|
||||
<path id="path13065" fill="#FBBA00" d="M188.14,60.727c-0.066-0.002-0.116-0.017-0.153-0.053
|
||||
c-0.036-0.033-0.054-0.084-0.054-0.148c0.001-0.131,0.07-0.198,0.206-0.199c0.066,0.001,0.116,0.018,0.15,0.052
|
||||
c0.037,0.036,0.055,0.084,0.054,0.148c0,0.06-0.018,0.108-0.054,0.145C188.254,60.708,188.204,60.726,188.14,60.727z
|
||||
M188.138,61.608c-0.065,0-0.116-0.018-0.151-0.05c-0.037-0.036-0.055-0.085-0.055-0.148c0-0.133,0.07-0.198,0.207-0.2
|
||||
c0.064-0.001,0.115,0.017,0.149,0.053c0.036,0.033,0.054,0.082,0.054,0.146c0,0.06-0.018,0.109-0.054,0.145
|
||||
C188.252,61.591,188.203,61.609,188.138,61.608z"/>
|
||||
<path id="path13067" fill="#FBBA00" d="M189.312,61.607c-0.097,0-0.177-0.019-0.241-0.058c-0.063-0.038-0.108-0.087-0.139-0.15
|
||||
c-0.03-0.065-0.045-0.137-0.045-0.219c0.001-0.093,0.023-0.176,0.065-0.251c0.044-0.075,0.109-0.151,0.198-0.224
|
||||
c-0.03-0.044-0.059-0.098-0.088-0.161c-0.029-0.063-0.043-0.132-0.043-0.214c0-0.118,0.034-0.211,0.101-0.28
|
||||
c0.067-0.067,0.156-0.101,0.265-0.103c0.121,0.001,0.214,0.034,0.279,0.098c0.066,0.063,0.1,0.15,0.099,0.262
|
||||
c0.001,0.074-0.022,0.148-0.068,0.222c-0.043,0.072-0.105,0.146-0.184,0.217l0.204,0.267c0.021-0.049,0.037-0.098,0.05-0.148
|
||||
c0.014-0.048,0.023-0.095,0.03-0.135l0.29,0c-0.013,0.088-0.034,0.18-0.064,0.271c-0.03,0.094-0.071,0.177-0.121,0.256
|
||||
l0.247,0.326l-0.359,0l-0.081-0.109c-0.053,0.04-0.112,0.073-0.18,0.098C189.463,61.595,189.391,61.607,189.312,61.607
|
||||
L189.312,61.607z M189.291,60.314c0,0.045,0.006,0.089,0.02,0.127c0.015,0.038,0.031,0.072,0.048,0.101
|
||||
c0.039-0.035,0.072-0.07,0.099-0.108c0.028-0.039,0.042-0.083,0.042-0.13c0-0.046-0.009-0.081-0.028-0.103
|
||||
c-0.018-0.023-0.042-0.033-0.072-0.034c-0.034,0-0.06,0.011-0.08,0.037C189.301,60.227,189.291,60.264,189.291,60.314
|
||||
L189.291,60.314z M189.179,61.159c-0.001,0.046,0.014,0.089,0.042,0.125c0.029,0.039,0.072,0.058,0.128,0.057
|
||||
c0.039,0,0.075-0.008,0.108-0.024c0.036-0.014,0.068-0.034,0.096-0.061l-0.244-0.339c-0.041,0.037-0.073,0.074-0.096,0.112
|
||||
C189.191,61.067,189.178,61.109,189.179,61.159L189.179,61.159z"/>
|
||||
<path id="path13069" fill="#FBBA00" d="M190.494,59.957c0.125,0.001,0.221,0.011,0.291,0.035c0.069,0.019,0.12,0.057,0.148,0.106
|
||||
c0.03,0.048,0.045,0.114,0.045,0.199l-0.001,0.332c0,0.133,0.086,0.199,0.257,0.199l0,0.249
|
||||
c-0.085,0.001-0.149,0.015-0.194,0.046c-0.042,0.031-0.063,0.083-0.064,0.152l0,0.334c-0.001,0.08-0.015,0.144-0.042,0.195
|
||||
c-0.027,0.05-0.077,0.086-0.148,0.109c-0.07,0.022-0.167,0.035-0.296,0.035l0.001-0.241c0.061-0.004,0.11-0.016,0.144-0.035
|
||||
c0.036-0.018,0.053-0.059,0.053-0.122l-0.001-0.329c0-0.15,0.078-0.237,0.233-0.262l0-0.012c-0.154-0.025-0.231-0.11-0.231-0.259
|
||||
l0.001-0.33c-0.001-0.06-0.017-0.099-0.05-0.121c-0.032-0.023-0.08-0.035-0.148-0.037L190.494,59.957z"/>
|
||||
<path id="path13071" fill="#FBBA00" d="M192.275,60.72c-0.064,0-0.116-0.018-0.152-0.05c-0.036-0.037-0.054-0.085-0.054-0.148
|
||||
c0-0.134,0.069-0.199,0.207-0.199c0.065-0.001,0.114,0.016,0.15,0.052c0.035,0.034,0.054,0.082,0.054,0.146
|
||||
c0,0.06-0.019,0.109-0.055,0.145C192.389,60.702,192.339,60.72,192.275,60.72z M191.983,61.935
|
||||
c0.016-0.068,0.033-0.141,0.048-0.223c0.015-0.079,0.029-0.158,0.041-0.236c0.014-0.076,0.026-0.145,0.034-0.204l0.311,0.001
|
||||
l0.016,0.025c-0.013,0.048-0.029,0.112-0.051,0.184c-0.02,0.072-0.044,0.149-0.071,0.229c-0.026,0.081-0.055,0.155-0.087,0.222
|
||||
L191.983,61.935z"/>
|
||||
<path id="path13073" fill="#FBBA00" d="M193.587,60.718c-0.065,0.001-0.116-0.018-0.152-0.05
|
||||
c-0.037-0.036-0.055-0.085-0.054-0.148c0-0.133,0.069-0.199,0.207-0.2c0.065-0.001,0.115,0.017,0.151,0.053
|
||||
c0.035,0.034,0.053,0.082,0.054,0.146c0,0.06-0.018,0.109-0.055,0.145C193.701,60.699,193.65,60.717,193.587,60.718z
|
||||
M193.587,61.601c-0.065,0-0.116-0.017-0.153-0.052c-0.035-0.034-0.054-0.084-0.054-0.146c0-0.133,0.069-0.2,0.207-0.199
|
||||
c0.065-0.001,0.115,0.016,0.15,0.05c0.037,0.036,0.055,0.084,0.054,0.148c0,0.06-0.018,0.109-0.055,0.145
|
||||
C193.699,61.582,193.65,61.6,193.587,61.601z"/>
|
||||
<path id="path13075" fill="#FBBA00" d="M194.58,59.952c0.125,0.001,0.221,0.011,0.291,0.035c0.069,0.019,0.119,0.056,0.148,0.106
|
||||
c0.029,0.048,0.045,0.115,0.045,0.198l-0.001,0.331c0,0.133,0.085,0.2,0.256,0.199l0,0.249c-0.085,0-0.149,0.015-0.193,0.047
|
||||
c-0.043,0.03-0.064,0.081-0.064,0.151l0,0.335c0,0.078-0.014,0.144-0.041,0.193c-0.027,0.051-0.076,0.086-0.148,0.109
|
||||
c-0.07,0.022-0.168,0.035-0.296,0.035l0.001-0.241c0.062-0.004,0.11-0.016,0.145-0.034c0.035-0.019,0.052-0.061,0.053-0.122
|
||||
l0-0.33c0-0.15,0.078-0.238,0.233-0.262l0-0.012c-0.154-0.025-0.231-0.111-0.231-0.258l0-0.332c0-0.059-0.016-0.099-0.05-0.12
|
||||
c-0.031-0.023-0.08-0.035-0.147-0.036L194.58,59.952z"/>
|
||||
<path id="path13077" fill="#FBBA00" d="M196.311,60.714c-0.065,0.001-0.116-0.016-0.153-0.052
|
||||
c-0.035-0.034-0.054-0.082-0.053-0.145c0-0.134,0.069-0.201,0.207-0.2c0.064-0.001,0.115,0.017,0.149,0.05
|
||||
c0.037,0.036,0.055,0.085,0.054,0.148c0,0.06-0.018,0.11-0.055,0.145C196.424,60.696,196.375,60.714,196.311,60.714
|
||||
L196.311,60.714z M196.31,61.596c-0.065,0-0.116-0.017-0.152-0.052c-0.037-0.035-0.055-0.084-0.055-0.147
|
||||
c0.001-0.132,0.07-0.198,0.206-0.199c0.066,0.002,0.115,0.017,0.151,0.053c0.036,0.033,0.055,0.084,0.054,0.147
|
||||
c0,0.061-0.018,0.108-0.054,0.144C196.423,61.579,196.374,61.597,196.31,61.596L196.31,61.596z"/>
|
||||
<path id="path13079" fill="#FBBA00" d="M197.742,61.946c-0.105-0.132-0.184-0.281-0.238-0.448
|
||||
c-0.054-0.167-0.081-0.347-0.081-0.539c0.001-0.195,0.028-0.376,0.083-0.546c0.057-0.17,0.136-0.322,0.24-0.455l0.269,0
|
||||
c-0.102,0.142-0.178,0.299-0.23,0.47c-0.051,0.169-0.075,0.346-0.075,0.53c-0.001,0.178,0.025,0.352,0.075,0.519
|
||||
c0.053,0.168,0.128,0.323,0.225,0.469L197.742,61.946z"/>
|
||||
<path id="path13081" fill="#FBBA00" d="M198.965,59.956c0.105,0.129,0.184,0.28,0.238,0.448c0.055,0.166,0.081,0.344,0.081,0.537
|
||||
c-0.001,0.195-0.029,0.377-0.084,0.549c-0.055,0.17-0.134,0.322-0.237,0.455l-0.27,0c0.101-0.145,0.177-0.302,0.228-0.471
|
||||
c0.052-0.17,0.078-0.346,0.078-0.531c0-0.179-0.025-0.353-0.077-0.52c-0.051-0.167-0.126-0.322-0.224-0.466L198.965,59.956z"/>
|
||||
<path id="path13083" fill="#FBBA00" d="M182.618,65.178c-0.166-0.004-0.309-0.033-0.428-0.089l0-0.28
|
||||
c0.056,0.03,0.124,0.061,0.202,0.086c0.08,0.024,0.156,0.04,0.227,0.042l0-0.387c-0.151-0.059-0.261-0.12-0.328-0.185
|
||||
c-0.067-0.064-0.1-0.149-0.1-0.254c0-0.124,0.041-0.219,0.12-0.289c0.081-0.069,0.184-0.111,0.309-0.124l0-0.156l0.148-0.001
|
||||
l0,0.154c0.071,0.003,0.14,0.012,0.209,0.03c0.068,0.016,0.133,0.037,0.192,0.066l-0.085,0.244
|
||||
c-0.051-0.025-0.104-0.044-0.16-0.057c-0.054-0.014-0.107-0.023-0.156-0.026l-0.001,0.366c0.082,0.029,0.154,0.062,0.217,0.099
|
||||
c0.065,0.038,0.114,0.082,0.147,0.133c0.037,0.051,0.055,0.117,0.055,0.198c0,0.111-0.036,0.205-0.107,0.283
|
||||
c-0.069,0.076-0.174,0.125-0.313,0.145l0,0.215l-0.149-0.002L182.618,65.178z M182.62,63.953
|
||||
c-0.096,0.011-0.143,0.061-0.144,0.148c0,0.035,0.012,0.064,0.036,0.089c0.024,0.023,0.061,0.045,0.107,0.066L182.62,63.953z
|
||||
M182.766,64.924c0.091-0.02,0.137-0.073,0.137-0.16c0-0.039-0.011-0.067-0.034-0.09c-0.023-0.023-0.057-0.042-0.102-0.064
|
||||
L182.766,64.924z"/>
|
||||
<path id="path13085" fill="#FBBA00" d="M184.049,64.396c-0.065,0.001-0.116-0.016-0.153-0.052
|
||||
c-0.035-0.034-0.053-0.082-0.054-0.146c0-0.133,0.069-0.2,0.208-0.199c0.064-0.001,0.115,0.017,0.149,0.05
|
||||
c0.037,0.036,0.054,0.084,0.054,0.148c0,0.06-0.018,0.11-0.055,0.145C184.162,64.378,184.113,64.396,184.049,64.396
|
||||
L184.049,64.396z M184.047,65.277c-0.065,0.001-0.116-0.016-0.151-0.05c-0.037-0.036-0.055-0.084-0.055-0.147
|
||||
c0-0.133,0.069-0.199,0.206-0.199c0.066,0,0.115,0.017,0.151,0.053c0.035,0.034,0.055,0.084,0.054,0.146
|
||||
c0,0.062-0.018,0.109-0.055,0.145C184.161,65.26,184.111,65.279,184.047,65.277L184.047,65.277z"/>
|
||||
<path id="path13087" fill="#FBBA00" d="M185.222,65.277c-0.098,0-0.177-0.018-0.241-0.055c-0.062-0.04-0.108-0.089-0.138-0.153
|
||||
c-0.031-0.066-0.045-0.138-0.045-0.219c0-0.092,0.021-0.176,0.064-0.252c0.044-0.076,0.11-0.151,0.198-0.224
|
||||
c-0.031-0.045-0.06-0.099-0.088-0.161c-0.029-0.063-0.043-0.132-0.044-0.213c0.001-0.12,0.034-0.212,0.1-0.281
|
||||
c0.068-0.066,0.156-0.1,0.266-0.102c0.121,0,0.214,0.033,0.279,0.097c0.066,0.062,0.1,0.151,0.1,0.264
|
||||
c0,0.073-0.024,0.146-0.069,0.22c-0.044,0.072-0.105,0.146-0.184,0.217l0.203,0.267c0.021-0.049,0.037-0.099,0.051-0.146
|
||||
c0.014-0.05,0.023-0.097,0.03-0.135l0.29-0.001c-0.011,0.09-0.033,0.179-0.063,0.271c-0.03,0.093-0.071,0.177-0.121,0.256
|
||||
l0.247,0.326l-0.358,0.001l-0.081-0.11c-0.054,0.04-0.113,0.073-0.18,0.098C185.372,65.265,185.3,65.277,185.222,65.277
|
||||
L185.222,65.277z M185.201,63.983c0,0.045,0.006,0.09,0.02,0.127c0.015,0.039,0.032,0.073,0.048,0.102
|
||||
c0.039-0.034,0.072-0.069,0.1-0.107c0.027-0.039,0.04-0.084,0.041-0.13c0-0.047-0.01-0.081-0.028-0.104
|
||||
c-0.018-0.022-0.042-0.033-0.072-0.033c-0.033,0.002-0.06,0.013-0.08,0.037C185.21,63.897,185.2,63.933,185.201,63.983z
|
||||
M185.088,64.829c-0.001,0.046,0.014,0.089,0.042,0.126c0.029,0.039,0.071,0.057,0.127,0.056c0.04,0.001,0.075-0.008,0.11-0.022
|
||||
c0.035-0.015,0.066-0.036,0.094-0.063l-0.244-0.338c-0.041,0.037-0.072,0.076-0.095,0.112
|
||||
C185.099,64.737,185.088,64.779,185.088,64.829L185.088,64.829z"/>
|
||||
<path id="path13089" fill="#FBBA00" d="M186.404,63.628c0.124,0,0.221,0.01,0.291,0.034c0.069,0.019,0.119,0.057,0.148,0.107
|
||||
c0.031,0.047,0.046,0.115,0.045,0.198l-0.001,0.331c0,0.134,0.085,0.2,0.257,0.2l0,0.249c-0.085,0-0.15,0.016-0.193,0.048
|
||||
c-0.043,0.029-0.064,0.08-0.065,0.149l0,0.335c-0.001,0.078-0.014,0.143-0.041,0.193c-0.027,0.051-0.077,0.086-0.148,0.109
|
||||
c-0.069,0.022-0.168,0.035-0.295,0.037l0.001-0.242c0.062-0.002,0.11-0.015,0.145-0.033c0.035-0.02,0.052-0.061,0.052-0.122
|
||||
l0.001-0.329c0-0.151,0.077-0.238,0.231-0.262l0.002-0.013c-0.155-0.025-0.232-0.11-0.232-0.258l0-0.33
|
||||
c0-0.06-0.016-0.1-0.049-0.122c-0.031-0.023-0.081-0.035-0.147-0.036L186.404,63.628z"/>
|
||||
<path id="path13091" fill="#FBBA00" d="M188.184,64.389c-0.065,0.002-0.115-0.017-0.152-0.05
|
||||
c-0.037-0.036-0.055-0.084-0.054-0.148c0-0.133,0.07-0.198,0.207-0.199c0.065-0.001,0.115,0.017,0.15,0.053
|
||||
c0.036,0.033,0.055,0.082,0.053,0.145c0.001,0.06-0.017,0.109-0.055,0.145C188.298,64.373,188.249,64.391,188.184,64.389z
|
||||
M187.893,65.604c0.017-0.066,0.032-0.141,0.048-0.223c0.015-0.078,0.029-0.158,0.041-0.235c0.014-0.077,0.026-0.144,0.034-0.203
|
||||
l0.311,0.001l0.016,0.024c-0.012,0.05-0.028,0.113-0.049,0.187c-0.021,0.071-0.044,0.147-0.072,0.228
|
||||
c-0.025,0.08-0.055,0.155-0.086,0.222L187.893,65.604z"/>
|
||||
<path id="path13093" fill="#FBBA00" d="M189.496,64.387c-0.065,0.001-0.115-0.017-0.151-0.05
|
||||
c-0.037-0.036-0.055-0.084-0.054-0.148c0-0.134,0.069-0.198,0.207-0.2c0.065,0,0.115,0.017,0.149,0.053
|
||||
c0.037,0.034,0.054,0.082,0.054,0.146c0,0.06-0.018,0.11-0.055,0.145C189.61,64.37,189.56,64.388,189.496,64.387z
|
||||
M189.495,65.272c-0.065,0-0.116-0.018-0.152-0.053c-0.036-0.033-0.054-0.082-0.054-0.146c0-0.133,0.069-0.201,0.207-0.199
|
||||
c0.065-0.001,0.115,0.017,0.149,0.05c0.037,0.036,0.055,0.085,0.055,0.148c0,0.06-0.018,0.11-0.055,0.145
|
||||
C189.609,65.252,189.558,65.27,189.495,65.272z"/>
|
||||
<path id="path13095" fill="#FBBA00" d="M190.489,63.621c0.125,0.001,0.222,0.012,0.291,0.034c0.07,0.022,0.119,0.057,0.148,0.106
|
||||
c0.03,0.048,0.045,0.115,0.044,0.199l-0.001,0.331c0,0.134,0.085,0.2,0.256,0.2l0,0.248c-0.085,0-0.149,0.015-0.193,0.048
|
||||
c-0.043,0.029-0.064,0.081-0.065,0.151v0.333c-0.001,0.079-0.014,0.144-0.041,0.194c-0.027,0.051-0.076,0.086-0.148,0.109
|
||||
c-0.07,0.023-0.168,0.036-0.296,0.036l0.001-0.241c0.062-0.002,0.11-0.016,0.146-0.033c0.034-0.02,0.052-0.061,0.052-0.123
|
||||
l0-0.328c0-0.151,0.077-0.239,0.232-0.264l0.001-0.012c-0.154-0.025-0.231-0.11-0.231-0.257l-0.001-0.332
|
||||
c0.001-0.061-0.015-0.1-0.049-0.121c-0.032-0.023-0.081-0.035-0.147-0.036L190.489,63.621z"/>
|
||||
<path id="path13097" fill="#FBBA00" d="M192.22,64.385c-0.066,0-0.116-0.018-0.152-0.053c-0.036-0.034-0.055-0.082-0.054-0.146
|
||||
c0-0.133,0.069-0.201,0.207-0.199c0.065-0.001,0.114,0.016,0.149,0.05c0.036,0.037,0.054,0.084,0.054,0.148
|
||||
c0,0.06-0.018,0.109-0.055,0.145C192.333,64.365,192.283,64.384,192.22,64.385z M192.219,65.268
|
||||
c-0.065-0.002-0.116-0.019-0.153-0.053c-0.035-0.034-0.054-0.084-0.054-0.148c0.001-0.131,0.07-0.198,0.207-0.199
|
||||
c0.066,0.002,0.115,0.018,0.15,0.052c0.036,0.035,0.055,0.084,0.054,0.148c0,0.06-0.019,0.107-0.054,0.144
|
||||
C192.332,65.249,192.283,65.267,192.219,65.268z"/>
|
||||
<path id="path13099" fill="#FBBA00" d="M193.65,65.616c-0.104-0.132-0.183-0.28-0.237-0.448
|
||||
c-0.054-0.167-0.082-0.347-0.081-0.538c0-0.194,0.028-0.377,0.082-0.547c0.056-0.17,0.136-0.322,0.239-0.455l0.271,0
|
||||
c-0.102,0.142-0.179,0.299-0.231,0.469c-0.05,0.169-0.075,0.346-0.075,0.53c0,0.179,0.026,0.352,0.076,0.519
|
||||
c0.053,0.168,0.128,0.325,0.225,0.469L193.65,65.616z"/>
|
||||
<path id="path13101" fill="#FBBA00" d="M194.875,63.626c0.103,0.13,0.183,0.28,0.237,0.448c0.054,0.165,0.082,0.345,0.08,0.536
|
||||
c0,0.195-0.028,0.379-0.083,0.549c-0.056,0.17-0.134,0.322-0.237,0.455l-0.27,0c0.101-0.144,0.178-0.299,0.228-0.469
|
||||
c0.051-0.17,0.078-0.346,0.078-0.53c0-0.181-0.025-0.355-0.077-0.521c-0.051-0.168-0.125-0.324-0.223-0.468L194.875,63.626z"/>
|
||||
<path id="path13103" fill="#FBBA00" d="M196.673,65.603c-0.121,0.002-0.219-0.01-0.29-0.032c-0.07-0.022-0.12-0.057-0.15-0.107
|
||||
c-0.029-0.049-0.043-0.117-0.043-0.198l0.001-0.333c0-0.132-0.086-0.199-0.257-0.199l0-0.249c0.085,0,0.148-0.016,0.191-0.049
|
||||
c0.044-0.03,0.066-0.081,0.065-0.151l0.002-0.333c0-0.079,0.013-0.145,0.041-0.193c0.029-0.051,0.078-0.086,0.148-0.109
|
||||
c0.069-0.024,0.167-0.037,0.294-0.038l0,0.244c-0.063,0-0.111,0.011-0.146,0.033c-0.035,0.021-0.053,0.062-0.052,0.123
|
||||
l-0.001,0.327c0,0.151-0.077,0.239-0.232,0.264l0,0.014c0.154,0.024,0.231,0.111,0.231,0.257l-0.001,0.331
|
||||
c0.001,0.061,0.016,0.101,0.048,0.122c0.033,0.021,0.083,0.033,0.149,0.035L196.673,65.603z"/>
|
||||
<path id="path13105" fill="#FBBA00" d="M197.667,64.376c-0.065,0.001-0.115-0.017-0.151-0.05
|
||||
c-0.037-0.036-0.055-0.084-0.054-0.148c0-0.133,0.069-0.198,0.207-0.199c0.065,0,0.115,0.017,0.149,0.052
|
||||
c0.037,0.034,0.054,0.083,0.054,0.146c0,0.061-0.019,0.109-0.055,0.145C197.781,64.359,197.731,64.377,197.667,64.376
|
||||
L197.667,64.376z M197.666,65.259c-0.065,0.001-0.115-0.016-0.152-0.052c-0.037-0.034-0.054-0.082-0.054-0.146
|
||||
c0-0.133,0.068-0.2,0.207-0.199c0.064-0.001,0.115,0.017,0.149,0.05c0.037,0.036,0.054,0.085,0.055,0.147
|
||||
c-0.001,0.061-0.019,0.11-0.055,0.145C197.78,65.24,197.73,65.258,197.666,65.259L197.666,65.259z"/>
|
||||
<path id="path13107" fill="#FBBA00" d="M198.9,65.778l0.004-2.262l0.252-0.001l-0.003,2.261L198.9,65.778z"/>
|
||||
<path id="path13109" fill="#FBBA00" d="M182.613,68.842c-0.167-0.004-0.309-0.034-0.43-0.089l0.001-0.281
|
||||
c0.056,0.032,0.124,0.061,0.202,0.086c0.08,0.025,0.156,0.04,0.227,0.043l0-0.386c-0.151-0.06-0.261-0.122-0.329-0.187
|
||||
c-0.066-0.064-0.099-0.148-0.098-0.251c-0.001-0.123,0.039-0.221,0.12-0.291c0.081-0.069,0.183-0.111,0.309-0.125l0-0.156
|
||||
l0.148-0.001l-0.001,0.154c0.071,0.003,0.14,0.013,0.209,0.03c0.068,0.016,0.132,0.036,0.193,0.068l-0.086,0.242
|
||||
c-0.05-0.025-0.103-0.044-0.16-0.058c-0.054-0.012-0.106-0.022-0.156-0.026l0,0.366c0.081,0.03,0.155,0.065,0.218,0.1
|
||||
c0.064,0.036,0.113,0.081,0.147,0.134c0.037,0.051,0.055,0.115,0.055,0.196c0,0.111-0.036,0.205-0.107,0.283
|
||||
c-0.07,0.076-0.175,0.126-0.314,0.146l0,0.215l-0.147,0L182.613,68.842z M182.615,67.617c-0.097,0.011-0.144,0.061-0.143,0.15
|
||||
c-0.002,0.033,0.011,0.062,0.035,0.087c0.024,0.023,0.06,0.045,0.107,0.066L182.615,67.617z M182.761,68.588
|
||||
c0.091-0.02,0.136-0.071,0.136-0.16c0.001-0.037-0.011-0.067-0.034-0.088c-0.022-0.023-0.056-0.045-0.103-0.066L182.761,68.588z"
|
||||
/>
|
||||
<path id="path13111" fill="#FBBA00" d="M184.093,68.059c-0.065,0.001-0.116-0.017-0.151-0.05
|
||||
c-0.037-0.036-0.055-0.085-0.054-0.148c0-0.133,0.069-0.199,0.207-0.2c0.065,0,0.115,0.017,0.149,0.053
|
||||
c0.037,0.034,0.054,0.083,0.054,0.146c0,0.061-0.019,0.109-0.055,0.145C184.207,68.043,184.158,68.061,184.093,68.059z
|
||||
M183.802,69.274c0.016-0.066,0.032-0.141,0.047-0.223c0.016-0.079,0.029-0.158,0.041-0.235c0.014-0.077,0.025-0.145,0.035-0.202
|
||||
l0.311-0.002l0.015,0.025c-0.012,0.05-0.028,0.112-0.049,0.186c-0.02,0.072-0.044,0.148-0.071,0.227
|
||||
c-0.025,0.081-0.055,0.155-0.087,0.222L183.802,69.274z"/>
|
||||
<path id="path13113" fill="#FBBA00" d="M185.405,68.058c-0.065,0-0.116-0.017-0.152-0.05c-0.037-0.036-0.055-0.085-0.054-0.148
|
||||
c0-0.133,0.069-0.198,0.206-0.199c0.065-0.001,0.115,0.017,0.15,0.053c0.036,0.033,0.054,0.082,0.053,0.145
|
||||
c0.001,0.06-0.018,0.109-0.054,0.145C185.519,68.041,185.47,68.059,185.405,68.058z M185.404,68.941
|
||||
c-0.065,0.001-0.116-0.017-0.152-0.053c-0.036-0.034-0.054-0.082-0.054-0.146c0-0.133,0.069-0.2,0.208-0.199
|
||||
c0.064,0,0.115,0.017,0.149,0.05c0.037,0.036,0.054,0.085,0.055,0.147c-0.001,0.06-0.019,0.109-0.055,0.145
|
||||
C185.518,68.922,185.468,68.94,185.404,68.941z"/>
|
||||
<path id="path13115" fill="#FBBA00" d="M186.399,67.293c0.123-0.001,0.221,0.011,0.29,0.033c0.069,0.022,0.119,0.057,0.147,0.106
|
||||
c0.031,0.047,0.046,0.115,0.045,0.198l0,0.332c0,0.133,0.085,0.2,0.256,0.199l0,0.249c-0.084,0.001-0.149,0.016-0.192,0.049
|
||||
c-0.043,0.028-0.064,0.08-0.064,0.152l0,0.332c0,0.078-0.014,0.143-0.041,0.193s-0.077,0.086-0.148,0.109
|
||||
c-0.069,0.022-0.168,0.035-0.295,0.037l0-0.243c0.063-0.001,0.111-0.013,0.146-0.033c0.035-0.02,0.052-0.061,0.052-0.123
|
||||
l0.001-0.327c0-0.153,0.077-0.241,0.231-0.265l0-0.012c-0.154-0.025-0.232-0.11-0.231-0.258l0-0.332
|
||||
c0-0.06-0.016-0.099-0.049-0.121c-0.032-0.022-0.081-0.034-0.148-0.035L186.399,67.293z"/>
|
||||
<path id="path13117" fill="#FBBA00" d="M188.129,68.054c-0.064,0.001-0.115-0.016-0.152-0.052
|
||||
c-0.037-0.034-0.054-0.082-0.054-0.146c0-0.133,0.068-0.2,0.207-0.199c0.064-0.001,0.115,0.017,0.149,0.051
|
||||
c0.036,0.035,0.054,0.084,0.055,0.147c-0.001,0.061-0.019,0.11-0.055,0.145S188.192,68.053,188.129,68.054z M188.128,68.938
|
||||
c-0.065-0.001-0.115-0.017-0.153-0.053c-0.035-0.034-0.054-0.084-0.054-0.147c0-0.132,0.069-0.199,0.207-0.199
|
||||
c0.065,0.001,0.116,0.018,0.15,0.052c0.037,0.036,0.055,0.084,0.054,0.147c0.001,0.06-0.018,0.108-0.054,0.146
|
||||
C188.242,68.918,188.192,68.936,188.128,68.938z"/>
|
||||
<path id="path13119" fill="#FBBA00" d="M189.56,69.285c-0.104-0.132-0.183-0.28-0.238-0.448
|
||||
c-0.054-0.167-0.081-0.346-0.081-0.538c0.001-0.193,0.028-0.376,0.083-0.546c0.056-0.17,0.136-0.322,0.239-0.455l0.27,0
|
||||
c-0.102,0.142-0.179,0.3-0.23,0.47c-0.05,0.169-0.076,0.346-0.075,0.53c-0.001,0.178,0.025,0.353,0.077,0.52
|
||||
c0.053,0.168,0.128,0.324,0.223,0.468L189.56,69.285z"/>
|
||||
<path id="path13121" fill="#FBBA00" d="M190.784,67.295c0.104,0.13,0.184,0.281,0.238,0.448c0.054,0.165,0.082,0.345,0.08,0.537
|
||||
c0,0.194-0.028,0.378-0.085,0.548c-0.054,0.17-0.133,0.321-0.236,0.455l-0.27,0c0.101-0.144,0.178-0.299,0.227-0.469
|
||||
c0.052-0.171,0.078-0.348,0.079-0.531c0-0.181-0.026-0.355-0.077-0.522c-0.051-0.168-0.125-0.322-0.224-0.467L190.784,67.295z"/>
|
||||
<path id="path13123" fill="#FBBA00" d="M192.583,69.274c-0.123,0.001-0.22-0.012-0.29-0.033c-0.07-0.022-0.12-0.057-0.15-0.106
|
||||
c-0.029-0.049-0.043-0.116-0.043-0.199l0.001-0.332c0-0.134-0.086-0.199-0.257-0.199l0.001-0.249c0.085,0,0.148-0.016,0.19-0.049
|
||||
c0.044-0.031,0.066-0.082,0.066-0.152l0-0.332c0.001-0.079,0.015-0.143,0.042-0.194c0.028-0.05,0.078-0.086,0.147-0.108
|
||||
c0.07-0.024,0.169-0.037,0.295-0.038l0,0.244c-0.063,0.001-0.111,0.013-0.146,0.033c-0.034,0.019-0.052,0.061-0.052,0.122
|
||||
l0,0.327c0,0.153-0.077,0.24-0.232,0.264l0,0.012c0.154,0.025,0.231,0.111,0.231,0.258l0,0.331c0,0.06,0.015,0.1,0.047,0.121
|
||||
c0.033,0.021,0.084,0.034,0.15,0.035L192.583,69.274z"/>
|
||||
<path id="path13125" fill="#FBBA00" d="M193.577,68.047c-0.065,0-0.116-0.018-0.152-0.052c-0.036-0.035-0.055-0.084-0.055-0.147
|
||||
c0.001-0.132,0.07-0.198,0.207-0.2c0.066,0.002,0.115,0.017,0.151,0.053c0.035,0.033,0.055,0.084,0.055,0.147
|
||||
c0,0.061-0.019,0.108-0.055,0.145C193.691,68.029,193.64,68.047,193.577,68.047z M193.576,68.929
|
||||
c-0.065,0-0.116-0.018-0.151-0.051c-0.037-0.036-0.055-0.085-0.055-0.147c0-0.134,0.069-0.199,0.207-0.2
|
||||
c0.064,0,0.115,0.017,0.15,0.053c0.037,0.034,0.054,0.082,0.054,0.146c0,0.06-0.017,0.109-0.054,0.144
|
||||
C193.689,68.91,193.639,68.928,193.576,68.929z"/>
|
||||
<path id="path13127" fill="#FBBA00" d="M194.809,69.447l0.004-2.262l0.251,0l-0.003,2.261L194.809,69.447z"/>
|
||||
<path id="path13129" fill="#FBBA00" d="M196.3,68.042c-0.065,0.001-0.115-0.016-0.151-0.05c-0.037-0.036-0.055-0.084-0.055-0.148
|
||||
c0-0.134,0.069-0.199,0.207-0.2c0.064,0,0.115,0.017,0.149,0.053c0.037,0.034,0.054,0.082,0.054,0.146
|
||||
c-0.001,0.061-0.018,0.109-0.055,0.145C196.414,68.024,196.364,68.042,196.3,68.042L196.3,68.042z M196.299,68.926
|
||||
c-0.065,0.001-0.115-0.017-0.152-0.053c-0.037-0.034-0.054-0.082-0.054-0.146c0-0.133,0.069-0.2,0.207-0.199
|
||||
c0.065-0.001,0.115,0.017,0.148,0.05c0.037,0.036,0.055,0.085,0.055,0.148c0.001,0.06-0.018,0.11-0.055,0.145
|
||||
C196.413,68.906,196.362,68.925,196.299,68.926L196.299,68.926z"/>
|
||||
<path id="path13131" fill="#FBBA00" d="M197.472,68.923c-0.096,0.001-0.176-0.018-0.24-0.055
|
||||
c-0.062-0.038-0.108-0.089-0.138-0.153c-0.03-0.063-0.045-0.137-0.045-0.218c0-0.092,0.022-0.177,0.064-0.252
|
||||
c0.044-0.076,0.11-0.149,0.198-0.224c-0.03-0.045-0.06-0.098-0.089-0.16c-0.028-0.06-0.043-0.133-0.042-0.212
|
||||
c0-0.118,0.033-0.214,0.1-0.28c0.066-0.069,0.155-0.103,0.265-0.103c0.121,0,0.214,0.032,0.279,0.098
|
||||
c0.068,0.063,0.1,0.151,0.099,0.262c0.001,0.075-0.023,0.147-0.067,0.222c-0.045,0.072-0.106,0.144-0.185,0.218l0.204,0.267
|
||||
c0.02-0.051,0.036-0.099,0.05-0.148c0.013-0.05,0.023-0.094,0.03-0.136l0.291,0c-0.012,0.089-0.034,0.178-0.064,0.271
|
||||
c-0.03,0.091-0.071,0.177-0.12,0.256l0.246,0.325l-0.358,0.001l-0.082-0.112c-0.053,0.039-0.113,0.073-0.18,0.097
|
||||
C197.623,68.911,197.551,68.923,197.472,68.923L197.472,68.923z M197.451,67.629c0.001,0.048,0.007,0.09,0.02,0.129
|
||||
c0.015,0.037,0.031,0.07,0.048,0.1c0.04-0.033,0.072-0.069,0.1-0.108c0.027-0.039,0.042-0.081,0.041-0.13
|
||||
c0-0.044-0.009-0.079-0.027-0.101c-0.018-0.022-0.043-0.035-0.073-0.034c-0.034-0.001-0.06,0.011-0.08,0.035
|
||||
C197.462,67.546,197.452,67.582,197.451,67.629L197.451,67.629z M197.339,68.475c0,0.048,0.014,0.089,0.043,0.128
|
||||
c0.029,0.037,0.071,0.055,0.127,0.055c0.04,0.001,0.076-0.007,0.109-0.022c0.035-0.015,0.067-0.037,0.096-0.061l-0.245-0.339
|
||||
c-0.041,0.038-0.072,0.075-0.096,0.111C197.351,68.383,197.339,68.426,197.339,68.475L197.339,68.475z"/>
|
||||
<path id="path13133" fill="#FBBA00" d="M198.655,67.276c0.124-0.002,0.221,0.01,0.291,0.032s0.119,0.057,0.147,0.106
|
||||
c0.031,0.047,0.045,0.115,0.045,0.198l0,0.335c-0.002,0.131,0.084,0.198,0.255,0.197l0,0.249c-0.085,0-0.149,0.016-0.193,0.049
|
||||
c-0.042,0.029-0.064,0.08-0.064,0.152l-0.001,0.332c0,0.081-0.014,0.146-0.042,0.195c-0.027,0.05-0.077,0.086-0.147,0.109
|
||||
c-0.07,0.024-0.169,0.034-0.295,0.037l0-0.242c0.062-0.003,0.11-0.014,0.145-0.034c0.035-0.021,0.052-0.061,0.052-0.123
|
||||
l0.001-0.327c0-0.15,0.078-0.238,0.232-0.262l-0.001-0.015c-0.154-0.022-0.231-0.11-0.231-0.257l0.002-0.329
|
||||
c0-0.06-0.017-0.102-0.051-0.123c-0.031-0.023-0.08-0.035-0.147-0.036L198.655,67.276z"/>
|
||||
</g>
|
||||
<path id="rect31669-8" fill="#989898" d="M185.916,104.098l-19.634-3.543c-0.792-0.144-1.722,0.182-2.078,0.722l-5.443,8.309
|
||||
c-0.355,0.542-0.001,1.099,0.791,1.241l19.634,3.545c0.792,0.142,1.722-0.181,2.077-0.725l5.444-8.307
|
||||
C187.062,104.796,186.708,104.241,185.916,104.098z"/>
|
||||
<path id="rect31671-7" fill="#2B2B2B" d="M184.968,104.501l-18.412-3.323c-0.715-0.128-1.555,0.165-1.876,0.654l-2.705,4.125
|
||||
c-0.32,0.492,0,0.992,0.715,1.123l18.412,3.322c0.715,0.128,1.555-0.164,1.877-0.654l2.704-4.127
|
||||
C186.004,105.132,185.684,104.631,184.968,104.501z"/>
|
||||
<path id="path31673-9" sodipodi:nodetypes="cc" fill="#989898" stroke="#989898" stroke-linecap="round" d="M186.47,104.886
|
||||
l-0.207,0.843"/>
|
||||
<path id="path31675-2" sodipodi:nodetypes="cc" fill="#989898" stroke="#989898" stroke-linecap="round" d="M158.997,110.002
|
||||
l-0.139,0.62"/>
|
||||
<path id="rect31677-0" fill="#AAAAAB" d="M172.875,109.699l-4.128-0.744c-0.716-0.13-1.556,0.162-1.876,0.653l-0.82,1.249
|
||||
c-0.32,0.489,0,0.992,0.715,1.12l4.129,0.747c0.715,0.128,1.555-0.165,1.876-0.654l0.819-1.25
|
||||
C173.91,110.33,173.59,109.828,172.875,109.699z"/>
|
||||
</g>
|
||||
<path id="ellipse31681-2" fill="#3D2311" d="M202.562,191.208c8.727-2.328,16.434-1.87,17.212,1.029
|
||||
c0.78,2.894-5.663,7.128-14.388,9.455c-8.728,2.329-16.434,1.867-17.212-1.028C187.394,197.77,193.836,193.536,202.562,191.208z"/>
|
||||
|
||||
<path id="path31683-3" sodipodi:end="3.1415927" sodipodi:open="true" sodipodi:ry="5.5844088" sodipodi:start="0" sodipodi:cy="352.84659" sodipodi:rx="16.928846" sodipodi:cx="-250.17326" sodipodi:type="arc" sodipodi:arc-type="arc" fill="none" d="
|
||||
M223.497,218.428c0.401,1.491-1.648,3.51-5.375,5.303c-3.728,1.793-8.569,3.084-12.698,3.39c-4.128,0.303-6.919-0.43-7.32-1.92"/>
|
||||
<path id="path31685-7" fill="#435723" d="M188.173,200.664l9.931,24.536"/>
|
||||
<path id="path31687-5" fill="#435723" d="M219.774,192.237l3.723,26.19"/>
|
||||
|
||||
<path id="path31689-9" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M200.246,191.832c0,0-1.292-1.763-0.861-2.571c0.431-0.808,2.688-0.748,2.688-0.748s0.489-1.063,1.13-1.283
|
||||
c0.64-0.222,1.801-0.08,2.312,0.426s0.376,1.928,0.376,1.928s1.169,1.213,1.237,1.928c0.067,0.715-0.046,1.532-0.752,1.873
|
||||
c-0.708,0.342-2.582-0.748-2.582-0.748s-0.791,0.492-1.452,0.534c-0.66,0.044-2.097-0.062-2.366-0.534
|
||||
C199.708,192.159,200.246,191.832,200.246,191.832L200.246,191.832z"/>
|
||||
<g id="text31693-2" transform="rotate(-9.2157505)">
|
||||
<path id="path13148" fill="#E3C701" d="M169.961,222.459c-0.377-0.002-0.655-0.14-0.832-0.413c-0.177-0.28-0.267-0.677-0.267-1.2
|
||||
c0-0.516,0.087-0.908,0.261-1.177c0.174-0.265,0.445-0.397,0.815-0.398c0.378-0.001,0.655,0.138,0.833,0.418
|
||||
c0.182,0.274,0.271,0.674,0.271,1.197c0.001,0.307-0.034,0.578-0.104,0.818c-0.067,0.236-0.178,0.422-0.335,0.553
|
||||
C170.446,222.393,170.232,222.459,169.961,222.459z M169.472,220.887c0,0.108,0.003,0.208,0.009,0.297l0.758-1.25
|
||||
c-0.073-0.092-0.17-0.137-0.292-0.139c-0.178,0.003-0.301,0.094-0.371,0.284C169.507,220.263,169.473,220.531,169.472,220.887
|
||||
L169.472,220.887z M169.948,221.95c0.181-0.001,0.304-0.087,0.37-0.264c0.066-0.177,0.1-0.44,0.1-0.79
|
||||
c0.001-0.07-0.002-0.134-0.004-0.197c-0.003-0.063-0.007-0.123-0.008-0.181l-0.78,1.261
|
||||
C169.701,221.892,169.81,221.948,169.948,221.95L169.948,221.95z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31695-9" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M193.23,192.725c0,0-1.292-1.764-0.861-2.571c0.431-0.809,2.689-0.748,2.689-0.748s0.49-1.063,1.129-1.285
|
||||
c0.642-0.221,1.801-0.079,2.313,0.428c0.512,0.506,0.377,1.928,0.377,1.928s1.168,1.213,1.236,1.928
|
||||
c0.067,0.714-0.046,1.532-0.752,1.873c-0.707,0.341-2.581-0.748-2.581-0.748s-0.792,0.491-1.452,0.534
|
||||
c-0.661,0.043-2.098-0.063-2.366-0.534C192.694,193.052,193.23,192.725,193.23,192.725z"/>
|
||||
<g id="text31699-7" transform="rotate(-14.760163)">
|
||||
<path id="path13145" fill="#E3C701" d="M140.37,236.836l0-0.44l0.602-0.064l-0.001-1.289c0-0.115,0-0.217,0.004-0.317
|
||||
c0.003-0.099,0.008-0.199,0.013-0.301c-0.045,0.03-0.087,0.059-0.127,0.085c-0.04,0.022-0.077,0.042-0.109,0.06l-0.297,0.16
|
||||
l-0.284-0.51l0.915-0.483l0.514,0l0.004,2.598l0.584,0.065l0.001,0.437L140.37,236.836z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31701-6" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M197.403,189.543c0,0-2.051-0.771-2.134-1.683c-0.084-0.908,1.836-2.094,1.836-2.094s-0.176-1.154,0.238-1.689
|
||||
c0.413-0.534,1.464-1.048,2.169-0.903c0.707,0.144,1.376,1.409,1.376,1.409s1.646,0.374,2.096,0.937
|
||||
c0.45,0.56,0.804,1.307,0.401,1.979c-0.403,0.672-2.573,0.779-2.573,0.779s-0.39,0.843-0.92,1.239
|
||||
c-0.528,0.397-1.789,1.094-2.274,0.845C197.135,190.11,197.403,189.543,197.403,189.543z"/>
|
||||
<g id="text31705-1" transform="rotate(39.769077)">
|
||||
<path id="path13142" fill="#E3C701" d="M272.459,18.464c-0.378-0.001-0.656-0.138-0.831-0.413c-0.177-0.278-0.265-0.677-0.264-1.2
|
||||
c0.002-0.519,0.088-0.913,0.262-1.181c0.175-0.265,0.447-0.399,0.817-0.399c0.376-0.003,0.653,0.137,0.83,0.416
|
||||
c0.178,0.272,0.267,0.673,0.266,1.198c0.001,0.308-0.035,0.581-0.104,0.82c-0.069,0.237-0.181,0.423-0.338,0.557
|
||||
C272.942,18.395,272.729,18.462,272.459,18.464L272.459,18.464z M271.975,16.89c-0.001,0.11,0.002,0.21,0.006,0.299l0.761-1.253
|
||||
c-0.072-0.092-0.169-0.139-0.292-0.139c-0.177,0.001-0.3,0.095-0.37,0.283C272.011,16.266,271.976,16.536,271.975,16.89
|
||||
L271.975,16.89z M272.446,17.953c0.18,0,0.304-0.088,0.371-0.266c0.066-0.176,0.101-0.441,0.101-0.792
|
||||
c0-0.07-0.002-0.135-0.006-0.196c-0.003-0.064-0.003-0.123-0.007-0.181l-0.783,1.266C272.2,17.897,272.306,17.952,272.446,17.953
|
||||
L272.446,17.953z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31707-9" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M201.794,187.187c0,0-1.292-1.762-0.861-2.57c0.431-0.809,2.688-0.749,2.688-0.749s0.489-1.063,1.13-1.287
|
||||
c0.64-0.221,1.801-0.076,2.312,0.431s0.376,1.927,0.376,1.927s1.169,1.214,1.237,1.928c0.067,0.715-0.046,1.528-0.752,1.874
|
||||
c-0.707,0.341-2.581-0.749-2.581-0.749s-0.792,0.492-1.454,0.536c-0.66,0.042-2.097-0.063-2.365-0.536
|
||||
C201.257,187.515,201.794,187.187,201.794,187.187L201.794,187.187z"/>
|
||||
<g id="text31711-3" transform="rotate(-19.98026)">
|
||||
<path id="path13139" fill="#E3C701" d="M127.693,246.512l-0.002-0.436l0.602-0.066l-0.002-1.289c0-0.114,0.001-0.221,0.005-0.319
|
||||
c0.003-0.099,0.005-0.196,0.011-0.297c-0.044,0.029-0.086,0.056-0.126,0.082c-0.041,0.022-0.077,0.041-0.11,0.06l-0.296,0.159
|
||||
l-0.284-0.506l0.915-0.486l0.514,0.002l0.005,2.595l0.583,0.065l0.002,0.44L127.693,246.512z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31713-4" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M206.011,189.243c0,0-1.292-1.763-0.861-2.57c0.431-0.808,2.688-0.748,2.688-0.748s0.49-1.064,1.129-1.288
|
||||
c0.642-0.222,1.801-0.075,2.312,0.431c0.512,0.506,0.376,1.928,0.376,1.928s1.169,1.213,1.237,1.928
|
||||
c0.067,0.715-0.046,1.528-0.752,1.873c-0.707,0.342-2.581-0.748-2.581-0.748s-0.792,0.491-1.453,0.534
|
||||
c-0.661,0.044-2.098-0.063-2.366-0.534C205.475,189.572,206.011,189.243,206.011,189.243L206.011,189.243z"/>
|
||||
<g id="text31717-7" transform="rotate(19.720285)">
|
||||
<path id="path13181" fill="#E3C701" d="M259.436,107.992l0-0.438l0.602-0.065l0.003-1.29c-0.001-0.114,0-0.221,0.004-0.319
|
||||
c0.002-0.099,0.007-0.199,0.015-0.298c-0.045,0.027-0.088,0.055-0.127,0.083c-0.041,0.024-0.078,0.041-0.109,0.059l-0.296,0.16
|
||||
l-0.283-0.507l0.915-0.488l0.514-0.002l-0.003,2.6l0.583,0.064l0,0.439L259.436,107.992z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31721-4" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M205.515,196.099c0,0-1.292-1.759-0.861-2.567s2.689-0.753,2.689-0.753s0.489-1.063,1.129-1.283
|
||||
c0.641-0.222,1.801-0.076,2.312,0.431c0.512,0.503,0.377,1.924,0.377,1.924s1.169,1.214,1.237,1.927
|
||||
c0.067,0.715-0.046,1.532-0.753,1.875c-0.707,0.344-2.581-0.75-2.581-0.75s-0.792,0.492-1.452,0.536
|
||||
c-0.661,0.043-2.098-0.06-2.366-0.536C204.979,196.43,205.515,196.099,205.515,196.099L205.515,196.099z"/>
|
||||
<g id="text31725-5" transform="rotate(19.720285)">
|
||||
<path id="path13178" fill="#E3C701" d="M261.11,114.211l0.001-0.44l0.601-0.066l0.002-1.29c0-0.11,0.003-0.217,0.005-0.315
|
||||
c0.003-0.099,0.008-0.199,0.014-0.301c-0.044,0.031-0.087,0.056-0.127,0.082c-0.04,0.024-0.077,0.044-0.108,0.063l-0.296,0.162
|
||||
l-0.284-0.511l0.916-0.485l0.515-0.001l-0.005,2.595l0.585,0.067l-0.002,0.435L261.11,114.211z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31727-3" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M200.317,198.682c0,0-1.909-1.069-1.852-1.98c0.055-0.915,2.135-1.792,2.135-1.792s0.002-1.17,0.493-1.638
|
||||
c0.49-0.463,1.605-0.81,2.282-0.563c0.676,0.247,1.145,1.598,1.145,1.598s1.569,0.621,1.928,1.244
|
||||
c0.359,0.625,0.596,1.414,0.095,2.015c-0.5,0.605-2.66,0.386-2.66,0.386s-0.515,0.774-1.099,1.088
|
||||
c-0.583,0.312-1.935,0.807-2.377,0.488C199.966,199.206,200.317,198.682,200.317,198.682L200.317,198.682z"/>
|
||||
<g id="text31731-6" transform="rotate(19.720285)">
|
||||
<path id="path13151" fill="#E3C701" d="M255.982,117.401l0.002-0.438l0.601-0.065l0.002-1.291c-0.001-0.113,0.001-0.22,0.004-0.32
|
||||
c0.003-0.098,0.009-0.197,0.015-0.296c-0.045,0.026-0.087,0.055-0.127,0.082c-0.04,0.025-0.078,0.042-0.109,0.059l-0.296,0.161
|
||||
l-0.283-0.507l0.915-0.489l0.516,0l-0.003,2.599l0.582,0.063l0,0.44L255.982,117.401z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31733-0" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M195.782,200.112c0,0-2.131-0.508-2.33-1.4c-0.199-0.894,1.558-2.31,1.558-2.31s-0.322-1.122,0.021-1.705
|
||||
c0.342-0.581,1.319-1.223,2.038-1.168c0.718,0.053,1.542,1.221,1.542,1.221s1.68,0.17,2.198,0.667
|
||||
c0.517,0.5,0.964,1.197,0.649,1.914c-0.314,0.718-2.452,1.096-2.452,1.096s-0.282,0.885-0.757,1.346
|
||||
c-0.474,0.462-1.636,1.31-2.148,1.122S195.782,200.112,195.782,200.112L195.782,200.112z"/>
|
||||
<g id="text31737-6" transform="rotate(19.720285)">
|
||||
<path id="path13184" fill="#E3C701" d="M252.303,120.407c-0.379,0.002-0.655-0.136-0.833-0.411
|
||||
c-0.177-0.278-0.265-0.679-0.264-1.199c0.001-0.518,0.089-0.91,0.265-1.178c0.173-0.267,0.446-0.4,0.814-0.401
|
||||
c0.379-0.002,0.655,0.137,0.833,0.416c0.178,0.274,0.27,0.674,0.268,1.199c-0.001,0.306-0.035,0.579-0.106,0.818
|
||||
c-0.067,0.235-0.179,0.421-0.336,0.553C252.786,120.341,252.573,120.407,252.303,120.407z M251.817,118.837
|
||||
c-0.001,0.107,0.001,0.208,0.007,0.297l0.761-1.25c-0.074-0.094-0.17-0.14-0.292-0.139c-0.179,0-0.302,0.094-0.37,0.283
|
||||
C251.853,118.215,251.817,118.482,251.817,118.837z M252.29,119.899c0.18-0.002,0.303-0.091,0.372-0.264
|
||||
c0.066-0.178,0.1-0.442,0.1-0.794c0.001-0.068-0.001-0.134-0.003-0.192c-0.004-0.065-0.007-0.127-0.008-0.185l-0.783,1.266
|
||||
C252.044,119.843,252.151,119.9,252.29,119.899L252.29,119.899z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31739-2" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M190.388,196.844c0,0-1.29-1.764-0.859-2.572c0.431-0.809,2.688-0.748,2.688-0.748s0.488-1.063,1.129-1.284
|
||||
c0.64-0.223,1.801-0.08,2.313,0.427c0.511,0.506,0.376,1.928,0.376,1.928s1.169,1.213,1.237,1.928
|
||||
c0.068,0.714-0.046,1.531-0.753,1.873c-0.706,0.342-2.582-0.749-2.582-0.749s-0.789,0.493-1.451,0.535
|
||||
c-0.661,0.043-2.099-0.063-2.367-0.535C189.851,197.17,190.388,196.844,190.388,196.844L190.388,196.844z"/>
|
||||
<g id="text31743-0" transform="rotate(19.720285)">
|
||||
<path id="path13154" fill="#E3C701" d="M248.215,120.265c-0.377,0.001-0.655-0.134-0.832-0.41
|
||||
c-0.176-0.278-0.266-0.679-0.264-1.199c0.002-0.518,0.087-0.912,0.264-1.178c0.173-0.268,0.446-0.4,0.816-0.401
|
||||
c0.377-0.001,0.653,0.137,0.831,0.416c0.18,0.275,0.269,0.674,0.269,1.199c-0.002,0.306-0.036,0.579-0.108,0.815
|
||||
c-0.065,0.239-0.178,0.425-0.335,0.557C248.699,120.199,248.484,120.265,248.215,120.265L248.215,120.265z M247.729,118.695
|
||||
c-0.002,0.108,0.002,0.208,0.008,0.297l0.76-1.251c-0.072-0.094-0.17-0.139-0.292-0.139c-0.177-0.001-0.301,0.094-0.37,0.284
|
||||
C247.764,118.068,247.728,118.339,247.729,118.695z M248.203,119.757c0.179-0.002,0.303-0.091,0.369-0.267
|
||||
c0.069-0.175,0.102-0.439,0.102-0.791c0.001-0.068-0.001-0.135-0.005-0.196c-0.002-0.061-0.004-0.124-0.007-0.182l-0.781,1.267
|
||||
C247.956,119.702,248.063,119.758,248.203,119.757L248.203,119.757z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31745-1" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M189.511,200.154c0,0-0.337-2.155,0.417-2.68c0.753-0.521,2.735,0.56,2.735,0.56s0.924-0.725,1.594-0.628
|
||||
c0.671,0.096,1.636,0.751,1.859,1.434c0.223,0.684-0.55,1.887-0.55,1.887s0.482,1.61,0.213,2.276
|
||||
c-0.268,0.665-0.743,1.34-1.529,1.321c-0.786-0.015-1.952-1.842-1.952-1.842s-0.928,0.079-1.536-0.183
|
||||
c-0.607-0.265-1.837-1.014-1.857-1.557C188.882,200.2,189.511,200.154,189.511,200.154L189.511,200.154z"/>
|
||||
<g id="text31749-5" transform="rotate(19.720285)">
|
||||
<path id="path13157" fill="#E3C701" d="M248.921,124.761l0-0.44l0.602-0.065l0.001-1.291c0.001-0.114,0.003-0.218,0.006-0.315
|
||||
c0.003-0.099,0.007-0.199,0.013-0.3c-0.042,0.03-0.085,0.054-0.126,0.081c-0.041,0.024-0.076,0.045-0.109,0.063l-0.296,0.161
|
||||
l-0.283-0.511l0.917-0.485l0.513-0.001l-0.004,2.596l0.585,0.064l-0.001,0.439L248.921,124.761z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31751-4" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M197.074,202.512c0,0-1.292-1.764-0.861-2.572c0.431-0.808,2.688-0.748,2.688-0.748s0.491-1.063,1.13-1.284
|
||||
c0.641-0.221,1.801-0.077,2.313,0.427c0.511,0.506,0.376,1.928,0.376,1.928s1.169,1.213,1.237,1.928
|
||||
c0.067,0.714-0.046,1.532-0.752,1.873c-0.708,0.343-2.581-0.748-2.581-0.748s-0.792,0.492-1.453,0.534
|
||||
c-0.66,0.044-2.097-0.063-2.365-0.534C196.538,202.839,197.074,202.512,197.074,202.512L197.074,202.512z"/>
|
||||
<g id="text31755-7" transform="rotate(-21.969291)">
|
||||
<path id="path13160" fill="#E3C701" d="M109.64,263.611c-0.378,0-0.654-0.14-0.832-0.416c-0.179-0.275-0.266-0.678-0.267-1.199
|
||||
c-0.002-0.518,0.085-0.909,0.258-1.174c0.175-0.266,0.446-0.399,0.814-0.399c0.379,0,0.657,0.138,0.834,0.416
|
||||
c0.18,0.277,0.272,0.675,0.272,1.199c0,0.309-0.034,0.58-0.104,0.819c-0.066,0.235-0.177,0.419-0.334,0.553
|
||||
C110.124,263.543,109.91,263.611,109.64,263.611L109.64,263.611z M109.151,262.037c-0.001,0.111,0.002,0.21,0.007,0.3l0.758-1.251
|
||||
c-0.075-0.09-0.171-0.138-0.294-0.138c-0.175-0.002-0.299,0.092-0.369,0.282C109.183,261.417,109.149,261.686,109.151,262.037
|
||||
L109.151,262.037z M109.627,263.1c0.18,0.003,0.302-0.085,0.369-0.262c0.068-0.177,0.1-0.44,0.099-0.791
|
||||
c0.001-0.07-0.002-0.134-0.005-0.196c-0.003-0.065-0.007-0.124-0.009-0.183l-0.777,1.263
|
||||
C109.379,263.044,109.487,263.102,109.627,263.1L109.627,263.1z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31757-5" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M204.33,202.973c0,0-2.182-0.199-2.507-1.056c-0.323-0.857,1.213-2.503,1.213-2.503s-0.477-1.068-0.221-1.692
|
||||
c0.257-0.625,1.133-1.397,1.853-1.446c0.719-0.048,1.701,0.995,1.701,0.995s1.688-0.069,2.27,0.35
|
||||
c0.583,0.424,1.124,1.049,0.914,1.803c-0.209,0.753-2.272,1.432-2.272,1.432s-0.152,0.914-0.556,1.439
|
||||
c-0.405,0.521-1.434,1.527-1.967,1.411C204.222,203.595,204.33,202.973,204.33,202.973L204.33,202.973z"/>
|
||||
<g id="text31761-69" transform="rotate(0.04946221)">
|
||||
<path id="path13163" fill="#E3C701" d="M205.108,201.331c-0.377,0-0.656-0.137-0.833-0.412c-0.177-0.276-0.266-0.675-0.266-1.198
|
||||
c0-0.517,0.087-0.907,0.261-1.174c0.174-0.267,0.446-0.401,0.816-0.401c0.378,0,0.655,0.137,0.833,0.416
|
||||
c0.18,0.276,0.27,0.675,0.27,1.197c0,0.309-0.036,0.579-0.106,0.817c-0.067,0.239-0.179,0.425-0.336,0.557
|
||||
C205.591,201.266,205.378,201.331,205.108,201.331z M204.619,199.758c0,0.113,0.003,0.213,0.008,0.304l0.759-1.251
|
||||
c-0.072-0.093-0.17-0.14-0.292-0.139c-0.177,0-0.3,0.095-0.37,0.28C204.654,199.137,204.619,199.406,204.619,199.758
|
||||
L204.619,199.758z M205.094,200.826c0.18,0,0.304-0.088,0.371-0.266c0.066-0.178,0.099-0.441,0.099-0.792
|
||||
c0-0.066-0.002-0.134-0.004-0.192c-0.003-0.064-0.006-0.128-0.009-0.183l-0.78,1.259
|
||||
C204.847,200.768,204.956,200.826,205.094,200.826L205.094,200.826z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31763-7" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M207.497,199.531c0,0-1.292-1.76-0.861-2.567c0.431-0.809,2.688-0.749,2.688-0.749s0.49-1.066,1.13-1.288
|
||||
c0.641-0.221,1.801-0.075,2.313,0.431s0.376,1.929,0.376,1.929s1.169,1.213,1.237,1.928c0.068,0.713-0.046,1.527-0.752,1.873
|
||||
c-0.708,0.342-2.581-0.751-2.581-0.751s-0.792,0.491-1.453,0.536c-0.66,0.044-2.097-0.063-2.365-0.536
|
||||
S207.497,199.531,207.497,199.531L207.497,199.531z"/>
|
||||
<g id="text31767-4" transform="rotate(33.621851)">
|
||||
<path id="path13166" fill="#E3C701" d="M284.491,51.557l0.001-0.439l0.601-0.066l0.003-1.291c0-0.113,0.002-0.22,0.006-0.317
|
||||
c0.001-0.101,0.006-0.201,0.012-0.301c-0.044,0.029-0.085,0.056-0.126,0.082c-0.041,0.024-0.077,0.043-0.11,0.061l-0.296,0.163
|
||||
l-0.283-0.509l0.916-0.487l0.513-0.003l-0.004,2.6l0.584,0.065l-0.003,0.437L284.491,51.557z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31769-2" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M210.344,192.425c0,0-1.743-1.318-1.563-2.216c0.18-0.896,2.36-1.484,2.36-1.484s0.163-1.158,0.714-1.552
|
||||
c0.549-0.394,1.703-0.588,2.338-0.251c0.635,0.341,0.915,1.74,0.915,1.74s1.468,0.83,1.738,1.495c0.27,0.664,0.396,1.48-0.182,2.01
|
||||
c-0.58,0.529-2.689,0.019-2.689,0.019s-0.615,0.695-1.237,0.926c-0.62,0.23-2.027,0.538-2.421,0.159
|
||||
C209.925,192.896,210.344,192.425,210.344,192.425L210.344,192.425z"/>
|
||||
<g id="text31773-5" transform="rotate(-26.534582)">
|
||||
<path id="path13175" fill="#E3C701" d="M104.829,267.16c-0.377-0.002-0.656-0.14-0.834-0.414
|
||||
c-0.176-0.281-0.267-0.678-0.266-1.202c-0.001-0.52,0.084-0.911,0.259-1.176c0.174-0.267,0.444-0.398,0.813-0.399
|
||||
c0.377,0.002,0.655,0.141,0.833,0.419c0.181,0.274,0.271,0.674,0.272,1.2c0.001,0.307-0.034,0.579-0.104,0.817
|
||||
c-0.065,0.237-0.177,0.42-0.334,0.555C105.312,267.093,105.099,267.158,104.829,267.16L104.829,267.16z M104.338,265.583
|
||||
c-0.001,0.111,0.003,0.21,0.009,0.299l0.755-1.247c-0.072-0.094-0.17-0.141-0.293-0.14c-0.176-0.002-0.3,0.093-0.369,0.28
|
||||
C104.372,264.961,104.338,265.23,104.338,265.583L104.338,265.583z M104.814,266.65c0.18,0.001,0.303-0.088,0.37-0.263
|
||||
c0.067-0.177,0.101-0.441,0.1-0.792c0-0.07-0.002-0.136-0.004-0.197c-0.005-0.061-0.008-0.123-0.01-0.181l-0.778,1.263
|
||||
C104.568,266.592,104.676,266.649,104.814,266.65L104.814,266.65z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31775-7" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M211.615,195.571c0,0-0.563-2.107,0.131-2.705c0.695-0.599,2.779,0.269,2.779,0.269s0.841-0.814,1.519-0.792
|
||||
c0.678,0.026,1.707,0.576,2,1.233c0.293,0.654-0.348,1.93-0.348,1.93s0.649,1.555,0.452,2.242
|
||||
c-0.196,0.692-0.599,1.413-1.382,1.477c-0.783,0.066-2.134-1.626-2.134-1.626s-0.916,0.174-1.548-0.025
|
||||
c-0.633-0.195-1.934-0.813-2.012-1.352C210.995,195.685,211.615,195.571,211.615,195.571z"/>
|
||||
<g id="text31779-4" transform="rotate(-49.610446)">
|
||||
<path id="path13169" fill="#E3C701" d="M-10.045,291.235c-0.378,0-0.655-0.14-0.833-0.415c-0.177-0.28-0.265-0.681-0.269-1.202
|
||||
c0.001-0.52,0.085-0.911,0.261-1.18c0.173-0.267,0.443-0.398,0.811-0.398c0.378,0,0.654,0.14,0.832,0.42
|
||||
c0.18,0.275,0.271,0.677,0.273,1.201c0,0.309-0.034,0.58-0.104,0.819c-0.064,0.237-0.178,0.424-0.333,0.556
|
||||
S-9.777,291.237-10.045,291.235L-10.045,291.235z M-10.537,289.66c0.003,0.109,0.004,0.21,0.009,0.3l0.756-1.252
|
||||
c-0.074-0.093-0.172-0.14-0.293-0.139c-0.178-0.001-0.299,0.092-0.367,0.28C-10.501,289.034-10.538,289.305-10.537,289.66z
|
||||
M-10.059,290.725c0.179,0.001,0.301-0.085,0.369-0.263c0.066-0.177,0.097-0.439,0.097-0.791c0-0.071-0.002-0.136-0.003-0.198
|
||||
c-0.004-0.063-0.007-0.125-0.01-0.182l-0.775,1.264C-10.306,290.669-10.199,290.726-10.059,290.725L-10.059,290.725z"/>
|
||||
</g>
|
||||
|
||||
<path id="path31781-0" sodipodi:nodetypes="czczzczzczzc" fill="#EEE886" stroke="#E2D161" stroke-width="1.7" stroke-linecap="round" d="
|
||||
M218.09,194.677c0,0-1.57,1.521-2.435,1.21c-0.863-0.312-1.123-2.545-1.123-2.545s-1.125-0.334-1.437-0.932
|
||||
c-0.311-0.602-0.33-1.766,0.101-2.341c0.431-0.575,1.864-0.644,1.864-0.644s1.042-1.32,1.742-1.487
|
||||
c0.701-0.17,1.529-0.171,1.97,0.478c0.439,0.648-0.382,2.65-0.382,2.65s0.6,0.71,0.736,1.354c0.136,0.647,0.233,2.078-0.2,2.411
|
||||
C218.493,195.158,218.09,194.677,218.09,194.677L218.09,194.677z"/>
|
||||
|
||||
<g id="text31785-7" transform="rotate(-32.884345)" inkscape:transform-center-y="0.15679314" inkscape:transform-center-x="-1.0191554">
|
||||
<path id="path13172" fill="#E3C701" d="M76.68,280.328l-0.001-0.442l0.6-0.061l-0.002-1.292c0-0.114,0.001-0.219,0.003-0.318
|
||||
c0.003-0.098,0.007-0.198,0.013-0.3c-0.044,0.03-0.086,0.057-0.126,0.084c-0.041,0.024-0.077,0.042-0.108,0.058l-0.297,0.163
|
||||
l-0.284-0.509l0.915-0.486l0.514,0.001l0.005,2.6l0.584,0.065l0.001,0.44L76.68,280.328z"/>
|
||||
</g>
|
||||
<g id="g31793-6" transform="matrix(1.6638979,-0.44584011,0.44584011,1.6638979,-223.05397,16.35528)">
|
||||
<path id="path31787-8" sodipodi:nodetypes="ccccc" fill="#EC6608" d="M204.781,180.386l-1.882-15.25
|
||||
c0,0.555,0.44,1.099,1.273,1.578l1.632,14.928C205.134,181.26,204.781,180.827,204.781,180.386L204.781,180.386z"/>
|
||||
<path id="path31789-8" sodipodi:nodetypes="ccccc" fill="#EC6608" d="M207.648,167.872c1.443,0.278,3.08,0.426,4.748,0.426
|
||||
l0.016,14.604c-1.339-0.001-2.655-0.119-3.815-0.34L207.648,167.872z"/>
|
||||
<path id="path31791-4" sodipodi:nodetypes="ccccc" fill="#EC6608" d="M216.226,182.57l0.915-14.688
|
||||
c1.443-0.274,2.641-0.672,3.474-1.151l-1.598,14.924C218.348,182.036,217.385,182.352,216.226,182.57z"/>
|
||||
</g>
|
||||
<g id="g31801-3" transform="matrix(1.6638979,-0.44584011,0.44584011,1.6638979,-223.05397,16.35528)">
|
||||
<path id="path31795-1" sodipodi:nodetypes="ccccc" fill="#FBBA00" d="M207.648,167.872c-1.444-0.278-2.643-0.677-3.476-1.159
|
||||
l1.632,14.928c0.67,0.382,1.633,0.699,2.793,0.922L207.648,167.872z"/>
|
||||
<path id="path31797-4" sodipodi:nodetypes="ccccc" fill="#FBBA00" d="M217.141,167.882c-1.442,0.274-3.08,0.42-4.746,0.416
|
||||
l0.016,14.604c1.339,0.001,2.654-0.113,3.814-0.333L217.141,167.882z"/>
|
||||
<path id="path31799-9" sodipodi:nodetypes="ccccc" fill="#FBBA00" d="M220.615,166.731c0.833-0.479,1.27-1.021,1.269-1.573
|
||||
l-1.847,15.245c0.001,0.44-0.351,0.871-1.02,1.251L220.615,166.731z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 59 KiB |
|
@ -10,6 +10,7 @@
|
|||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
sodipodi:docname="intro.svg"
|
||||
enable-background="new"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
|
@ -17,236 +18,695 @@
|
|||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs
|
||||
id="defs815">
|
||||
<linearGradient
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
||||
id="defs815"><rect
|
||||
x="401.42857"
|
||||
y="782.85715"
|
||||
width="1715.5966"
|
||||
height="97.132649"
|
||||
id="rect3" /><rect
|
||||
x="267.14286"
|
||||
y="725.71429"
|
||||
width="1745.1363"
|
||||
height="183.16164"
|
||||
id="rect1" /><rect
|
||||
x="858.10008"
|
||||
y="716.75065"
|
||||
width="285.82597"
|
||||
height="119.08261"
|
||||
id="rect2" /><linearGradient
|
||||
x1="0.14374591"
|
||||
y1="0.61739266"
|
||||
x2="0.74343097"
|
||||
y2="0.21290001"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1842.9241,2732.2473,2732.2473,-1842.9241,-1109.8927,745.05835)"
|
||||
spreadMethod="pad"
|
||||
id="linearGradient936">
|
||||
<stop
|
||||
style="stop-opacity:1;stop-color:#050707"
|
||||
id="linearGradient936"><stop
|
||||
style="stop-color:#004148;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop928" />
|
||||
<stop
|
||||
style="stop-opacity:1;stop-color:#00abbe"
|
||||
offset="0.999999"
|
||||
id="stop930" />
|
||||
<stop
|
||||
style="stop-opacity:1;stop-color:#00abbe"
|
||||
offset="0.99999907"
|
||||
id="stop932" />
|
||||
<stop
|
||||
style="stop-opacity:1;stop-color:#00abbe"
|
||||
id="stop934" /><stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop934" />
|
||||
</linearGradient>
|
||||
<clipPath
|
||||
id="stop1" /></linearGradient><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2216">
|
||||
<path
|
||||
id="clipPath2216"><path
|
||||
d="M 50.315,663.307 H 1558.346 V 2171.338 H 50.315 Z"
|
||||
id="path2214"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2232">
|
||||
<path
|
||||
id="clipPath2232"><path
|
||||
d="M 50.315,663.307 H 1558.346 V 2171.338 H 50.315 Z"
|
||||
id="path2230"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2250">
|
||||
<path
|
||||
id="clipPath2250"><path
|
||||
d="M 50.315,663.307 H 1558.346 V 2171.338 H 50.315 Z"
|
||||
id="path2248"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2270">
|
||||
<path
|
||||
id="clipPath2270"><path
|
||||
d="M 50.315,663.307 H 1558.346 V 2171.338 H 50.315 Z"
|
||||
id="path2268"
|
||||
inkscape:connector-curvature="0" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:connector-curvature="0" /></clipPath>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient936"
|
||||
id="radialGradient1"
|
||||
cx="841.88953"
|
||||
cy="2033.8579"
|
||||
fx="841.88953"
|
||||
fy="2033.8579"
|
||||
r="841.88953"
|
||||
gradientTransform="matrix(3.3543157,0.02244191,-0.00338212,3.2024423,-1975.1949,-4148.2693)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="pad" /></defs><sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="809.28571"
|
||||
inkscape:cy="499.28571"
|
||||
inkscape:zoom="0.49497475"
|
||||
inkscape:cx="967.72613"
|
||||
inkscape:cy="897.01545"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:window-width="2256"
|
||||
inkscape:window-height="1397"
|
||||
inkscape:window-width="2194"
|
||||
inkscape:window-height="1166"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<metadata
|
||||
id="metadata818">
|
||||
<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 />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:deskcolor="#d1d1d1" /><metadata
|
||||
id="metadata818"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
|
||||
inkscape:label="background"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(1.1402922,0,0,-0.45303211,-3.01119e-5,1080)"
|
||||
id="g926">
|
||||
<path
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true"><g
|
||||
transform="matrix(1.1402922,0,0,-0.45303211,0,1080)"
|
||||
id="g926"><path
|
||||
d="M 0,0 H 1683.779 V 2383.937 H 0 Z"
|
||||
style="fill:url(#linearGradient936);stroke:none"
|
||||
style="fill:url(#radialGradient1);stroke:none"
|
||||
id="path938"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" /></g></g><g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="kringel"
|
||||
style="display:inline">
|
||||
inkscape:label="logo"
|
||||
style="display:inline"><g
|
||||
id="glogo"><g
|
||||
id="g8037-6"
|
||||
transform="matrix(5.414656,0,0,5.414656,-3282.299,-4448.4489)"
|
||||
inkscape:label="fsck-banner">
|
||||
<path
|
||||
id="path8023-7"
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
fill="#122e5c"
|
||||
d="m 718.288,914.687 c 43.321,-4.726 86.784,-4.782 130.393,0 v -32.145 -32.147 c -43.609,4.782 -87.072,4.727 -130.393,0 v 32.147 z" />
|
||||
|
||||
<path
|
||||
id="path8033-5"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
|
||||
fill="#fbba00"
|
||||
d="m 740.355,878.988 -3.022,-0.03 v -6.423 l -3.012,-0.129 v -7.934 l -3.014,-0.154 v -7.003 l -6.029,-0.557 V 864 l 3.004,0.161 v 7.898 l 3.016,0.189 v 6.649 l 3.049,0.03 v 3.615 3.613 l -3.049,0.032 v 6.647 l -3.016,0.189 v 7.897 l -3.004,0.164 v 7.241 l 6.029,-0.56 v -7.002 l 3.014,-0.155 v -7.934 l 3.012,-0.129 v -6.422 l 3.022,-0.028 v -3.555 z m 101.337,22.097 -3.014,-0.164 v -7.904 l -3.013,-0.189 v -6.641 l -3.014,-0.032 v -7.229 l 3.014,-0.03 v -6.641 l 3.013,-0.191 v -7.904 l 3.014,-0.162 v -7.239 l -6.026,0.559 v 6.999 l -3.014,0.154 v 7.942 l -3.014,0.131 v 6.412 l -3.013,0.03 v -20.945 l -6.026,0.406 v 48.187 l 6.026,0.404 v -14.607 l 3.013,0.106 v 7.924 l 3.014,0.147 v 6.896 l 9.04,0.817 z m -24.949,-8.84 -6.026,-0.026 v 7.396 l -6.026,-0.226 v -7.151 l -3.013,0.02 v -19.432 l 3.013,0.02 v -7.151 l 6.026,-0.226 v 7.395 l 6.026,-0.025 v -7.619 l -3.013,0.128 v -6.51 l -12.053,0.489 v 6.47 l -3.014,0.093 v 6.913 l -3.013,-0.026 v 19.531 l 3.013,-0.026 v 6.914 l 3.014,0.093 v 6.469 l 12.053,0.488 v -6.508 l 3.013,0.126 z m -24.95,-6.407 -3.013,-0.01 v -6.571 l -12.052,-0.008 v -13.161 l 6.027,0.065 v 6.554 l 6.025,0.018 v -6.614 l -3.014,0.034 v -6.55 l -12.052,-0.079 v 6.511 l -3.013,-0.074 v 13.268 l 3.013,0.015 v 6.608 l 12.052,-0.023 v 13.115 l -9.039,0.057 v -6.639 l -6.026,-0.042 v 6.816 l 3.013,-0.075 v 6.511 l 15.066,-0.059 v -6.536 l 3.013,0.053 z m -24.948,-26.472 -21.092,-0.963 v 48.279 l 6.027,-0.354 v -20.335 l 12.052,-0.092 v -6.716 l -12.052,-0.093 v -13.805 l 15.065,0.629 z" />
|
||||
</g><g
|
||||
id="g31679-7"
|
||||
transform="matrix(8.1589796,1.3815422,-1.3815422,8.1589796,-157.65602,-495.60895)">
|
||||
<path
|
||||
id="rect31651-0"
|
||||
fill="#989898"
|
||||
d="m 185.745,104.822 -19.633,-3.544 c -0.793,-0.143 -1.723,0.181 -2.078,0.724 l -5.442,8.307 c -0.355,0.543 -0.002,1.098 0.791,1.242 l 19.633,3.542 c 0.793,0.144 1.723,-0.179 2.079,-0.722 l 5.443,-8.307 c 0.354,-0.543 0,-1.098 -0.793,-1.242 z" />
|
||||
<path
|
||||
id="rect31653-9"
|
||||
fill="#989898"
|
||||
d="m 168.58,85.872 19.753,3.528 c 0.798,0.144 1.337,0.919 1.206,1.738 l -2.007,12.506 c -0.132,0.816 -0.884,1.363 -1.681,1.219 l -19.753,-3.527 c -0.797,-0.143 -1.337,-0.921 -1.206,-1.738 l 2.007,-12.506 c 0.132,-0.816 0.884,-1.363 1.681,-1.22 z" />
|
||||
<path
|
||||
id="rect31655-3"
|
||||
fill="#2b2b2b"
|
||||
d="m 169.07,86.755 18.524,3.309 c 0.719,0.128 1.207,0.831 1.089,1.569 l -1.805,11.246 c -0.118,0.738 -0.798,1.231 -1.517,1.104 l -18.524,-3.31 c -0.719,-0.13 -1.207,-0.83 -1.089,-1.567 l 1.804,-11.248 c 0.119,-0.738 0.799,-1.233 1.518,-1.103 z" />
|
||||
<g
|
||||
transform="matrix(4.7921549e-5,-0.06835509,0.06253675,4.3877996e-5,-41.4189,25.351312)"
|
||||
id="g946">
|
||||
<g
|
||||
transform="translate(-3708.9082,8836.2646)"
|
||||
id="g948" />
|
||||
id="text31667-6"
|
||||
transform="rotate(10.109675)">
|
||||
<path
|
||||
id="path13031"
|
||||
fill="#fbba00"
|
||||
d="m 182.628,57.851 c -0.167,-0.005 -0.31,-0.036 -0.429,-0.09 L 182.2,57.48 c 0.056,0.031 0.122,0.059 0.202,0.086 0.08,0.026 0.155,0.038 0.227,0.043 v -0.387 c -0.151,-0.058 -0.26,-0.12 -0.328,-0.184 -0.067,-0.064 -0.1,-0.149 -0.1,-0.253 0,-0.124 0.041,-0.22 0.121,-0.29 0.079,-0.07 0.183,-0.112 0.308,-0.126 l 0.001,-0.156 0.147,0.002 0.001,0.153 c 0.07,0.003 0.141,0.013 0.208,0.028 0.068,0.016 0.132,0.039 0.193,0.068 l -0.087,0.242 c -0.05,-0.023 -0.102,-0.042 -0.158,-0.055 -0.054,-0.014 -0.106,-0.023 -0.156,-0.027 v 0.366 c 0.082,0.031 0.154,0.063 0.217,0.099 0.063,0.036 0.113,0.08 0.147,0.134 0.037,0.051 0.054,0.118 0.054,0.196 0.001,0.113 -0.035,0.207 -0.107,0.283 -0.069,0.078 -0.174,0.125 -0.313,0.145 v 0.215 h -0.147 z m 0.002,-1.227 c -0.095,0.013 -0.142,0.063 -0.143,0.15 0,0.035 0.012,0.065 0.036,0.089 0.024,0.022 0.06,0.045 0.106,0.064 z m 0.146,0.97 c 0.092,-0.017 0.136,-0.071 0.137,-0.157 0,-0.04 -0.012,-0.07 -0.035,-0.091 -0.022,-0.023 -0.057,-0.045 -0.102,-0.067 z" />
|
||||
<path
|
||||
id="path13033"
|
||||
fill="#fbba00"
|
||||
d="m 184.059,57.067 c -0.065,10e-4 -0.115,-0.017 -0.151,-0.05 -0.037,-0.036 -0.055,-0.084 -0.054,-0.148 0,-0.133 0.069,-0.198 0.207,-0.199 0.064,0 0.115,0.017 0.149,0.052 0.037,0.034 0.055,0.084 0.054,0.146 10e-4,0.062 -0.018,0.109 -0.055,0.145 -0.036,0.037 -0.086,0.055 -0.15,0.054 z m -0.001,0.883 c -0.064,10e-4 -0.115,-0.018 -0.152,-0.053 -0.036,-0.034 -0.054,-0.082 -0.054,-0.146 0,-0.133 0.069,-0.2 0.207,-0.199 0.065,-10e-4 0.115,0.017 0.15,0.051 0.036,0.035 0.053,0.084 0.053,0.147 0.001,0.06 -0.018,0.11 -0.054,0.146 -0.037,0.034 -0.087,0.053 -0.15,0.054 z" />
|
||||
<path
|
||||
id="path13035"
|
||||
fill="#fbba00"
|
||||
d="m 185.49,58.298 c -0.104,-0.13 -0.183,-0.28 -0.238,-0.448 -0.054,-0.167 -0.08,-0.345 -0.08,-0.537 0,-0.195 0.028,-0.377 0.082,-0.549 0.056,-0.17 0.136,-0.322 0.239,-0.455 h 0.27 c -0.101,0.145 -0.177,0.302 -0.23,0.472 -0.05,0.168 -0.075,0.343 -0.075,0.529 -0.001,0.18 0.025,0.353 0.077,0.52 0.053,0.168 0.127,0.323 0.223,0.467 z" />
|
||||
<path
|
||||
id="path13037"
|
||||
fill="#fbba00"
|
||||
d="m 186.714,56.308 c 0.104,0.132 0.184,0.281 0.238,0.448 0.054,0.165 0.081,0.345 0.081,0.538 0,0.195 -0.029,0.376 -0.085,0.546 -0.056,0.17 -0.134,0.322 -0.237,0.455 h -0.27 c 0.102,-0.143 0.177,-0.298 0.228,-0.467 0.052,-0.171 0.077,-0.349 0.078,-0.532 0,-0.179 -0.025,-0.352 -0.076,-0.519 -0.051,-0.168 -0.125,-0.323 -0.224,-0.47 z" />
|
||||
<path
|
||||
id="path13039"
|
||||
fill="#fbba00"
|
||||
d="m 188.513,58.288 c -0.123,-10e-4 -0.22,-0.011 -0.291,-0.034 -0.07,-0.02 -0.12,-0.058 -0.15,-0.106 -0.029,-0.05 -0.042,-0.115 -0.043,-0.199 l 0.001,-0.332 c 0,-0.134 -0.086,-0.199 -0.258,-0.2 v -0.249 c 0.085,0 0.149,-0.016 0.192,-0.046 0.043,-0.033 0.066,-0.083 0.066,-0.152 v -0.334 c 0.001,-0.08 0.014,-0.144 0.042,-0.195 0.029,-0.048 0.078,-0.086 0.148,-0.109 0.069,-0.024 0.168,-0.037 0.296,-0.036 l -0.002,0.242 c -0.062,0.002 -0.109,0.013 -0.145,0.036 -0.036,0.018 -0.052,0.058 -0.053,0.121 v 0.329 c 0,0.151 -0.078,0.238 -0.233,0.262 l 0.001,0.015 c 0.154,0.023 0.231,0.108 0.231,0.257 l -0.001,0.33 c 0.001,0.06 0.016,0.102 0.048,0.122 0.032,0.02 0.083,0.033 0.15,0.037 z" />
|
||||
<path
|
||||
id="path13041"
|
||||
fill="#fbba00"
|
||||
d="m 189.507,57.06 c -0.065,10e-4 -0.116,-0.017 -0.153,-0.053 -0.036,-0.033 -0.054,-0.082 -0.054,-0.145 0,-0.134 0.069,-0.201 0.207,-0.2 0.064,-10e-4 0.115,0.017 0.149,0.051 0.037,0.035 0.054,0.084 0.054,0.147 0,0.06 -0.018,0.11 -0.054,0.146 -0.036,0.035 -0.085,0.053 -0.149,0.054 z m -0.001,0.882 c -0.065,0 -0.116,-0.018 -0.152,-0.052 -0.037,-0.036 -0.055,-0.084 -0.054,-0.148 0,-0.131 0.069,-0.198 0.206,-0.199 0.066,0.002 0.115,0.017 0.15,0.053 0.036,0.033 0.055,0.084 0.054,0.148 0,0.06 -0.019,0.107 -0.054,0.144 -0.037,0.037 -0.086,0.055 -0.15,0.054 z" />
|
||||
<path
|
||||
id="path13043"
|
||||
fill="#fbba00"
|
||||
d="m 190.74,58.461 0.003,-2.264 h 0.252 l -0.003,2.263 z" />
|
||||
<path
|
||||
id="path13045"
|
||||
fill="#fbba00"
|
||||
d="m 192.231,57.057 c -0.066,-0.002 -0.117,-0.019 -0.152,-0.053 -0.037,-0.034 -0.055,-0.084 -0.054,-0.148 0,-0.131 0.069,-0.198 0.206,-0.199 0.066,0.001 0.116,0.018 0.151,0.053 0.036,0.033 0.054,0.084 0.054,0.148 0,0.06 -0.019,0.106 -0.054,0.144 -0.038,0.036 -0.088,0.055 -0.151,0.055 z m -0.002,0.88 c -0.064,0.001 -0.115,-0.016 -0.151,-0.05 -0.037,-0.036 -0.054,-0.084 -0.054,-0.148 0,-0.134 0.069,-0.198 0.207,-0.2 0.065,0 0.115,0.017 0.15,0.053 0.036,0.034 0.054,0.082 0.053,0.145 0,0.061 -0.018,0.11 -0.055,0.145 -0.036,0.037 -0.087,0.056 -0.15,0.055 z" />
|
||||
<path
|
||||
id="path13047"
|
||||
fill="#fbba00"
|
||||
d="m 193.403,57.937 c -0.096,0 -0.178,-0.02 -0.241,-0.058 -0.062,-0.037 -0.109,-0.089 -0.138,-0.15 -0.03,-0.066 -0.045,-0.138 -0.045,-0.221 0,-0.092 0.021,-0.173 0.064,-0.249 0.044,-0.075 0.11,-0.151 0.198,-0.224 -0.031,-0.047 -0.06,-0.099 -0.089,-0.161 -0.028,-0.062 -0.042,-0.132 -0.042,-0.213 0,-0.119 0.034,-0.212 0.1,-0.281 0.067,-0.068 0.156,-0.101 0.266,-0.103 0.122,10e-4 0.215,0.034 0.279,0.098 0.066,0.062 0.1,0.15 0.1,0.261 0,0.075 -0.023,0.149 -0.068,0.223 -0.044,0.072 -0.105,0.146 -0.184,0.217 l 0.203,0.266 c 0.021,-0.048 0.037,-0.099 0.05,-0.148 0.014,-0.048 0.025,-0.094 0.03,-0.136 l 0.291,10e-4 c -0.013,0.088 -0.034,0.18 -0.064,0.271 -0.031,0.091 -0.07,0.177 -0.12,0.256 l 0.247,0.326 h -0.359 L 193.8,57.801 c -0.053,0.041 -0.113,0.072 -0.179,0.096 -0.068,0.026 -0.14,0.039 -0.218,0.04 z m -0.021,-1.293 c 0,0.046 0.007,0.09 0.02,0.127 0.015,0.039 0.031,0.073 0.047,0.1 0.04,-0.033 0.073,-0.068 0.1,-0.105 0.027,-0.039 0.041,-0.084 0.041,-0.132 0,-0.045 -0.009,-0.08 -0.027,-0.102 -0.018,-0.021 -0.042,-0.033 -0.072,-0.033 -0.034,-0.001 -0.06,0.011 -0.079,0.037 -0.02,0.022 -0.03,0.059 -0.03,0.108 z m -0.112,0.846 c 0,0.045 0.014,0.089 0.043,0.126 0.03,0.039 0.07,0.056 0.127,0.057 0.039,-0.002 0.076,-0.009 0.108,-0.024 0.035,-0.015 0.068,-0.034 0.096,-0.062 l -0.245,-0.338 c -0.041,0.037 -0.073,0.074 -0.096,0.111 -0.022,0.037 -0.034,0.078 -0.033,0.13 z" />
|
||||
<path
|
||||
id="path13049"
|
||||
fill="#fbba00"
|
||||
d="m 194.586,56.288 c 0.124,0 0.22,0.011 0.291,0.034 0.069,0.02 0.118,0.056 0.148,0.107 0.03,0.048 0.044,0.112 0.045,0.198 l -0.001,0.332 c 0,0.134 0.086,0.201 0.257,0.2 v 0.249 c -0.085,0 -0.149,0.015 -0.194,0.046 -0.042,0.031 -0.063,0.08 -0.064,0.152 v 0.333 c 0,0.081 -0.014,0.145 -0.041,0.195 -0.027,0.048 -0.076,0.086 -0.147,0.108 -0.07,0.022 -0.168,0.035 -0.295,0.037 v -0.242 c 0.062,-0.004 0.11,-0.015 0.145,-0.035 0.035,-0.018 0.052,-0.059 0.053,-0.121 l -10e-4,-0.329 c 10e-4,-0.15 0.078,-0.238 0.232,-0.263 l -0.001,-0.015 c -0.154,-0.022 -0.231,-0.108 -0.231,-0.257 l 0.002,-0.329 c 0,-0.06 -0.018,-0.102 -0.05,-0.123 -0.031,-0.021 -0.08,-0.033 -0.148,-0.036 z" />
|
||||
<path
|
||||
id="path13051"
|
||||
fill="#fbba00"
|
||||
d="m 196.366,57.05 c -0.065,0.001 -0.116,-0.016 -0.152,-0.052 -0.037,-0.035 -0.055,-0.083 -0.055,-0.146 0,-0.133 0.069,-0.201 0.207,-0.199 0.065,-10e-4 0.115,0.017 0.15,0.051 0.037,0.035 0.055,0.084 0.054,0.147 0,0.06 -0.018,0.11 -0.054,0.145 -0.037,0.035 -0.087,0.053 -0.15,0.054 z m -0.292,1.212 c 0.017,-0.066 0.033,-0.138 0.048,-0.22 0.015,-0.081 0.029,-0.158 0.041,-0.235 0.014,-0.08 0.026,-0.146 0.035,-0.205 h 0.311 l 0.016,0.026 c -0.012,0.049 -0.03,0.11 -0.051,0.184 -0.019,0.073 -0.043,0.149 -0.07,0.23 -0.026,0.079 -0.055,0.153 -0.087,0.222 z" />
|
||||
<path
|
||||
id="path13053"
|
||||
fill="#fbba00"
|
||||
d="m 197.678,57.048 c -0.065,0.002 -0.116,-0.016 -0.153,-0.053 -0.036,-0.033 -0.054,-0.081 -0.053,-0.145 0,-0.134 0.068,-0.201 0.206,-0.199 0.065,0 0.115,0.017 0.15,0.05 0.036,0.037 0.055,0.085 0.054,0.148 0,0.06 -0.018,0.11 -0.055,0.145 -0.036,0.035 -0.086,0.053 -0.149,0.054 z m -0.001,0.884 c -0.066,-0.002 -0.116,-0.017 -0.153,-0.053 -0.036,-0.033 -0.055,-0.084 -0.055,-0.148 0.001,-0.131 0.07,-0.198 0.207,-0.199 0.066,0.002 0.116,0.02 0.15,0.052 0.037,0.036 0.055,0.085 0.054,0.148 0,0.06 -0.019,0.107 -0.054,0.145 -0.036,0.035 -0.086,0.053 -0.149,0.055 z" />
|
||||
<path
|
||||
id="path13055"
|
||||
fill="#fbba00"
|
||||
d="m 198.67,56.282 c 0.125,0.001 0.221,0.01 0.291,0.034 0.069,0.02 0.119,0.057 0.148,0.107 0.03,0.048 0.045,0.113 0.046,0.199 l -0.001,0.332 c 0,0.133 0.086,0.199 0.257,0.199 v 0.249 c -0.085,0 -0.15,0.016 -0.194,0.046 -0.042,0.032 -0.063,0.083 -0.063,0.152 v 0.334 c 0,0.079 -0.014,0.144 -0.042,0.195 -0.027,0.049 -0.077,0.085 -0.147,0.108 -0.07,0.023 -0.168,0.036 -0.295,0.036 v -0.241 c 0.061,-0.004 0.11,-0.016 0.145,-0.036 0.036,-0.018 0.053,-0.058 0.052,-0.121 l 0.001,-0.329 c 0,-0.15 0.077,-0.237 0.232,-0.262 v -0.013 c -0.154,-0.024 -0.23,-0.109 -0.231,-0.259 l 0.001,-0.329 c 0.001,-0.061 -0.016,-0.101 -0.049,-0.121 -0.031,-0.023 -0.08,-0.035 -0.148,-0.039 z" />
|
||||
<path
|
||||
id="path13057"
|
||||
fill="#fbba00"
|
||||
d="m 182.623,61.514 c -0.166,-0.004 -0.309,-0.034 -0.428,-0.089 l 0.001,-0.281 c 0.055,0.031 0.122,0.059 0.202,0.086 0.08,0.025 0.156,0.04 0.227,0.043 v -0.388 c -0.151,-0.058 -0.261,-0.12 -0.329,-0.184 -0.067,-0.065 -0.1,-0.15 -0.1,-0.254 0,-0.124 0.041,-0.22 0.121,-0.29 0.08,-0.071 0.184,-0.11 0.309,-0.124 v -0.156 l 0.148,-0.001 -0.001,0.154 c 0.072,0.003 0.142,0.012 0.209,0.029 0.067,0.014 0.132,0.037 0.193,0.066 l -0.087,0.242 c -0.05,-0.023 -0.103,-0.042 -0.158,-0.055 -0.055,-0.014 -0.107,-0.023 -0.157,-0.027 v 0.366 c 0.081,0.03 0.153,0.062 0.217,0.099 0.064,0.036 0.113,0.08 0.147,0.133 0.036,0.052 0.055,0.118 0.054,0.197 0,0.113 -0.035,0.206 -0.108,0.282 -0.068,0.079 -0.173,0.126 -0.313,0.145 v 0.216 h -0.147 z m 0.002,-1.226 c -0.096,0.013 -0.143,0.062 -0.144,0.149 0,0.035 0.012,0.065 0.037,0.089 0.025,0.023 0.06,0.045 0.107,0.067 z m 0.146,0.97 c 0.091,-0.017 0.136,-0.071 0.136,-0.157 -0.001,-0.04 -0.012,-0.07 -0.034,-0.092 -0.023,-0.022 -0.057,-0.044 -0.101,-0.063 z" />
|
||||
<path
|
||||
id="path13059"
|
||||
fill="#fbba00"
|
||||
d="m 184.422,61.957 c -0.122,-10e-4 -0.219,-0.01 -0.29,-0.035 -0.069,-0.019 -0.12,-0.053 -0.149,-0.105 -0.03,-0.05 -0.043,-0.115 -0.044,-0.2 l 0.001,-0.332 c 0,-0.133 -0.086,-0.199 -0.257,-0.199 v -0.249 c 0.085,0 0.149,-0.015 0.191,-0.046 0.044,-0.033 0.066,-0.081 0.066,-0.152 l 0.001,-0.332 c -0.001,-0.081 0.013,-0.146 0.041,-0.197 0.029,-0.048 0.078,-0.086 0.147,-0.108 0.07,-0.024 0.168,-0.037 0.295,-0.036 v 0.242 c -0.062,0.002 -0.111,0.013 -0.145,0.035 -0.035,0.019 -0.052,0.059 -0.053,0.12 v 0.33 c 0,0.15 -0.078,0.238 -0.232,0.262 v 0.014 c 0.154,0.023 0.231,0.109 0.232,0.258 l -0.001,0.329 c 0,0.06 0.017,0.102 0.048,0.123 0.033,0.021 0.083,0.034 0.15,0.035 z" />
|
||||
<path
|
||||
id="path13061"
|
||||
fill="#fbba00"
|
||||
d="m 185.415,60.73 c -0.064,0.001 -0.115,-0.017 -0.151,-0.053 -0.036,-0.033 -0.054,-0.082 -0.054,-0.145 0,-0.133 0.069,-0.201 0.207,-0.199 0.065,-10e-4 0.114,0.016 0.149,0.05 0.037,0.036 0.055,0.084 0.055,0.148 0,0.06 -0.019,0.109 -0.055,0.145 -0.037,0.035 -0.087,0.054 -0.151,0.054 z m 0,0.883 c -0.066,-0.002 -0.116,-0.018 -0.153,-0.053 -0.036,-0.034 -0.055,-0.084 -0.055,-0.148 0.001,-0.131 0.07,-0.199 0.207,-0.2 0.066,0.002 0.115,0.019 0.151,0.053 0.036,0.035 0.055,0.085 0.054,0.148 0,0.06 -0.019,0.107 -0.055,0.145 -0.035,0.036 -0.086,0.054 -0.149,0.055 z" />
|
||||
<path
|
||||
id="path13063"
|
||||
fill="#fbba00"
|
||||
d="m 186.649,62.131 0.003,-2.263 0.252,10e-4 -0.003,2.262 z" />
|
||||
<path
|
||||
id="path13065"
|
||||
fill="#fbba00"
|
||||
d="m 188.14,60.727 c -0.066,-0.002 -0.116,-0.017 -0.153,-0.053 -0.036,-0.033 -0.054,-0.084 -0.054,-0.148 0.001,-0.131 0.07,-0.198 0.206,-0.199 0.066,0.001 0.116,0.018 0.15,0.052 0.037,0.036 0.055,0.084 0.054,0.148 0,0.06 -0.018,0.108 -0.054,0.145 -0.035,0.036 -0.085,0.054 -0.149,0.055 z m -0.002,0.881 c -0.065,0 -0.116,-0.018 -0.151,-0.05 -0.037,-0.036 -0.055,-0.085 -0.055,-0.148 0,-0.133 0.07,-0.198 0.207,-0.2 0.064,-10e-4 0.115,0.017 0.149,0.053 0.036,0.033 0.054,0.082 0.054,0.146 0,0.06 -0.018,0.109 -0.054,0.145 -0.036,0.037 -0.085,0.055 -0.15,0.054 z" />
|
||||
<path
|
||||
id="path13067"
|
||||
fill="#fbba00"
|
||||
d="m 189.312,61.607 c -0.097,0 -0.177,-0.019 -0.241,-0.058 -0.063,-0.038 -0.108,-0.087 -0.139,-0.15 -0.03,-0.065 -0.045,-0.137 -0.045,-0.219 0.001,-0.093 0.023,-0.176 0.065,-0.251 0.044,-0.075 0.109,-0.151 0.198,-0.224 -0.03,-0.044 -0.059,-0.098 -0.088,-0.161 -0.029,-0.063 -0.043,-0.132 -0.043,-0.214 0,-0.118 0.034,-0.211 0.101,-0.28 0.067,-0.067 0.156,-0.101 0.265,-0.103 0.121,10e-4 0.214,0.034 0.279,0.098 0.066,0.063 0.1,0.15 0.099,0.262 0.001,0.074 -0.022,0.148 -0.068,0.222 -0.043,0.072 -0.105,0.146 -0.184,0.217 l 0.204,0.267 c 0.021,-0.049 0.037,-0.098 0.05,-0.148 0.014,-0.048 0.023,-0.095 0.03,-0.135 h 0.29 c -0.013,0.088 -0.034,0.18 -0.064,0.271 -0.03,0.094 -0.071,0.177 -0.121,0.256 l 0.247,0.326 h -0.359 l -0.081,-0.109 c -0.053,0.04 -0.112,0.073 -0.18,0.098 -0.064,0.023 -0.136,0.035 -0.215,0.035 z m -0.021,-1.293 c 0,0.045 0.006,0.089 0.02,0.127 0.015,0.038 0.031,0.072 0.048,0.101 0.039,-0.035 0.072,-0.07 0.099,-0.108 0.028,-0.039 0.042,-0.083 0.042,-0.13 0,-0.046 -0.009,-0.081 -0.028,-0.103 -0.018,-0.023 -0.042,-0.033 -0.072,-0.034 -0.034,0 -0.06,0.011 -0.08,0.037 -0.019,0.023 -0.029,0.06 -0.029,0.11 z m -0.112,0.845 c -0.001,0.046 0.014,0.089 0.042,0.125 0.029,0.039 0.072,0.058 0.128,0.057 0.039,0 0.075,-0.008 0.108,-0.024 0.036,-0.014 0.068,-0.034 0.096,-0.061 l -0.244,-0.339 c -0.041,0.037 -0.073,0.074 -0.096,0.112 -0.022,0.038 -0.035,0.08 -0.034,0.13 z" />
|
||||
<path
|
||||
id="path13069"
|
||||
fill="#fbba00"
|
||||
d="m 190.494,59.957 c 0.125,10e-4 0.221,0.011 0.291,0.035 0.069,0.019 0.12,0.057 0.148,0.106 0.03,0.048 0.045,0.114 0.045,0.199 l -0.001,0.332 c 0,0.133 0.086,0.199 0.257,0.199 v 0.249 c -0.085,0.001 -0.149,0.015 -0.194,0.046 -0.042,0.031 -0.063,0.083 -0.064,0.152 v 0.334 c -0.001,0.08 -0.015,0.144 -0.042,0.195 -0.027,0.05 -0.077,0.086 -0.148,0.109 -0.07,0.022 -0.167,0.035 -0.296,0.035 l 0.001,-0.241 c 0.061,-0.004 0.11,-0.016 0.144,-0.035 0.036,-0.018 0.053,-0.059 0.053,-0.122 l -10e-4,-0.329 c 0,-0.15 0.078,-0.237 0.233,-0.262 v -0.012 c -0.154,-0.025 -0.231,-0.11 -0.231,-0.259 l 0.001,-0.33 c -0.001,-0.06 -0.017,-0.099 -0.05,-0.121 -0.032,-0.023 -0.08,-0.035 -0.148,-0.037 z" />
|
||||
<path
|
||||
id="path13071"
|
||||
fill="#fbba00"
|
||||
d="m 192.275,60.72 c -0.064,0 -0.116,-0.018 -0.152,-0.05 -0.036,-0.037 -0.054,-0.085 -0.054,-0.148 0,-0.134 0.069,-0.199 0.207,-0.199 0.065,-10e-4 0.114,0.016 0.15,0.052 0.035,0.034 0.054,0.082 0.054,0.146 0,0.06 -0.019,0.109 -0.055,0.145 -0.036,0.036 -0.086,0.054 -0.15,0.054 z m -0.292,1.215 c 0.016,-0.068 0.033,-0.141 0.048,-0.223 0.015,-0.079 0.029,-0.158 0.041,-0.236 0.014,-0.076 0.026,-0.145 0.034,-0.204 l 0.311,0.001 0.016,0.025 c -0.013,0.048 -0.029,0.112 -0.051,0.184 -0.02,0.072 -0.044,0.149 -0.071,0.229 -0.026,0.081 -0.055,0.155 -0.087,0.222 z" />
|
||||
<path
|
||||
id="path13073"
|
||||
fill="#fbba00"
|
||||
d="m 193.587,60.718 c -0.065,10e-4 -0.116,-0.018 -0.152,-0.05 -0.037,-0.036 -0.055,-0.085 -0.054,-0.148 0,-0.133 0.069,-0.199 0.207,-0.2 0.065,-10e-4 0.115,0.017 0.151,0.053 0.035,0.034 0.053,0.082 0.054,0.146 0,0.06 -0.018,0.109 -0.055,0.145 -0.037,0.035 -0.088,0.053 -0.151,0.054 z m 0,0.883 c -0.065,0 -0.116,-0.017 -0.153,-0.052 -0.035,-0.034 -0.054,-0.084 -0.054,-0.146 0,-0.133 0.069,-0.2 0.207,-0.199 0.065,-10e-4 0.115,0.016 0.15,0.05 0.037,0.036 0.055,0.084 0.054,0.148 0,0.06 -0.018,0.109 -0.055,0.145 -0.037,0.035 -0.086,0.053 -0.149,0.054 z" />
|
||||
<path
|
||||
id="path13075"
|
||||
fill="#fbba00"
|
||||
d="m 194.58,59.952 c 0.125,0.001 0.221,0.011 0.291,0.035 0.069,0.019 0.119,0.056 0.148,0.106 0.029,0.048 0.045,0.115 0.045,0.198 l -0.001,0.331 c 0,0.133 0.085,0.2 0.256,0.199 v 0.249 c -0.085,0 -0.149,0.015 -0.193,0.047 -0.043,0.03 -0.064,0.081 -0.064,0.151 v 0.335 c 0,0.078 -0.014,0.144 -0.041,0.193 -0.027,0.051 -0.076,0.086 -0.148,0.109 -0.07,0.022 -0.168,0.035 -0.296,0.035 l 0.001,-0.241 c 0.062,-0.004 0.11,-0.016 0.145,-0.034 0.035,-0.019 0.052,-0.061 0.053,-0.122 v -0.33 c 0,-0.15 0.078,-0.238 0.233,-0.262 v -0.012 c -0.154,-0.025 -0.231,-0.111 -0.231,-0.258 v -0.332 c 0,-0.059 -0.016,-0.099 -0.05,-0.12 -0.031,-0.023 -0.08,-0.035 -0.147,-0.036 z" />
|
||||
<path
|
||||
id="path13077"
|
||||
fill="#fbba00"
|
||||
d="m 196.311,60.714 c -0.065,0.001 -0.116,-0.016 -0.153,-0.052 -0.035,-0.034 -0.054,-0.082 -0.053,-0.145 0,-0.134 0.069,-0.201 0.207,-0.2 0.064,-10e-4 0.115,0.017 0.149,0.05 0.037,0.036 0.055,0.085 0.054,0.148 0,0.06 -0.018,0.11 -0.055,0.145 -0.036,0.036 -0.085,0.054 -0.149,0.054 z m -0.001,0.882 c -0.065,0 -0.116,-0.017 -0.152,-0.052 -0.037,-0.035 -0.055,-0.084 -0.055,-0.147 0.001,-0.132 0.07,-0.198 0.206,-0.199 0.066,0.002 0.115,0.017 0.151,0.053 0.036,0.033 0.055,0.084 0.054,0.147 0,0.061 -0.018,0.108 -0.054,0.144 -0.037,0.037 -0.086,0.055 -0.15,0.054 z" />
|
||||
<path
|
||||
id="path13079"
|
||||
fill="#fbba00"
|
||||
d="m 197.742,61.946 c -0.105,-0.132 -0.184,-0.281 -0.238,-0.448 -0.054,-0.167 -0.081,-0.347 -0.081,-0.539 0.001,-0.195 0.028,-0.376 0.083,-0.546 0.057,-0.17 0.136,-0.322 0.24,-0.455 h 0.269 c -0.102,0.142 -0.178,0.299 -0.23,0.47 -0.051,0.169 -0.075,0.346 -0.075,0.53 -0.001,0.178 0.025,0.352 0.075,0.519 0.053,0.168 0.128,0.323 0.225,0.469 z" />
|
||||
<path
|
||||
id="path13081"
|
||||
fill="#fbba00"
|
||||
d="m 198.965,59.956 c 0.105,0.129 0.184,0.28 0.238,0.448 0.055,0.166 0.081,0.344 0.081,0.537 -0.001,0.195 -0.029,0.377 -0.084,0.549 -0.055,0.17 -0.134,0.322 -0.237,0.455 h -0.27 c 0.101,-0.145 0.177,-0.302 0.228,-0.471 0.052,-0.17 0.078,-0.346 0.078,-0.531 0,-0.179 -0.025,-0.353 -0.077,-0.52 -0.051,-0.167 -0.126,-0.322 -0.224,-0.466 z" />
|
||||
<path
|
||||
id="path13083"
|
||||
fill="#fbba00"
|
||||
d="m 182.618,65.178 c -0.166,-0.004 -0.309,-0.033 -0.428,-0.089 v -0.28 c 0.056,0.03 0.124,0.061 0.202,0.086 0.08,0.024 0.156,0.04 0.227,0.042 V 64.55 c -0.151,-0.059 -0.261,-0.12 -0.328,-0.185 -0.067,-0.064 -0.1,-0.149 -0.1,-0.254 0,-0.124 0.041,-0.219 0.12,-0.289 0.081,-0.069 0.184,-0.111 0.309,-0.124 v -0.156 l 0.148,-0.001 v 0.154 c 0.071,0.003 0.14,0.012 0.209,0.03 0.068,0.016 0.133,0.037 0.192,0.066 l -0.085,0.244 c -0.051,-0.025 -0.104,-0.044 -0.16,-0.057 -0.054,-0.014 -0.107,-0.023 -0.156,-0.026 l -0.001,0.366 c 0.082,0.029 0.154,0.062 0.217,0.099 0.065,0.038 0.114,0.082 0.147,0.133 0.037,0.051 0.055,0.117 0.055,0.198 0,0.111 -0.036,0.205 -0.107,0.283 -0.069,0.076 -0.174,0.125 -0.313,0.145 v 0.215 l -0.149,-0.002 z m 0.002,-1.225 c -0.096,0.011 -0.143,0.061 -0.144,0.148 0,0.035 0.012,0.064 0.036,0.089 0.024,0.023 0.061,0.045 0.107,0.066 z m 0.146,0.971 c 0.091,-0.02 0.137,-0.073 0.137,-0.16 0,-0.039 -0.011,-0.067 -0.034,-0.09 -0.023,-0.023 -0.057,-0.042 -0.102,-0.064 z" />
|
||||
<path
|
||||
id="path13085"
|
||||
fill="#fbba00"
|
||||
d="m 184.049,64.396 c -0.065,0.001 -0.116,-0.016 -0.153,-0.052 -0.035,-0.034 -0.053,-0.082 -0.054,-0.146 0,-0.133 0.069,-0.2 0.208,-0.199 0.064,-0.001 0.115,0.017 0.149,0.05 0.037,0.036 0.054,0.084 0.054,0.148 0,0.06 -0.018,0.11 -0.055,0.145 -0.036,0.036 -0.085,0.054 -0.149,0.054 z m -0.002,0.881 c -0.065,0.001 -0.116,-0.016 -0.151,-0.05 -0.037,-0.036 -0.055,-0.084 -0.055,-0.147 0,-0.133 0.069,-0.199 0.206,-0.199 0.066,0 0.115,0.017 0.151,0.053 0.035,0.034 0.055,0.084 0.054,0.146 0,0.062 -0.018,0.109 -0.055,0.145 -0.036,0.035 -0.086,0.054 -0.15,0.052 z" />
|
||||
<path
|
||||
id="path13087"
|
||||
fill="#fbba00"
|
||||
d="m 185.222,65.277 c -0.098,0 -0.177,-0.018 -0.241,-0.055 -0.062,-0.04 -0.108,-0.089 -0.138,-0.153 -0.031,-0.066 -0.045,-0.138 -0.045,-0.219 0,-0.092 0.021,-0.176 0.064,-0.252 0.044,-0.076 0.11,-0.151 0.198,-0.224 -0.031,-0.045 -0.06,-0.099 -0.088,-0.161 -0.029,-0.063 -0.043,-0.132 -0.044,-0.213 0.001,-0.12 0.034,-0.212 0.1,-0.281 0.068,-0.066 0.156,-0.1 0.266,-0.102 0.121,0 0.214,0.033 0.279,0.097 0.066,0.062 0.1,0.151 0.1,0.264 0,0.073 -0.024,0.146 -0.069,0.22 -0.044,0.072 -0.105,0.146 -0.184,0.217 l 0.203,0.267 c 0.021,-0.049 0.037,-0.099 0.051,-0.146 0.014,-0.05 0.023,-0.097 0.03,-0.135 l 0.29,-10e-4 c -0.011,0.09 -0.033,0.179 -0.063,0.271 -0.03,0.093 -0.071,0.177 -0.121,0.256 l 0.247,0.326 -0.358,0.001 -0.081,-0.11 c -0.054,0.04 -0.113,0.073 -0.18,0.098 -0.066,0.023 -0.138,0.035 -0.216,0.035 z m -0.021,-1.294 c 0,0.045 0.006,0.09 0.02,0.127 0.015,0.039 0.032,0.073 0.048,0.102 0.039,-0.034 0.072,-0.069 0.1,-0.107 0.027,-0.039 0.04,-0.084 0.041,-0.13 0,-0.047 -0.01,-0.081 -0.028,-0.104 -0.018,-0.022 -0.042,-0.033 -0.072,-0.033 -0.033,0.002 -0.06,0.013 -0.08,0.037 -0.02,0.022 -0.03,0.058 -0.029,0.108 z m -0.113,0.846 c -0.001,0.046 0.014,0.089 0.042,0.126 0.029,0.039 0.071,0.057 0.127,0.056 0.04,0.001 0.075,-0.008 0.11,-0.022 0.035,-0.015 0.066,-0.036 0.094,-0.063 l -0.244,-0.338 c -0.041,0.037 -0.072,0.076 -0.095,0.112 -0.023,0.037 -0.034,0.079 -0.034,0.129 z" />
|
||||
<path
|
||||
id="path13089"
|
||||
fill="#fbba00"
|
||||
d="m 186.404,63.628 c 0.124,0 0.221,0.01 0.291,0.034 0.069,0.019 0.119,0.057 0.148,0.107 0.031,0.047 0.046,0.115 0.045,0.198 l -0.001,0.331 c 0,0.134 0.085,0.2 0.257,0.2 v 0.249 c -0.085,0 -0.15,0.016 -0.193,0.048 -0.043,0.029 -0.064,0.08 -0.065,0.149 v 0.335 c -0.001,0.078 -0.014,0.143 -0.041,0.193 -0.027,0.051 -0.077,0.086 -0.148,0.109 -0.069,0.022 -0.168,0.035 -0.295,0.037 l 0.001,-0.242 c 0.062,-0.002 0.11,-0.015 0.145,-0.033 0.035,-0.02 0.052,-0.061 0.052,-0.122 l 0.001,-0.329 c 0,-0.151 0.077,-0.238 0.231,-0.262 l 0.002,-0.013 c -0.155,-0.025 -0.232,-0.11 -0.232,-0.258 v -0.33 c 0,-0.06 -0.016,-0.1 -0.049,-0.122 -0.031,-0.023 -0.081,-0.035 -0.147,-0.036 z" />
|
||||
<path
|
||||
id="path13091"
|
||||
fill="#fbba00"
|
||||
d="m 188.184,64.389 c -0.065,0.002 -0.115,-0.017 -0.152,-0.05 -0.037,-0.036 -0.055,-0.084 -0.054,-0.148 0,-0.133 0.07,-0.198 0.207,-0.199 0.065,-10e-4 0.115,0.017 0.15,0.053 0.036,0.033 0.055,0.082 0.053,0.145 0.001,0.06 -0.017,0.109 -0.055,0.145 -0.035,0.038 -0.084,0.056 -0.149,0.054 z m -0.291,1.215 c 0.017,-0.066 0.032,-0.141 0.048,-0.223 0.015,-0.078 0.029,-0.158 0.041,-0.235 0.014,-0.077 0.026,-0.144 0.034,-0.203 l 0.311,0.001 0.016,0.024 c -0.012,0.05 -0.028,0.113 -0.049,0.187 -0.021,0.071 -0.044,0.147 -0.072,0.228 -0.025,0.08 -0.055,0.155 -0.086,0.222 z" />
|
||||
<path
|
||||
id="path13093"
|
||||
fill="#fbba00"
|
||||
d="m 189.496,64.387 c -0.065,0.001 -0.115,-0.017 -0.151,-0.05 -0.037,-0.036 -0.055,-0.084 -0.054,-0.148 0,-0.134 0.069,-0.198 0.207,-0.2 0.065,0 0.115,0.017 0.149,0.053 0.037,0.034 0.054,0.082 0.054,0.146 0,0.06 -0.018,0.11 -0.055,0.145 -0.036,0.037 -0.086,0.055 -0.15,0.054 z m -0.001,0.885 c -0.065,0 -0.116,-0.018 -0.152,-0.053 -0.036,-0.033 -0.054,-0.082 -0.054,-0.146 0,-0.133 0.069,-0.201 0.207,-0.199 0.065,-10e-4 0.115,0.017 0.149,0.05 0.037,0.036 0.055,0.085 0.055,0.148 0,0.06 -0.018,0.11 -0.055,0.145 -0.036,0.035 -0.087,0.053 -0.15,0.055 z" />
|
||||
<path
|
||||
id="path13095"
|
||||
fill="#fbba00"
|
||||
d="m 190.489,63.621 c 0.125,10e-4 0.222,0.012 0.291,0.034 0.07,0.022 0.119,0.057 0.148,0.106 0.03,0.048 0.045,0.115 0.044,0.199 l -0.001,0.331 c 0,0.134 0.085,0.2 0.256,0.2 v 0.248 c -0.085,0 -0.149,0.015 -0.193,0.048 -0.043,0.029 -0.064,0.081 -0.065,0.151 v 0.333 c -0.001,0.079 -0.014,0.144 -0.041,0.194 -0.027,0.051 -0.076,0.086 -0.148,0.109 -0.07,0.023 -0.168,0.036 -0.296,0.036 l 0.001,-0.241 c 0.062,-0.002 0.11,-0.016 0.146,-0.033 0.034,-0.02 0.052,-0.061 0.052,-0.123 v -0.328 c 0,-0.151 0.077,-0.239 0.232,-0.264 l 0.001,-0.012 c -0.154,-0.025 -0.231,-0.11 -0.231,-0.257 l -0.001,-0.332 c 0.001,-0.061 -0.015,-0.1 -0.049,-0.121 -0.032,-0.023 -0.081,-0.035 -0.147,-0.036 z" />
|
||||
<path
|
||||
id="path13097"
|
||||
fill="#fbba00"
|
||||
d="m 192.22,64.385 c -0.066,0 -0.116,-0.018 -0.152,-0.053 -0.036,-0.034 -0.055,-0.082 -0.054,-0.146 0,-0.133 0.069,-0.201 0.207,-0.199 0.065,-0.001 0.114,0.016 0.149,0.05 0.036,0.037 0.054,0.084 0.054,0.148 0,0.06 -0.018,0.109 -0.055,0.145 -0.036,0.035 -0.086,0.054 -0.149,0.055 z m -0.001,0.883 c -0.065,-0.002 -0.116,-0.019 -0.153,-0.053 -0.035,-0.034 -0.054,-0.084 -0.054,-0.148 0.001,-0.131 0.07,-0.198 0.207,-0.199 0.066,0.002 0.115,0.018 0.15,0.052 0.036,0.035 0.055,0.084 0.054,0.148 0,0.06 -0.019,0.107 -0.054,0.144 -0.037,0.037 -0.086,0.055 -0.15,0.056 z" />
|
||||
<path
|
||||
id="path13099"
|
||||
fill="#fbba00"
|
||||
d="m 193.65,65.616 c -0.104,-0.132 -0.183,-0.28 -0.237,-0.448 -0.054,-0.167 -0.082,-0.347 -0.081,-0.538 0,-0.194 0.028,-0.377 0.082,-0.547 0.056,-0.17 0.136,-0.322 0.239,-0.455 h 0.271 c -0.102,0.142 -0.179,0.299 -0.231,0.469 -0.05,0.169 -0.075,0.346 -0.075,0.53 0,0.179 0.026,0.352 0.076,0.519 0.053,0.168 0.128,0.325 0.225,0.469 z" />
|
||||
<path
|
||||
id="path13101"
|
||||
fill="#fbba00"
|
||||
d="m 194.875,63.626 c 0.103,0.13 0.183,0.28 0.237,0.448 0.054,0.165 0.082,0.345 0.08,0.536 0,0.195 -0.028,0.379 -0.083,0.549 -0.056,0.17 -0.134,0.322 -0.237,0.455 h -0.27 c 0.101,-0.144 0.178,-0.299 0.228,-0.469 0.051,-0.17 0.078,-0.346 0.078,-0.53 0,-0.181 -0.025,-0.355 -0.077,-0.521 -0.051,-0.168 -0.125,-0.324 -0.223,-0.468 z" />
|
||||
<path
|
||||
id="path13103"
|
||||
fill="#fbba00"
|
||||
d="m 196.673,65.603 c -0.121,0.002 -0.219,-0.01 -0.29,-0.032 -0.07,-0.022 -0.12,-0.057 -0.15,-0.107 -0.029,-0.049 -0.043,-0.117 -0.043,-0.198 l 0.001,-0.333 c 0,-0.132 -0.086,-0.199 -0.257,-0.199 v -0.249 c 0.085,0 0.148,-0.016 0.191,-0.049 0.044,-0.03 0.066,-0.081 0.065,-0.151 l 0.002,-0.333 c 0,-0.079 0.013,-0.145 0.041,-0.193 0.029,-0.051 0.078,-0.086 0.148,-0.109 0.069,-0.024 0.167,-0.037 0.294,-0.038 v 0.244 c -0.063,0 -0.111,0.011 -0.146,0.033 -0.035,0.021 -0.053,0.062 -0.052,0.123 l -0.001,0.327 c 0,0.151 -0.077,0.239 -0.232,0.264 v 0.014 c 0.154,0.024 0.231,0.111 0.231,0.257 l -0.001,0.331 c 0.001,0.061 0.016,0.101 0.048,0.122 0.033,0.021 0.083,0.033 0.149,0.035 z" />
|
||||
<path
|
||||
id="path13105"
|
||||
fill="#fbba00"
|
||||
d="m 197.667,64.376 c -0.065,10e-4 -0.115,-0.017 -0.151,-0.05 -0.037,-0.036 -0.055,-0.084 -0.054,-0.148 0,-0.133 0.069,-0.198 0.207,-0.199 0.065,0 0.115,0.017 0.149,0.052 0.037,0.034 0.054,0.083 0.054,0.146 0,0.061 -0.019,0.109 -0.055,0.145 -0.036,0.037 -0.086,0.055 -0.15,0.054 z m -0.001,0.883 c -0.065,0.001 -0.115,-0.016 -0.152,-0.052 -0.037,-0.034 -0.054,-0.082 -0.054,-0.146 0,-0.133 0.068,-0.2 0.207,-0.199 0.064,-10e-4 0.115,0.017 0.149,0.05 0.037,0.036 0.054,0.085 0.055,0.147 -0.001,0.061 -0.019,0.11 -0.055,0.145 -0.036,0.036 -0.086,0.054 -0.15,0.055 z" />
|
||||
<path
|
||||
id="path13107"
|
||||
fill="#fbba00"
|
||||
d="m 198.9,65.778 0.004,-2.262 0.252,-10e-4 -0.003,2.261 z" />
|
||||
<path
|
||||
id="path13109"
|
||||
fill="#fbba00"
|
||||
d="m 182.613,68.842 c -0.167,-0.004 -0.309,-0.034 -0.43,-0.089 l 0.001,-0.281 c 0.056,0.032 0.124,0.061 0.202,0.086 0.08,0.025 0.156,0.04 0.227,0.043 v -0.386 c -0.151,-0.06 -0.261,-0.122 -0.329,-0.187 -0.066,-0.064 -0.099,-0.148 -0.098,-0.251 -0.001,-0.123 0.039,-0.221 0.12,-0.291 0.081,-0.069 0.183,-0.111 0.309,-0.125 v -0.156 l 0.148,-0.001 -0.001,0.154 c 0.071,0.003 0.14,0.013 0.209,0.03 0.068,0.016 0.132,0.036 0.193,0.068 l -0.086,0.242 c -0.05,-0.025 -0.103,-0.044 -0.16,-0.058 -0.054,-0.012 -0.106,-0.022 -0.156,-0.026 v 0.366 c 0.081,0.03 0.155,0.065 0.218,0.1 0.064,0.036 0.113,0.081 0.147,0.134 0.037,0.051 0.055,0.115 0.055,0.196 0,0.111 -0.036,0.205 -0.107,0.283 -0.07,0.076 -0.175,0.126 -0.314,0.146 v 0.215 h -0.147 z m 0.002,-1.225 c -0.097,0.011 -0.144,0.061 -0.143,0.15 -0.002,0.033 0.011,0.062 0.035,0.087 0.024,0.023 0.06,0.045 0.107,0.066 z m 0.146,0.971 c 0.091,-0.02 0.136,-0.071 0.136,-0.16 0.001,-0.037 -0.011,-0.067 -0.034,-0.088 -0.022,-0.023 -0.056,-0.045 -0.103,-0.066 z" />
|
||||
<path
|
||||
id="path13111"
|
||||
fill="#fbba00"
|
||||
d="m 184.093,68.059 c -0.065,0.001 -0.116,-0.017 -0.151,-0.05 -0.037,-0.036 -0.055,-0.085 -0.054,-0.148 0,-0.133 0.069,-0.199 0.207,-0.2 0.065,0 0.115,0.017 0.149,0.053 0.037,0.034 0.054,0.083 0.054,0.146 0,0.061 -0.019,0.109 -0.055,0.145 -0.036,0.038 -0.085,0.056 -0.15,0.054 z m -0.291,1.215 c 0.016,-0.066 0.032,-0.141 0.047,-0.223 0.016,-0.079 0.029,-0.158 0.041,-0.235 0.014,-0.077 0.025,-0.145 0.035,-0.202 l 0.311,-0.002 0.015,0.025 c -0.012,0.05 -0.028,0.112 -0.049,0.186 -0.02,0.072 -0.044,0.148 -0.071,0.227 -0.025,0.081 -0.055,0.155 -0.087,0.222 z" />
|
||||
<path
|
||||
id="path13113"
|
||||
fill="#fbba00"
|
||||
d="m 185.405,68.058 c -0.065,0 -0.116,-0.017 -0.152,-0.05 -0.037,-0.036 -0.055,-0.085 -0.054,-0.148 0,-0.133 0.069,-0.198 0.206,-0.199 0.065,-0.001 0.115,0.017 0.15,0.053 0.036,0.033 0.054,0.082 0.053,0.145 0.001,0.06 -0.018,0.109 -0.054,0.145 -0.035,0.037 -0.084,0.055 -0.149,0.054 z m -0.001,0.883 c -0.065,10e-4 -0.116,-0.017 -0.152,-0.053 -0.036,-0.034 -0.054,-0.082 -0.054,-0.146 0,-0.133 0.069,-0.2 0.208,-0.199 0.064,0 0.115,0.017 0.149,0.05 0.037,0.036 0.054,0.085 0.055,0.147 -0.001,0.06 -0.019,0.109 -0.055,0.145 -0.037,0.037 -0.087,0.055 -0.151,0.056 z" />
|
||||
<path
|
||||
id="path13115"
|
||||
fill="#fbba00"
|
||||
d="m 186.399,67.293 c 0.123,-0.001 0.221,0.011 0.29,0.033 0.069,0.022 0.119,0.057 0.147,0.106 0.031,0.047 0.046,0.115 0.045,0.198 v 0.332 c 0,0.133 0.085,0.2 0.256,0.199 v 0.249 c -0.084,0.001 -0.149,0.016 -0.192,0.049 -0.043,0.028 -0.064,0.08 -0.064,0.152 v 0.332 c 0,0.078 -0.014,0.143 -0.041,0.193 -0.027,0.05 -0.077,0.086 -0.148,0.109 -0.069,0.022 -0.168,0.035 -0.295,0.037 v -0.243 c 0.063,-0.001 0.111,-0.013 0.146,-0.033 0.035,-0.02 0.052,-0.061 0.052,-0.123 l 0.001,-0.327 c 0,-0.153 0.077,-0.241 0.231,-0.265 v -0.012 c -0.154,-0.025 -0.232,-0.11 -0.231,-0.258 v -0.332 c 0,-0.06 -0.016,-0.099 -0.049,-0.121 -0.032,-0.022 -0.081,-0.034 -0.148,-0.035 z" />
|
||||
<path
|
||||
id="path13117"
|
||||
fill="#fbba00"
|
||||
d="m 188.129,68.054 c -0.064,0.001 -0.115,-0.016 -0.152,-0.052 -0.037,-0.034 -0.054,-0.082 -0.054,-0.146 0,-0.133 0.068,-0.2 0.207,-0.199 0.064,-10e-4 0.115,0.017 0.149,0.051 0.036,0.035 0.054,0.084 0.055,0.147 -0.001,0.061 -0.019,0.11 -0.055,0.145 -0.036,0.035 -0.087,0.053 -0.15,0.054 z m -0.001,0.884 c -0.065,-0.001 -0.115,-0.017 -0.153,-0.053 -0.035,-0.034 -0.054,-0.084 -0.054,-0.147 0,-0.132 0.069,-0.199 0.207,-0.199 0.065,0.001 0.116,0.018 0.15,0.052 0.037,0.036 0.055,0.084 0.054,0.147 0.001,0.06 -0.018,0.108 -0.054,0.146 -0.036,0.034 -0.086,0.052 -0.15,0.054 z" />
|
||||
<path
|
||||
id="path13119"
|
||||
fill="#fbba00"
|
||||
d="m 189.56,69.285 c -0.104,-0.132 -0.183,-0.28 -0.238,-0.448 -0.054,-0.167 -0.081,-0.346 -0.081,-0.538 10e-4,-0.193 0.028,-0.376 0.083,-0.546 0.056,-0.17 0.136,-0.322 0.239,-0.455 h 0.27 c -0.102,0.142 -0.179,0.3 -0.23,0.47 -0.05,0.169 -0.076,0.346 -0.075,0.53 -0.001,0.178 0.025,0.353 0.077,0.52 0.053,0.168 0.128,0.324 0.223,0.468 z" />
|
||||
<path
|
||||
id="path13121"
|
||||
fill="#fbba00"
|
||||
d="m 190.784,67.295 c 0.104,0.13 0.184,0.281 0.238,0.448 0.054,0.165 0.082,0.345 0.08,0.537 0,0.194 -0.028,0.378 -0.085,0.548 -0.054,0.17 -0.133,0.321 -0.236,0.455 h -0.27 c 0.101,-0.144 0.178,-0.299 0.227,-0.469 0.052,-0.171 0.078,-0.348 0.079,-0.531 0,-0.181 -0.026,-0.355 -0.077,-0.522 -0.051,-0.168 -0.125,-0.322 -0.224,-0.467 z" />
|
||||
<path
|
||||
id="path13123"
|
||||
fill="#fbba00"
|
||||
d="m 192.583,69.274 c -0.123,0.001 -0.22,-0.012 -0.29,-0.033 -0.07,-0.022 -0.12,-0.057 -0.15,-0.106 -0.029,-0.049 -0.043,-0.116 -0.043,-0.199 l 0.001,-0.332 c 0,-0.134 -0.086,-0.199 -0.257,-0.199 l 0.001,-0.249 c 0.085,0 0.148,-0.016 0.19,-0.049 0.044,-0.031 0.066,-0.082 0.066,-0.152 v -0.332 c 0.001,-0.079 0.015,-0.143 0.042,-0.194 0.028,-0.05 0.078,-0.086 0.147,-0.108 0.07,-0.024 0.169,-0.037 0.295,-0.038 v 0.244 c -0.063,0.001 -0.111,0.013 -0.146,0.033 -0.034,0.019 -0.052,0.061 -0.052,0.122 v 0.327 c 0,0.153 -0.077,0.24 -0.232,0.264 v 0.012 c 0.154,0.025 0.231,0.111 0.231,0.258 v 0.331 c 0,0.06 0.015,0.1 0.047,0.121 0.033,0.021 0.084,0.034 0.15,0.035 z" />
|
||||
<path
|
||||
id="path13125"
|
||||
fill="#fbba00"
|
||||
d="m 193.577,68.047 c -0.065,0 -0.116,-0.018 -0.152,-0.052 -0.036,-0.035 -0.055,-0.084 -0.055,-0.147 0.001,-0.132 0.07,-0.198 0.207,-0.2 0.066,0.002 0.115,0.017 0.151,0.053 0.035,0.033 0.055,0.084 0.055,0.147 0,0.061 -0.019,0.108 -0.055,0.145 -0.037,0.036 -0.088,0.054 -0.151,0.054 z m -0.001,0.882 c -0.065,0 -0.116,-0.018 -0.151,-0.051 -0.037,-0.036 -0.055,-0.085 -0.055,-0.147 0,-0.134 0.069,-0.199 0.207,-0.2 0.064,0 0.115,0.017 0.15,0.053 0.037,0.034 0.054,0.082 0.054,0.146 0,0.06 -0.017,0.109 -0.054,0.144 -0.038,0.036 -0.088,0.054 -0.151,0.055 z" />
|
||||
<path
|
||||
id="path13127"
|
||||
fill="#fbba00"
|
||||
d="m 194.809,69.447 0.004,-2.262 h 0.251 l -0.003,2.261 z" />
|
||||
<path
|
||||
id="path13129"
|
||||
fill="#fbba00"
|
||||
d="m 196.3,68.042 c -0.065,0.001 -0.115,-0.016 -0.151,-0.05 -0.037,-0.036 -0.055,-0.084 -0.055,-0.148 0,-0.134 0.069,-0.199 0.207,-0.2 0.064,0 0.115,0.017 0.149,0.053 0.037,0.034 0.054,0.082 0.054,0.146 -0.001,0.061 -0.018,0.109 -0.055,0.145 -0.035,0.036 -0.085,0.054 -0.149,0.054 z m -0.001,0.884 c -0.065,0.001 -0.115,-0.017 -0.152,-0.053 -0.037,-0.034 -0.054,-0.082 -0.054,-0.146 0,-0.133 0.069,-0.2 0.207,-0.199 0.065,-0.001 0.115,0.017 0.148,0.05 0.037,0.036 0.055,0.085 0.055,0.148 0.001,0.06 -0.018,0.11 -0.055,0.145 -0.035,0.035 -0.086,0.054 -0.149,0.055 z" />
|
||||
<path
|
||||
id="path13131"
|
||||
fill="#fbba00"
|
||||
d="m 197.472,68.923 c -0.096,0.001 -0.176,-0.018 -0.24,-0.055 -0.062,-0.038 -0.108,-0.089 -0.138,-0.153 -0.03,-0.063 -0.045,-0.137 -0.045,-0.218 0,-0.092 0.022,-0.177 0.064,-0.252 0.044,-0.076 0.11,-0.149 0.198,-0.224 -0.03,-0.045 -0.06,-0.098 -0.089,-0.16 -0.028,-0.06 -0.043,-0.133 -0.042,-0.212 0,-0.118 0.033,-0.214 0.1,-0.28 0.066,-0.069 0.155,-0.103 0.265,-0.103 0.121,0 0.214,0.032 0.279,0.098 0.068,0.063 0.1,0.151 0.099,0.262 0.001,0.075 -0.023,0.147 -0.067,0.222 -0.045,0.072 -0.106,0.144 -0.185,0.218 l 0.204,0.267 c 0.02,-0.051 0.036,-0.099 0.05,-0.148 0.013,-0.05 0.023,-0.094 0.03,-0.136 h 0.291 c -0.012,0.089 -0.034,0.178 -0.064,0.271 -0.03,0.091 -0.071,0.177 -0.12,0.256 l 0.246,0.325 -0.358,0.001 -0.082,-0.112 c -0.053,0.039 -0.113,0.073 -0.18,0.097 -0.065,0.024 -0.137,0.036 -0.216,0.036 z m -0.021,-1.294 c 0.001,0.048 0.007,0.09 0.02,0.129 0.015,0.037 0.031,0.07 0.048,0.1 0.04,-0.033 0.072,-0.069 0.1,-0.108 0.027,-0.039 0.042,-0.081 0.041,-0.13 0,-0.044 -0.009,-0.079 -0.027,-0.101 -0.018,-0.022 -0.043,-0.035 -0.073,-0.034 -0.034,-0.001 -0.06,0.011 -0.08,0.035 -0.018,0.026 -0.028,0.062 -0.029,0.109 z m -0.112,0.846 c 0,0.048 0.014,0.089 0.043,0.128 0.029,0.037 0.071,0.055 0.127,0.055 0.04,0.001 0.076,-0.007 0.109,-0.022 0.035,-0.015 0.067,-0.037 0.096,-0.061 l -0.245,-0.339 c -0.041,0.038 -0.072,0.075 -0.096,0.111 -0.022,0.036 -0.034,0.079 -0.034,0.128 z" />
|
||||
<path
|
||||
id="path13133"
|
||||
fill="#fbba00"
|
||||
d="m 198.655,67.276 c 0.124,-0.002 0.221,0.01 0.291,0.032 0.07,0.022 0.119,0.057 0.147,0.106 0.031,0.047 0.045,0.115 0.045,0.198 v 0.335 c -0.002,0.131 0.084,0.198 0.255,0.197 v 0.249 c -0.085,0 -0.149,0.016 -0.193,0.049 -0.042,0.029 -0.064,0.08 -0.064,0.152 l -0.001,0.332 c 0,0.081 -0.014,0.146 -0.042,0.195 -0.027,0.05 -0.077,0.086 -0.147,0.109 -0.07,0.024 -0.169,0.034 -0.295,0.037 v -0.242 c 0.062,-0.003 0.11,-0.014 0.145,-0.034 0.035,-0.021 0.052,-0.061 0.052,-0.123 l 10e-4,-0.327 c 0,-0.15 0.078,-0.238 0.232,-0.262 l -10e-4,-0.015 c -0.154,-0.022 -0.231,-0.11 -0.231,-0.257 l 0.002,-0.329 c 0,-0.06 -0.017,-0.102 -0.051,-0.123 -0.031,-0.023 -0.08,-0.035 -0.147,-0.036 z" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.0877755,0,0,-0.09005514,-41.4187,25.351312)"
|
||||
id="g1084">
|
||||
<g
|
||||
transform="translate(-7001.335,-6869.2603)"
|
||||
id="g1086" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.0877755,0,0,-0.09005514,-41.4187,25.35123)"
|
||||
id="g1090">
|
||||
<g
|
||||
transform="translate(-5467.6865,-7400.3228)"
|
||||
id="g1092" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-0.04390849,0,0,-0.04501828,-41.4186,25.35123)"
|
||||
id="g1162">
|
||||
<g
|
||||
transform="translate(-3501.106,-11682.853)"
|
||||
id="g1164" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-4.7921549e-5,0.06835509,-0.06253675,-4.3877996e-5,-41.4187,25.351312)"
|
||||
id="g1414">
|
||||
<g
|
||||
transform="translate(3405.2761,-4944.666)"
|
||||
id="g1416" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-4.7921549e-5,0.06835509,-0.06253675,-4.3877996e-5,-41.4187,25.35123)"
|
||||
id="g1450">
|
||||
<g
|
||||
transform="translate(10137.673,-8758.3877)"
|
||||
id="g1452" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(4.7921549e-5,-0.06835509,0.06253675,4.3877996e-5,-41.4185,25.35123)"
|
||||
id="g1666">
|
||||
<g
|
||||
transform="translate(-10489.8,5115.7881)"
|
||||
id="g1668" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(4.7921549e-5,-0.06835509,0.06253675,4.3877996e-5,-41.4188,25.351475)"
|
||||
id="g1744">
|
||||
<g
|
||||
transform="translate(-2966.5618,7097.0044)"
|
||||
id="g1746" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(4.7921549e-5,-0.06835509,0.06253675,4.3877996e-5,-41.4187,25.351312)"
|
||||
id="g1756">
|
||||
<g
|
||||
transform="translate(-1436.6094,6019.4995)"
|
||||
id="g1758" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.54642587,0,0,-0.54642587,93.0539,504.38851)"
|
||||
id="g2074" />
|
||||
</g>
|
||||
<g
|
||||
<path
|
||||
id="rect31669-8"
|
||||
fill="#989898"
|
||||
d="m 185.916,104.098 -19.634,-3.543 c -0.792,-0.144 -1.722,0.182 -2.078,0.722 l -5.443,8.309 c -0.355,0.542 -0.001,1.099 0.791,1.241 l 19.634,3.545 c 0.792,0.142 1.722,-0.181 2.077,-0.725 l 5.444,-8.307 c 0.355,-0.544 0.001,-1.099 -0.791,-1.242 z" />
|
||||
<path
|
||||
id="rect31671-7"
|
||||
fill="#2b2b2b"
|
||||
d="m 184.968,104.501 -18.412,-3.323 c -0.715,-0.128 -1.555,0.165 -1.876,0.654 l -2.705,4.125 c -0.32,0.492 0,0.992 0.715,1.123 l 18.412,3.322 c 0.715,0.128 1.555,-0.164 1.877,-0.654 l 2.704,-4.127 c 0.321,-0.489 0.001,-0.99 -0.715,-1.12 z" />
|
||||
<path
|
||||
id="path31673-9"
|
||||
sodipodi:nodetypes="cc"
|
||||
fill="#989898"
|
||||
stroke="#989898"
|
||||
stroke-linecap="round"
|
||||
d="m 186.47,104.886 -0.207,0.843" />
|
||||
<path
|
||||
id="path31675-2"
|
||||
sodipodi:nodetypes="cc"
|
||||
fill="#989898"
|
||||
stroke="#989898"
|
||||
stroke-linecap="round"
|
||||
d="m 158.997,110.002 -0.139,0.62" />
|
||||
<path
|
||||
id="rect31677-0"
|
||||
fill="#aaaaab"
|
||||
d="m 172.875,109.699 -4.128,-0.744 c -0.716,-0.13 -1.556,0.162 -1.876,0.653 l -0.82,1.249 c -0.32,0.489 0,0.992 0.715,1.12 l 4.129,0.747 c 0.715,0.128 1.555,-0.165 1.876,-0.654 l 0.819,-1.25 c 0.32,-0.49 0,-0.992 -0.715,-1.121 z" />
|
||||
</g><g
|
||||
id="g1"
|
||||
transform="matrix(5.414656,0,0,5.414656,-2521.4692,-1314.6675)"><path
|
||||
id="ellipse31681-2"
|
||||
fill="#3d2311"
|
||||
d="m 607.52125,330.9161 c 8.727,-2.328 16.434,-1.87 17.212,1.029 0.78,2.894 -5.663,7.128 -14.388,9.455 -8.728,2.329 -16.434,1.867 -17.212,-1.028 -0.78,-2.894 5.662,-7.128 14.388,-9.456 z" /><path
|
||||
id="path31685-7"
|
||||
fill="#435723"
|
||||
d="m 593.13225,340.3721 9.931,24.536" /><path
|
||||
id="path31687-5"
|
||||
fill="#435723"
|
||||
d="m 624.73325,331.9451 3.723,26.19" /><path
|
||||
id="path31689-9"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 605.20525,331.5401 c 0,0 -1.292,-1.763 -0.861,-2.571 0.431,-0.808 2.688,-0.748 2.688,-0.748 0,0 0.489,-1.063 1.13,-1.283 0.64,-0.222 1.801,-0.08 2.312,0.426 0.511,0.506 0.376,1.928 0.376,1.928 0,0 1.169,1.213 1.237,1.928 0.067,0.715 -0.046,1.532 -0.752,1.873 -0.708,0.342 -2.582,-0.748 -2.582,-0.748 0,0 -0.791,0.492 -1.452,0.534 -0.66,0.044 -2.097,-0.062 -2.366,-0.534 -0.268,-0.478 0.27,-0.805 0.27,-0.805 z" /><path
|
||||
id="path13148"
|
||||
fill="#e3c701"
|
||||
d="m 608.35382,332.07598 c -0.37246,0.0584 -0.66897,-0.0333 -0.88741,-0.27442 -0.21955,-0.24804 -0.37197,-0.6255 -0.45573,-1.14175 -0.0826,-0.50934 -0.0595,-0.91022 0.0691,-1.20361 0.12931,-0.28945 0.37567,-0.46314 0.74074,-0.52339 0.37296,-0.0615 0.66865,0.0313 0.88919,0.2792 0.22353,0.24131 0.37545,0.6219 0.45921,1.13815 0.0502,0.30287 0.059,0.57598 0.0283,0.82409 -0.0283,0.24369 -0.10812,0.44506 -0.24211,0.59952 -0.13319,0.15939 -0.33386,0.25881 -0.60136,0.30221 z m -0.73445,-1.4734 c 0.0173,0.10661 0.0363,0.20484 0.0565,0.29173 l 0.54802,-1.35526 c -0.0868,-0.0791 -0.18974,-0.10801 -0.31049,-0.0904 -0.17522,0.0315 -0.28206,0.14099 -0.32073,0.33975 -0.0386,0.19267 -0.0293,0.46266 0.0267,0.81422 z m 0.6401,0.97305 c 0.1785,-0.03 0.28614,-0.13456 0.32294,-0.31985 0.0368,-0.18528 0.0282,-0.45033 -0.0278,-0.79582 -0.0102,-0.0693 -0.0234,-0.13195 -0.0355,-0.19381 -0.0131,-0.0617 -0.0266,-0.12029 -0.0369,-0.17739 l -0.56798,1.36965 c 0.0921,0.0995 0.20869,0.13735 0.34523,0.11722 z" /><path
|
||||
id="path31695-9"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 598.18925,332.4331 c 0,0 -1.292,-1.764 -0.861,-2.571 0.431,-0.809 2.689,-0.748 2.689,-0.748 0,0 0.49,-1.063 1.129,-1.285 0.642,-0.221 1.801,-0.079 2.313,0.428 0.512,0.506 0.377,1.928 0.377,1.928 0,0 1.168,1.213 1.236,1.928 0.067,0.714 -0.046,1.532 -0.752,1.873 -0.707,0.341 -2.581,-0.748 -2.581,-0.748 0,0 -0.792,0.491 -1.452,0.534 -0.661,0.043 -2.098,-0.063 -2.366,-0.534 -0.268,-0.478 0.268,-0.805 0.268,-0.805 z" /><path
|
||||
id="path13145"
|
||||
fill="#e3c701"
|
||||
d="m 601.03668,332.96614 -0.1121,-0.42548 0.56583,-0.21526 -0.32937,-1.24621 c -0.0293,-0.11121 -0.0553,-0.20984 -0.0769,-0.30756 -0.0223,-0.0965 -0.043,-0.19447 -0.0641,-0.29438 -0.0359,0.0405 -0.0691,0.0792 -0.10115,0.11455 -0.0331,0.0315 -0.0638,0.0602 -0.0901,0.0858 l -0.24644,0.23039 -0.40456,-0.42081 0.76175,-0.70018 0.49704,-0.13096 0.66577,2.51125 0.58129,-0.0859 0.1123,0.42232 z" /><path
|
||||
id="path31701-6"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 602.36225,329.2511 c 0,0 -2.051,-0.771 -2.134,-1.683 -0.084,-0.908 1.836,-2.094 1.836,-2.094 0,0 -0.176,-1.154 0.238,-1.689 0.413,-0.534 1.464,-1.048 2.169,-0.903 0.707,0.144 1.376,1.409 1.376,1.409 0,0 1.646,0.374 2.096,0.937 0.45,0.56 0.804,1.307 0.401,1.979 -0.403,0.672 -2.573,0.779 -2.573,0.779 0,0 -0.39,0.843 -0.92,1.239 -0.528,0.397 -1.789,1.094 -2.274,0.845 -0.483,-0.252 -0.215,-0.819 -0.215,-0.819 z" /><path
|
||||
id="path13142"
|
||||
fill="#e3c701"
|
||||
d="m 602.56778,328.19071 c -0.2899,-0.24257 -0.41594,-0.52571 -0.37454,-0.84903 0.0418,-0.3269 0.22939,-0.68988 0.56472,-1.09123 0.33354,-0.39764 0.65168,-0.64547 0.95686,-0.74015 0.30403,-0.0917 0.59881,-0.0207 0.88321,0.21594 0.29092,0.23822 0.41427,0.52303 0.37185,0.8507 -0.0372,0.32293 -0.2253,0.68809 -0.5619,1.09098 -0.19626,0.23737 -0.39857,0.42418 -0.60449,0.56374 -0.20464,0.13803 -0.40971,0.20935 -0.61611,0.21191 -0.20421,0.003 -0.41079,-0.0817 -0.6196,-0.25286 z m 0.63486,-1.51943 c -0.0711,0.0839 -0.1328,0.16269 -0.18665,0.23366 l 1.38646,-0.47629 c 0.004,-0.11677 -0.041,-0.21495 -0.13552,-0.29363 -0.13669,-0.11246 -0.29136,-0.11889 -0.46543,-0.0192 -0.17202,0.0988 -0.37164,0.28396 -0.59886,0.55542 z m -0.31797,1.11835 c 0.13835,0.11514 0.28996,0.12682 0.45532,0.0329 0.16332,-0.0931 0.35974,-0.27436 0.58427,-0.54415 0.0448,-0.0538 0.0848,-0.10504 0.12077,-0.15449 0.0386,-0.0511 0.0764,-0.0965 0.1104,-0.1436 l -1.41169,0.47221 c -0.0123,0.13675 0.034,0.24683 0.14093,0.33716 z" /><path
|
||||
id="path31707-9"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 606.75325,326.8951 c 0,0 -1.292,-1.762 -0.861,-2.57 0.431,-0.809 2.688,-0.749 2.688,-0.749 0,0 0.489,-1.063 1.13,-1.287 0.64,-0.221 1.801,-0.076 2.312,0.431 0.511,0.507 0.376,1.927 0.376,1.927 0,0 1.169,1.214 1.237,1.928 0.067,0.715 -0.046,1.528 -0.752,1.874 -0.707,0.341 -2.581,-0.749 -2.581,-0.749 0,0 -0.792,0.492 -1.454,0.536 -0.66,0.042 -2.097,-0.063 -2.365,-0.536 -0.267,-0.477 0.27,-0.805 0.27,-0.805 z" /><path
|
||||
id="path13139"
|
||||
fill="#e3c701"
|
||||
d="m 609.1987,327.75041 -0.15086,-0.40907 0.54322,-0.26773 -0.44233,-1.21073 c -0.0389,-0.10714 -0.0746,-0.20804 -0.1043,-0.30151 -0.031,-0.0941 -0.0623,-0.18591 -0.0912,-0.28289 -0.0314,0.0423 -0.0617,0.082 -0.0904,0.12012 -0.031,0.0347 -0.0584,0.0649 -0.0829,0.094 l -0.22385,0.25057 -0.43981,-0.3785 0.69386,-0.7694 0.48375,-0.17375 0.8914,2.4371 0.57012,-0.13813 0.15223,0.41284 z" /><path
|
||||
id="path31713-4"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 610.97025,328.9511 c 0,0 -1.292,-1.763 -0.861,-2.57 0.431,-0.808 2.688,-0.748 2.688,-0.748 0,0 0.49,-1.064 1.129,-1.288 0.642,-0.222 1.801,-0.075 2.312,0.431 0.512,0.506 0.376,1.928 0.376,1.928 0,0 1.169,1.213 1.237,1.928 0.067,0.715 -0.046,1.528 -0.752,1.873 -0.707,0.342 -2.581,-0.748 -2.581,-0.748 0,0 -0.792,0.491 -1.453,0.534 -0.661,0.044 -2.098,-0.063 -2.366,-0.534 -0.265,-0.477 0.271,-0.806 0.271,-0.806 z" /><path
|
||||
id="path13181"
|
||||
fill="#e3c701"
|
||||
d="m 612.74003,328.9076 0.14779,-0.41231 0.58863,0.14195 0.4381,-1.21333 c 0.0375,-0.10766 0.0746,-0.20804 0.11141,-0.29895 0.0353,-0.0925 0.0737,-0.18496 0.11467,-0.27546 -0.0515,0.0102 -0.10139,0.0221 -0.14755,0.0353 -0.0467,0.009 -0.0873,0.0123 -0.12252,0.0188 l -0.33263,0.0507 -0.0953,-0.57276 1.026,-0.15063 0.48453,0.17156 -0.88014,2.4465 0.52721,0.25696 -0.14813,0.41326 z" /><path
|
||||
id="path31721-4"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 610.47425,335.8071 c 0,0 -1.292,-1.759 -0.861,-2.567 0.431,-0.808 2.689,-0.753 2.689,-0.753 0,0 0.489,-1.063 1.129,-1.283 0.641,-0.222 1.801,-0.076 2.312,0.431 0.512,0.503 0.377,1.924 0.377,1.924 0,0 1.169,1.214 1.237,1.927 0.067,0.715 -0.046,1.532 -0.753,1.875 -0.707,0.344 -2.581,-0.75 -2.581,-0.75 0,0 -0.792,0.492 -1.452,0.536 -0.661,0.043 -2.098,-0.06 -2.366,-0.536 -0.267,-0.473 0.269,-0.804 0.269,-0.804 z" /><path
|
||||
id="path13178"
|
||||
fill="#e3c701"
|
||||
d="m 612.21738,335.32672 0.14941,-0.41385 0.58802,0.14066 0.43717,-1.21367 c 0.0371,-0.10355 0.076,-0.20326 0.111,-0.29484 0.0362,-0.0922 0.0747,-0.18463 0.11474,-0.27862 -0.0519,0.0143 -0.10079,0.0234 -0.14722,0.0343 -0.0457,0.009 -0.0873,0.0154 -0.12292,0.0229 l -0.33331,0.0526 -0.0949,-0.57686 1.02594,-0.14747 0.48513,0.17284 -0.88034,2.44111 0.52809,0.26047 -0.14867,0.40881 z" /><path
|
||||
id="path31727-3"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 605.27625,338.3901 c 0,0 -1.909,-1.069 -1.852,-1.98 0.055,-0.915 2.135,-1.792 2.135,-1.792 0,0 0.002,-1.17 0.493,-1.638 0.49,-0.463 1.605,-0.81 2.282,-0.563 0.676,0.247 1.145,1.598 1.145,1.598 0,0 1.569,0.621 1.928,1.244 0.359,0.625 0.596,1.414 0.095,2.015 -0.5,0.605 -2.66,0.386 -2.66,0.386 0,0 -0.515,0.774 -1.099,1.088 -0.583,0.312 -1.935,0.807 -2.377,0.488 -0.441,-0.322 -0.09,-0.846 -0.09,-0.846 z" /><path
|
||||
id="path13151"
|
||||
fill="#e3c701"
|
||||
d="m 606.31374,336.5993 0.14967,-0.41164 0.58769,0.14161 0.4375,-1.21461 c 0.0372,-0.10671 0.0752,-0.20676 0.11174,-0.29988 0.0359,-0.0912 0.075,-0.18241 0.114,-0.27358 -0.0511,0.009 -0.10045,0.0224 -0.14722,0.0343 -0.0461,0.01 -0.0876,0.0132 -0.12252,0.0188 l -0.33296,0.0517 -0.0953,-0.57275 1.02634,-0.15158 0.48574,0.17412 -0.8798,2.44556 0.52661,0.25568 -0.14847,0.4142 z" /><path
|
||||
id="path31733-0"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 600.74125,339.8201 c 0,0 -2.131,-0.508 -2.33,-1.4 -0.199,-0.894 1.558,-2.31 1.558,-2.31 0,0 -0.322,-1.122 0.021,-1.705 0.342,-0.581 1.319,-1.223 2.038,-1.168 0.718,0.053 1.542,1.221 1.542,1.221 0,0 1.68,0.17 2.198,0.667 0.517,0.5 0.964,1.197 0.649,1.914 -0.314,0.718 -2.452,1.096 -2.452,1.096 0,0 -0.282,0.885 -0.757,1.346 -0.474,0.462 -1.636,1.31 -2.148,1.122 -0.512,-0.188 -0.319,-0.783 -0.319,-0.783 z" /><path
|
||||
id="path13184"
|
||||
fill="#e3c701"
|
||||
d="m 601.83619,338.1876 c -0.35744,-0.126 -0.57069,-0.34904 -0.64546,-0.66797 -0.0728,-0.32142 -0.0203,-0.7286 0.15606,-1.21776 0.17573,-0.48729 0.39084,-0.8266 0.64695,-1.0195 0.25295,-0.19296 0.55481,-0.22604 0.90157,-0.10281 0.35745,0.126 0.57036,0.34998 0.64377,0.67268 0.0751,0.31799 0.0267,0.72557 -0.15229,1.21911 -0.10419,0.28772 -0.22832,0.53323 -0.3758,0.73426 -0.14237,0.19861 -0.31056,0.33591 -0.50289,0.40719 -0.19496,0.0756 -0.41774,0.0659 -0.67191,-0.0252 z m 0.0723,-1.64191 c -0.0371,0.10039 -0.0692,0.19614 -0.0936,0.28194 l 1.13816,-0.9199 c -0.0379,-0.11346 -0.11279,-0.18916 -0.22797,-0.22938 -0.16851,-0.0604 -0.31601,-0.0134 -0.4438,0.14155 -0.12899,0.15242 -0.25297,0.39161 -0.37276,0.72579 z m 0.0869,1.15932 c 0.17012,0.0589 0.31594,0.0166 0.43926,-0.123 0.1222,-0.14529 0.24328,-0.38233 0.36206,-0.71369 0.0239,-0.0637 0.0443,-0.12647 0.062,-0.18175 0.0182,-0.0625 0.0363,-0.12191 0.0549,-0.17685 l -1.16426,0.92755 c 0.0334,0.13201 0.11491,0.22178 0.24609,0.26774 z" /><path
|
||||
id="path31739-2"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 595.34725,336.5521 c 0,0 -1.29,-1.764 -0.859,-2.572 0.431,-0.809 2.688,-0.748 2.688,-0.748 0,0 0.488,-1.063 1.129,-1.284 0.64,-0.223 1.801,-0.08 2.313,0.427 0.511,0.506 0.376,1.928 0.376,1.928 0,0 1.169,1.213 1.237,1.928 0.068,0.714 -0.046,1.531 -0.753,1.873 -0.706,0.342 -2.582,-0.749 -2.582,-0.749 0,0 -0.789,0.493 -1.451,0.535 -0.661,0.043 -2.099,-0.063 -2.367,-0.535 -0.268,-0.477 0.269,-0.803 0.269,-0.803 z" /><path
|
||||
id="path13154"
|
||||
fill="#e3c701"
|
||||
d="m 598.03587,336.67452 c -0.35523,-0.12627 -0.57137,-0.34716 -0.64486,-0.66669 -0.0719,-0.32109 -0.0213,-0.72894 0.15606,-1.21776 0.17667,-0.48695 0.38963,-0.82916 0.646,-1.01984 0.25329,-0.1939 0.55482,-0.22604 0.90346,-0.10214 0.35522,0.12627 0.56847,0.34931 0.64189,0.67201 0.0766,0.31961 0.0258,0.72524 -0.15135,1.21945 -0.10514,0.28738 -0.22926,0.53289 -0.37667,0.73076 -0.14184,0.20305 -0.31097,0.34001 -0.50331,0.41129 -0.19334,0.0741 -0.418,0.0637 -0.67122,-0.0271 z m 0.0723,-1.64191 c -0.0383,0.10099 -0.0683,0.19648 -0.0927,0.28228 l 1.13755,-0.92118 c -0.0361,-0.11279 -0.11313,-0.18822 -0.22798,-0.22938 -0.16628,-0.0607 -0.31506,-0.0131 -0.44413,0.14249 -0.12824,0.14737 -0.25357,0.39033 -0.37276,0.72579 z m 0.0879,1.15966 c 0.16918,0.0585 0.31594,0.0166 0.43746,-0.12683 0.124,-0.14146 0.24414,-0.37884 0.36292,-0.7102 0.0239,-0.0637 0.0446,-0.12741 0.0614,-0.18619 0.0187,-0.0581 0.0381,-0.11807 0.0548,-0.17368 l -1.16272,0.92916 c 0.0321,0.13262 0.11397,0.22144 0.24609,0.26774 z" /><path
|
||||
id="path31745-1"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 594.47025,339.8621 c 0,0 -0.337,-2.155 0.417,-2.68 0.753,-0.521 2.735,0.56 2.735,0.56 0,0 0.924,-0.725 1.594,-0.628 0.671,0.096 1.636,0.751 1.859,1.434 0.223,0.684 -0.55,1.887 -0.55,1.887 0,0 0.482,1.61 0.213,2.276 -0.268,0.665 -0.743,1.34 -1.529,1.321 -0.786,-0.015 -1.952,-1.842 -1.952,-1.842 0,0 -0.928,0.079 -1.536,-0.183 -0.607,-0.265 -1.837,-1.014 -1.857,-1.557 -0.023,-0.542 0.606,-0.588 0.606,-0.588 z" /><path
|
||||
id="path13157"
|
||||
fill="#e3c701"
|
||||
d="m 597.18338,341.14506 0.14847,-0.41419 0.58863,0.14194 0.43656,-1.21495 c 0.0394,-0.10697 0.0764,-0.2042 0.11194,-0.2945 0.0362,-0.0922 0.0737,-0.18496 0.11346,-0.27802 -0.0497,0.0141 -0.0982,0.0222 -0.14594,0.0337 -0.0467,0.009 -0.0867,0.0167 -0.12387,0.0225 l -0.33296,0.0517 -0.094,-0.57652 1.02687,-0.14714 0.48325,0.17216 -0.87973,2.4424 0.5291,0.25764 -0.14907,0.41292 z" /><path
|
||||
id="path31751-4"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 602.03325,342.2201 c 0,0 -1.292,-1.764 -0.861,-2.572 0.431,-0.808 2.688,-0.748 2.688,-0.748 0,0 0.491,-1.063 1.13,-1.284 0.641,-0.221 1.801,-0.077 2.313,0.427 0.511,0.506 0.376,1.928 0.376,1.928 0,0 1.169,1.213 1.237,1.928 0.067,0.714 -0.046,1.532 -0.752,1.873 -0.708,0.343 -2.581,-0.748 -2.581,-0.748 0,0 -0.792,0.492 -1.453,0.534 -0.66,0.044 -2.097,-0.063 -2.365,-0.534 -0.268,-0.477 0.268,-0.804 0.268,-0.804 z" /><path
|
||||
id="path13160"
|
||||
fill="#e3c701"
|
||||
d="m 605.25709,343.15948 c -0.35055,0.14141 -0.65889,0.11483 -0.92721,-0.0745 -0.26889,-0.18807 -0.50033,-0.52926 -0.69617,-1.01205 -0.19565,-0.47964 -0.26124,-0.87479 -0.19994,-1.18527 0.0628,-0.31215 0.26434,-0.53688 0.60562,-0.67455 0.35148,-0.14179 0.66092,-0.11781 0.92907,0.0738 0.27055,0.18955 0.50477,0.52423 0.7008,1.01018 0.1156,0.28656 0.18546,0.5506 0.20995,0.79844 0.0267,0.24262 -0.007,0.45479 -0.10286,0.63779 -0.0958,0.18208 -0.26887,0.3252 -0.51926,0.42621 z m -1.04234,-1.27676 c 0.0406,0.10331 0.0804,0.194 0.11872,0.27559 l 0.23495,-1.44373 c -0.10322,-0.0554 -0.21021,-0.064 -0.32428,-0.018 -0.16304,0.0636 -0.24287,0.19718 -0.2367,0.39957 0.005,0.19961 0.0741,0.46179 0.20731,0.78656 z m 0.83911,0.80773 c 0.16805,-0.0646 0.24827,-0.19181 0.24419,-0.38102 -0.003,-0.18959 -0.0719,-0.44546 -0.20411,-0.7706 -0.0253,-0.0653 -0.052,-0.12352 -0.078,-0.1799 -0.0271,-0.0591 -0.0529,-0.11237 -0.0768,-0.16634 l -0.24808,1.46197 c 0.11183,0.0767 0.23369,0.0901 0.36277,0.0359 z" /><path
|
||||
id="path31757-5"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 609.28925,342.6811 c 0,0 -2.182,-0.199 -2.507,-1.056 -0.323,-0.857 1.213,-2.503 1.213,-2.503 0,0 -0.477,-1.068 -0.221,-1.692 0.257,-0.625 1.133,-1.397 1.853,-1.446 0.719,-0.048 1.701,0.995 1.701,0.995 0,0 1.688,-0.069 2.27,0.35 0.583,0.424 1.124,1.049 0.914,1.803 -0.209,0.753 -2.272,1.432 -2.272,1.432 0,0 -0.152,0.914 -0.556,1.439 -0.405,0.521 -1.434,1.527 -1.967,1.411 -0.536,-0.111 -0.428,-0.733 -0.428,-0.733 z" /><path
|
||||
id="path13163"
|
||||
fill="#e3c701"
|
||||
d="m 609.89342,341.21609 c -0.377,-3.2e-4 -0.65588,-0.13756 -0.83264,-0.41272 -0.17677,-0.27615 -0.26542,-0.67523 -0.26497,-1.19823 4.5e-4,-0.517 0.0878,-0.90692 0.26201,-1.17377 0.17423,-0.26685 0.44635,-0.40062 0.81635,-0.4003 0.378,3.3e-4 0.65488,0.13757 0.83264,0.41672 0.17976,0.27616 0.26942,0.67524 0.26897,1.19724 -2.7e-4,0.309 -0.0365,0.57896 -0.10671,0.8169 -0.0672,0.23895 -0.17937,0.42485 -0.33648,0.55671 -0.15611,0.13287 -0.36917,0.19769 -0.63917,0.19745 z m -0.48764,-1.57342 c -1e-4,0.113 0.003,0.213 0.008,0.30401 l 0.76008,-1.25035 c -0.0719,-0.0931 -0.16988,-0.14014 -0.29188,-0.13925 -0.177,-1.5e-4 -0.30009,0.0947 -0.37025,0.27968 -0.0702,0.18494 -0.10539,0.45391 -0.10569,0.80591 z m 0.47408,1.06841 c 0.18,1.6e-4 0.30407,-0.0877 0.37123,-0.26568 0.0661,-0.17794 0.0994,-0.44091 0.0997,-0.79191 6e-5,-0.066 -0.002,-0.13401 -0.004,-0.19201 -0.003,-0.064 -0.006,-0.128 -0.009,-0.183 l -0.78108,1.25832 c 0.0759,0.11607 0.18485,0.17416 0.32285,0.17428 z" /><path
|
||||
id="path31763-7"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 612.45625,339.2391 c 0,0 -1.292,-1.76 -0.861,-2.567 0.431,-0.809 2.688,-0.749 2.688,-0.749 0,0 0.49,-1.066 1.13,-1.288 0.641,-0.221 1.801,-0.075 2.313,0.431 0.512,0.506 0.376,1.929 0.376,1.929 0,0 1.169,1.213 1.237,1.928 0.068,0.713 -0.046,1.527 -0.752,1.873 -0.708,0.342 -2.581,-0.751 -2.581,-0.751 0,0 -0.792,0.491 -1.453,0.536 -0.66,0.044 -2.097,-0.063 -2.365,-0.536 -0.268,-0.473 0.268,-0.806 0.268,-0.806 z" /><path
|
||||
id="path13166"
|
||||
fill="#e3c701"
|
||||
d="m 613.31021,340.16541 0.24391,-0.36501 0.537,0.27782 0.71734,-1.07336 c 0.0626,-0.0941 0.12348,-0.18209 0.18052,-0.26065 0.0568,-0.0836 0.11629,-0.16405 0.17666,-0.244 -0.0527,-2.2e-4 -0.10179,-4.3e-4 -0.15033,-10e-4 -0.0474,-0.003 -0.0879,-0.007 -0.12537,-0.0101 l -0.33674,-0.0282 0.0462,-0.58054 1.03242,0.10166 0.42884,0.28156 -1.44297,2.16283 0.45031,0.37749 -0.24447,0.36223 z" /><path
|
||||
id="path31769-2"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 615.30325,332.1331 c 0,0 -1.743,-1.318 -1.563,-2.216 0.18,-0.896 2.36,-1.484 2.36,-1.484 0,0 0.163,-1.158 0.714,-1.552 0.549,-0.394 1.703,-0.588 2.338,-0.251 0.635,0.341 0.915,1.74 0.915,1.74 0,0 1.468,0.83 1.738,1.495 0.27,0.664 0.396,1.48 -0.182,2.01 -0.58,0.529 -2.689,0.019 -2.689,0.019 0,0 -0.615,0.695 -1.237,0.926 -0.62,0.23 -2.027,0.538 -2.421,0.159 -0.392,-0.375 0.027,-0.846 0.027,-0.846 z" /><path
|
||||
id="path13175"
|
||||
fill="#e3c701"
|
||||
d="m 618.09657,331.89568 c -0.33818,0.16663 -0.64944,0.16781 -0.9311,0.002 -0.28299,-0.17277 -0.54176,-0.4873 -0.77496,-0.95655 -0.2332,-0.46478 -0.33183,-0.85257 -0.29365,-1.16783 0.0364,-0.31661 0.21943,-0.55443 0.54912,-0.72017 0.33818,-0.16663 0.64899,-0.16647 0.93244,0.003 0.28434,0.16428 0.54355,0.48194 0.77943,0.95208 0.13805,0.27422 0.22824,0.5332 0.27194,0.77741 0.0477,0.24107 0.0293,0.45483 -0.0509,0.64575 -0.0802,0.18868 -0.24167,0.34199 -0.48234,0.46439 z m -1.14379,-1.19153 c 0.0487,0.0997 0.0965,0.18654 0.14163,0.26348 l 0.11839,-1.45293 c -0.10641,-0.0519 -0.21508,-0.0502 -0.32468,0.006 -0.15835,0.0768 -0.22685,0.21722 -0.20504,0.41535 0.0222,0.19679 0.11201,0.45264 0.2697,0.76846 z m 0.90253,0.74196 c 0.16149,-0.0795 0.23177,-0.2141 0.21354,-0.40059 -0.0191,-0.18829 -0.10665,-0.43967 -0.26435,-0.75325 -0.0313,-0.0626 -0.0625,-0.12078 -0.0916,-0.17446 -0.0317,-0.0524 -0.0621,-0.10647 -0.0898,-0.15747 l -0.13182,1.47752 c 0.11803,0.0663 0.24011,0.069 0.36402,0.008 z" /><path
|
||||
id="path31775-7"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 616.57425,335.2791 c 0,0 -0.563,-2.107 0.131,-2.705 0.695,-0.599 2.779,0.269 2.779,0.269 0,0 0.841,-0.814 1.519,-0.792 0.678,0.026 1.707,0.576 2,1.233 0.293,0.654 -0.348,1.93 -0.348,1.93 0,0 0.649,1.555 0.452,2.242 -0.196,0.692 -0.599,1.413 -1.382,1.477 -0.783,0.066 -2.134,-1.626 -2.134,-1.626 0,0 -0.916,0.174 -1.548,-0.025 -0.633,-0.195 -1.934,-0.813 -2.012,-1.352 -0.077,-0.537 0.543,-0.651 0.543,-0.651 z" /><path
|
||||
id="path13169"
|
||||
fill="#e3c701"
|
||||
d="m 620.2713,336.0737 c -0.24494,0.2879 -0.53106,0.40816 -0.85586,0.36554 -0.32795,-0.0466 -0.6904,-0.23943 -1.08982,-0.57398 -0.39541,-0.33772 -0.63879,-0.65506 -0.72963,-0.96341 -0.0913,-0.30478 -0.0161,-0.59531 0.22238,-0.8756 0.24493,-0.28791 0.53041,-0.40741 0.85901,-0.36155 0.32609,0.0411 0.69125,0.23227 1.09165,0.57029 0.23535,0.20023 0.41973,0.40173 0.55641,0.60991 0.13904,0.20232 0.2076,0.41032 0.2077,0.61391 10e-5,0.20359 -0.0867,0.41206 -0.26184,0.61489 z m -1.51842,-0.64584 c 0.085,0.0684 0.16254,0.13303 0.23433,0.18754 l -0.46372,-1.38708 c -0.11878,-0.004 -0.21808,0.0403 -0.29573,0.13309 -0.1161,0.13493 -0.12367,0.28735 -0.0245,0.46096 0.0962,0.17244 0.27863,0.37622 0.54966,0.60549 z m 1.1209,0.32603 c 0.11675,-0.13569 0.1303,-0.28434 0.0388,-0.45147 -0.092,-0.16496 -0.27151,-0.35835 -0.53962,-0.58643 -0.0541,-0.046 -0.10488,-0.0866 -0.15275,-0.12602 -0.0506,-0.0378 -0.0997,-0.0757 -0.1451,-0.11032 l 0.46055,1.40934 c 0.13543,0.0167 0.24818,-0.0278 0.33813,-0.1351 z" /><path
|
||||
id="path31781-0"
|
||||
sodipodi:nodetypes="czczzczzczzc"
|
||||
fill="#eee886"
|
||||
stroke="#e2d161"
|
||||
stroke-width="1.7"
|
||||
stroke-linecap="round"
|
||||
d="m 623.04925,334.3851 c 0,0 -1.57,1.521 -2.435,1.21 -0.863,-0.312 -1.123,-2.545 -1.123,-2.545 0,0 -1.125,-0.334 -1.437,-0.932 -0.311,-0.602 -0.33,-1.766 0.101,-2.341 0.431,-0.575 1.864,-0.644 1.864,-0.644 0,0 1.042,-1.32 1.742,-1.487 0.701,-0.17 1.529,-0.171 1.97,0.478 0.439,0.648 -0.382,2.65 -0.382,2.65 0,0 0.6,0.71 0.736,1.354 0.136,0.647 0.233,2.078 -0.2,2.411 -0.433,0.327 -0.836,-0.154 -0.836,-0.154 z" /><path
|
||||
id="path13172"
|
||||
fill="#e3c701"
|
||||
d="m 621.55537,333.48563 -0.24082,-0.37064 0.47074,-0.37699 -0.70317,-1.08389 c -0.0619,-0.0957 -0.11806,-0.18446 -0.17013,-0.26868 -0.0507,-0.0839 -0.10163,-0.17007 -0.15197,-0.25899 -0.0207,0.0491 -0.0413,0.0946 -0.0602,0.13895 -0.0214,0.0424 -0.0419,0.0771 -0.0592,0.10735 l -0.16091,0.29814 -0.51485,-0.27325 0.50451,-0.90492 0.43219,-0.27824 1.41585,2.18069 0.52572,-0.2625 0.23974,0.36896 z" /><path
|
||||
id="path31787-8"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
fill="#ec6608"
|
||||
d="m 603.06327,364.90768 -9.93052,-24.53537 c 0.24744,0.92346 1.2221,1.63246 2.82168,2.05808 l 9.37098,24.11105 c -1.28512,-0.33689 -2.06552,-0.89998 -2.26214,-1.63376 z"
|
||||
style="stroke-width:1.72259" /><path
|
||||
id="path31789-8"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
fill="#ec6608"
|
||||
d="m 602.25442,342.80744 c 2.52495,-0.18078 5.31474,-0.66437 8.09012,-1.40803 l 6.53767,24.29243 c -2.22841,0.59532 -4.47071,0.98571 -6.49936,1.13516 z"
|
||||
style="stroke-width:1.72259" /><path
|
||||
id="path31791-4"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
fill="#ec6608"
|
||||
d="m 623.0803,363.439 -5.02604,-24.84728 c 2.27885,-1.09926 4.09475,-2.2956 5.26722,-3.464 l 3.99481,25.54447 c -0.94328,0.93221 -2.40473,1.88735 -4.23599,2.76681 z"
|
||||
style="stroke-width:1.72259" /><path
|
||||
id="path31795-1"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
fill="#fbba00"
|
||||
d="m 602.25442,342.80744 c -2.52661,0.18123 -4.69951,0.0519 -6.30044,-0.37872 l 9.37099,24.11106 c 1.28512,0.3369 3.02878,0.43501 5.05833,0.28888 z"
|
||||
style="stroke-width:1.72259" /><path
|
||||
id="path31797-4"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
fill="#fbba00"
|
||||
d="m 618.05426,338.59172 c -2.27718,1.09881 -4.93755,2.07202 -7.71139,2.80814 l 6.53767,24.29243 c 2.22841,-0.59532 4.36561,-1.37128 6.19765,-2.25451 z"
|
||||
style="stroke-width:1.72259" /><path
|
||||
id="path31799-9"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
fill="#fbba00"
|
||||
d="m 623.32148,335.12772 c 1.17247,-1.16839 1.65795,-2.26505 1.41018,-3.18308 l 3.72362,26.18959 c 0.19783,0.73167 -0.19571,1.60575 -1.13943,2.5363 z"
|
||||
style="stroke-width:1.72259" /></g></g></g><g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="texte"
|
||||
style="opacity:1;">
|
||||
<rect
|
||||
style="opacity:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.54968041;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect16064-4"
|
||||
width="930"
|
||||
height="155.71428"
|
||||
x="940"
|
||||
y="294.28571"
|
||||
ry="0" />
|
||||
<rect
|
||||
style="opacity:0;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06542766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect16064"
|
||||
width="930"
|
||||
height="585"
|
||||
x="940"
|
||||
y="455.00003"
|
||||
ry="0" />
|
||||
<flowRoot
|
||||
style="opacity:1;"><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.33330154px;line-height:125%;font-family:B612;-inkscape-font-specification:'B612, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-variant-east-asian:normal"
|
||||
id="persons"><flowRegion
|
||||
id="flowRegion3669"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.33330154px;font-family:B612;-inkscape-font-specification:'B612, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-variant-east-asian:normal"><use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#rect16064-4"
|
||||
id="use3671"
|
||||
width="100%"
|
||||
height="100%" /></flowRegion><flowPara
|
||||
id="flowPara3673"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:B612;-inkscape-font-specification:'B612, Normal';font-size:53.33330154px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$personnames</flowPara></flowRoot>
|
||||
<flowRoot
|
||||
id="title"
|
||||
style="font-size:74.6667px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;writing-mode:lr-tb;direction:ltr;white-space:pre;shape-inside:url(#rect1);display:inline;fill:#ffffff;fill-opacity:1"
|
||||
transform="translate(-177.06947,5.332906)"
|
||||
inkscape:label="title"><tspan
|
||||
x="1060.8515"
|
||||
y="792.97121"
|
||||
id="tspan4">$title</tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:B612;-inkscape-font-specification:'B612, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-variant-east-asian:normal"
|
||||
id="title"><flowRegion
|
||||
id="flowRegion4931"
|
||||
style="fill:#ffffff;fill-opacity:1;-inkscape-font-specification:'B612, Normal';font-family:B612;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-size:80px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"><use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#rect16064"
|
||||
id="use4933"
|
||||
width="100%"
|
||||
height="100%" /></flowRegion><flowPara
|
||||
id="flowPara4935"
|
||||
style="-inkscape-font-specification:'B612, Normal';font-family:B612;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-size:80px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$title</flowPara></flowRoot>
|
||||
</g>
|
||||
</svg>
|
||||
id="persons"
|
||||
style="font-size:53.3333px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;writing-mode:lr-tb;direction:ltr;white-space:pre;shape-inside:url(#rect3);shape-padding:1.2142;display:inline;opacity:1;fill:#ff9700"
|
||||
transform="translate(-284.84385,128.97464)"
|
||||
inkscape:label="persons"><tspan
|
||||
x="1082.8204"
|
||||
y="832.11247"
|
||||
id="tspan6"><tspan
|
||||
style="fill:#ffffff"
|
||||
id="tspan5">$personnames</tspan></tspan></text></g></svg>
|
||||
|
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 67 KiB |
File diff suppressed because it is too large
Load diff
Before Width: | Height: | Size: 134 KiB |
13
renderlib.py
13
renderlib.py
|
@ -11,6 +11,8 @@ from svgtemplate import SVGTemplate
|
|||
from lxml import etree
|
||||
from urllib.request import urlopen
|
||||
from wand.image import Image
|
||||
from multiprocessing.pool import ThreadPool
|
||||
from time import sleep
|
||||
|
||||
# Frames per second. Increasing this renders more frames, the avconf-statements would still need modifications
|
||||
fps = 25
|
||||
|
@ -142,8 +144,6 @@ def cachedRenderFrame(frame, frameNr, task, cache):
|
|||
cache[frame]), "{0}/{1:04d}.png".format(framedir, frameNr))
|
||||
|
||||
return
|
||||
elif not skip_rendering:
|
||||
cache[frame] = frameNr
|
||||
|
||||
svgfile = '{0}/.frames/{1:04d}.svg'.format(task.workdir, frameNr)
|
||||
|
||||
|
@ -155,6 +155,7 @@ def cachedRenderFrame(frame, frameNr, task, cache):
|
|||
|
||||
outfile = '{0}/.frames/{1:04d}.png'.format(task.workdir, frameNr)
|
||||
renderFrame(svgfile, task, outfile)
|
||||
cache[frame] = frameNr
|
||||
|
||||
# increment frame-number
|
||||
frameNr += 1
|
||||
|
@ -175,6 +176,14 @@ def rendertask_video(task):
|
|||
for frameNr, frame in enumerate(task.sequence(task.parameters)):
|
||||
cachedRenderFrame(frame, frameNr, task, cache)
|
||||
|
||||
# with ThreadPool() as pool:
|
||||
# pool.starmap(
|
||||
# lambda frameNr, frame: cachedRenderFrame(frame, frameNr, task, cache),
|
||||
# enumerate(task.sequence(task.parameters)),
|
||||
# )
|
||||
# pool.close()
|
||||
# pool.join()
|
||||
|
||||
if args.only_frame:
|
||||
task.outfile = '{0}.frame{1:04d}.png'.format(task.outfile, args.only_frame)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue