Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
![]() |
9fc1a85066 |
1
.gitignore
vendored
|
@ -12,3 +12,4 @@ schedule.de.xml
|
||||||
snapshot-*.png
|
snapshot-*.png
|
||||||
env
|
env
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
*/thumbs
|
||||||
|
|
167
froscon2021/__init__.py
Normal file
|
@ -0,0 +1,167 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
import os.path
|
||||||
|
from renderlib import *
|
||||||
|
from easing import *
|
||||||
|
import svg.path
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'https://programm.froscon.de/2021/schedule.xml'
|
||||||
|
|
||||||
|
# For (really) too long titles
|
||||||
|
titlemap = {
|
||||||
|
#
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def introFrames(args):
|
||||||
|
xml = etree.parse('froscon2021/artwork/intro.svg').getroot()
|
||||||
|
pathstr = xml.find(".//*[@id='animatePath']").get('d')
|
||||||
|
frog = xml.find(".//*[@id='animatePath']").get('d')
|
||||||
|
path = svg.path.parse_path(pathstr)
|
||||||
|
|
||||||
|
init = path.point(0)
|
||||||
|
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
p = path.point(i / frames) - init
|
||||||
|
yield (
|
||||||
|
('animatePath', 'style', 'opacity', 0),
|
||||||
|
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||||
|
('title', 'style', 'opacity', 0),
|
||||||
|
('names', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = int(0.5*fps)
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('animatePath', 'style', 'opacity', 0),
|
||||||
|
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||||
|
('title', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||||
|
('names', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = int(3.0*fps)
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('animatePath', 'style', 'opacity', 0),
|
||||||
|
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def outroFrames(args):
|
||||||
|
xml = etree.parse('froscon2019/artwork/outro.svg').getroot()
|
||||||
|
pathstr = xml.find(".//*[@id='animatePath']").get('d')
|
||||||
|
frog = xml.find(".//*[@id='animatePath']").get('d')
|
||||||
|
path = svg.path.parse_path(pathstr)
|
||||||
|
|
||||||
|
init = path.point(0)
|
||||||
|
|
||||||
|
frames = int(4*fps)
|
||||||
|
for i in range(0, frames):
|
||||||
|
p = path.point(i / frames) - init
|
||||||
|
yield (
|
||||||
|
)
|
||||||
|
|
||||||
|
def pauseFrames(args):
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 1),
|
||||||
|
('text2', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
|
||||||
|
('text2', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', 1),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||||
|
('text2', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
render('intro.svg',
|
||||||
|
'../intro.ts',
|
||||||
|
introFrames,
|
||||||
|
{
|
||||||
|
'$id': 2404,
|
||||||
|
'$title': 'Linux Container im High Performance Computing',
|
||||||
|
'$subtitle': 'Vom Wal zur Singularität und weiter',
|
||||||
|
'$personnames': 'Holger Gantikow'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
# render('outro.svg',
|
||||||
|
# '../outro.ts',
|
||||||
|
# outroFrames
|
||||||
|
# )
|
||||||
|
|
||||||
|
# render('pause.svg',
|
||||||
|
# '../pause.ts',
|
||||||
|
# pauseFrames
|
||||||
|
# )
|
||||||
|
|
||||||
|
|
||||||
|
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 ('HS 1/2', 'HS3', 'HS4', 'HS5', 'HS6', 'HS7', 'HS8', 'C116', 'Workshop'):
|
||||||
|
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||||
|
continue
|
||||||
|
|
||||||
|
if (event['id'] in idlist or not idlist) and not 'intro' in skiplist:
|
||||||
|
# generate a task description and put them into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'intro.svg',
|
||||||
|
outfile = str(event['id'])+".ts",
|
||||||
|
sequence = introFrames,
|
||||||
|
parameters = {
|
||||||
|
'$id': event['id'],
|
||||||
|
'$title': event['title'],
|
||||||
|
# '$subtitle': event['subtitle'],
|
||||||
|
'$personnames': event['personnames']
|
||||||
|
}
|
||||||
|
))
|
||||||
|
|
||||||
|
if not 'outro' in skiplist:
|
||||||
|
# place a task for the outro into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'outro.svg',
|
||||||
|
outfile = 'outro.ts',
|
||||||
|
sequence = outroFrames
|
||||||
|
))
|
||||||
|
|
||||||
|
if not 'pause' in skiplist:
|
||||||
|
# place the pause-sequence into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'pause.svg',
|
||||||
|
outfile = 'pause.ts',
|
||||||
|
sequence = pauseFrames
|
||||||
|
))
|
166
froscon2021/artwork/background.svg
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
viewBox="0 0 1920 1080"
|
||||||
|
sodipodi:docname="background.svg">
|
||||||
|
<metadata
|
||||||
|
id="metadata8">
|
||||||
|
<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>
|
||||||
|
<defs
|
||||||
|
id="defs6">
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="linearGradient4741">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#00a2e1;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4743" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#6ab9db;stop-opacity:0"
|
||||||
|
offset="1"
|
||||||
|
id="stop4745" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient4741"
|
||||||
|
id="linearGradient4747"
|
||||||
|
x1="866.47607"
|
||||||
|
y1="1057.5571"
|
||||||
|
x2="1635.6337"
|
||||||
|
y2="287.33304"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.99259145,0,0,0.99425016,-0.01265263,2.7220921)" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1152"
|
||||||
|
id="namedview4"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="0.64"
|
||||||
|
inkscape:cx="1316.8278"
|
||||||
|
inkscape:cy="504.28555"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg2"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1664.2857,871.42857"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4731"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1840.4762,-14.285714"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4733"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:url(#linearGradient4747);fill-opacity:1;stroke:#ffdab9;stroke-width:0.19929704;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect4687"
|
||||||
|
width="1923.7358"
|
||||||
|
height="1084.2056"
|
||||||
|
x="-1.6193991"
|
||||||
|
y="-0.21300632" />
|
||||||
|
<path
|
||||||
|
class="fil0 str1"
|
||||||
|
d="m 1753.7315,86.860553 c 47.415,0 85.8671,38.452177 85.8671,85.867117 0,47.41495 -38.4521,85.8671 -85.8671,85.8671 -47.4148,0 -85.8672,-38.45215 -85.8672,-85.8671 0,-47.41494 38.4524,-85.867117 85.8672,-85.867117 z"
|
||||||
|
id="path3233"
|
||||||
|
style="fill:#00a2e1;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3235-3"
|
||||||
|
class="fil9"
|
||||||
|
d="m 1751.3429,88.80553 c 47.415,0 85.8671,38.45217 85.8671,85.86711 0,47.41496 -38.4521,85.86711 -85.8671,85.86711 -47.4148,0 -85.8672,-38.45215 -85.8672,-85.86711 0,-47.41494 38.4524,-85.86711 85.8672,-85.86711 z"
|
||||||
|
style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3235"
|
||||||
|
class="fil9"
|
||||||
|
d="m 1753.7315,86.860553 c 47.415,0 85.8671,38.452177 85.8671,85.867117 0,47.41495 -38.4521,85.8671 -85.8671,85.8671 -47.4148,0 -85.8672,-38.45215 -85.8672,-85.8671 0,-47.41494 38.4524,-85.867117 85.8672,-85.867117 z"
|
||||||
|
style="fill:#00a2e1;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#555753;fill-rule:nonzero"
|
||||||
|
id="path3237-6"
|
||||||
|
d="m 1779.6133,124.50389 c 4.586,2.77845 2.1521,10.71499 3.5326,15.94829 0.7726,3.15992 1.934,7.09875 -0.7748,9.71938 -2.5231,1.95235 -7.2824,1.71317 -8.315,4.71815 -1.3288,3.86807 2.3946,10.05017 7.5956,9.71142 6.4567,-1.79084 11.6544,-6.59422 16.2565,-11.25838 4.5547,-4.6609 3.032,-8.32311 2.599,-14.08264 -0.1939,-2.5642 2.0709,-5.77238 4.0331,-4.35585 4.2109,3.04155 -2.5417,9.9367 2.3983,11.26471 5.0569,1.35947 7.3074,-13.08869 12.006,-7.12146 2.8975,3.67736 -8.3986,6.98531 -5.5913,10.25541 2.5298,2.73165 5.5471,-5.05052 10.2186,-2.24079 0.924,0.55607 1.6661,1.95847 1.1448,2.91851 -2.7392,5.0352 -9.1272,0.64599 -9.8242,4.75185 -0.8135,4.78724 10.3892,-0.31892 9.5362,5.94555 -1.1163,8.20148 -12.5278,-3.33943 -21.0544,1.40446 -8.4365,4.69318 -12.0461,14.71679 -20.8093,18.57772 -5.0924,2.24467 -9.5868,-3.08654 -14.3604,-4.46054 -1.1447,7.72658 -6.2327,13.54904 -11.2632,19.11618 -4.4864,12.13562 24.9369,-3.44552 21.0238,10.97503 -2.4911,9.18032 -14.6236,5.5649 -22.2626,10.80679 -1.0222,6.76963 4.7922,9.50536 9.5111,11.91195 7.4669,3.80697 2.1038,5.82472 0.2474,3.95826 -3.9727,-3.99445 -4.2319,-1.13667 -3.5576,-0.38435 2.6891,3.00213 1.0896,1.70703 6.5709,5.86584 2.9145,2.21094 0.1471,6.13054 -2.6448,4.36323 -4.0693,-4.12018 -4.9232,-8.4736 -7.1987,-7.75153 -3.0456,1.10189 1.8646,3.99687 3.7241,10.43328 1.6088,5.56714 -5.8216,6.13711 -5.2921,1.08962 0.5909,-5.626 -1.6661,-9.14166 -2.99,-9.07645 -1.7847,0.0876 1.6988,11.14882 -2.5144,10.75608 -3.9976,-0.37206 -1.891,-7.24205 -1.664,-8.0373 2.3407,-8.17817 0.9813,-8.11622 -2.8363,-15.71728 -1.9298,-3.84561 -11.9377,-11.55215 -6.5419,-14.96233 18.5303,-5.85128 -2.4782,-5.25088 -4.1635,-9.38943 -9e-4,-0.65214 -0.063,-0.68893 -0.6276,-0.36183 -4.4267,0.6092 -14.4101,-17.88471 -10.213,1.08962 -0.2555,6.37771 -11.9335,1.56392 -16.2292,1.81536 -8.4904,0.49473 -9.1173,-0.71345 -15.0291,5.40135 -0.5743,0.59491 -5.4714,5.85294 -7.7925,2.57709 -2.4469,-3.45124 8.8733,-5.96557 8.0572,-7.55443 -0.605,-1.17958 -4.7782,-1.37585 -9.3549,1.94826 -4.1055,2.98206 -7.3274,-3.7387 -1.7009,-5.12781 6.5034,-1.60687 11.4655,1.19798 10.8969,-1.9912 -0.5129,-2.33237 -4.709,-0.89543 -10.3125,-2.35895 -2.9264,-1.53531 -0.9158,-5.89076 2.4565,-4.4718 6.3406,2.66725 4.4211,1.92986 8.3657,2.75823 0.9873,0.20648 3.3336,-1.44536 -2.1122,-2.88947 -2.545,-0.67464 -3.4786,-6.32785 3.552,-1.76426 4.4435,2.88373 9.7192,6.55068 15.0715,2.28085 0.7197,-9.23652 -8.4775,-17.93537 -1.7723,-24.6825 10.5323,-10.59991 11.7499,22.67211 20.0159,12.71842 2.3065,-7.13984 4.8051,-14.45775 10.9235,-19.31182 -3.576,-3.44717 -10.4398,-4.67376 -11.0419,-10.20636 -1.0385,-9.51987 5.8377,-17.65695 5.684,-27.31051 -0.1542,-9.75641 -15.8557,-13.86941 -9.3108,-18.9359 4.9992,-3.87136 6.1781,8.38424 9.9176,5.28544 3.2074,-2.65684 -3.7876,-5.99462 -0.7972,-10.88324 0.5704,-0.932219 2.1561,-0.989468 3.1002,-0.468154 4.7689,2.640674 -0.462,9.144714 3.1687,9.969814 4.2359,0.79526 1.4535,-10.640148 6.0865,-9.970632 7.5166,1.085532 -3.8689,10.258682 -0.1635,13.958522 3.6194,3.6146 6.2151,-5.68141 10.9541,-3.55509 2.2085,0.9915 0.5622,4.55621 -1.7562,5.67099 -5.205,2.50391 -9.1374,3.01663 -10.896,9.29131 -1.7378,6.31822 -3.2999,13.22134 -1.6213,19.70783 2.3068,4.67376 9.5217,4.80583 12.208,1.72338 2.0856,-2.39678 -0.5008,-6.39858 -0.072,-9.56014 0.9159,-3.65569 4.9065,-4.62063 8.0294,-5.53096 5.2227,-1.42083 10.8784,-7.49721 15.5789,-4.91439 z"
|
||||||
|
class="fil5" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-rule:nonzero"
|
||||||
|
id="path3237"
|
||||||
|
d="m 1782.2338,123.36017 c 4.586,2.77845 2.1521,10.71499 3.5326,15.94829 0.7726,3.15992 1.934,7.09875 -0.7748,9.71938 -2.5231,1.95235 -7.2824,1.71317 -8.315,4.71815 -1.3288,3.86807 2.3946,10.05017 7.5956,9.71142 6.4567,-1.79084 11.6544,-6.59422 16.2565,-11.25838 4.5547,-4.6609 3.032,-8.32311 2.599,-14.08264 -0.1939,-2.5642 2.0709,-5.77238 4.0331,-4.35585 4.2109,3.04155 -2.5417,9.9367 2.3983,11.26471 5.0569,1.35947 7.3074,-13.08869 12.006,-7.12146 2.8975,3.67736 -8.3986,6.98531 -5.5913,10.25541 2.5298,2.73165 5.5471,-5.05052 10.2186,-2.24079 0.924,0.55607 1.6661,1.95847 1.1448,2.91851 -2.7392,5.0352 -9.1272,0.64599 -9.8242,4.75185 -0.8135,4.78724 10.3892,-0.31892 9.5362,5.94555 -1.1163,8.20148 -12.5278,-3.33943 -21.0544,1.40446 -8.4365,4.69318 -12.0461,14.71679 -20.8093,18.57772 -5.0924,2.24467 -9.5868,-3.08654 -14.3604,-4.46054 -1.1447,7.72658 -6.2327,13.54904 -11.2632,19.11618 -4.4864,12.13562 24.9369,-3.44552 21.0238,10.97503 -2.4911,9.18032 -14.6236,5.5649 -22.2626,10.80679 -1.0222,6.76963 4.7922,9.50536 9.5111,11.91195 7.4669,3.80697 2.1038,5.82472 0.2474,3.95826 -3.9727,-3.99445 -4.2319,-1.13667 -3.5576,-0.38435 2.6891,3.00213 1.0896,1.70703 6.5709,5.86584 2.9145,2.21094 0.1471,6.13054 -2.6448,4.36323 -4.0693,-4.12018 -4.9232,-8.4736 -7.1987,-7.75153 -3.0456,1.10189 1.8646,3.99687 3.7241,10.43328 1.6088,5.56714 -5.8216,6.13711 -5.2921,1.08962 0.5909,-5.626 -1.6661,-9.14166 -2.99,-9.07645 -1.7847,0.0876 1.6988,11.14882 -2.5144,10.75608 -3.9976,-0.37206 -1.891,-7.24205 -1.664,-8.0373 2.3407,-8.17817 0.9813,-8.11622 -2.8363,-15.71728 -1.9298,-3.84561 -11.9377,-11.55215 -6.5419,-14.96233 18.5303,-5.85128 -2.4782,-5.25088 -4.1635,-9.38943 -9e-4,-0.65214 -0.063,-0.68893 -0.6276,-0.36183 -4.4267,0.6092 -14.4101,-17.88471 -10.213,1.08962 -0.2555,6.37771 -11.9335,1.56392 -16.2292,1.81536 -8.4904,0.49473 -9.1173,-0.71345 -15.0291,5.40135 -0.5743,0.59491 -5.4714,5.85294 -7.7925,2.57709 -2.4469,-3.45124 8.8733,-5.96557 8.0572,-7.55443 -0.605,-1.17958 -4.7782,-1.37585 -9.3549,1.94826 -4.1055,2.98206 -7.3274,-3.7387 -1.7009,-5.12781 6.5034,-1.60687 11.4655,1.19798 10.8969,-1.9912 -0.5129,-2.33237 -4.709,-0.89543 -10.3125,-2.35895 -2.9264,-1.53531 -0.9158,-5.89076 2.4565,-4.4718 6.3406,2.66725 4.4211,1.92986 8.3657,2.75823 0.9873,0.20648 3.3336,-1.44536 -2.1122,-2.88947 -2.545,-0.67464 -3.4786,-6.32785 3.552,-1.76426 4.4435,2.88373 9.7192,6.55068 15.0715,2.28085 0.7197,-9.23652 -8.4775,-17.93537 -1.7723,-24.6825 10.5323,-10.59991 11.7499,22.67211 20.0159,12.71842 2.3065,-7.13984 4.8051,-14.45775 10.9235,-19.31182 -3.576,-3.44717 -10.4398,-4.67376 -11.0419,-10.20636 -1.0385,-9.51987 5.8377,-17.65695 5.684,-27.31051 -0.1542,-9.75641 -15.8557,-13.86941 -9.3108,-18.93589 4.9992,-3.871369 6.1781,8.38423 9.9176,5.28543 3.2074,-2.65683 -3.7876,-5.99461 -0.7972,-10.883237 0.5704,-0.932217 2.1561,-0.989466 3.1002,-0.468152 4.7689,2.64067 -0.462,9.144719 3.1687,9.969819 4.2359,0.79525 1.4535,-10.640153 6.0865,-9.970637 7.5166,1.085535 -3.8689,10.258687 -0.1635,13.958517 3.6194,3.6146 6.2151,-5.6814 10.9541,-3.55509 2.2085,0.9915 0.5622,4.55621 -1.7562,5.67099 -5.205,2.50391 -9.1374,3.01663 -10.896,9.29131 -1.7378,6.31822 -3.2999,13.22134 -1.6213,19.70783 2.3068,4.67376 9.5217,4.80583 12.208,1.72338 2.0856,-2.39678 -0.5008,-6.39858 -0.072,-9.56014 0.9159,-3.65569 4.9065,-4.62063 8.0294,-5.53096 5.2227,-1.42083 10.8784,-7.49721 15.5789,-4.91439 z"
|
||||||
|
class="fil5" />
|
||||||
|
<ellipse
|
||||||
|
style="fill:#75c5f0;fill-rule:evenodd"
|
||||||
|
id="ellipse3239"
|
||||||
|
ry="2.3386819"
|
||||||
|
rx="1.8191522"
|
||||||
|
cy="144.40254"
|
||||||
|
cx="1784.0491"
|
||||||
|
class="fil10" />
|
||||||
|
<ellipse
|
||||||
|
style="fill:#75c5f0;fill-rule:evenodd"
|
||||||
|
cy="-1460.7368"
|
||||||
|
cx="-996.13379"
|
||||||
|
id="circle3241"
|
||||||
|
transform="matrix(-0.49999923,-0.86602585,-0.86602505,0.50000061,0,0)"
|
||||||
|
class="fil10"
|
||||||
|
rx="1.8191562"
|
||||||
|
ry="2.3386817" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#555753;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="1674.2495"
|
||||||
|
y="327.95859"
|
||||||
|
id="text4689-6"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4691-9"
|
||||||
|
x="1674.2495"
|
||||||
|
y="327.95859"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:70px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#555753">2020</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Umpush;-inkscape-font-specification:Umpush;letter-spacing:0px;word-spacing:0px;fill:#00a2e1;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="1676.1906"
|
||||||
|
y="325.23807"
|
||||||
|
id="text4689"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan4691"
|
||||||
|
x="1676.1906"
|
||||||
|
y="325.23807"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:70px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans, Bold';text-align:start;writing-mode:lr-tb;text-anchor:start">2020</tspan></text>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 13 KiB |
891
froscon2021/artwork/intro.svg
Normal file
After Width: | Height: | Size: 58 KiB |
208
froscon2021/artwork/logo-bw.svg
Normal file
After Width: | Height: | Size: 61 KiB |
222
froscon2021/artwork/logo.svg
Normal file
After Width: | Height: | Size: 62 KiB |
551
froscon2021/artwork/outro.svg
Normal file
After Width: | Height: | Size: 50 KiB |
183
froscon2021/artwork/overlay.svg
Normal file
|
@ -0,0 +1,183 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="1024"
|
||||||
|
height="576"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
|
||||||
|
sodipodi:docname="overlay.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<mask
|
||||||
|
id="id6">
|
||||||
|
<linearGradient
|
||||||
|
y2="2.3961301"
|
||||||
|
x2="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x1="3.27019"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id7">
|
||||||
|
<stop
|
||||||
|
id="stop3128"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3130"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<rect
|
||||||
|
id="rect3132"
|
||||||
|
height="0.465563"
|
||||||
|
width="0.65544897"
|
||||||
|
y="1.94721"
|
||||||
|
x="2.9424601"
|
||||||
|
style="fill:url(#id7)" />
|
||||||
|
</mask>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="644.31315"
|
||||||
|
inkscape:cy="355.71948"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"
|
||||||
|
inkscape:snap-bbox-midpoints="true"
|
||||||
|
inkscape:object-paths="true"
|
||||||
|
inkscape:snap-intersection-paths="true"
|
||||||
|
inkscape:object-nodes="true"
|
||||||
|
inkscape:snap-smooth-nodes="true"
|
||||||
|
inkscape:snap-midpoints="true"
|
||||||
|
inkscape:snap-object-midpoints="true"
|
||||||
|
inkscape:snap-center="true"
|
||||||
|
inkscape:snap-page="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1152"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,556"
|
||||||
|
id="guide3050"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1004,0"
|
||||||
|
id="guide3052"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="0,0"
|
||||||
|
orientation="0,1024"
|
||||||
|
id="guide3054"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1024,0"
|
||||||
|
orientation="-576,0"
|
||||||
|
id="guide3056"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1024,576"
|
||||||
|
orientation="0,-1024"
|
||||||
|
id="guide3058"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="0,576"
|
||||||
|
orientation="576,0"
|
||||||
|
id="guide3060"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-476.36218)">
|
||||||
|
<g
|
||||||
|
style="opacity:0.8"
|
||||||
|
id="g3041"
|
||||||
|
transform="translate(663.5809,405.57883)">
|
||||||
|
<g
|
||||||
|
mask="none"
|
||||||
|
id="g3231"
|
||||||
|
style="fill:#00a2e1;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
transform="matrix(89.999997,0,0,89.999997,8.29985,-83.44764)">
|
||||||
|
<path
|
||||||
|
class="fil0 str1"
|
||||||
|
d="m 3.27019,1.9359 c 0.231933,0 0.420024,0.188091 0.420024,0.420024 0,0.231933 -0.188091,0.420024 -0.420024,0.420024 -0.231933,0 -0.420024,-0.188091 -0.420024,-0.420024 0,-0.231933 0.188091,-0.420024 0.420024,-0.420024 z"
|
||||||
|
id="path3233"
|
||||||
|
style="fill:#00a2e1;fill-opacity:1;stroke:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3235"
|
||||||
|
class="fil9"
|
||||||
|
d="m 3.27019,1.9359 c 0.231933,0 0.420024,0.188091 0.420024,0.420024 0,0.231933 -0.188091,0.420024 -0.420024,0.420024 -0.231933,0 -0.420024,-0.188091 -0.420024,-0.420024 0,-0.231933 0.188091,-0.420024 0.420024,-0.420024 z"
|
||||||
|
style="fill:#00a2e1;fill-opacity:1;stroke:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
class="fil5"
|
||||||
|
d="m 315.16474,106.85195 c 2.01897,1.22319 0.94752,4.71717 1.5552,7.02108 0.3402,1.39113 0.8514,3.12516 -0.3411,4.27887 -1.11078,0.8595 -3.20598,0.7542 -3.66057,2.07711 -0.585,1.70289 1.05417,4.42449 3.34386,4.27536 2.84247,-0.7884 5.13072,-2.90304 7.1568,-4.95639 2.00511,-2.05191 1.33479,-3.66417 1.14417,-6.19974 -0.0854,-1.12887 0.9117,-2.54124 1.77552,-1.91763 1.85382,1.33902 -1.11897,4.37454 1.05588,4.95918 2.22623,0.5985 3.21695,-5.76216 5.28551,-3.13515 1.27557,1.61892 -3.69747,3.07521 -2.4615,4.51485 1.11366,1.20258 2.44206,-2.22345 4.49856,-0.98649 0.4068,0.2448 0.7335,0.8622 0.504,1.28484 -1.20582,2.2167 -4.01814,0.2844 -4.32495,2.09196 -0.3582,2.10753 4.57371,-0.1404 4.19814,2.61747 -0.4914,3.61062 -5.5152,-1.47015 -9.26891,0.6183 -3.71412,2.06613 -5.30325,6.47892 -9.16119,8.17866 -2.24181,0.9882 -4.22046,-1.35882 -6.32196,-1.96371 -0.504,3.40155 -2.74392,5.96484 -4.95855,8.41572 -1.97505,5.34258 10.9782,-1.51686 9.25551,4.83165 -1.09665,4.04154 -6.43788,2.44989 -9.80082,4.75758 -0.45,2.98026 2.10969,4.18464 4.18716,5.24412 3.28716,1.67598 0.92619,2.56428 0.1089,1.74258 -1.74897,-1.75851 -1.86309,-0.5004 -1.56618,-0.1692 1.18386,1.32165 0.4797,0.7515 2.89278,2.58237 1.28304,0.97335 0.0652,2.69892 -1.16433,1.92087 -1.79154,-1.81386 -2.16747,-3.73041 -3.16917,-3.41253 -1.34082,0.4851 0.8208,1.75959 1.63944,4.59315 0.7083,2.45088 -2.56284,2.7018 -2.32974,0.4797 0.2601,-2.4768 -0.7335,-4.02453 -1.31634,-3.99582 -0.7857,0.0386 0.7479,4.90815 -1.10691,4.73526 -1.75995,-0.1638 -0.8325,-3.18825 -0.7326,-3.53835 1.03041,-3.60036 0.432,-3.57309 -1.24866,-6.91938 -0.8496,-1.69299 -5.25546,-5.08572 -2.88,-6.58701 8.15778,-2.57598 -1.09098,-2.31165 -1.83294,-4.13361 -3.6e-4,-0.2871 -0.0276,-0.3033 -0.2763,-0.1593 -1.94877,0.2682 -6.34392,-7.87356 -4.49613,0.4797 -0.1125,2.80773 -5.25366,0.6885 -7.14474,0.7992 -3.73788,0.2178 -4.01382,-0.3141 -6.61644,2.37789 -0.2529,0.2619 -2.40876,2.5767 -3.43062,1.13454 -1.07721,-1.51938 3.90645,-2.62629 3.54717,-3.32577 -0.2664,-0.5193 -2.10366,-0.6057 -4.1184,0.8577 -1.80747,1.31283 -3.22587,-1.64592 -0.7488,-2.25747 2.86299,-0.7074 5.04747,0.5274 4.79727,-0.8766 -0.2259,-1.02681 -2.07315,-0.3942 -4.54005,-1.03851 -1.28835,-0.6759 -0.4032,-2.59335 1.08144,-1.96866 2.79144,1.17423 1.94634,0.8496 3.68289,1.21428 0.4347,0.0909 1.46763,-0.6363 -0.92979,-1.27206 -1.12041,-0.297 -1.53144,-2.78577 1.56366,-0.7767 1.95624,1.26954 4.27887,2.88387 6.63516,1.00413 0.3168,-4.06629 -3.73221,-7.89588 -0.7803,-10.86624 4.6368,-4.6665 5.17284,9.98118 8.81181,5.59917 1.01547,-3.14325 2.11536,-6.36489 4.80897,-8.50185 -1.57428,-1.51758 -4.59603,-2.05758 -4.86108,-4.49325 -0.4572,-4.19103 2.56995,-7.7733 2.50227,-12.02319 -0.068,-4.29516 -6.98031,-6.105866 -4.09887,-8.336336 2.20077,-1.70433 2.7198,3.691076 4.36608,2.326856 1.41201,-1.169636 -1.66752,-2.639066 -0.351,-4.791236 0.2511,-0.4104 0.94923,-0.4356 1.36485,-0.2061 2.09943,1.16253 -0.2034,4.02588 1.395,4.38912 1.8648,0.3501 0.6399,-4.68423 2.67948,-4.38948 3.30912,0.4779 -1.70325,4.51629 -0.0723,6.145106 1.59345,1.59129 2.73618,-2.501186 4.82247,-1.565096 0.97227,0.436496 0.2475,2.005826 -0.7731,2.496596 -2.29149,1.10232 -4.02273,1.32804 -4.79691,4.09041 -0.765,2.78154 -1.45278,5.82057 -0.7137,8.67618 1.01556,2.05758 4.19175,2.11572 5.37444,0.7587 0.91809,-1.05516 -0.2205,-2.81691 -0.0315,-4.20876 0.4032,-1.60938 2.16,-2.03418 3.53484,-2.43495 2.29923,-0.6255 4.78917,-3.30057 6.85845,-2.16351 z"
|
||||||
|
id="path3237"
|
||||||
|
style="fill:#ffffff;fill-rule:nonzero"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<ellipse
|
||||||
|
class="fil10"
|
||||||
|
cx="3.4184899"
|
||||||
|
cy="2.21737"
|
||||||
|
rx="0.0088984901"
|
||||||
|
ry="0.0114398"
|
||||||
|
id="ellipse3239"
|
||||||
|
sodipodi:cx="3.4184899"
|
||||||
|
sodipodi:cy="2.21737"
|
||||||
|
sodipodi:rx="0.0088984901"
|
||||||
|
sodipodi:ry="0.0114398"
|
||||||
|
style="fill:#75c5f0;fill-rule:evenodd"
|
||||||
|
transform="matrix(89.999997,0,0,89.999997,8.29985,-83.44764)" />
|
||||||
|
<circle
|
||||||
|
class="fil10"
|
||||||
|
transform="matrix(-28.370879,-49.139908,-63.173518,36.473309,306.74168,110.79125)"
|
||||||
|
r="0.0141142"
|
||||||
|
id="circle3241"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
sodipodi:cx="0"
|
||||||
|
sodipodi:cy="0"
|
||||||
|
sodipodi:rx="0.0141142"
|
||||||
|
sodipodi:ry="0.0141142"
|
||||||
|
style="fill:#75c5f0;fill-rule:evenodd" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.9 KiB |
478
froscon2021/artwork/pause.svg
Normal file
After Width: | Height: | Size: 69 KiB |
|
@ -7,7 +7,7 @@ from easing import *
|
||||||
import svg.path
|
import svg.path
|
||||||
|
|
||||||
# URL to Schedule-XML
|
# URL to Schedule-XML
|
||||||
scheduleUrl = 'https://programm.froscon.de/2022/schedule.xml'
|
scheduleUrl = 'https://bats.science/froscon2022/schedule.xml'
|
||||||
|
|
||||||
# For (really) too long titles
|
# For (really) too long titles
|
||||||
titlemap = {
|
titlemap = {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
height="1080"
|
height="1080"
|
||||||
id="svg2"
|
id="svg2"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||||
sodipodi:docname="intro.svg"
|
sodipodi:docname="intro.svg"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
@ -157,16 +157,16 @@
|
||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="0.55767043"
|
inkscape:zoom="0.51594277"
|
||||||
inkscape:cx="846.37803"
|
inkscape:cx="948.74864"
|
||||||
inkscape:cy="856.24049"
|
inkscape:cy="488.42626"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
inkscape:window-width="3836"
|
inkscape:window-width="1916"
|
||||||
inkscape:window-height="1042"
|
inkscape:window-height="1026"
|
||||||
inkscape:window-x="2560"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="1091"
|
inkscape:window-y="0"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="1"
|
||||||
showguides="true"
|
showguides="true"
|
||||||
inkscape:guide-bbox="true"
|
inkscape:guide-bbox="true"
|
||||||
|
@ -228,25 +228,25 @@
|
||||||
id="rect3809-1"
|
id="rect3809-1"
|
||||||
style="fill:#1f1fa3;fill-opacity:1;stroke-width:3.6841" /><flowRoot
|
style="fill:#1f1fa3;fill-opacity:1;stroke-width:3.6841" /><flowRoot
|
||||||
transform="matrix(1.8789785,0,0,1.8788549,11.03754,2.8810923)"
|
transform="matrix(1.8789785,0,0,1.8788549,11.03754,2.8810923)"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0.01%;font-family:Open Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
|
style="font-style:normal;font-weight:normal;line-height:0.01%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||||
id="title"
|
id="title"
|
||||||
xml:space="preserve"><flowRegion
|
xml:space="preserve"><flowRegion
|
||||||
style="font-family:Open Sans;fill:#ffffff"
|
style="font-family:'Open Sans';fill:#ffffff"
|
||||||
id="flowRegion3042"><rect
|
id="flowRegion3042"><rect
|
||||||
style="font-size:48px;font-family:Open Sans;fill:#ffffff;fill-opacity:1"
|
style="font-size:48px;font-family:'Open Sans';fill:#ffffff;fill-opacity:1"
|
||||||
y="30.517624"
|
y="30.517624"
|
||||||
x="24.243662"
|
x="24.243662"
|
||||||
height="194.80345"
|
height="265.77374"
|
||||||
width="769.9577"
|
width="662.75281"
|
||||||
id="rect3044" /></flowRegion><flowPara
|
id="rect3044" /></flowRegion><flowPara
|
||||||
id="flowPara3836"
|
id="flowPara3836"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:48px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1">$title</flowPara></flowRoot><flowRoot
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:48px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1">$title</flowPara></flowRoot><flowRoot
|
||||||
transform="matrix(1.8789785,0,0,1.8788549,-44.620037,12.436556)"
|
transform="matrix(1.8789785,0,0,1.8788549,-44.620037,78.436556)"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0.01%;font-family:Open Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
style="font-style:normal;font-weight:normal;line-height:0.01%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
id="names"
|
id="names"
|
||||||
xml:space="preserve"><flowRegion
|
xml:space="preserve"><flowRegion
|
||||||
id="flowRegion3840"
|
id="flowRegion3840"
|
||||||
style="font-family:Open Sans"><rect
|
style="font-family:'Open Sans'"><rect
|
||||||
y="243"
|
y="243"
|
||||||
x="56"
|
x="56"
|
||||||
height="271.10471"
|
height="271.10471"
|
||||||
|
@ -256,10 +256,10 @@
|
||||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:40px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:40px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1"
|
||||||
id="flowPara3844">$personnames</flowPara></flowRoot><flowRoot
|
id="flowPara3844">$personnames</flowPara></flowRoot><flowRoot
|
||||||
transform="matrix(1.8789785,0,0,1.8788549,-555.36165,435.49229)"
|
transform="matrix(1.8789785,0,0,1.8788549,-555.36165,435.49229)"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0.01%;font-family:Open Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
|
style="font-style:normal;font-weight:normal;line-height:0.01%;font-family:'Open Sans';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
id="url"
|
id="url"
|
||||||
xml:space="preserve"><flowRegion
|
xml:space="preserve"><flowRegion
|
||||||
style="font-family:Open Sans"
|
style="font-family:'Open Sans'"
|
||||||
id="flowRegion3817"><rect
|
id="flowRegion3817"><rect
|
||||||
style="font-family:Open Sans;text-align:end;text-anchor:end"
|
style="font-family:Open Sans;text-align:end;text-anchor:end"
|
||||||
y="312.37131"
|
y="312.37131"
|
||||||
|
@ -356,7 +356,7 @@
|
||||||
id="path578"
|
id="path578"
|
||||||
style="fill:#ffffff;stroke-width:0.664791" /><polygon
|
style="fill:#ffffff;stroke-width:0.664791" /><polygon
|
||||||
id="polygon580"
|
id="polygon580"
|
||||||
points="448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 "
|
points="452.73761,177.15904 456.19542,161.79083 460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 448.49962,161.79083 "
|
||||||
transform="matrix(0.66479169,0,0,0.66479169,1369.5036,827.15179)"
|
transform="matrix(0.66479169,0,0,0.66479169,1369.5036,827.15179)"
|
||||||
style="fill:#ffffff" /><path
|
style="fill:#ffffff" /><path
|
||||||
d="m 1679.4778,947.85303 c -0.9696,0 -1.7641,-0.28925 -2.3837,-0.86782 -0.6195,-0.57858 -0.9292,-1.3807 -0.9292,-2.40639 v -1.0942 c 0,-0.99739 0.3442,-1.81462 1.0325,-2.4517 0.6884,-0.63708 1.7491,-0.95562 3.182,-0.95562 h 3.7015 v -1.13324 c 0,-0.45699 -0.078,-0.83853 -0.2349,-1.14461 -0.1566,-0.3061 -0.4488,-0.53554 -0.8767,-0.68833 -0.428,-0.1528 -1.0638,-0.22919 -1.9078,-0.22919 h -3.94 v -1.7429 c 0.606,-0.16808 1.3116,-0.31107 2.1165,-0.42899 0.8049,-0.11791 1.7663,-0.18015 2.8839,-0.18673 1.0735,-0.007 1.9803,0.12348 2.7203,0.3909 0.7401,0.26742 1.2992,0.70866 1.6774,1.32376 0.3781,0.61508 0.5672,1.45063 0.5672,2.50666 v 8.96281 h -2.3557 l -0.5076,-1.41038 c -0.1017,0.095 -0.2998,0.22509 -0.5943,0.39014 -0.2946,0.16505 -0.6605,0.33943 -1.0975,0.52318 -0.437,0.18381 -0.9174,0.33685 -1.4415,0.45917 -0.5239,0.12232 -1.0614,0.18348 -1.6124,0.18348 z m 1.4539,-2.12202 c 0.2079,0.007 0.4453,-0.0166 0.7125,-0.0694 0.2671,-0.0529 0.5376,-0.11639 0.8115,-0.1907 0.274,-0.0743 0.5304,-0.15027 0.7695,-0.22786 0.2391,-0.0776 0.4343,-0.14761 0.5858,-0.21004 0.1514,-0.0625 0.2414,-0.0983 0.2699,-0.10767 v -3.40466 l -2.8063,0.15543 c -0.7399,0.0513 -1.2754,0.23868 -1.6069,0.56208 -0.3313,0.3234 -0.497,0.75303 -0.497,1.28888 v 0.54558 c 0,0.40365 0.083,0.72926 0.2487,0.97685 0.1659,0.24758 0.3837,0.42141 0.6537,0.52151 0.2699,0.10009 0.5561,0.15342 0.8586,0.15999 z"
|
d="m 1679.4778,947.85303 c -0.9696,0 -1.7641,-0.28925 -2.3837,-0.86782 -0.6195,-0.57858 -0.9292,-1.3807 -0.9292,-2.40639 v -1.0942 c 0,-0.99739 0.3442,-1.81462 1.0325,-2.4517 0.6884,-0.63708 1.7491,-0.95562 3.182,-0.95562 h 3.7015 v -1.13324 c 0,-0.45699 -0.078,-0.83853 -0.2349,-1.14461 -0.1566,-0.3061 -0.4488,-0.53554 -0.8767,-0.68833 -0.428,-0.1528 -1.0638,-0.22919 -1.9078,-0.22919 h -3.94 v -1.7429 c 0.606,-0.16808 1.3116,-0.31107 2.1165,-0.42899 0.8049,-0.11791 1.7663,-0.18015 2.8839,-0.18673 1.0735,-0.007 1.9803,0.12348 2.7203,0.3909 0.7401,0.26742 1.2992,0.70866 1.6774,1.32376 0.3781,0.61508 0.5672,1.45063 0.5672,2.50666 v 8.96281 h -2.3557 l -0.5076,-1.41038 c -0.1017,0.095 -0.2998,0.22509 -0.5943,0.39014 -0.2946,0.16505 -0.6605,0.33943 -1.0975,0.52318 -0.437,0.18381 -0.9174,0.33685 -1.4415,0.45917 -0.5239,0.12232 -1.0614,0.18348 -1.6124,0.18348 z m 1.4539,-2.12202 c 0.2079,0.007 0.4453,-0.0166 0.7125,-0.0694 0.2671,-0.0529 0.5376,-0.11639 0.8115,-0.1907 0.274,-0.0743 0.5304,-0.15027 0.7695,-0.22786 0.2391,-0.0776 0.4343,-0.14761 0.5858,-0.21004 0.1514,-0.0625 0.2414,-0.0983 0.2699,-0.10767 v -3.40466 l -2.8063,0.15543 c -0.7399,0.0513 -1.2754,0.23868 -1.6069,0.56208 -0.3313,0.3234 -0.497,0.75303 -0.497,1.28888 v 0.54558 c 0,0.40365 0.083,0.72926 0.2487,0.97685 0.1659,0.24758 0.3837,0.42141 0.6537,0.52151 0.2699,0.10009 0.5561,0.15342 0.8586,0.15999 z"
|
||||||
|
@ -429,7 +429,7 @@
|
||||||
d="m 427.85323,181.344 c -1.41818,0 -2.57696,-0.21501 -3.47634,-0.64503 -0.89938,-0.43001 -1.55201,-1.13882 -1.95788,-2.12641 -0.40587,-0.98759 -0.59436,-2.30777 -0.56547,-3.96053 l 0.15855,-9.18717 h -3.07455 v -2.90004 l 3.21599,-0.73399 0.63533,-5.48127 h 3.54335 v 5.48127 h 4.97198 v 3.63403 h -4.97198 v 9.1655 c 0,0.6376 0.0644,1.15735 0.19333,1.55923 0.12889,0.40188 0.30579,0.71698 0.53068,0.94529 0.22489,0.22832 0.47526,0.39257 0.7511,0.49275 0.27584,0.10019 0.5533,0.16245 0.83237,0.18678 l 2.44322,0.24067 v 3.32892 z"
|
d="m 427.85323,181.344 c -1.41818,0 -2.57696,-0.21501 -3.47634,-0.64503 -0.89938,-0.43001 -1.55201,-1.13882 -1.95788,-2.12641 -0.40587,-0.98759 -0.59436,-2.30777 -0.56547,-3.96053 l 0.15855,-9.18717 h -3.07455 v -2.90004 l 3.21599,-0.73399 0.63533,-5.48127 h 3.54335 v 5.48127 h 4.97198 v 3.63403 h -4.97198 v 9.1655 c 0,0.6376 0.0644,1.15735 0.19333,1.55923 0.12889,0.40188 0.30579,0.71698 0.53068,0.94529 0.22489,0.22832 0.47526,0.39257 0.7511,0.49275 0.27584,0.10019 0.5533,0.16245 0.83237,0.18678 l 2.44322,0.24067 v 3.32892 z"
|
||||||
id="path2330" /><polygon
|
id="path2330" /><polygon
|
||||||
id="polygon2332"
|
id="polygon2332"
|
||||||
points="432.13792,161.79083 436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 " /><path
|
points="436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 " /><path
|
||||||
d="m 466.27267,181.563 c -1.45848,0 -2.65366,-0.43515 -3.58555,-1.30545 -0.93189,-0.8703 -1.39784,-2.07689 -1.39784,-3.61977 v -1.64592 c 0,-1.50031 0.51775,-2.72962 1.55325,-3.68793 1.03549,-0.95832 2.63094,-1.43747 4.78634,-1.43747 h 5.56797 v -1.70467 c 0,-0.68741 -0.11777,-1.26134 -0.35331,-1.72177 -0.23554,-0.46043 -0.67516,-0.80557 -1.31885,-1.0354 -0.64369,-0.22984 -1.6003,-0.34476 -2.86981,-0.34476 h -5.92669 v -2.62172 c 0.91174,-0.25284 1.973,-0.46795 3.18377,-0.64531 1.21077,-0.17737 2.6568,-0.271 4.33808,-0.28088 1.61475,-0.0103 2.97874,0.18573 4.09199,0.58799 1.11325,0.40226 1.95427,1.06601 2.52307,1.99125 0.56879,0.92523 0.85318,2.18211 0.85318,3.77062 V 181.344 h -3.54335 l -0.76365,-2.12157 c -0.15284,0.14296 -0.45083,0.33858 -0.89396,0.58685 -0.44313,0.24828 -0.99339,0.51062 -1.65077,0.78704 -0.65738,0.27641 -1.38016,0.50662 -2.16833,0.69064 -0.78817,0.18403 -1.59668,0.27604 -2.42554,0.27604 z m 2.18715,-3.19204 c 0.31253,0.01 0.66974,-0.0249 1.07162,-0.10437 0.40188,-0.0795 0.80879,-0.17509 1.22075,-0.28687 0.41196,-0.11178 0.79777,-0.22603 1.15745,-0.34276 0.35968,-0.11672 0.65339,-0.22204 0.88113,-0.31595 0.22775,-0.0939 0.3631,-0.1479 0.40607,-0.16197 v -5.1214 l -4.22146,0.23382 c -1.11287,0.0772 -1.91853,0.35902 -2.41698,0.84549 -0.49845,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.12471,1.097 0.37412,1.46941 0.24942,0.37241 0.57716,0.6339 0.98322,0.78446 0.40606,0.15057 0.83665,0.23079 1.29176,0.24068 z"
|
d="m 466.27267,181.563 c -1.45848,0 -2.65366,-0.43515 -3.58555,-1.30545 -0.93189,-0.8703 -1.39784,-2.07689 -1.39784,-3.61977 v -1.64592 c 0,-1.50031 0.51775,-2.72962 1.55325,-3.68793 1.03549,-0.95832 2.63094,-1.43747 4.78634,-1.43747 h 5.56797 v -1.70467 c 0,-0.68741 -0.11777,-1.26134 -0.35331,-1.72177 -0.23554,-0.46043 -0.67516,-0.80557 -1.31885,-1.0354 -0.64369,-0.22984 -1.6003,-0.34476 -2.86981,-0.34476 h -5.92669 v -2.62172 c 0.91174,-0.25284 1.973,-0.46795 3.18377,-0.64531 1.21077,-0.17737 2.6568,-0.271 4.33808,-0.28088 1.61475,-0.0103 2.97874,0.18573 4.09199,0.58799 1.11325,0.40226 1.95427,1.06601 2.52307,1.99125 0.56879,0.92523 0.85318,2.18211 0.85318,3.77062 V 181.344 h -3.54335 l -0.76365,-2.12157 c -0.15284,0.14296 -0.45083,0.33858 -0.89396,0.58685 -0.44313,0.24828 -0.99339,0.51062 -1.65077,0.78704 -0.65738,0.27641 -1.38016,0.50662 -2.16833,0.69064 -0.78817,0.18403 -1.59668,0.27604 -2.42554,0.27604 z m 2.18715,-3.19204 c 0.31253,0.01 0.66974,-0.0249 1.07162,-0.10437 0.40188,-0.0795 0.80879,-0.17509 1.22075,-0.28687 0.41196,-0.11178 0.79777,-0.22603 1.15745,-0.34276 0.35968,-0.11672 0.65339,-0.22204 0.88113,-0.31595 0.22775,-0.0939 0.3631,-0.1479 0.40607,-0.16197 v -5.1214 l -4.22146,0.23382 c -1.11287,0.0772 -1.91853,0.35902 -2.41698,0.84549 -0.49845,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.12471,1.097 0.37412,1.46941 0.24942,0.37241 0.57716,0.6339 0.98322,0.78446 0.40606,0.15057 0.83665,0.23079 1.29176,0.24068 z"
|
||||||
id="path2334" /><path
|
id="path2334" /><path
|
||||||
d="m 481.5128,181.344 v -19.55317 h 3.47891 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85147,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
d="m 481.5128,181.344 v -19.55317 h 3.47891 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85147,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
@ -492,10 +492,10 @@
|
||||||
inkscape:label="#frog"><circle
|
inkscape:label="#frog"><circle
|
||||||
style="clip-rule:evenodd;fill:#1f1fa3;fill-rule:evenodd;stroke-width:0.351653;stroke-miterlimit:10"
|
style="clip-rule:evenodd;fill:#1f1fa3;fill-rule:evenodd;stroke-width:0.351653;stroke-miterlimit:10"
|
||||||
id="path11200"
|
id="path11200"
|
||||||
cy="1014.46198"
|
cy="1014.462"
|
||||||
cx="-49.135002"
|
cx="-49.135002"
|
||||||
r="38" /><path
|
r="38" /><path
|
||||||
d="m -49.531201,973.16401 c 24.2321,0 43.8762,19.644 43.8762,43.8761 0,24.2322 -19.6441,43.8762 -43.8762,43.8762 -24.2322,0 -43.8763,-19.644 -43.8763,-43.8762 0,-24.2321 19.6441,-43.8761 43.8763,-43.8761 z m -11.3028,12.3441 -1.288,1.8824 1.0234,1.7741 -0.4199,3.3762 -1.2,-1.5312 0.2296,-2.2533 -2.0407,-1.3399 -2.2551,0.9054 -0.011,2.6012 1.9782,1.0079 0.9704,3.9406 1.4304,4.5305 -0.021,4.7087 1.5588,1.3768 3.0653,0.1471 1.2354,0.6295 -3.0005,5.8363 -0.2795,4.9925 -5.8181,-5.914 -2.2618,-1.1525 -3.7285,1.4301 -0.6695,1.314 -0.2439,6.7724 3.0648,9.0571 -2.9027,-2.5788 -2.5178,-4.3807 -0.7758,-2.4287 0.2424,-1.5321 1.4549,-1.6157 -0.9149,-2.0909 -2.1884,-0.4652 -1.3033,2.1296 0.9814,1.4596 -0.3815,1.909 -1.3141,-1.5387 -0.04,-1.6759 -2.5545,-0.9104 -1.3175,1.4623 0.3836,2.1408 1.8721,0.4796 0.818,1.7104 -1.49,0.1937 -1.5316,-1.7333 -2.2025,0.8287 -0.1832,2.0836 1.6536,1.1039 1.3671,-0.5231 2.3983,1.222 5.1287,3.8329 4.6208,5.2866 2.4087,0.9213 2.8831,-1.8531 -0.4554,-9.2149 3.5117,4.3142 1.6521,1.6065 5.7485,2.929 2.2709,0.3923 5.5543,0.3053 -7.7226,5.0479 0.1953,3.4216 2.1611,1.4072 6.9931,0.6309 6.1155,1.8963 2.3983,1.222 0.3803,1.4134 1.8651,0.6891 1.5779,-1.373 -0.6242,-2.269 -2.3025,-0.2203 -0.7191,-1.3193 1.8646,-0.3435 1.4883,1.2327 1.9575,-0.9481 0.4086,-1.9254 -2.238,-1.5315 -1.3792,0.9529 -2.0173,-0.1587 1.3202,-1.4308 1.7577,-0.064 0.9568,-2.3061 -1.6626,-1.4971 -2.2295,0.4889 -0.4517,2.1267 -1.0972,1.0966 -2.4209,0.8 -5.0239,0.538 -3.7925,-0.8327 9.1288,-2.8441 5.3356,-4.178 0.6695,-1.314 -1.0345,-3.8569 -2.2618,-1.1525 -8.2044,-1.2308 3.8747,-3.1606 2.9581,-5.8579 1.2355,0.6294 1.9207,2.3934 2.0301,0.4518 3.7974,-2.7841 4.5061,-1.5058 3.7583,-1.5311 1.9783,1.0079 2.0978,-1.538 -0.5929,-2.3565 -2.2836,-0.8634 -1.688,1.5103 -1.9441,-0.071 2.4845,-2.3242 2.037,-0.2148 0.7656,-2.1485 -1.3636,-1.773 -2.2966,0.5271 -0.4235,2.1617 -2.1064,1.7758 0.073,-2.8119 1.1043,-1.421 -1.4883,-2.1553 -2.3594,0.1948 -0.83,2.3554 1.0827,1.5844 -0.7291,2.1859 -2.4726,4.0978 -2.9923,1.4367 -3.0824,-6.9667 2.4053,-3.233 0.03,-4.415 0.8915,-1.2652 -0.2748,-3.3921 -0.687,-0.7733 -0.7417,-2.9053 -1.8719,-2.0555 0.02,-0.039 -0.062,-0.01 -0.041,-0.046 -0.02,0.039 -2.7626,-0.3059 -2.7864,1.1077 -1.0294,-0.1013 -2.9057,1.7715 -0.4996,1.4649 -3.5543,2.6192 -1.2017,3.8462 -7.4481,1.6013 -0.5964,-3.2653 1.8618,-4.4089 1.3398,-1.8747 1.9183,-0.055 1.4177,-2.056 -1.2293,-2.0232 -2.6184,0.063 -0.5006,1.7286 -2.232,1.7117 0.1986,-2.7478 1.4999,-1.6133 -0.9234,-2.1678 z"
|
d="m -49.531201,973.16401 c 24.2321,0 43.8762,19.644 43.8762,43.87609 0,24.2322 -19.6441,43.8762 -43.8762,43.8762 -24.2322,0 -43.8763,-19.644 -43.8763,-43.8762 0,-24.23209 19.6441,-43.87609 43.8763,-43.87609 z m -11.3028,12.3441 -1.288,1.8824 1.0234,1.7741 -0.4199,3.3762 -1.2,-1.5312 0.2296,-2.2533 -2.0407,-1.3399 -2.2551,0.9054 -0.011,2.6012 1.9782,1.0079 0.9704,3.9406 1.4304,4.53049 -0.021,4.7087 1.5588,1.3768 3.0653,0.1471 1.2354,0.6295 -3.0005,5.8363 -0.2795,4.9925 -5.8181,-5.914 -2.2618,-1.1525 -3.7285,1.4301 -0.6695,1.314 -0.2439,6.7724 3.0648,9.0571 -2.9027,-2.5788 -2.5178,-4.3807 -0.7758,-2.4287 0.2424,-1.5321 1.4549,-1.6157 -0.9149,-2.0909 -2.1884,-0.4652 -1.3033,2.1296 0.9814,1.4596 -0.3815,1.909 -1.3141,-1.5387 -0.04,-1.6759 -2.5545,-0.9104 -1.3175,1.4623 0.3836,2.1408 1.8721,0.4796 0.818,1.7104 -1.49,0.1937 -1.5316,-1.7333 -2.2025,0.8287 -0.1832,2.0836 1.6536,1.1039 1.3671,-0.5231 2.3983,1.222 5.1287,3.8329 4.6208,5.2866 2.4087,0.9213 2.8831,-1.8531 -0.4554,-9.2149 3.5117,4.3142 1.6521,1.6065 5.7485,2.929 2.2709,0.3923 5.5543,0.3053 -7.7226,5.0479 0.1953,3.4216 2.1611,1.4072 6.9931,0.6309 6.1155,1.8963 2.3983,1.222 0.3803,1.4134 1.8651,0.6891 1.5779,-1.373 -0.6242,-2.269 -2.3025,-0.2203 -0.7191,-1.3193 1.8646,-0.3435 1.4883,1.2327 1.9575,-0.9481 0.4086,-1.9254 -2.238,-1.5315 -1.3792,0.9529 -2.0173,-0.1587 1.3202,-1.4308 1.7577,-0.064 0.9568,-2.3061 -1.6626,-1.4971 -2.2295,0.4889 -0.4517,2.1267 -1.0972,1.0966 -2.4209,0.8 -5.0239,0.538 -3.7925,-0.8327 9.1288,-2.8441 5.3356,-4.178 0.6695,-1.314 -1.0345,-3.8569 -2.2618,-1.1525 -8.2044,-1.2308 3.8747,-3.1606 2.9581,-5.8579 1.2355,0.6294 1.9207,2.3934 2.0301,0.4518 3.7974,-2.7841 4.5061,-1.5058 3.7583,-1.5311 1.9783,1.0079 2.0978,-1.538 -0.5929,-2.3565 -2.2836,-0.8634 -1.688,1.5103 -1.9441,-0.071 2.4845,-2.3242 2.037,-0.2148 0.7656,-2.1485 -1.3636,-1.773 -2.2966,0.5271 -0.4235,2.1617 -2.1064,1.7758 0.073,-2.8119 1.1043,-1.421 -1.4883,-2.1553 -2.3594,0.1948 -0.83,2.3554 1.0827,1.5844 -0.7291,2.1859 -2.4726,4.0978 -2.9923,1.4367 -3.0824,-6.9667 2.4053,-3.233 0.03,-4.415 0.8915,-1.26519 -0.2748,-3.3921 -0.687,-0.7733 -0.7417,-2.9053 -1.8719,-2.0555 0.02,-0.039 -0.062,-0.01 -0.041,-0.046 -0.02,0.039 -2.7626,-0.3059 -2.7864,1.1077 -1.0294,-0.1013 -2.9057,1.7715 -0.4996,1.4649 -3.5543,2.6192 -1.2017,3.84619 -7.4481,1.6013 -0.5964,-3.26529 1.8618,-4.4089 1.3398,-1.8747 1.9183,-0.055 1.4177,-2.056 -1.2293,-2.0232 -2.6184,0.063 -0.5006,1.7286 -2.232,1.7117 0.1986,-2.7478 1.4999,-1.6133 -0.9234,-2.1678 z"
|
||||||
id="innerfrog"
|
id="innerfrog"
|
||||||
inkscape:label="#innerfrog"
|
inkscape:label="#innerfrog"
|
||||||
style="fill:#ffffff;stroke-width:0.664791" /></g></g></svg>
|
style="fill:#ffffff;stroke-width:0.664791" /></g></g></svg>
|
||||||
|
|
Before Width: | Height: | Size: 201 KiB After Width: | Height: | Size: 201 KiB |
160
froscon2023/__init__.py
Normal file
|
@ -0,0 +1,160 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
import os.path
|
||||||
|
from renderlib import *
|
||||||
|
from easing import *
|
||||||
|
import svg.path
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'https://bats.science/froscon2023/schedule.xml'
|
||||||
|
|
||||||
|
# For (really) too long titles
|
||||||
|
titlemap = {
|
||||||
|
#
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def introFrames(args):
|
||||||
|
xml = etree.parse('froscon2023/artwork/intro.svg').getroot()
|
||||||
|
pathstr = xml.find(".//*[@id='animatePath']").get('d')
|
||||||
|
frog = xml.find(".//*[@id='animatePath']").get('d')
|
||||||
|
path = svg.path.parse_path(pathstr)
|
||||||
|
|
||||||
|
init = path.point(0)
|
||||||
|
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
p = path.point(i / frames) - init
|
||||||
|
yield (
|
||||||
|
('animatePath', 'style', 'opacity', 0),
|
||||||
|
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||||
|
('title', 'style', 'opacity', 0),
|
||||||
|
('names', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
# frames = int(0.5*fps)
|
||||||
|
# for i in range(0, frames):
|
||||||
|
# yield (
|
||||||
|
# ('animatePath', 'style', 'opacity', 0),
|
||||||
|
# ('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||||
|
# ('title', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||||
|
# ('names', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||||
|
# )
|
||||||
|
|
||||||
|
frames = int(3.0*fps)
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('animatePath', 'style', 'opacity', 0),
|
||||||
|
('frog', 'attr', 'transform', 'translate(%.4f, %.4f)' % (p.real, p.imag+120)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def outroFrames(args):
|
||||||
|
xml = etree.parse('froscon2023/artwork/outro.svg').getroot()
|
||||||
|
|
||||||
|
frames = int(4*fps)
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield ()
|
||||||
|
|
||||||
|
def pauseFrames(args):
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 1),
|
||||||
|
('text2', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
|
||||||
|
('text2', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', 1),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', 0),
|
||||||
|
('text2', 'style', 'opacity', easeLinear(i, 1, -1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('text1', 'style', 'opacity', easeLinear(i, 0, 1, frames)),
|
||||||
|
('text2', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
render('intro.svg',
|
||||||
|
'../intro.ts',
|
||||||
|
introFrames,
|
||||||
|
{
|
||||||
|
'$id': 2404,
|
||||||
|
'$title': 'Linux Container im High Performance Computing',
|
||||||
|
'$subtitle': 'Vom Wal zur Singularität und weiter',
|
||||||
|
'$personnames': 'Holger Gantikow'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
# render('outro.svg',
|
||||||
|
# '../outro.ts',
|
||||||
|
# outroFrames
|
||||||
|
# )
|
||||||
|
|
||||||
|
# render('pause.svg',
|
||||||
|
# '../pause.ts',
|
||||||
|
# pauseFrames
|
||||||
|
# )
|
||||||
|
|
||||||
|
|
||||||
|
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 ('HS1', 'HS3', 'HS4', 'HS6', 'HS7', 'HS8'):
|
||||||
|
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||||
|
continue
|
||||||
|
|
||||||
|
if (event['id'] in idlist or not idlist) and not 'intro' in skiplist:
|
||||||
|
# generate a task description and put them into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'intro.svg',
|
||||||
|
outfile = str(event['id'])+".ts",
|
||||||
|
sequence = introFrames,
|
||||||
|
parameters = {
|
||||||
|
'$id': event['id'],
|
||||||
|
'$title': event['title'],
|
||||||
|
# '$subtitle': event['subtitle'],
|
||||||
|
'$personnames': event['personnames']
|
||||||
|
}
|
||||||
|
))
|
||||||
|
|
||||||
|
if not 'outro' in skiplist:
|
||||||
|
# place a task for the outro into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'outro.svg',
|
||||||
|
outfile = 'outro.ts',
|
||||||
|
sequence = outroFrames
|
||||||
|
))
|
||||||
|
|
||||||
|
if not 'pause' in skiplist:
|
||||||
|
# place the pause-sequence into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'pause.svg',
|
||||||
|
outfile = 'pause.ts',
|
||||||
|
sequence = pauseFrames
|
||||||
|
))
|
263
froscon2023/artwork/background.svg
Normal file
|
@ -0,0 +1,263 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
viewBox="0 0 1920 1080"
|
||||||
|
sodipodi:docname="background.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
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/">
|
||||||
|
<metadata
|
||||||
|
id="metadata8">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs6" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1269"
|
||||||
|
inkscape:window-height="1035"
|
||||||
|
id="namedview4"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="1.9809152"
|
||||||
|
inkscape:cx="1606.0758"
|
||||||
|
inkscape:cy="144.88253"
|
||||||
|
inkscape:window-x="2564"
|
||||||
|
inkscape:window-y="1070"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Assets"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:deskcolor="#d1d1d1">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1664.2857,871.42857"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4731"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1840.4762,-14.285714"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4733"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<rect
|
||||||
|
id="rect2600"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
x="0"
|
||||||
|
y="0"
|
||||||
|
style="fill:#1f1fa3;fill-opacity:1;stroke-width:1" />
|
||||||
|
<g
|
||||||
|
id="Assets"
|
||||||
|
stroke="none"
|
||||||
|
stroke-width="1"
|
||||||
|
fill="none"
|
||||||
|
fill-rule="evenodd"
|
||||||
|
transform="matrix(0.5159005,0,0,0.5159005,1535.7523,25.682362)">
|
||||||
|
<g
|
||||||
|
id="Logo-negative-(white)"
|
||||||
|
transform="translate(-152,-723)"
|
||||||
|
fill="#ffffff"
|
||||||
|
fill-rule="nonzero"
|
||||||
|
style="fill:#daffc7">
|
||||||
|
<g
|
||||||
|
id="FrOSCon-Logo-rgb-white-endorse-below"
|
||||||
|
transform="translate(152.66729,723)"
|
||||||
|
style="fill:#daffc7">
|
||||||
|
<path
|
||||||
|
d="m 0,125.00892 v -86.223767 0 C 0,31.796236 1.6859231,25.481687 5.0577694,19.841508 8.4296157,14.201329 12.966282,9.695316 18.667767,6.3234697 24.369253,2.9516235 30.653148,1.2657003 37.519453,1.2657003 h 41.531479 c 2.761423,0 5,2.2385763 5,5 V 19.43948 c 0,2.761424 -2.238577,5 -5,5 H 40.462155 v 0 c -3.923603,0 -7.264796,1.410045 -10.023579,4.230135 -2.758783,2.820089 -4.138175,6.191935 -4.138175,10.115538 v 15.782835 c 0,2.761423 2.238576,5 5,5 h 41.497288 c 2.761424,0 5,2.238576 5,5 v 13.173779 c 0,2.761424 -2.238576,5 -5,5 H 31.300401 c -2.761424,0 -5,2.238577 -5,5 v 37.267153 c 0,2.76143 -2.238576,5 -5,5 H 5 c -2.7614237,0 -5,-2.23857 -5,-5 z"
|
||||||
|
id="Path"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 92.042871,125.00892 v -62.130392 0 c 0,-8.337657 2.360292,-14.866777 7.080877,-19.587362 4.720582,-4.720585 11.249702,-7.080877 19.587362,-7.080877 h 20.93256 c 2.76143,0 5,2.238576 5,5 v 11.51851 c 0,2.761424 -2.23857,5 -5,5 h -16.51851 v 0 c -1.59396,0 -2.97335,0.551756 -4.13817,1.65527 -1.16482,1.103513 -1.74723,2.513558 -1.74723,4.230134 v 61.394717 c 0,2.76143 -2.23858,5 -5,5 H 97.042871 c -2.761424,0 -5,-2.23857 -5,-5 z"
|
||||||
|
id="path1976"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 298.50444,124.99554 v -13.17378 c 0,-2.76142 2.23857,-5 5,-5 h 50.17566 v 0 c 2.69748,0 5.14973,-0.67437 7.35676,-2.02311 2.20703,-1.34874 3.98491,-3.15727 5.33365,-5.425606 1.34874,-2.268333 2.0231,-4.751237 2.0231,-7.448715 0,-2.820089 -0.67436,-5.3643 -2.0231,-7.632633 -1.34874,-2.268333 -3.12662,-4.076869 -5.33365,-5.425608 -2.20703,-1.348738 -4.65928,-2.023107 -7.35676,-2.023107 h -21.51851 c -7.23414,0 -13.79391,-1.471351 -19.67932,-4.414054 -5.8854,-2.942702 -10.57533,-7.203489 -14.06979,-12.782362 -3.49446,-5.578873 -5.24169,-12.291913 -5.24169,-20.139119 0,-7.724593 1.65527,-14.437632 4.96581,-20.139118 3.31054,-5.701485 7.7859,-10.1461917 13.42608,-13.334119 5.64018,-3.1879274 11.89342,-4.7818911 18.75973,-4.7818911 h 50.91134 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -48.33648 v 0 c -2.45225,0 -4.72058,0.643716 -6.805,1.931148 -2.08441,1.287432 -3.70903,2.973355 -4.87385,5.057769 -1.16482,2.084414 -1.74723,4.414054 -1.74723,6.988918 0,2.574865 0.58241,4.904504 1.74723,6.988918 1.16482,2.084414 2.78944,3.739684 4.87385,4.96581 2.08442,1.226126 4.35275,1.839189 6.805,1.839189 h 22.25418 c 7.96982,0 14.89743,1.532657 20.78284,4.597972 5.8854,3.065315 10.45272,7.356755 13.70196,12.874322 3.24923,5.517567 4.87385,11.954728 4.87385,19.311483 0,8.705494 -1.68593,16.123553 -5.05777,22.254183 -3.37185,6.13063 -7.90851,10.78991 -13.61,13.97784 -5.70148,3.18792 -11.98538,4.78189 -18.85169,4.78189 h -53.4862 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||||
|
id="path1978"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 469.33159,129.99554 c -10.05424,-0.24523 -19.12757,-2.05376 -27.22,-5.42561 -8.09243,-3.37184 -15.02004,-7.96982 -20.78283,-13.79391 -5.76279,-5.8241 -10.2075,-12.598448 -13.33412,-20.323042 -3.12662,-7.724593 -4.68993,-16.000943 -4.68993,-24.829049 0,-8.828107 1.56331,-17.104457 4.68993,-24.82905 3.12662,-7.724594 7.57133,-14.498939 13.33412,-20.323037 5.76279,-5.824098 12.6904,-10.452724 20.78283,-13.8858764 8.09243,-3.4331526 17.16576,-5.2110351 27.22,-5.3336477 h 15.04716 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -14.49541 v 0 c -5.8854,0.122612 -11.28035,1.226126 -16.18486,3.31054 -4.9045,2.084414 -9.16529,4.96581 -12.78236,8.644187 -3.61707,3.678378 -6.40651,8.000472 -8.36831,12.966282 -1.9618,4.96581 -2.9427,10.391417 -2.9427,16.276822 0,5.885404 0.9809,11.311011 2.9427,16.276821 1.9618,4.96581 4.75124,9.287904 8.36831,12.966282 3.61707,3.678377 7.87786,6.559778 12.78236,8.644188 4.90451,2.08441 10.29946,3.18793 16.18486,3.31054 h 14.49541 c 2.76142,0 5,2.23858 5,5 v 13.17378 c 0,2.76142 -2.23858,5 -5,5 z"
|
||||||
|
id="path1980"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 547.43012,132.20257 c -9.68639,0 -18.33058,-2.17638 -25.93256,-6.52912 -7.60198,-4.35275 -13.61,-10.24965 -18.02405,-17.6907 -4.41406,-7.44105 -6.62108,-15.736562 -6.62108,-24.886527 0,-9.149965 2.20702,-17.445473 6.62108,-24.886525 4.41405,-7.441051 10.42207,-13.337951 18.02405,-17.690698 7.60198,-4.352747 16.24617,-6.52912 25.93256,-6.52912 9.6864,0 18.33058,2.176373 25.93256,6.52912 7.60198,4.352747 13.61,10.224741 18.02406,17.615981 4.41405,7.391241 6.62108,15.728897 6.62108,25.012969 0,9.16146 -2.20703,17.45122 -6.62108,24.86928 -4.41406,7.41806 -10.42208,13.30347 -18.02406,17.65622 -7.60198,4.35274 -16.24616,6.52912 -25.93256,6.52912 z m 0,-21.51851 c 5.14973,0 9.59444,-1.22613 13.33412,-3.67838 3.73968,-2.45225 6.62108,-5.75561 8.64419,-9.910069 2.02311,-4.154459 3.03466,-8.813259 3.03466,-13.976398 0,-5.165056 -1.01155,-9.831997 -3.03466,-14.000826 -2.02311,-4.168828 -4.90451,-7.479368 -8.64419,-9.931619 -3.73968,-2.452252 -8.18439,-3.678378 -13.33412,-3.678378 -5.14973,0 -9.59444,1.226126 -13.33412,3.678378 -3.73968,2.452251 -6.62108,5.755607 -8.64419,9.910066 -2.0231,4.15446 -3.03466,8.813259 -3.03466,13.976399 0,5.165055 1.01156,9.831997 3.03466,14.000825 2.02311,4.168832 4.90451,7.479372 8.64419,9.931622 3.73968,2.45225 8.18439,3.67838 13.33412,3.67838 z"
|
||||||
|
id="Shape"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 610.07947,124.99554 v -48.888235 0 c 0,-7.724593 1.80853,-14.774817 5.4256,-21.150672 3.61708,-6.375855 8.85876,-11.464277 15.72507,-15.265268 6.8663,-3.80099 15.08135,-5.701485 24.64513,-5.701485 9.68639,0 17.93209,1.900495 24.73709,5.701485 6.805,3.800991 12.01603,8.889413 15.63311,15.265268 3.61707,6.375855 5.4256,13.426079 5.4256,21.150672 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 v -48.888235 0 c 0,-3.80099 -0.9196,-7.264796 -2.75879,-10.391417 -1.83919,-3.126621 -4.32209,-5.609526 -7.44871,-7.448715 -3.12662,-1.839189 -6.59043,-2.758783 -10.39142,-2.758783 -3.80099,0 -7.2648,0.919594 -10.39142,2.758783 -3.12662,1.839189 -5.60952,4.322094 -7.44871,7.448715 -1.83919,3.126621 -2.75879,6.590427 -2.75879,10.391417 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||||
|
id="path1983"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 220,0 c 36.45079,0 66,29.549206 66,66 0,36.45079 -29.54921,66 -66,66 -36.45079,0 -66,-29.54921 -66,-66 0,-36.450794 29.54921,-66 66,-66 z m -17.00189,18.568446 -1.93756,2.831494 1.53943,2.668682 -0.63153,5.078586 -1.8052,-2.303226 0.34534,-3.389575 -3.06967,-2.015477 -3.39205,1.361896 -0.0169,3.912827 2.97572,1.516205 1.45972,5.927492 2.15161,6.815043 -0.0305,7.082912 2.34465,2.071055 4.61088,0.221223 1.8584,0.946904 -4.51345,8.779253 -0.42032,7.509823 -8.75187,-8.896009 -3.40232,-1.733568 -5.60842,2.151177 -1.00711,1.97656 -0.36684,10.187218 4.61019,13.623996 -4.36646,-3.879041 -3.78726,-6.589605 -1.167,-3.653386 0.36458,-2.304699 2.18849,-2.430273 -1.37613,-3.145307 -3.29197,-0.699651 -1.96044,3.203366 1.47629,2.195534 -0.57391,2.87169 -1.97667,-2.314596 -0.0599,-2.520959 -3.84258,-1.369528 -1.98185,2.199722 0.57695,3.220288 2.81609,0.721386 1.23051,2.572829 -2.24123,0.291333 -2.30388,-2.607181 -3.31321,1.246521 -0.27564,3.134268 2.48751,1.660461 2.05638,-0.786817 3.60758,1.838155 7.71477,5.765467 6.95085,7.952341 3.6232,1.385835 4.33669,-2.787504 -0.68495,-13.861259 5.28244,6.489427 2.48527,2.416679 8.6469,4.405812 3.41594,0.590138 8.35499,0.459194 -11.61659,7.593309 0.2939,5.146904 3.25083,2.11666 10.51918,0.94909 9.19899,2.85252 3.60758,1.83816 0.57217,2.12612 2.80546,1.03644 2.37366,-2.06526 -0.93901,-3.41314 -3.46343,-0.33141 -1.08167,-1.98444 2.80474,-0.51677 2.23887,1.85425 2.94439,-1.42608 0.61471,-2.89631 -3.36659,-2.30373 -2.07468,1.43336 -3.03441,-0.23868 1.98592,-2.15223 2.64396,-0.0962 1.43926,-3.468912 -2.501,-2.252016 -3.35348,0.735449 -0.67977,3.199007 -1.65024,1.649618 -3.6416,1.203284 -7.5572,0.80932 -5.70475,-1.2525 13.73185,-4.278263 8.02601,-6.284677 1.00711,-1.97656 -1.55621,-5.801736 -3.40232,-1.733568 -12.34125,-1.851476 5.82852,-4.754204 4.44963,-8.811776 1.8584,0.946903 2.88918,3.60025 3.05367,0.679523 5.71227,-4.187905 6.77817,-2.265089 5.65344,-2.30316 2.97572,1.516205 3.15563,-2.313542 -0.892,-3.544729 -3.43486,-1.298747 -2.53924,2.271729 -2.92441,-0.106632 3.73745,-3.496042 3.06387,-0.323182 1.15185,-3.231833 -2.05137,-2.667005 -3.45449,0.792909 -0.63713,3.251767 -3.16848,2.671159 0.10965,-4.229708 1.66104,-2.137611 -2.23877,-3.241974 -3.54914,0.292887 -1.24839,3.543213 1.6286,2.38328 -1.09677,3.288072 -3.7193,6.163988 -4.50112,2.161253 -4.63654,-10.479651 3.61811,-4.86316 0.0449,-6.64112 1.34093,-1.90326 -0.4133,-5.102476 -1.03338,-1.16321 -1.11562,-4.370289 -2.81584,-3.091877 0.0301,-0.05818 -0.0927,-0.0099 -0.0625,-0.06915 -0.0303,0.05808 -4.1556,-0.460247 -4.19138,1.666237 -1.54846,-0.152307 -4.37092,2.664798 -0.75159,2.203542 -5.3464,3.939863 -1.80771,5.785606 -11.20351,2.408738 -0.8972,-4.911831 2.80062,-6.632079 2.01545,-2.819981 2.88538,-0.08329 2.13273,-3.09262 -1.84918,-3.043465 -3.93873,0.09438 -0.75303,2.600265 -3.35745,2.574872 0.29863,-4.133421 2.25623,-2.426791 -1.38902,-3.260807 z"
|
||||||
|
id="path1985"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 0.83694671,181.344 v -21.05081 c 0,-1.14329 0.17423049,-2.0978 0.52269139,-2.86354 0.3484609,-0.76574 0.8060417,-1.37036 1.3727422,-1.81388 0.5667005,-0.44351 1.1987969,-0.7587 1.8962891,-0.94558 0.6974921,-0.18687 1.3884257,-0.2803 2.0728007,-0.2803 0.9448177,0.0103 2.0588282,0.0239 3.3420309,0.0411 1.283204,0.0171 2.634274,0.0557 4.053211,0.11577 1.418938,0.0601 2.788828,0.15228 4.109672,0.2766 v 3.73669 H 7.901978 c -0.8189688,0 -1.4476433,0.22699 -1.8860235,0.68095 -0.4383802,0.45397 -0.6575703,1.06915 -0.6575703,1.84554 v 5.44477 l 11.1735628,0.25949 v 3.54335 L 5.3583842,170.59418 V 181.344 Z"
|
||||||
|
id="path1987"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 20.623859,181.344 v -19.55317 h 3.478906 l 1.042531,3.12931 c 0.764599,-0.94368 1.625486,-1.74478 2.58266,-2.4033 0.957175,-0.65852 2.083637,-0.98778 3.379387,-0.98778 0.274891,0 0.558716,0.0146 0.851477,0.0439 0.29276,0.0293 0.56594,0.0804 0.819539,0.15342 v 4.62922 c -0.353594,-0.0487 -0.723252,-0.0902 -1.108973,-0.12461 -0.385721,-0.0344 -0.758801,-0.0516 -1.119238,-0.0516 -0.774865,0 -1.470836,0.0898 -2.087914,0.26947 -0.617078,0.17965 -1.19452,0.44427 -1.732324,0.79387 -0.537805,0.34961 -1.06601,0.79226 -1.584614,1.32798 V 181.344 Z"
|
||||||
|
id="path1989"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 43.180654,181.54132 c -2.118141,0 -3.805886,-0.29485 -5.063235,-0.88455 -1.257349,-0.5897 -2.161104,-1.61094 -2.711265,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236627,-0.584 2.91116,-0.876 5.023597,-0.876 1.871766,0 3.37587,0.19219 4.512313,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.247231,2.25255 -0.741692,2.99243 -0.49446,0.73989 -1.194994,1.26762 -2.101601,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204076,2.17165 0.483339,2.89576 0.279263,0.72411 0.791119,1.24452 1.535567,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922695 v 2.66393 c -1.012494,0.18326 -2.073656,0.35131 -3.183484,0.50416 -1.109828,0.15284 -2.411852,0.22926 -3.90607,0.22926 z M 39.016802,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404731,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125754,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284344,-0.31367 -2.196844,-0.31367 -1.014395,0 -1.81673,0.16007 -2.407004,0.4802 -0.590273,0.32014 -1.011069,0.89026 -1.262386,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||||
|
id="path1991"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 62.113652,181.54132 c -2.118141,0 -3.805885,-0.29485 -5.063234,-0.88455 -1.257349,-0.5897 -2.161105,-1.61094 -2.711266,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236628,-0.584 2.91116,-0.876 5.023598,-0.876 1.871765,0 3.375869,0.19219 4.512312,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.741691,2.99243 -0.494461,0.73989 -1.194995,1.26762 -2.101602,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204077,2.17165 0.48334,2.89576 0.279263,0.72411 0.791118,1.24452 1.535566,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922696 v 2.66393 c -1.012495,0.18326 -2.073657,0.35131 -3.183485,0.50416 -1.109828,0.15284 -2.411851,0.22926 -3.90607,0.22926 z M 57.9498,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404732,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125753,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284343,-0.31367 -2.196843,-0.31367 -1.014396,0 -1.816731,0.16007 -2.407004,0.4802 -0.590274,0.32014 -1.011069,0.89026 -1.262387,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||||
|
id="path1993"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 85.95017,181.563 c -1.458479,0 -2.653664,-0.43515 -3.585554,-1.30545 -0.931891,-0.8703 -1.397836,-2.07689 -1.397836,-3.61977 v -1.64592 c 0,-1.50031 0.517748,-2.72962 1.553246,-3.68793 1.035497,-0.95832 2.630946,-1.43747 4.786348,-1.43747 h 5.56796 v -1.70467 c 0,-0.68741 -0.117769,-1.26134 -0.353308,-1.72177 -0.235539,-0.46043 -0.675155,-0.80557 -1.318848,-1.0354 -0.643693,-0.22984 -1.600297,-0.34476 -2.869812,-0.34476 h -5.926688 v -2.62172 c 0.91174,-0.25284 1.972996,-0.46795 3.18377,-0.64531 1.210773,-0.17737 2.6568,-0.271 4.338082,-0.28088 1.614745,-0.0103 2.978742,0.18573 4.091992,0.58799 1.11325,0.40226 1.954271,1.06601 2.523062,1.99125 0.568792,0.92523 0.853188,2.18211 0.853188,3.77062 V 181.344 H 93.85242 l -0.763648,-2.12157 c -0.152844,0.14296 -0.450832,0.33858 -0.893965,0.58685 -0.443133,0.24828 -0.993389,0.51062 -1.650769,0.78704 -0.657381,0.27641 -1.380157,0.50662 -2.168329,0.69064 -0.788172,0.18403 -1.596684,0.27604 -2.425539,0.27604 z m 2.187149,-3.19204 c 0.312531,0.01 0.669737,-0.0249 1.071617,-0.10437 0.40188,-0.0795 0.808798,-0.17509 1.220754,-0.28687 0.411956,-0.11178 0.797772,-0.22603 1.157449,-0.34276 0.359677,-0.11672 0.653388,-0.22204 0.881133,-0.31595 0.227745,-0.0939 0.363099,-0.1479 0.406062,-0.16197 v -5.1214 l -4.221453,0.23382 c -1.112869,0.0772 -1.918531,0.35902 -2.416984,0.84549 -0.498453,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.124709,1.097 0.374125,1.46941 0.249417,0.37241 0.577156,0.6339 0.983219,0.78446 0.406062,0.15057 0.836648,0.23079 1.291758,0.24068 z"
|
||||||
|
id="path1995"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 101.1903,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77747,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.3766,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52143 v -12.47559 c 0,-0.70186 -0.13289,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07256,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path1997"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 128.4808,181.563 c -1.55467,0 -2.85261,-0.33288 -3.89381,-0.99862 -1.0412,-0.66575 -1.82053,-1.72139 -2.338,-3.16695 -0.51746,-1.44555 -0.77619,-3.32986 -0.77619,-5.65293 0,-2.42345 0.2305,-4.38552 0.6915,-5.8862 0.461,-1.50068 1.22931,-2.601 2.30492,-3.30097 1.07561,-0.69996 2.53447,-1.04994 4.37658,-1.04994 0.96953,0 1.92528,0.10066 2.86724,0.30198 0.94197,0.20132 1.77244,0.43144 2.49141,0.69036 v -9.00523 h 4.52144 v 27.8495 h -3.75779 l -0.76365,-1.90884 c -0.40226,0.36348 -0.92162,0.70728 -1.55809,1.03141 -0.63647,0.32413 -1.31514,0.5879 -2.03602,0.79131 -0.72087,0.20341 -1.43072,0.30512 -2.12954,0.30512 z m 1.52273,-3.65514 c 0.8779,0 1.66855,-0.13934 2.37193,-0.41804 0.70339,-0.27869 1.31305,-0.56841 1.82899,-0.86915 V 165.7431 c -0.6205,-0.20189 -1.24727,-0.38839 -1.88032,-0.55948 -0.63304,-0.17109 -1.32065,-0.25664 -2.06282,-0.25664 -1.01858,0 -1.84401,0.18478 -2.47629,0.55434 -0.63229,0.36957 -1.08883,1.03046 -1.36961,1.9827 -0.28078,0.95223 -0.42117,2.30757 -0.42117,4.06604 0,1.62957 0.13183,2.90973 0.39551,3.84048 0.26367,0.93075 0.69198,1.58633 1.28491,1.96673 0.59293,0.38039 1.36923,0.57059 2.32887,0.57059 z"
|
||||||
|
id="path1999"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 161.73343,181.563 c -1.80219,0 -3.38195,-0.17357 -4.7393,-0.5207 -1.35734,-0.34713 -2.49008,-0.99225 -3.39821,-1.93536 -0.90812,-0.9431 -1.58794,-2.31603 -2.03943,-4.11879 -0.4515,-1.80276 -0.67725,-4.15501 -0.67725,-7.05676 0,-2.91126 0.22822,-5.2733 0.68466,-7.08614 0.45644,-1.81283 1.1412,-3.20088 2.05427,-4.16413 0.91307,-0.96326 2.0459,-1.62596 3.39849,-1.98811 1.35259,-0.36215 2.92485,-0.54323 4.71677,-0.54323 1.82196,0 3.41161,0.18108 4.76895,0.54323 1.35735,0.36215 2.48761,1.02485 3.3908,1.98811 0.90318,0.96325 1.57805,2.3513 2.0246,4.16413 0.44656,1.81284 0.66984,4.17488 0.66984,7.08614 0,2.90175 -0.22585,5.254 -0.67754,7.05676 -0.45168,1.80276 -1.1315,3.17569 -2.03943,4.11879 -0.90794,0.94311 -2.0382,1.58823 -3.3908,1.93536 -1.35259,0.34713 -2.93473,0.5207 -4.74642,0.5207 z m 0,-4.06234 c 1.18549,0 2.18315,-0.12461 2.993,-0.37384 0.80984,-0.24923 1.45933,-0.70928 1.94847,-1.38016 0.48914,-0.67087 0.84321,-1.63594 1.06221,-2.89519 0.219,-1.25925 0.3285,-2.89928 0.3285,-4.92008 0,-2.12347 -0.11207,-3.82747 -0.3362,-5.112 -0.22413,-1.28453 -0.58067,-2.25863 -1.06962,-2.92228 -0.48895,-0.66365 -1.13587,-1.1104 -1.94077,-1.34024 -0.80491,-0.22983 -1.8001,-0.34475 -2.98559,-0.34475 -1.12123,0 -2.08535,0.11492 -2.89234,0.34475 -0.80699,0.22984 -1.46257,0.67659 -1.96672,1.34024 -0.50416,0.66365 -0.87581,1.63775 -1.11496,2.92228 -0.23916,1.28453 -0.35873,2.98853 -0.35873,5.112 0,2.0208 0.10456,3.66083 0.31367,4.92008 0.20911,1.25925 0.55567,2.22432 1.03968,2.89519 0.48401,0.67088 1.13454,1.13093 1.95161,1.38016 0.81707,0.24923 1.82633,0.37384 3.02779,0.37384 z"
|
||||||
|
id="path2001"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 175.99709,189.9945 v -28.20367 h 3.75779 l 0.76364,1.90884 c 0.45663,-0.35322 0.98636,-0.69806 1.58918,-1.03455 0.60282,-0.33648 1.26077,-0.61356 1.97385,-0.83123 0.71308,-0.21767 1.44755,-0.3265 2.2034,-0.3265 1.22808,0 2.28515,0.24447 3.17123,0.73342 0.88607,0.48895 1.60999,1.18083 2.17175,2.07565 0.56175,0.89482 0.97257,1.95693 1.23244,3.18634 0.25987,1.2294 0.38981,2.58247 0.38981,4.0592 0,2.13449 -0.22375,3.95103 -0.67126,5.44962 -0.4475,1.49859 -1.1776,2.63893 -2.19028,3.42102 -1.01269,0.78208 -2.38058,1.17313 -4.10369,1.17313 -0.97789,0 -1.97299,-0.13317 -2.9853,-0.3995 -1.0123,-0.26634 -1.93934,-0.62801 -2.78113,-1.08502 v 9.87325 z m 8.87235,-12.12941 c 0.70224,0 1.34518,-0.18374 1.9288,-0.55121 0.58361,-0.36747 1.05127,-1.00593 1.40296,-1.91539 0.3517,-0.90946 0.52754,-2.18829 0.52754,-3.83649 0,-1.58813 -0.17299,-2.85223 -0.51898,-3.7923 -0.34599,-0.94006 -0.80623,-1.60961 -1.38073,-2.00864 -0.57449,-0.39903 -1.22047,-0.59854 -1.93792,-0.59854 -0.89235,0 -1.70809,0.13935 -2.44721,0.41804 -0.73913,0.27869 -1.38092,0.56841 -1.92538,0.86915 v 10.2354 c 0.6148,0.35094 1.30279,0.63533 2.06397,0.85319 0.76117,0.21786 1.52349,0.32679 2.28695,0.32679 z"
|
||||||
|
id="path2003"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 204.51433,181.54132 c -2.11815,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87177,0 3.37587,0.19219 4.51231,0.57658 1.13645,0.38439 1.96625,1.05888 2.48942,2.02347 0.52316,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49447,0.73989 -1.195,1.26762 -2.10161,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73221 c 0.043,1.2064 0.20407,2.17165 0.48334,2.89576 0.27926,0.72411 0.79111,1.24452 1.53556,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41186,0.22926 -3.90607,0.22926 z m -4.16386,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40474,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.407,0.4802 -0.59028,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path2005"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 215.46409,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73998,0.30987 3.62092,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path2007"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 253.36294,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27042,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68646,-0.0914 -1.29584,-0.20236 -1.82813,-0.33277 v -3.54335 c 0.68703,0.0631 1.48604,0.11653 2.39702,0.16025 0.91098,0.0437 1.86673,0.0778 2.86725,0.10209 1.00052,0.0243 1.96178,0.0365 2.88378,0.0365 0.9836,0 1.84848,-0.0885 2.59464,-0.26548 0.74616,-0.17699 1.33082,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63475,-1.1219 0.63475,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.8067,-2.19085 -0.53781,-0.50359 -1.33311,-0.75538 -2.38591,-0.75538 h -2.52192 c -2.4512,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32958,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18316,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21241,-1.74857 0.92277,0 1.87652,0.0448 2.86126,0.1343 0.98474,0.0895 1.93127,0.19828 2.83959,0.32622 0.90831,0.12794 1.68014,0.26206 2.31546,0.40236 v 3.54335 c -1.08929,-0.0871 -2.31841,-0.16606 -3.68735,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81397,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69597,0.19257 -1.23007,0.54284 -1.60229,1.0508 -0.37223,0.50796 -0.55834,1.23738 -0.55834,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.9376,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57292,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78488,1.37284 2.29151,2.37963 0.50663,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39142,3.53403 -1.17427,4.60014 -0.78285,1.0661 -1.85371,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||||
|
id="path2009"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 274.02527,181.54132 c -1.54098,0 -2.86857,-0.15987 -3.98277,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74378,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50787,-4.98453 0.33857,-1.30184 0.86535,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62947,-1.25031 2.74348,-1.54155 1.11401,-0.29124 2.43448,-0.43686 3.96139,-0.43686 1.54137,0 2.87162,0.15284 3.99076,0.45853 1.11915,0.30569 2.0326,0.82667 2.74036,1.56294 0.70775,0.73627 1.23349,1.75533 1.5772,3.05716 0.3437,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84787,2.32136 -1.55582,3.06486 -0.70794,0.74349 -1.62149,1.26799 -2.74063,1.57349 -1.11915,0.3055 -2.46366,0.45824 -4.03354,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90713,-0.20303 0.53799,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35093,-0.42754 0.61556,-1.07095 0.79387,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17831,-0.8471 -0.44294,-1.48186 -0.79387,-1.90427 -0.35093,-0.42241 -0.7954,-0.7013 -1.33339,-0.83665 -0.538,-0.13536 -1.17371,-0.20303 -1.90713,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89885,0.20303 -0.53286,0.13535 -0.97486,0.41424 -1.32598,0.83665 -0.35112,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17337,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43563,1.50268 0.78675,1.93022 0.35112,0.42755 0.79312,0.709 1.32598,0.84435 0.53286,0.13536 1.16581,0.20303 1.89885,0.20303 z"
|
||||||
|
id="path2011"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 291.7726,181.563 c -1.79345,0 -3.18938,-0.50625 -4.18781,-1.51875 -0.99843,-1.01249 -1.49764,-2.49226 -1.49764,-4.43931 v -13.81411 h 4.52144 v 12.50581 c 0,1.28625 0.29542,2.15246 0.88626,2.59863 0.59085,0.44618 1.40696,0.66926 2.44836,0.66926 0.83683,0 1.65656,-0.13953 2.45918,-0.4186 0.80262,-0.27908 1.55848,-0.66214 2.26757,-1.14918 v -14.20592 h 4.522 V 181.344 h -3.68478 l -0.83722,-2.04857 c -0.91745,0.59541 -1.96815,1.12219 -3.15212,1.58034 -1.18397,0.45815 -2.43238,0.68723 -3.74524,0.68723 z"
|
||||||
|
id="path2013"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 307.02893,181.344 v -19.55317 h 3.4789 l 1.04254,3.12931 c 0.76459,-0.94368 1.62548,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08363,-0.98778 3.37938,-0.98778 0.27489,0 0.55872,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.3536,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38573,-0.0344 -0.75881,-0.0516 -1.11924,-0.0516 -0.77487,0 -1.47084,0.0898 -2.08792,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73232,0.79387 -0.53781,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path2015"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 329.05362,181.563 c -1.16039,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98626,-0.30835 -1.84145,-0.82971 -2.56555,-1.56408 -0.72411,-0.73437 -1.28549,-1.74535 -1.68414,-3.03292 -0.39864,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10337,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63793,1.99324 -0.35455,0.96877 -0.53182,2.36832 -0.53182,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74236,0.32946 1.69829,0.49418 2.86782,0.49418 h 5.56625 v 2.57838 c -0.5783,0.15285 -1.25916,0.29761 -2.04258,0.4343 -0.78342,0.13668 -1.60742,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||||
|
id="path2017"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 346.74072,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73222 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01106,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path2019"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 374.69033,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27041,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68647,-0.0914 -1.29584,-0.20236 -1.82814,-0.33277 v -3.54335 c 0.68704,0.0631 1.48605,0.11653 2.39703,0.16025 0.91098,0.0437 1.86672,0.0778 2.86724,0.10209 1.00052,0.0243 1.96178,0.0365 2.88379,0.0365 0.9836,0 1.84848,-0.0885 2.59463,-0.26548 0.74616,-0.17699 1.33083,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63476,-1.1219 0.63476,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.80671,-2.19085 -0.5378,-0.50359 -1.3331,-0.75538 -2.3859,-0.75538 h -2.52192 c -2.45121,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32959,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18315,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21242,-1.74857 0.92276,0 1.87651,0.0448 2.86125,0.1343 0.98475,0.0895 1.93127,0.19828 2.83959,0.32622 0.90832,0.12794 1.68014,0.26206 2.31547,0.40236 v 3.54335 c -1.0893,-0.0871 -2.31842,-0.16606 -3.68736,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81396,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69598,0.19257 -1.23007,0.54284 -1.6023,1.0508 -0.37222,0.50796 -0.55833,1.23738 -0.55833,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.93759,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57293,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78489,1.37284 2.29152,2.37963 0.50662,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39143,3.53403 -1.17428,4.60014 -0.78284,1.0661 -1.8537,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||||
|
id="path2021"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 395.35267,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26747,-2.00065 0.26747,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26747,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.366,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61338,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17337,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53286,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||||
|
id="path2023"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 408.72569,181.344 v -15.91914 h -2.85384 v -2.90004 l 2.85384,-0.73399 v -1.64193 c 0,-1.55809 0.20275,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.9596,-2.26813 0.9009,-0.49598 2.10625,-0.74397 3.61606,-0.74397 0.85167,0 1.60914,0.0529 2.27241,0.15883 0.66328,0.10589 1.22399,0.21168 1.68214,0.31738 v 3.22169 h -3.0814 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61897,0.534 -0.76364,0.96383 -0.14467,0.42983 -0.21701,0.98198 -0.21701,1.65647 v 1.87804 h 5.36094 v 3.63403 h -5.36094 V 181.344 Z"
|
||||||
|
id="path2025"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 427.85323,181.344 c -1.41818,0 -2.57696,-0.21501 -3.47634,-0.64503 -0.89938,-0.43001 -1.55201,-1.13882 -1.95788,-2.12641 -0.40587,-0.98759 -0.59436,-2.30777 -0.56547,-3.96053 l 0.15855,-9.18717 h -3.07455 v -2.90004 l 3.21599,-0.73399 0.63533,-5.48127 h 3.54335 v 5.48127 h 4.97198 v 3.63403 h -4.97198 v 9.1655 c 0,0.6376 0.0644,1.15735 0.19333,1.55923 0.12889,0.40188 0.30579,0.71698 0.53068,0.94529 0.22489,0.22832 0.47526,0.39257 0.7511,0.49275 0.27584,0.10019 0.5533,0.16245 0.83237,0.18678 l 2.44322,0.24067 v 3.32892 z"
|
||||||
|
id="path2027"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<polygon
|
||||||
|
id="polygon2029"
|
||||||
|
points="460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 "
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 466.27267,181.563 c -1.45848,0 -2.65366,-0.43515 -3.58555,-1.30545 -0.93189,-0.8703 -1.39784,-2.07689 -1.39784,-3.61977 v -1.64592 c 0,-1.50031 0.51775,-2.72962 1.55325,-3.68793 1.03549,-0.95832 2.63094,-1.43747 4.78634,-1.43747 h 5.56797 v -1.70467 c 0,-0.68741 -0.11777,-1.26134 -0.35331,-1.72177 -0.23554,-0.46043 -0.67516,-0.80557 -1.31885,-1.0354 -0.64369,-0.22984 -1.6003,-0.34476 -2.86981,-0.34476 h -5.92669 v -2.62172 c 0.91174,-0.25284 1.973,-0.46795 3.18377,-0.64531 1.21077,-0.17737 2.6568,-0.271 4.33808,-0.28088 1.61475,-0.0103 2.97874,0.18573 4.09199,0.58799 1.11325,0.40226 1.95427,1.06601 2.52307,1.99125 0.56879,0.92523 0.85318,2.18211 0.85318,3.77062 V 181.344 h -3.54335 l -0.76365,-2.12157 c -0.15284,0.14296 -0.45083,0.33858 -0.89396,0.58685 -0.44313,0.24828 -0.99339,0.51062 -1.65077,0.78704 -0.65738,0.27641 -1.38016,0.50662 -2.16833,0.69064 -0.78817,0.18403 -1.59668,0.27604 -2.42554,0.27604 z m 2.18715,-3.19204 c 0.31253,0.01 0.66974,-0.0249 1.07162,-0.10437 0.40188,-0.0795 0.80879,-0.17509 1.22075,-0.28687 0.41196,-0.11178 0.79777,-0.22603 1.15745,-0.34276 0.35968,-0.11672 0.65339,-0.22204 0.88113,-0.31595 0.22775,-0.0939 0.3631,-0.1479 0.40607,-0.16197 v -5.1214 l -4.22146,0.23382 c -1.11287,0.0772 -1.91853,0.35902 -2.41698,0.84549 -0.49845,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.12471,1.097 0.37412,1.46941 0.24942,0.37241 0.57716,0.6339 0.98322,0.78446 0.40606,0.15057 0.83665,0.23079 1.29176,0.24068 z"
|
||||||
|
id="path2031"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 481.5128,181.344 v -19.55317 h 3.47891 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85147,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path2033"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 504.0696,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71126,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80185,-6.12431 0.53458,-1.4522 1.42018,-2.4703 2.65681,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96624,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.195,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74444,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32443 c 0.85813,0 1.48956,-0.16472 1.8943,-0.49418 0.40473,-0.32945 0.60709,-0.92229 0.60709,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28435,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||||
|
id="path2035"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 533.04178,181.563 c -1.58319,0 -2.9756,-0.1825 -4.17725,-0.5475 -1.20165,-0.365 -2.21035,-1.0317 -3.02608,-2.00009 -0.81574,-0.96839 -1.42968,-2.35748 -1.84183,-4.16727 -0.41214,-1.8098 -0.61821,-4.16481 -0.61821,-7.06503 0,-2.76222 0.2132,-5.03368 0.6396,-6.81438 0.4264,-1.78071 1.05603,-3.16628 1.88888,-4.15673 0.83284,-0.99044 1.8576,-1.68175 3.07426,-2.07394 1.21667,-0.39218 2.61033,-0.58828 4.18097,-0.58828 1.05698,0 2.09057,0.059 3.10079,0.17709 1.01021,0.11805 1.95056,0.26149 2.82105,0.4303 0.87048,0.16881 1.62434,0.35264 2.26157,0.55149 v 3.47891 c -0.4323,-0.0874 -1.02352,-0.1748 -1.77367,-0.26206 -0.75015,-0.0873 -1.60115,-0.16131 -2.553,-0.22214 -0.95186,-0.0608 -1.94011,-0.0913 -2.96478,-0.0913 -1.11857,0 -2.07165,0.12537 -2.85926,0.37612 -0.7876,0.25075 -1.42198,0.71688 -1.90313,1.39841 -0.48115,0.68152 -0.83342,1.65305 -1.05679,2.91458 -0.22337,1.26153 -0.33506,2.90327 -0.33506,4.92522 0,1.99191 0.10095,3.6251 0.30284,4.89955 0.20189,1.27446 0.53381,2.25568 0.99576,2.94367 0.46196,0.68799 1.08636,1.16515 1.8732,1.43149 0.78684,0.26633 1.77015,0.3995 2.94994,0.3995 1.83945,0 3.34203,-0.0405 4.50775,-0.12148 1.16572,-0.081 2.10445,-0.17508 2.8162,-0.2823 v 3.4789 c -0.68894,0.20304 -1.46352,0.37717 -2.32374,0.52241 -0.86022,0.14524 -1.78764,0.25902 -2.78227,0.34133 -0.99462,0.0823 -2.06054,0.12348 -3.19774,0.12348 z"
|
||||||
|
id="path2037"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 552.26543,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53287,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||||
|
id="path2039"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 564.37008,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57644,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path2041"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 586.53746,181.344 v -15.91914 h -2.85385 v -2.90004 l 2.85385,-0.73399 v -1.64193 c 0,-1.55809 0.20274,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.95959,-2.26813 0.9009,-0.49598 2.10626,-0.74397 3.61607,-0.74397 0.85166,0 1.60913,0.0529 2.27241,0.15883 0.66327,0.10589 1.22398,0.21168 1.68213,0.31738 v 3.22169 h -3.08139 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61898,0.534 -0.76365,0.96383 -0.14467,0.42983 -0.217,0.98198 -0.217,1.65647 v 1.87804 h 5.36093 v 3.63403 H 591.0589 V 181.344 Z"
|
||||||
|
id="path2043"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 606.53244,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path2045"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 617.48221,181.344 v -19.55317 h 3.4789 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95718,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81953,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.066,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path2047"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 640.039,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37727,-2.02005 -0.2515,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25131,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||||
|
id="path2049"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 650.98876,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77748,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88095,0.61974 1.50972,1.45059 1.88631,2.49255 0.3766,1.04196 0.5649,2.18401 0.5649,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63637,-0.87524 -1.11182,-1.14519 -0.47545,-0.26995 -1.05347,-0.40492 -1.73404,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76825,0.19847 -0.5515,0.13231 -1.07257,0.3188 -1.56323,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path2051"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 679.3389,181.563 c -1.1604,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98627,-0.30835 -1.84145,-0.82971 -2.56556,-1.56408 -0.7241,-0.73437 -1.28548,-1.74535 -1.68413,-3.03292 -0.39865,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10336,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63794,1.99324 -0.35454,0.96877 -0.53181,2.36832 -0.53181,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74235,0.32946 1.69829,0.49418 2.86781,0.49418 h 5.56625 v 2.57838 c -0.57829,0.15285 -1.25915,0.29761 -2.04257,0.4343 -0.78342,0.13668 -1.60743,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||||
|
id="path2053"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 697.026,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path2055"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 50 KiB |
443
froscon2023/artwork/intro.svg
Normal file
After Width: | Height: | Size: 164 KiB |
584
froscon2023/artwork/outro.svg
Normal file
|
@ -0,0 +1,584 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
sodipodi:docname="outro.svg"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2"
|
||||||
|
height="576"
|
||||||
|
width="1024"
|
||||||
|
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"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
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="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3811">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#fafbff;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3819" />
|
||||||
|
<stop
|
||||||
|
id="stop3815"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#fffbff;stop-opacity:1;" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
id="id12"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
cx="1.71676"
|
||||||
|
cy="9.7279596"
|
||||||
|
r="0.29498801"
|
||||||
|
fx="1.71676"
|
||||||
|
fy="9.7279596">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#75C5F0"
|
||||||
|
id="stop3151" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#007CC3"
|
||||||
|
id="stop3153" />
|
||||||
|
</radialGradient>
|
||||||
|
<radialGradient
|
||||||
|
id="id14"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#id12"
|
||||||
|
cx="3.27019"
|
||||||
|
cy="2.1879101"
|
||||||
|
r="0.420028"
|
||||||
|
fx="3.27019"
|
||||||
|
fy="2.1879101" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3382"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x2="3.27019"
|
||||||
|
y2="2.3961301">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
id="stop3384" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
id="stop3386" />
|
||||||
|
</linearGradient>
|
||||||
|
<mask
|
||||||
|
id="id6">
|
||||||
|
<linearGradient
|
||||||
|
id="id7"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x2="3.27019"
|
||||||
|
y2="2.3961301">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
id="stop3128" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
id="stop3130" />
|
||||||
|
</linearGradient>
|
||||||
|
<rect
|
||||||
|
style="fill:url(#id7)"
|
||||||
|
x="2.9424601"
|
||||||
|
y="1.94721"
|
||||||
|
width="0.65544897"
|
||||||
|
height="0.465563"
|
||||||
|
id="rect3132" />
|
||||||
|
</mask>
|
||||||
|
<inkscape:perspective
|
||||||
|
id="perspective3373"
|
||||||
|
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||||
|
inkscape:vp_z="1 : 0.5 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_x="0 : 0.5 : 1"
|
||||||
|
sodipodi:type="inkscape:persp3d" />
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective3412" />
|
||||||
|
<radialGradient
|
||||||
|
id="id12-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
cx="1.71676"
|
||||||
|
cy="9.7279596"
|
||||||
|
r="0.29498801"
|
||||||
|
fx="1.71676"
|
||||||
|
fy="9.7279596">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#75C5F0"
|
||||||
|
id="stop3151-0" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#007CC3"
|
||||||
|
id="stop3153-0" />
|
||||||
|
</radialGradient>
|
||||||
|
<radialGradient
|
||||||
|
id="id14-6"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#id12-3"
|
||||||
|
cx="3.27019"
|
||||||
|
cy="2.1879101"
|
||||||
|
r="0.420028"
|
||||||
|
fx="3.27019"
|
||||||
|
fy="2.1879101" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3382-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x2="3.27019"
|
||||||
|
y2="2.3961301">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
id="stop3384-5" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
id="stop3386-2" />
|
||||||
|
</linearGradient>
|
||||||
|
<mask
|
||||||
|
id="id6-4">
|
||||||
|
<linearGradient
|
||||||
|
id="id7-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x2="3.27019"
|
||||||
|
y2="2.3961301">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
id="stop3128-9" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
id="stop3130-9" />
|
||||||
|
</linearGradient>
|
||||||
|
<rect
|
||||||
|
style="fill:url(#id7-2)"
|
||||||
|
x="2.9424601"
|
||||||
|
y="1.94721"
|
||||||
|
width="0.65544897"
|
||||||
|
height="0.465563"
|
||||||
|
id="rect3132-4" />
|
||||||
|
</mask>
|
||||||
|
<inkscape:perspective
|
||||||
|
id="perspective3373-6"
|
||||||
|
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||||
|
inkscape:vp_z="1 : 0.5 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_x="0 : 0.5 : 1"
|
||||||
|
sodipodi:type="inkscape:persp3d" />
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective3412-2" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-x="2560"
|
||||||
|
inkscape:window-height="2111"
|
||||||
|
inkscape:window-width="3840"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:current-layer="g4680"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:cy="303.8771"
|
||||||
|
inkscape:cx="351.3062"
|
||||||
|
inkscape:zoom="1.813233"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:deskcolor="#d1d1d1">
|
||||||
|
<sodipodi:guide
|
||||||
|
inkscape:locked="false"
|
||||||
|
id="guide3846"
|
||||||
|
position="54,576"
|
||||||
|
orientation="1,0" />
|
||||||
|
<sodipodi:guide
|
||||||
|
inkscape:locked="false"
|
||||||
|
id="guide3848"
|
||||||
|
position="913,541"
|
||||||
|
orientation="1,0" />
|
||||||
|
<sodipodi:guide
|
||||||
|
inkscape:locked="false"
|
||||||
|
id="guide3049"
|
||||||
|
position="1130.6638,384.66611"
|
||||||
|
orientation="0,1" />
|
||||||
|
<sodipodi:guide
|
||||||
|
inkscape:locked="false"
|
||||||
|
id="guide7766"
|
||||||
|
orientation="0,1"
|
||||||
|
position="285.3176,641.34588" />
|
||||||
|
<sodipodi:guide
|
||||||
|
inkscape:locked="false"
|
||||||
|
id="guide7798"
|
||||||
|
orientation="1,0"
|
||||||
|
position="290.97446,691.19691" />
|
||||||
|
<sodipodi:guide
|
||||||
|
inkscape:locked="false"
|
||||||
|
id="guide7800"
|
||||||
|
orientation="1,0"
|
||||||
|
position="426.73896,684.4794" />
|
||||||
|
<sodipodi:guide
|
||||||
|
inkscape:locked="false"
|
||||||
|
id="guide8000"
|
||||||
|
orientation="0,1"
|
||||||
|
position="524.67326,801.85913" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="885.37234,363.23404"
|
||||||
|
orientation="0,-1"
|
||||||
|
id="guide450"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="885.90426,337.70213"
|
||||||
|
orientation="0,-1"
|
||||||
|
id="guide452"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="886.43617,271.74468"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide454"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="154.78723,272.80851"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide456"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 2"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:groupmode="layer" />
|
||||||
|
<g
|
||||||
|
transform="translate(0,-476.36218)"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Ebene 1">
|
||||||
|
<rect
|
||||||
|
y="476.40805"
|
||||||
|
x="0.054346703"
|
||||||
|
height="11.77061"
|
||||||
|
width="1024.9558"
|
||||||
|
id="rect3809"
|
||||||
|
style="fill:#1f1fa3;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
transform="matrix(1.0009495,0,0,3.8635175,-0.97322136,-1535.9091)"
|
||||||
|
id="bar">
|
||||||
|
<rect
|
||||||
|
style="fill:#1f1fa3;fill-opacity:1"
|
||||||
|
id="rect3809-1"
|
||||||
|
width="1024"
|
||||||
|
height="149.19937"
|
||||||
|
x="1"
|
||||||
|
y="520.72675" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="Assets"
|
||||||
|
stroke="none"
|
||||||
|
stroke-width="1"
|
||||||
|
fill="none"
|
||||||
|
fill-rule="evenodd"
|
||||||
|
transform="matrix(1.038239,0,0,1.038239,154.09442,626.91092)">
|
||||||
|
<g
|
||||||
|
id="Logo-negative-(white)"
|
||||||
|
transform="translate(-152,-723)"
|
||||||
|
fill="#ffffff"
|
||||||
|
fill-rule="nonzero"
|
||||||
|
style="fill:#daffc7">
|
||||||
|
<g
|
||||||
|
id="FrOSCon-Logo-rgb-white-endorse-below"
|
||||||
|
transform="translate(152.66729,723)"
|
||||||
|
style="fill:#daffc7">
|
||||||
|
<path
|
||||||
|
d="m 0,125.00892 v -86.223767 0 C 0,31.796236 1.6859231,25.481687 5.0577694,19.841508 8.4296157,14.201329 12.966282,9.695316 18.667767,6.3234697 24.369253,2.9516235 30.653148,1.2657003 37.519453,1.2657003 h 41.531479 c 2.761423,0 5,2.2385763 5,5 V 19.43948 c 0,2.761424 -2.238577,5 -5,5 H 40.462155 v 0 c -3.923603,0 -7.264796,1.410045 -10.023579,4.230135 -2.758783,2.820089 -4.138175,6.191935 -4.138175,10.115538 v 15.782835 c 0,2.761423 2.238576,5 5,5 h 41.497288 c 2.761424,0 5,2.238576 5,5 v 13.173779 c 0,2.761424 -2.238576,5 -5,5 H 31.300401 c -2.761424,0 -5,2.238577 -5,5 v 37.267153 c 0,2.76143 -2.238576,5 -5,5 H 5 c -2.7614237,0 -5,-2.23857 -5,-5 z"
|
||||||
|
id="Path"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 92.042871,125.00892 v -62.130392 0 c 0,-8.337657 2.360292,-14.866777 7.080877,-19.587362 4.720582,-4.720585 11.249702,-7.080877 19.587362,-7.080877 h 20.93256 c 2.76143,0 5,2.238576 5,5 v 11.51851 c 0,2.761424 -2.23857,5 -5,5 h -16.51851 v 0 c -1.59396,0 -2.97335,0.551756 -4.13817,1.65527 -1.16482,1.103513 -1.74723,2.513558 -1.74723,4.230134 v 61.394717 c 0,2.76143 -2.23858,5 -5,5 H 97.042871 c -2.761424,0 -5,-2.23857 -5,-5 z"
|
||||||
|
id="path236"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 298.50444,124.99554 v -13.17378 c 0,-2.76142 2.23857,-5 5,-5 h 50.17566 v 0 c 2.69748,0 5.14973,-0.67437 7.35676,-2.02311 2.20703,-1.34874 3.98491,-3.15727 5.33365,-5.425606 1.34874,-2.268333 2.0231,-4.751237 2.0231,-7.448715 0,-2.820089 -0.67436,-5.3643 -2.0231,-7.632633 -1.34874,-2.268333 -3.12662,-4.076869 -5.33365,-5.425608 -2.20703,-1.348738 -4.65928,-2.023107 -7.35676,-2.023107 h -21.51851 c -7.23414,0 -13.79391,-1.471351 -19.67932,-4.414054 -5.8854,-2.942702 -10.57533,-7.203489 -14.06979,-12.782362 -3.49446,-5.578873 -5.24169,-12.291913 -5.24169,-20.139119 0,-7.724593 1.65527,-14.437632 4.96581,-20.139118 3.31054,-5.701485 7.7859,-10.1461917 13.42608,-13.334119 5.64018,-3.1879274 11.89342,-4.7818911 18.75973,-4.7818911 h 50.91134 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -48.33648 v 0 c -2.45225,0 -4.72058,0.643716 -6.805,1.931148 -2.08441,1.287432 -3.70903,2.973355 -4.87385,5.057769 -1.16482,2.084414 -1.74723,4.414054 -1.74723,6.988918 0,2.574865 0.58241,4.904504 1.74723,6.988918 1.16482,2.084414 2.78944,3.739684 4.87385,4.96581 2.08442,1.226126 4.35275,1.839189 6.805,1.839189 h 22.25418 c 7.96982,0 14.89743,1.532657 20.78284,4.597972 5.8854,3.065315 10.45272,7.356755 13.70196,12.874322 3.24923,5.517567 4.87385,11.954728 4.87385,19.311483 0,8.705494 -1.68593,16.123553 -5.05777,22.254183 -3.37185,6.13063 -7.90851,10.78991 -13.61,13.97784 -5.70148,3.18792 -11.98538,4.78189 -18.85169,4.78189 h -53.4862 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||||
|
id="path238"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 469.33159,129.99554 c -10.05424,-0.24523 -19.12757,-2.05376 -27.22,-5.42561 -8.09243,-3.37184 -15.02004,-7.96982 -20.78283,-13.79391 -5.76279,-5.8241 -10.2075,-12.598448 -13.33412,-20.323042 -3.12662,-7.724593 -4.68993,-16.000943 -4.68993,-24.829049 0,-8.828107 1.56331,-17.104457 4.68993,-24.82905 3.12662,-7.724594 7.57133,-14.498939 13.33412,-20.323037 5.76279,-5.824098 12.6904,-10.452724 20.78283,-13.8858764 8.09243,-3.4331526 17.16576,-5.2110351 27.22,-5.3336477 h 15.04716 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -14.49541 v 0 c -5.8854,0.122612 -11.28035,1.226126 -16.18486,3.31054 -4.9045,2.084414 -9.16529,4.96581 -12.78236,8.644187 -3.61707,3.678378 -6.40651,8.000472 -8.36831,12.966282 -1.9618,4.96581 -2.9427,10.391417 -2.9427,16.276822 0,5.885404 0.9809,11.311011 2.9427,16.276821 1.9618,4.96581 4.75124,9.287904 8.36831,12.966282 3.61707,3.678377 7.87786,6.559778 12.78236,8.644188 4.90451,2.08441 10.29946,3.18793 16.18486,3.31054 h 14.49541 c 2.76142,0 5,2.23858 5,5 v 13.17378 c 0,2.76142 -2.23858,5 -5,5 z"
|
||||||
|
id="path240"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 547.43012,132.20257 c -9.68639,0 -18.33058,-2.17638 -25.93256,-6.52912 -7.60198,-4.35275 -13.61,-10.24965 -18.02405,-17.6907 -4.41406,-7.44105 -6.62108,-15.736562 -6.62108,-24.886527 0,-9.149965 2.20702,-17.445473 6.62108,-24.886525 4.41405,-7.441051 10.42207,-13.337951 18.02405,-17.690698 7.60198,-4.352747 16.24617,-6.52912 25.93256,-6.52912 9.6864,0 18.33058,2.176373 25.93256,6.52912 7.60198,4.352747 13.61,10.224741 18.02406,17.615981 4.41405,7.391241 6.62108,15.728897 6.62108,25.012969 0,9.16146 -2.20703,17.45122 -6.62108,24.86928 -4.41406,7.41806 -10.42208,13.30347 -18.02406,17.65622 -7.60198,4.35274 -16.24616,6.52912 -25.93256,6.52912 z m 0,-21.51851 c 5.14973,0 9.59444,-1.22613 13.33412,-3.67838 3.73968,-2.45225 6.62108,-5.75561 8.64419,-9.910069 2.02311,-4.154459 3.03466,-8.813259 3.03466,-13.976398 0,-5.165056 -1.01155,-9.831997 -3.03466,-14.000826 -2.02311,-4.168828 -4.90451,-7.479368 -8.64419,-9.931619 -3.73968,-2.452252 -8.18439,-3.678378 -13.33412,-3.678378 -5.14973,0 -9.59444,1.226126 -13.33412,3.678378 -3.73968,2.452251 -6.62108,5.755607 -8.64419,9.910066 -2.0231,4.15446 -3.03466,8.813259 -3.03466,13.976399 0,5.165055 1.01156,9.831997 3.03466,14.000825 2.02311,4.168832 4.90451,7.479372 8.64419,9.931622 3.73968,2.45225 8.18439,3.67838 13.33412,3.67838 z"
|
||||||
|
id="Shape"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 610.07947,124.99554 v -48.888235 0 c 0,-7.724593 1.80853,-14.774817 5.4256,-21.150672 3.61708,-6.375855 8.85876,-11.464277 15.72507,-15.265268 6.8663,-3.80099 15.08135,-5.701485 24.64513,-5.701485 9.68639,0 17.93209,1.900495 24.73709,5.701485 6.805,3.800991 12.01603,8.889413 15.63311,15.265268 3.61707,6.375855 5.4256,13.426079 5.4256,21.150672 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 v -48.888235 0 c 0,-3.80099 -0.9196,-7.264796 -2.75879,-10.391417 -1.83919,-3.126621 -4.32209,-5.609526 -7.44871,-7.448715 -3.12662,-1.839189 -6.59043,-2.758783 -10.39142,-2.758783 -3.80099,0 -7.2648,0.919594 -10.39142,2.758783 -3.12662,1.839189 -5.60952,4.322094 -7.44871,7.448715 -1.83919,3.126621 -2.75879,6.590427 -2.75879,10.391417 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||||
|
id="path243"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 220,0 c 36.45079,0 66,29.549206 66,66 0,36.45079 -29.54921,66 -66,66 -36.45079,0 -66,-29.54921 -66,-66 0,-36.450794 29.54921,-66 66,-66 z m -17.00189,18.568446 -1.93756,2.831494 1.53943,2.668682 -0.63153,5.078586 -1.8052,-2.303226 0.34534,-3.389575 -3.06967,-2.015477 -3.39205,1.361896 -0.0169,3.912827 2.97572,1.516205 1.45972,5.927492 2.15161,6.815043 -0.0305,7.082912 2.34465,2.071055 4.61088,0.221223 1.8584,0.946904 -4.51345,8.779253 -0.42032,7.509823 -8.75187,-8.896009 -3.40232,-1.733568 -5.60842,2.151177 -1.00711,1.97656 -0.36684,10.187218 4.61019,13.623996 -4.36646,-3.879041 -3.78726,-6.589605 -1.167,-3.653386 0.36458,-2.304699 2.18849,-2.430273 -1.37613,-3.145307 -3.29197,-0.699651 -1.96044,3.203366 1.47629,2.195534 -0.57391,2.87169 -1.97667,-2.314596 -0.0599,-2.520959 -3.84258,-1.369528 -1.98185,2.199722 0.57695,3.220288 2.81609,0.721386 1.23051,2.572829 -2.24123,0.291333 -2.30388,-2.607181 -3.31321,1.246521 -0.27564,3.134268 2.48751,1.660461 2.05638,-0.786817 3.60758,1.838155 7.71477,5.765467 6.95085,7.952341 3.6232,1.385835 4.33669,-2.787504 -0.68495,-13.861259 5.28244,6.489427 2.48527,2.416679 8.6469,4.405812 3.41594,0.590138 8.35499,0.459194 -11.61659,7.593309 0.2939,5.146904 3.25083,2.11666 10.51918,0.94909 9.19899,2.85252 3.60758,1.83816 0.57217,2.12612 2.80546,1.03644 2.37366,-2.06526 -0.93901,-3.41314 -3.46343,-0.33141 -1.08167,-1.98444 2.80474,-0.51677 2.23887,1.85425 2.94439,-1.42608 0.61471,-2.89631 -3.36659,-2.30373 -2.07468,1.43336 -3.03441,-0.23868 1.98592,-2.15223 2.64396,-0.0962 1.43926,-3.468912 -2.501,-2.252016 -3.35348,0.735449 -0.67977,3.199007 -1.65024,1.649618 -3.6416,1.203284 -7.5572,0.80932 -5.70475,-1.2525 13.73185,-4.278263 8.02601,-6.284677 1.00711,-1.97656 -1.55621,-5.801736 -3.40232,-1.733568 -12.34125,-1.851476 5.82852,-4.754204 4.44963,-8.811776 1.8584,0.946903 2.88918,3.60025 3.05367,0.679523 5.71227,-4.187905 6.77817,-2.265089 5.65344,-2.30316 2.97572,1.516205 3.15563,-2.313542 -0.892,-3.544729 -3.43486,-1.298747 -2.53924,2.271729 -2.92441,-0.106632 3.73745,-3.496042 3.06387,-0.323182 1.15185,-3.231833 -2.05137,-2.667005 -3.45449,0.792909 -0.63713,3.251767 -3.16848,2.671159 0.10965,-4.229708 1.66104,-2.137611 -2.23877,-3.241974 -3.54914,0.292887 -1.24839,3.543213 1.6286,2.38328 -1.09677,3.288072 -3.7193,6.163988 -4.50112,2.161253 -4.63654,-10.479651 3.61811,-4.86316 0.0449,-6.64112 1.34093,-1.90326 -0.4133,-5.102476 -1.03338,-1.16321 -1.11562,-4.370289 -2.81584,-3.091877 0.0301,-0.05818 -0.0927,-0.0099 -0.0625,-0.06915 -0.0303,0.05808 -4.1556,-0.460247 -4.19138,1.666237 -1.54846,-0.152307 -4.37092,2.664798 -0.75159,2.203542 -5.3464,3.939863 -1.80771,5.785606 -11.20351,2.408738 -0.8972,-4.911831 2.80062,-6.632079 2.01545,-2.819981 2.88538,-0.08329 2.13273,-3.09262 -1.84918,-3.043465 -3.93873,0.09438 -0.75303,2.600265 -3.35745,2.574872 0.29863,-4.133421 2.25623,-2.426791 -1.38902,-3.260807 z"
|
||||||
|
id="path245"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 0.83694671,181.344 v -21.05081 c 0,-1.14329 0.17423049,-2.0978 0.52269139,-2.86354 0.3484609,-0.76574 0.8060417,-1.37036 1.3727422,-1.81388 0.5667005,-0.44351 1.1987969,-0.7587 1.8962891,-0.94558 0.6974921,-0.18687 1.3884257,-0.2803 2.0728007,-0.2803 0.9448177,0.0103 2.0588282,0.0239 3.3420309,0.0411 1.283204,0.0171 2.634274,0.0557 4.053211,0.11577 1.418938,0.0601 2.788828,0.15228 4.109672,0.2766 v 3.73669 H 7.901978 c -0.8189688,0 -1.4476433,0.22699 -1.8860235,0.68095 -0.4383802,0.45397 -0.6575703,1.06915 -0.6575703,1.84554 v 5.44477 l 11.1735628,0.25949 v 3.54335 L 5.3583842,170.59418 V 181.344 Z"
|
||||||
|
id="path247"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 20.623859,181.344 v -19.55317 h 3.478906 l 1.042531,3.12931 c 0.764599,-0.94368 1.625486,-1.74478 2.58266,-2.4033 0.957175,-0.65852 2.083637,-0.98778 3.379387,-0.98778 0.274891,0 0.558716,0.0146 0.851477,0.0439 0.29276,0.0293 0.56594,0.0804 0.819539,0.15342 v 4.62922 c -0.353594,-0.0487 -0.723252,-0.0902 -1.108973,-0.12461 -0.385721,-0.0344 -0.758801,-0.0516 -1.119238,-0.0516 -0.774865,0 -1.470836,0.0898 -2.087914,0.26947 -0.617078,0.17965 -1.19452,0.44427 -1.732324,0.79387 -0.537805,0.34961 -1.06601,0.79226 -1.584614,1.32798 V 181.344 Z"
|
||||||
|
id="path249"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 43.180654,181.54132 c -2.118141,0 -3.805886,-0.29485 -5.063235,-0.88455 -1.257349,-0.5897 -2.161104,-1.61094 -2.711265,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236627,-0.584 2.91116,-0.876 5.023597,-0.876 1.871766,0 3.37587,0.19219 4.512313,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.247231,2.25255 -0.741692,2.99243 -0.49446,0.73989 -1.194994,1.26762 -2.101601,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204076,2.17165 0.483339,2.89576 0.279263,0.72411 0.791119,1.24452 1.535567,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922695 v 2.66393 c -1.012494,0.18326 -2.073656,0.35131 -3.183484,0.50416 -1.109828,0.15284 -2.411852,0.22926 -3.90607,0.22926 z M 39.016802,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404731,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125754,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284344,-0.31367 -2.196844,-0.31367 -1.014395,0 -1.81673,0.16007 -2.407004,0.4802 -0.590273,0.32014 -1.011069,0.89026 -1.262386,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||||
|
id="path251"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 62.113652,181.54132 c -2.118141,0 -3.805885,-0.29485 -5.063234,-0.88455 -1.257349,-0.5897 -2.161105,-1.61094 -2.711266,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236628,-0.584 2.91116,-0.876 5.023598,-0.876 1.871765,0 3.375869,0.19219 4.512312,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.741691,2.99243 -0.494461,0.73989 -1.194995,1.26762 -2.101602,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204077,2.17165 0.48334,2.89576 0.279263,0.72411 0.791118,1.24452 1.535566,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922696 v 2.66393 c -1.012495,0.18326 -2.073657,0.35131 -3.183485,0.50416 -1.109828,0.15284 -2.411851,0.22926 -3.90607,0.22926 z M 57.9498,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404732,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125753,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284343,-0.31367 -2.196843,-0.31367 -1.014396,0 -1.816731,0.16007 -2.407004,0.4802 -0.590274,0.32014 -1.011069,0.89026 -1.262387,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||||
|
id="path253"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 85.95017,181.563 c -1.458479,0 -2.653664,-0.43515 -3.585554,-1.30545 -0.931891,-0.8703 -1.397836,-2.07689 -1.397836,-3.61977 v -1.64592 c 0,-1.50031 0.517748,-2.72962 1.553246,-3.68793 1.035497,-0.95832 2.630946,-1.43747 4.786348,-1.43747 h 5.56796 v -1.70467 c 0,-0.68741 -0.117769,-1.26134 -0.353308,-1.72177 -0.235539,-0.46043 -0.675155,-0.80557 -1.318848,-1.0354 -0.643693,-0.22984 -1.600297,-0.34476 -2.869812,-0.34476 h -5.926688 v -2.62172 c 0.91174,-0.25284 1.972996,-0.46795 3.18377,-0.64531 1.210773,-0.17737 2.6568,-0.271 4.338082,-0.28088 1.614745,-0.0103 2.978742,0.18573 4.091992,0.58799 1.11325,0.40226 1.954271,1.06601 2.523062,1.99125 0.568792,0.92523 0.853188,2.18211 0.853188,3.77062 V 181.344 H 93.85242 l -0.763648,-2.12157 c -0.152844,0.14296 -0.450832,0.33858 -0.893965,0.58685 -0.443133,0.24828 -0.993389,0.51062 -1.650769,0.78704 -0.657381,0.27641 -1.380157,0.50662 -2.168329,0.69064 -0.788172,0.18403 -1.596684,0.27604 -2.425539,0.27604 z m 2.187149,-3.19204 c 0.312531,0.01 0.669737,-0.0249 1.071617,-0.10437 0.40188,-0.0795 0.808798,-0.17509 1.220754,-0.28687 0.411956,-0.11178 0.797772,-0.22603 1.157449,-0.34276 0.359677,-0.11672 0.653388,-0.22204 0.881133,-0.31595 0.227745,-0.0939 0.363099,-0.1479 0.406062,-0.16197 v -5.1214 l -4.221453,0.23382 c -1.112869,0.0772 -1.918531,0.35902 -2.416984,0.84549 -0.498453,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.124709,1.097 0.374125,1.46941 0.249417,0.37241 0.577156,0.6339 0.983219,0.78446 0.406062,0.15057 0.836648,0.23079 1.291758,0.24068 z"
|
||||||
|
id="path255"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 101.1903,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77747,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.3766,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52143 v -12.47559 c 0,-0.70186 -0.13289,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07256,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path257"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 128.4808,181.563 c -1.55467,0 -2.85261,-0.33288 -3.89381,-0.99862 -1.0412,-0.66575 -1.82053,-1.72139 -2.338,-3.16695 -0.51746,-1.44555 -0.77619,-3.32986 -0.77619,-5.65293 0,-2.42345 0.2305,-4.38552 0.6915,-5.8862 0.461,-1.50068 1.22931,-2.601 2.30492,-3.30097 1.07561,-0.69996 2.53447,-1.04994 4.37658,-1.04994 0.96953,0 1.92528,0.10066 2.86724,0.30198 0.94197,0.20132 1.77244,0.43144 2.49141,0.69036 v -9.00523 h 4.52144 v 27.8495 h -3.75779 l -0.76365,-1.90884 c -0.40226,0.36348 -0.92162,0.70728 -1.55809,1.03141 -0.63647,0.32413 -1.31514,0.5879 -2.03602,0.79131 -0.72087,0.20341 -1.43072,0.30512 -2.12954,0.30512 z m 1.52273,-3.65514 c 0.8779,0 1.66855,-0.13934 2.37193,-0.41804 0.70339,-0.27869 1.31305,-0.56841 1.82899,-0.86915 V 165.7431 c -0.6205,-0.20189 -1.24727,-0.38839 -1.88032,-0.55948 -0.63304,-0.17109 -1.32065,-0.25664 -2.06282,-0.25664 -1.01858,0 -1.84401,0.18478 -2.47629,0.55434 -0.63229,0.36957 -1.08883,1.03046 -1.36961,1.9827 -0.28078,0.95223 -0.42117,2.30757 -0.42117,4.06604 0,1.62957 0.13183,2.90973 0.39551,3.84048 0.26367,0.93075 0.69198,1.58633 1.28491,1.96673 0.59293,0.38039 1.36923,0.57059 2.32887,0.57059 z"
|
||||||
|
id="path259"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 161.73343,181.563 c -1.80219,0 -3.38195,-0.17357 -4.7393,-0.5207 -1.35734,-0.34713 -2.49008,-0.99225 -3.39821,-1.93536 -0.90812,-0.9431 -1.58794,-2.31603 -2.03943,-4.11879 -0.4515,-1.80276 -0.67725,-4.15501 -0.67725,-7.05676 0,-2.91126 0.22822,-5.2733 0.68466,-7.08614 0.45644,-1.81283 1.1412,-3.20088 2.05427,-4.16413 0.91307,-0.96326 2.0459,-1.62596 3.39849,-1.98811 1.35259,-0.36215 2.92485,-0.54323 4.71677,-0.54323 1.82196,0 3.41161,0.18108 4.76895,0.54323 1.35735,0.36215 2.48761,1.02485 3.3908,1.98811 0.90318,0.96325 1.57805,2.3513 2.0246,4.16413 0.44656,1.81284 0.66984,4.17488 0.66984,7.08614 0,2.90175 -0.22585,5.254 -0.67754,7.05676 -0.45168,1.80276 -1.1315,3.17569 -2.03943,4.11879 -0.90794,0.94311 -2.0382,1.58823 -3.3908,1.93536 -1.35259,0.34713 -2.93473,0.5207 -4.74642,0.5207 z m 0,-4.06234 c 1.18549,0 2.18315,-0.12461 2.993,-0.37384 0.80984,-0.24923 1.45933,-0.70928 1.94847,-1.38016 0.48914,-0.67087 0.84321,-1.63594 1.06221,-2.89519 0.219,-1.25925 0.3285,-2.89928 0.3285,-4.92008 0,-2.12347 -0.11207,-3.82747 -0.3362,-5.112 -0.22413,-1.28453 -0.58067,-2.25863 -1.06962,-2.92228 -0.48895,-0.66365 -1.13587,-1.1104 -1.94077,-1.34024 -0.80491,-0.22983 -1.8001,-0.34475 -2.98559,-0.34475 -1.12123,0 -2.08535,0.11492 -2.89234,0.34475 -0.80699,0.22984 -1.46257,0.67659 -1.96672,1.34024 -0.50416,0.66365 -0.87581,1.63775 -1.11496,2.92228 -0.23916,1.28453 -0.35873,2.98853 -0.35873,5.112 0,2.0208 0.10456,3.66083 0.31367,4.92008 0.20911,1.25925 0.55567,2.22432 1.03968,2.89519 0.48401,0.67088 1.13454,1.13093 1.95161,1.38016 0.81707,0.24923 1.82633,0.37384 3.02779,0.37384 z"
|
||||||
|
id="path261"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 175.99709,189.9945 v -28.20367 h 3.75779 l 0.76364,1.90884 c 0.45663,-0.35322 0.98636,-0.69806 1.58918,-1.03455 0.60282,-0.33648 1.26077,-0.61356 1.97385,-0.83123 0.71308,-0.21767 1.44755,-0.3265 2.2034,-0.3265 1.22808,0 2.28515,0.24447 3.17123,0.73342 0.88607,0.48895 1.60999,1.18083 2.17175,2.07565 0.56175,0.89482 0.97257,1.95693 1.23244,3.18634 0.25987,1.2294 0.38981,2.58247 0.38981,4.0592 0,2.13449 -0.22375,3.95103 -0.67126,5.44962 -0.4475,1.49859 -1.1776,2.63893 -2.19028,3.42102 -1.01269,0.78208 -2.38058,1.17313 -4.10369,1.17313 -0.97789,0 -1.97299,-0.13317 -2.9853,-0.3995 -1.0123,-0.26634 -1.93934,-0.62801 -2.78113,-1.08502 v 9.87325 z m 8.87235,-12.12941 c 0.70224,0 1.34518,-0.18374 1.9288,-0.55121 0.58361,-0.36747 1.05127,-1.00593 1.40296,-1.91539 0.3517,-0.90946 0.52754,-2.18829 0.52754,-3.83649 0,-1.58813 -0.17299,-2.85223 -0.51898,-3.7923 -0.34599,-0.94006 -0.80623,-1.60961 -1.38073,-2.00864 -0.57449,-0.39903 -1.22047,-0.59854 -1.93792,-0.59854 -0.89235,0 -1.70809,0.13935 -2.44721,0.41804 -0.73913,0.27869 -1.38092,0.56841 -1.92538,0.86915 v 10.2354 c 0.6148,0.35094 1.30279,0.63533 2.06397,0.85319 0.76117,0.21786 1.52349,0.32679 2.28695,0.32679 z"
|
||||||
|
id="path263"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 204.51433,181.54132 c -2.11815,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87177,0 3.37587,0.19219 4.51231,0.57658 1.13645,0.38439 1.96625,1.05888 2.48942,2.02347 0.52316,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49447,0.73989 -1.195,1.26762 -2.10161,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73221 c 0.043,1.2064 0.20407,2.17165 0.48334,2.89576 0.27926,0.72411 0.79111,1.24452 1.53556,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41186,0.22926 -3.90607,0.22926 z m -4.16386,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40474,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.407,0.4802 -0.59028,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path265"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 215.46409,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73998,0.30987 3.62092,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path267"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 253.36294,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27042,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68646,-0.0914 -1.29584,-0.20236 -1.82813,-0.33277 v -3.54335 c 0.68703,0.0631 1.48604,0.11653 2.39702,0.16025 0.91098,0.0437 1.86673,0.0778 2.86725,0.10209 1.00052,0.0243 1.96178,0.0365 2.88378,0.0365 0.9836,0 1.84848,-0.0885 2.59464,-0.26548 0.74616,-0.17699 1.33082,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63475,-1.1219 0.63475,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.8067,-2.19085 -0.53781,-0.50359 -1.33311,-0.75538 -2.38591,-0.75538 h -2.52192 c -2.4512,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32958,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18316,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21241,-1.74857 0.92277,0 1.87652,0.0448 2.86126,0.1343 0.98474,0.0895 1.93127,0.19828 2.83959,0.32622 0.90831,0.12794 1.68014,0.26206 2.31546,0.40236 v 3.54335 c -1.08929,-0.0871 -2.31841,-0.16606 -3.68735,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81397,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69597,0.19257 -1.23007,0.54284 -1.60229,1.0508 -0.37223,0.50796 -0.55834,1.23738 -0.55834,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.9376,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57292,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78488,1.37284 2.29151,2.37963 0.50663,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39142,3.53403 -1.17427,4.60014 -0.78285,1.0661 -1.85371,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||||
|
id="path269"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 274.02527,181.54132 c -1.54098,0 -2.86857,-0.15987 -3.98277,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74378,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50787,-4.98453 0.33857,-1.30184 0.86535,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62947,-1.25031 2.74348,-1.54155 1.11401,-0.29124 2.43448,-0.43686 3.96139,-0.43686 1.54137,0 2.87162,0.15284 3.99076,0.45853 1.11915,0.30569 2.0326,0.82667 2.74036,1.56294 0.70775,0.73627 1.23349,1.75533 1.5772,3.05716 0.3437,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84787,2.32136 -1.55582,3.06486 -0.70794,0.74349 -1.62149,1.26799 -2.74063,1.57349 -1.11915,0.3055 -2.46366,0.45824 -4.03354,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90713,-0.20303 0.53799,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35093,-0.42754 0.61556,-1.07095 0.79387,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17831,-0.8471 -0.44294,-1.48186 -0.79387,-1.90427 -0.35093,-0.42241 -0.7954,-0.7013 -1.33339,-0.83665 -0.538,-0.13536 -1.17371,-0.20303 -1.90713,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89885,0.20303 -0.53286,0.13535 -0.97486,0.41424 -1.32598,0.83665 -0.35112,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17337,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43563,1.50268 0.78675,1.93022 0.35112,0.42755 0.79312,0.709 1.32598,0.84435 0.53286,0.13536 1.16581,0.20303 1.89885,0.20303 z"
|
||||||
|
id="path271"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 291.7726,181.563 c -1.79345,0 -3.18938,-0.50625 -4.18781,-1.51875 -0.99843,-1.01249 -1.49764,-2.49226 -1.49764,-4.43931 v -13.81411 h 4.52144 v 12.50581 c 0,1.28625 0.29542,2.15246 0.88626,2.59863 0.59085,0.44618 1.40696,0.66926 2.44836,0.66926 0.83683,0 1.65656,-0.13953 2.45918,-0.4186 0.80262,-0.27908 1.55848,-0.66214 2.26757,-1.14918 v -14.20592 h 4.522 V 181.344 h -3.68478 l -0.83722,-2.04857 c -0.91745,0.59541 -1.96815,1.12219 -3.15212,1.58034 -1.18397,0.45815 -2.43238,0.68723 -3.74524,0.68723 z"
|
||||||
|
id="path273"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 307.02893,181.344 v -19.55317 h 3.4789 l 1.04254,3.12931 c 0.76459,-0.94368 1.62548,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08363,-0.98778 3.37938,-0.98778 0.27489,0 0.55872,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.3536,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38573,-0.0344 -0.75881,-0.0516 -1.11924,-0.0516 -0.77487,0 -1.47084,0.0898 -2.08792,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73232,0.79387 -0.53781,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path275"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 329.05362,181.563 c -1.16039,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98626,-0.30835 -1.84145,-0.82971 -2.56555,-1.56408 -0.72411,-0.73437 -1.28549,-1.74535 -1.68414,-3.03292 -0.39864,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10337,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63793,1.99324 -0.35455,0.96877 -0.53182,2.36832 -0.53182,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74236,0.32946 1.69829,0.49418 2.86782,0.49418 h 5.56625 v 2.57838 c -0.5783,0.15285 -1.25916,0.29761 -2.04258,0.4343 -0.78342,0.13668 -1.60742,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||||
|
id="path277"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 346.74072,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73222 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01106,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path279"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 374.69033,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27041,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68647,-0.0914 -1.29584,-0.20236 -1.82814,-0.33277 v -3.54335 c 0.68704,0.0631 1.48605,0.11653 2.39703,0.16025 0.91098,0.0437 1.86672,0.0778 2.86724,0.10209 1.00052,0.0243 1.96178,0.0365 2.88379,0.0365 0.9836,0 1.84848,-0.0885 2.59463,-0.26548 0.74616,-0.17699 1.33083,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63476,-1.1219 0.63476,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.80671,-2.19085 -0.5378,-0.50359 -1.3331,-0.75538 -2.3859,-0.75538 h -2.52192 c -2.45121,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32959,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18315,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21242,-1.74857 0.92276,0 1.87651,0.0448 2.86125,0.1343 0.98475,0.0895 1.93127,0.19828 2.83959,0.32622 0.90832,0.12794 1.68014,0.26206 2.31547,0.40236 v 3.54335 c -1.0893,-0.0871 -2.31842,-0.16606 -3.68736,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81396,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69598,0.19257 -1.23007,0.54284 -1.6023,1.0508 -0.37222,0.50796 -0.55833,1.23738 -0.55833,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.93759,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57293,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78489,1.37284 2.29152,2.37963 0.50662,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39143,3.53403 -1.17428,4.60014 -0.78284,1.0661 -1.8537,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||||
|
id="path281"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 395.35267,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26747,-2.00065 0.26747,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26747,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.366,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61338,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17337,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53286,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||||
|
id="path283"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 408.72569,181.344 v -15.91914 h -2.85384 v -2.90004 l 2.85384,-0.73399 v -1.64193 c 0,-1.55809 0.20275,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.9596,-2.26813 0.9009,-0.49598 2.10625,-0.74397 3.61606,-0.74397 0.85167,0 1.60914,0.0529 2.27241,0.15883 0.66328,0.10589 1.22399,0.21168 1.68214,0.31738 v 3.22169 h -3.0814 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61897,0.534 -0.76364,0.96383 -0.14467,0.42983 -0.21701,0.98198 -0.21701,1.65647 v 1.87804 h 5.36094 v 3.63403 h -5.36094 V 181.344 Z"
|
||||||
|
id="path285"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 427.85323,181.344 c -1.41818,0 -2.57696,-0.21501 -3.47634,-0.64503 -0.89938,-0.43001 -1.55201,-1.13882 -1.95788,-2.12641 -0.40587,-0.98759 -0.59436,-2.30777 -0.56547,-3.96053 l 0.15855,-9.18717 h -3.07455 v -2.90004 l 3.21599,-0.73399 0.63533,-5.48127 h 3.54335 v 5.48127 h 4.97198 v 3.63403 h -4.97198 v 9.1655 c 0,0.6376 0.0644,1.15735 0.19333,1.55923 0.12889,0.40188 0.30579,0.71698 0.53068,0.94529 0.22489,0.22832 0.47526,0.39257 0.7511,0.49275 0.27584,0.10019 0.5533,0.16245 0.83237,0.18678 l 2.44322,0.24067 v 3.32892 z"
|
||||||
|
id="path287"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<polygon
|
||||||
|
id="polygon289"
|
||||||
|
points="448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 "
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 466.27267,181.563 c -1.45848,0 -2.65366,-0.43515 -3.58555,-1.30545 -0.93189,-0.8703 -1.39784,-2.07689 -1.39784,-3.61977 v -1.64592 c 0,-1.50031 0.51775,-2.72962 1.55325,-3.68793 1.03549,-0.95832 2.63094,-1.43747 4.78634,-1.43747 h 5.56797 v -1.70467 c 0,-0.68741 -0.11777,-1.26134 -0.35331,-1.72177 -0.23554,-0.46043 -0.67516,-0.80557 -1.31885,-1.0354 -0.64369,-0.22984 -1.6003,-0.34476 -2.86981,-0.34476 h -5.92669 v -2.62172 c 0.91174,-0.25284 1.973,-0.46795 3.18377,-0.64531 1.21077,-0.17737 2.6568,-0.271 4.33808,-0.28088 1.61475,-0.0103 2.97874,0.18573 4.09199,0.58799 1.11325,0.40226 1.95427,1.06601 2.52307,1.99125 0.56879,0.92523 0.85318,2.18211 0.85318,3.77062 V 181.344 h -3.54335 l -0.76365,-2.12157 c -0.15284,0.14296 -0.45083,0.33858 -0.89396,0.58685 -0.44313,0.24828 -0.99339,0.51062 -1.65077,0.78704 -0.65738,0.27641 -1.38016,0.50662 -2.16833,0.69064 -0.78817,0.18403 -1.59668,0.27604 -2.42554,0.27604 z m 2.18715,-3.19204 c 0.31253,0.01 0.66974,-0.0249 1.07162,-0.10437 0.40188,-0.0795 0.80879,-0.17509 1.22075,-0.28687 0.41196,-0.11178 0.79777,-0.22603 1.15745,-0.34276 0.35968,-0.11672 0.65339,-0.22204 0.88113,-0.31595 0.22775,-0.0939 0.3631,-0.1479 0.40607,-0.16197 v -5.1214 l -4.22146,0.23382 c -1.11287,0.0772 -1.91853,0.35902 -2.41698,0.84549 -0.49845,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.12471,1.097 0.37412,1.46941 0.24942,0.37241 0.57716,0.6339 0.98322,0.78446 0.40606,0.15057 0.83665,0.23079 1.29176,0.24068 z"
|
||||||
|
id="path291"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 481.5128,181.344 v -19.55317 h 3.47891 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85147,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path293"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 504.0696,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71126,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80185,-6.12431 0.53458,-1.4522 1.42018,-2.4703 2.65681,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96624,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.195,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74444,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32443 c 0.85813,0 1.48956,-0.16472 1.8943,-0.49418 0.40473,-0.32945 0.60709,-0.92229 0.60709,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28435,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||||
|
id="path295"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 533.04178,181.563 c -1.58319,0 -2.9756,-0.1825 -4.17725,-0.5475 -1.20165,-0.365 -2.21035,-1.0317 -3.02608,-2.00009 -0.81574,-0.96839 -1.42968,-2.35748 -1.84183,-4.16727 -0.41214,-1.8098 -0.61821,-4.16481 -0.61821,-7.06503 0,-2.76222 0.2132,-5.03368 0.6396,-6.81438 0.4264,-1.78071 1.05603,-3.16628 1.88888,-4.15673 0.83284,-0.99044 1.8576,-1.68175 3.07426,-2.07394 1.21667,-0.39218 2.61033,-0.58828 4.18097,-0.58828 1.05698,0 2.09057,0.059 3.10079,0.17709 1.01021,0.11805 1.95056,0.26149 2.82105,0.4303 0.87048,0.16881 1.62434,0.35264 2.26157,0.55149 v 3.47891 c -0.4323,-0.0874 -1.02352,-0.1748 -1.77367,-0.26206 -0.75015,-0.0873 -1.60115,-0.16131 -2.553,-0.22214 -0.95186,-0.0608 -1.94011,-0.0913 -2.96478,-0.0913 -1.11857,0 -2.07165,0.12537 -2.85926,0.37612 -0.7876,0.25075 -1.42198,0.71688 -1.90313,1.39841 -0.48115,0.68152 -0.83342,1.65305 -1.05679,2.91458 -0.22337,1.26153 -0.33506,2.90327 -0.33506,4.92522 0,1.99191 0.10095,3.6251 0.30284,4.89955 0.20189,1.27446 0.53381,2.25568 0.99576,2.94367 0.46196,0.68799 1.08636,1.16515 1.8732,1.43149 0.78684,0.26633 1.77015,0.3995 2.94994,0.3995 1.83945,0 3.34203,-0.0405 4.50775,-0.12148 1.16572,-0.081 2.10445,-0.17508 2.8162,-0.2823 v 3.4789 c -0.68894,0.20304 -1.46352,0.37717 -2.32374,0.52241 -0.86022,0.14524 -1.78764,0.25902 -2.78227,0.34133 -0.99462,0.0823 -2.06054,0.12348 -3.19774,0.12348 z"
|
||||||
|
id="path297"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 552.26543,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53287,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||||
|
id="path299"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 564.37008,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57644,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path301"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 586.53746,181.344 v -15.91914 h -2.85385 v -2.90004 l 2.85385,-0.73399 v -1.64193 c 0,-1.55809 0.20274,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.95959,-2.26813 0.9009,-0.49598 2.10626,-0.74397 3.61607,-0.74397 0.85166,0 1.60913,0.0529 2.27241,0.15883 0.66327,0.10589 1.22398,0.21168 1.68213,0.31738 v 3.22169 h -3.08139 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61898,0.534 -0.76365,0.96383 -0.14467,0.42983 -0.217,0.98198 -0.217,1.65647 v 1.87804 h 5.36093 v 3.63403 H 591.0589 V 181.344 Z"
|
||||||
|
id="path303"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 606.53244,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path305"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 617.48221,181.344 v -19.55317 h 3.4789 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95718,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81953,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.066,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path307"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 640.039,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37727,-2.02005 -0.2515,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25131,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||||
|
id="path309"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 650.98876,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77748,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88095,0.61974 1.50972,1.45059 1.88631,2.49255 0.3766,1.04196 0.5649,2.18401 0.5649,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63637,-0.87524 -1.11182,-1.14519 -0.47545,-0.26995 -1.05347,-0.40492 -1.73404,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76825,0.19847 -0.5515,0.13231 -1.07257,0.3188 -1.56323,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path311"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 679.3389,181.563 c -1.1604,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98627,-0.30835 -1.84145,-0.82971 -2.56556,-1.56408 -0.7241,-0.73437 -1.28548,-1.74535 -1.68413,-3.03292 -0.39865,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10336,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63794,1.99324 -0.35454,0.96877 -0.53181,2.36832 -0.53181,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74235,0.32946 1.69829,0.49418 2.86781,0.49418 h 5.56625 v 2.57838 c -0.57829,0.15285 -1.25915,0.29761 -2.04257,0.4343 -0.78342,0.13668 -1.60743,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||||
|
id="path313"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
<path
|
||||||
|
d="m 697.026,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path315"
|
||||||
|
style="fill:#daffc7" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-366.71206,-8)"
|
||||||
|
id="g4680">
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.25517px;line-height:0%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#daffc7;fill-opacity:1;stroke:none;stroke-width:0.771264"
|
||||||
|
x="764.92072"
|
||||||
|
y="1015.8785"
|
||||||
|
id="text3062-4"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3064-8"
|
||||||
|
x="764.92072"
|
||||||
|
y="1015.8785"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.2835px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#daffc7;fill-opacity:1;stroke-width:0.771264">Creative Commons Attribution 4.0 International </tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="764.92072"
|
||||||
|
y="1028.7329"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.2835px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#daffc7;fill-opacity:1;stroke-width:0.771264"
|
||||||
|
id="tspan492"> http://creativecommons.org/licenses/by/4.0/</tspan></text>
|
||||||
|
<g
|
||||||
|
id="license"
|
||||||
|
transform="matrix(0.47397866,0,0,0.47397866,648.37531,619.29603)">
|
||||||
|
<g
|
||||||
|
transform="matrix(2.404762,0,0,2.404762,-253.42861,-1037.1755)"
|
||||||
|
id="g3607">
|
||||||
|
<g
|
||||||
|
id="surface1"
|
||||||
|
transform="translate(258.00002,728.36216)">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#a8b0ab;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 3.40625,0.476563 113.35547,0.203125 c 1.58594,0 3,-0.238282 3,3.160156 l -0.14063,37.328125 H 0.546875 V 3.699219 c 0,-1.671875 0.164063,-3.222656 2.859375,-3.222656 z"
|
||||||
|
id="path3511" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 34.523438,19.574219 c 0.0039,7.53125 -6.097657,13.636719 -13.628907,13.644531 -7.527343,0.0039 -13.636718,-6.097656 -13.640625,-13.625 0,-0.0078 0,-0.01172 0,-0.01953 -0.00391,-7.527345 6.09375,-13.63672 13.625,-13.640626 7.53125,-0.00391 13.640625,6.097656 13.644532,13.625 0,0.0039 0,0.01172 0,0.01563 z"
|
||||||
|
id="path3513" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 31.972656,8.46875 c 3.023438,3.027344 4.535157,6.726563 4.535157,11.105469 0,4.382812 -1.488282,8.042969 -4.457032,10.988281 -3.15625,3.101563 -6.882812,4.652344 -11.183593,4.652344 -4.25,0 -7.910157,-1.535156 -10.984375,-4.613281 -3.078125,-3.074219 -4.617188,-6.75 -4.617188,-11.027344 0,-4.273438 1.539063,-7.976563 4.617188,-11.105469 2.996093,-3.023437 6.65625,-4.535156 10.984375,-4.535156 4.378906,0 8.082031,1.511719 11.105468,4.535156 z m -20.054687,2.035156 c -2.558594,2.582032 -3.835938,5.605469 -3.835938,9.074219 0,3.46875 1.265625,6.46875 3.796875,8.996094 2.527344,2.53125 5.539063,3.796875 9.035157,3.796875 3.496093,0 6.53125,-1.277344 9.113281,-3.835938 2.453125,-2.371093 3.679687,-5.355468 3.679687,-8.957031 0,-3.570312 -1.246093,-6.601562 -3.738281,-9.09375 C 27.480469,7.996094 24.460938,6.75 20.914063,6.75 17.367188,6.75 14.367188,8 11.917969,10.503906 Z m 6.726562,7.550782 c -0.390625,-0.851563 -0.976562,-1.277344 -1.757812,-1.277344 -1.375,0 -2.066406,0.925781 -2.066406,2.78125 0,1.855469 0.691406,2.785156 2.066406,2.785156 0.910156,0 1.5625,-0.453125 1.953125,-1.359375 L 20.75,22.003906 c -0.910156,1.617188 -2.277344,2.425782 -4.097656,2.425782 -1.40625,0 -2.53125,-0.429688 -3.378906,-1.289063 -0.847657,-0.863281 -1.269532,-2.050781 -1.269532,-3.566406 0,-1.488281 0.4375,-2.667969 1.308594,-3.542969 0.871094,-0.875 1.957031,-1.3125 3.261719,-1.3125 1.925781,0 3.304687,0.761719 4.136719,2.277344 z m 8.988282,0 c -0.390625,-0.851563 -0.964844,-1.277344 -1.71875,-1.277344 -1.40625,0 -2.109375,0.925781 -2.109375,2.78125 0,1.855469 0.703125,2.785156 2.109375,2.785156 0.910156,0 1.550781,-0.453125 1.914062,-1.359375 l 1.953125,1.019531 c -0.910156,1.617188 -2.273437,2.425782 -4.089844,2.425782 -1.40625,0 -2.527343,-0.429688 -3.375,-1.289063 -0.839843,-0.863281 -1.265625,-2.050781 -1.265625,-3.566406 0,-1.488281 0.429688,-2.667969 1.289063,-3.542969 0.855469,-0.875 1.945312,-1.3125 3.273437,-1.3125 1.921875,0 3.296875,0.761719 4.128907,2.277344 z"
|
||||||
|
id="path3515" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 117.75391,0 H 2.246094 C 1.007813,0 0,1.007813 0,2.246094 V 41.492188 C 0,41.773438 0.226563,42 0.507813,42 H 119.49219 C 119.77344,42 120,41.773438 120,41.492188 V 2.246094 C 120,1.007813 118.99219,0 117.75391,0 Z M 2.246094,1.015625 H 117.75391 c 0.67968,0 1.23047,0.550781 1.23047,1.230469 0,0 0,15.820312 0,27.246094 H 36.429688 c -3.027344,5.46875 -8.859375,9.183593 -15.546875,9.183593 -6.695313,0 -12.523438,-3.710937 -15.546875,-9.183593 H 1.015625 c 0,-11.425782 0,-27.246094 0,-27.246094 0,-0.679688 0.550781,-1.230469 1.230469,-1.230469 z"
|
||||||
|
id="path3517" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 74.882669,32.746094 c 0.316406,0 0.605469,0.03125 0.863281,0.08594 0.261719,0.05469 0.484375,0.144532 0.671875,0.273438 0.183594,0.125 0.328125,0.292969 0.429688,0.503906 0.101562,0.210938 0.152343,0.46875 0.152343,0.777344 0,0.335937 -0.07422,0.613281 -0.226562,0.835937 -0.152344,0.222657 -0.375,0.40625 -0.671875,0.546875 0.410156,0.117188 0.714844,0.324219 0.914062,0.617188 0.203125,0.292969 0.304688,0.648437 0.304688,1.0625 0,0.332031 -0.06641,0.621094 -0.195313,0.867187 -0.128906,0.242188 -0.304687,0.445313 -0.523437,0.597657 -0.222656,0.15625 -0.472656,0.269531 -0.753906,0.34375 -0.28125,0.07422 -0.570313,0.113281 -0.871094,0.113281 h -3.214844 v -6.625 z m -0.1875,2.679687 c 0.261719,0 0.476562,-0.0625 0.644531,-0.183593 0.164063,-0.125 0.25,-0.324219 0.25,-0.601563 0,-0.15625 -0.02734,-0.28125 -0.08594,-0.378906 -0.05469,-0.101563 -0.128907,-0.175781 -0.222657,-0.234375 -0.09375,-0.05469 -0.199218,-0.09375 -0.320312,-0.113281 -0.121094,-0.02344 -0.246094,-0.03516 -0.375,-0.03516 H 73.22251 v 1.546875 z m 0.08594,2.808594 c 0.144532,0 0.28125,-0.01172 0.410157,-0.03906 0.128906,-0.02734 0.246093,-0.07422 0.34375,-0.140625 0.09766,-0.0625 0.179687,-0.152344 0.238281,-0.265625 0.05859,-0.109375 0.08594,-0.25 0.08594,-0.425782 0,-0.339843 -0.09375,-0.582031 -0.285156,-0.726562 -0.195312,-0.144531 -0.449219,-0.21875 -0.765625,-0.21875 h -1.585937 v 1.816406 z"
|
||||||
|
id="path3523" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 77.577981,32.746094 h 1.632813 l 1.550781,2.617187 1.539063,-2.617187 h 1.625 l -2.457032,4.082031 v 2.542969 h -1.460937 v -2.582031 z"
|
||||||
|
id="path3525" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 88.984231,15.21875 c 0,5.929688 -4.808593,10.734375 -10.738281,10.734375 -5.929687,0 -10.738281,-4.804687 -10.738281,-10.734375 0,-5.933594 4.808594,-10.738281 10.738281,-10.738281 5.929688,0 10.738281,4.804687 10.738281,10.738281 z"
|
||||||
|
id="path3533" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 81.355325,12.109375 c 0,-0.414062 -0.335937,-0.75 -0.75,-0.75 h -4.742187 c -0.414063,0 -0.75,0.335938 -0.75,0.75 v 4.742188 h 1.324218 v 5.617187 h 3.59375 v -5.617187 h 1.324219 z"
|
||||||
|
id="path3535" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 79.855325,9.113281 c 0,0.898438 -0.726562,1.621094 -1.621094,1.621094 -0.894531,0 -1.621093,-0.722656 -1.621093,-1.621094 0,-0.894531 0.726562,-1.621093 1.621093,-1.621093 0.894532,0 1.621094,0.726562 1.621094,1.621093 z"
|
||||||
|
id="path3537" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||||
|
d="m 78.218606,3.386719 c -3.210937,0 -5.929687,1.121094 -8.15625,3.363281 -2.285156,2.316406 -3.425781,5.0625 -3.425781,8.230469 0,3.167969 1.140625,5.894531 3.425781,8.175781 2.285157,2.277344 5.003907,3.417969 8.15625,3.417969 3.191407,0 5.960938,-1.148438 8.300782,-3.449219 2.207031,-2.183594 3.308593,-4.898437 3.308593,-8.144531 C 89.827981,11.734375 88.706888,8.988281 86.4647,6.75 84.218606,4.507813 81.468606,3.386719 78.218606,3.386719 Z m 0.02734,2.085937 c 2.632813,0 4.867188,0.925782 6.707031,2.78125 1.859375,1.835938 2.789063,4.078125 2.789063,6.726563 0,2.667969 -0.910156,4.878906 -2.730469,6.636719 -1.917969,1.894531 -4.171875,2.839843 -6.765625,2.839843 -2.589844,0 -4.828125,-0.933593 -6.703125,-2.808593 -1.878906,-1.875 -2.816406,-4.097657 -2.816406,-6.667969 0,-2.570313 0.949219,-4.8125 2.84375,-6.726563 1.820312,-1.855468 4.046875,-2.78125 6.675781,-2.78125 z"
|
||||||
|
id="path3539" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 67 KiB |
562
froscon2023/artwork/pause.svg
Normal file
|
@ -0,0 +1,562 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="1024"
|
||||||
|
height="576"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
sodipodi:docname="pause.svg"
|
||||||
|
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"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
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="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3811">
|
||||||
|
<stop
|
||||||
|
id="stop3819"
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#fafbff;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#fffbff;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3815" />
|
||||||
|
</linearGradient>
|
||||||
|
<radialGradient
|
||||||
|
fy="9.7279596"
|
||||||
|
fx="1.71676"
|
||||||
|
r="0.29498801"
|
||||||
|
cy="9.7279596"
|
||||||
|
cx="1.71676"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id12">
|
||||||
|
<stop
|
||||||
|
id="stop3151"
|
||||||
|
style="stop-color:#75C5F0"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3153"
|
||||||
|
style="stop-color:#007CC3"
|
||||||
|
offset="1" />
|
||||||
|
</radialGradient>
|
||||||
|
<radialGradient
|
||||||
|
fy="2.1879101"
|
||||||
|
fx="3.27019"
|
||||||
|
r="0.420028"
|
||||||
|
cy="2.1879101"
|
||||||
|
cx="3.27019"
|
||||||
|
xlink:href="#id12"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id14" />
|
||||||
|
<linearGradient
|
||||||
|
y2="2.3961301"
|
||||||
|
x2="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x1="3.27019"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3382">
|
||||||
|
<stop
|
||||||
|
id="stop3384"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3386"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<mask
|
||||||
|
id="id6">
|
||||||
|
<linearGradient
|
||||||
|
y2="2.3961301"
|
||||||
|
x2="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x1="3.27019"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id7">
|
||||||
|
<stop
|
||||||
|
id="stop3128"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3130"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<rect
|
||||||
|
id="rect3132"
|
||||||
|
height="0.465563"
|
||||||
|
width="0.65544897"
|
||||||
|
y="1.94721"
|
||||||
|
x="2.9424601"
|
||||||
|
style="fill:url(#id7)" />
|
||||||
|
</mask>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 0.5 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="1 : 0.5 : 1"
|
||||||
|
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||||
|
id="perspective3373" />
|
||||||
|
<inkscape:perspective
|
||||||
|
id="perspective3412"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
sodipodi:type="inkscape:persp3d" />
|
||||||
|
<radialGradient
|
||||||
|
fy="9.7279596"
|
||||||
|
fx="1.71676"
|
||||||
|
r="0.29498801"
|
||||||
|
cy="9.7279596"
|
||||||
|
cx="1.71676"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id12-3">
|
||||||
|
<stop
|
||||||
|
id="stop3151-0"
|
||||||
|
style="stop-color:#75C5F0"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3153-0"
|
||||||
|
style="stop-color:#007CC3"
|
||||||
|
offset="1" />
|
||||||
|
</radialGradient>
|
||||||
|
<radialGradient
|
||||||
|
fy="2.1879101"
|
||||||
|
fx="3.27019"
|
||||||
|
r="0.420028"
|
||||||
|
cy="2.1879101"
|
||||||
|
cx="3.27019"
|
||||||
|
xlink:href="#id12-3"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id14-6" />
|
||||||
|
<linearGradient
|
||||||
|
y2="2.3961301"
|
||||||
|
x2="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x1="3.27019"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3382-2">
|
||||||
|
<stop
|
||||||
|
id="stop3384-5"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3386-2"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<mask
|
||||||
|
id="id6-4">
|
||||||
|
<linearGradient
|
||||||
|
y2="2.3961301"
|
||||||
|
x2="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x1="3.27019"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id7-2">
|
||||||
|
<stop
|
||||||
|
id="stop3128-9"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3130-9"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<rect
|
||||||
|
id="rect3132-4"
|
||||||
|
height="0.465563"
|
||||||
|
width="0.65544897"
|
||||||
|
y="1.94721"
|
||||||
|
x="2.9424601"
|
||||||
|
style="fill:url(#id7-2)" />
|
||||||
|
</mask>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 0.5 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="1 : 0.5 : 1"
|
||||||
|
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||||
|
id="perspective3373-6" />
|
||||||
|
<inkscape:perspective
|
||||||
|
id="perspective3412-2"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
sodipodi:type="inkscape:persp3d" />
|
||||||
|
<radialGradient
|
||||||
|
fy="9.7279596"
|
||||||
|
fx="1.71676"
|
||||||
|
r="0.29498801"
|
||||||
|
cy="9.7279596"
|
||||||
|
cx="1.71676"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id12-2">
|
||||||
|
<stop
|
||||||
|
id="stop3151-3"
|
||||||
|
style="stop-color:#75C5F0"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3153-8"
|
||||||
|
style="stop-color:#007CC3"
|
||||||
|
offset="1" />
|
||||||
|
</radialGradient>
|
||||||
|
<radialGradient
|
||||||
|
fy="2.1879101"
|
||||||
|
fx="3.27019"
|
||||||
|
r="0.420028"
|
||||||
|
cy="2.1879101"
|
||||||
|
cx="3.27019"
|
||||||
|
xlink:href="#id12-2"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id14-68" />
|
||||||
|
<linearGradient
|
||||||
|
y2="2.3961301"
|
||||||
|
x2="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x1="3.27019"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient3382-8">
|
||||||
|
<stop
|
||||||
|
id="stop3384-8"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3386-5"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<mask
|
||||||
|
id="id6-3">
|
||||||
|
<linearGradient
|
||||||
|
y2="2.3961301"
|
||||||
|
x2="3.27019"
|
||||||
|
y1="1.96386"
|
||||||
|
x1="3.27019"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="id7-8">
|
||||||
|
<stop
|
||||||
|
id="stop3128-0"
|
||||||
|
style="stop-opacity:1; stop-color:white"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3130-7"
|
||||||
|
style="stop-opacity:0; stop-color:white"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<rect
|
||||||
|
id="rect3132-41"
|
||||||
|
height="0.465563"
|
||||||
|
width="0.65544897"
|
||||||
|
y="1.94721"
|
||||||
|
x="2.9424601"
|
||||||
|
style="fill:url(#id7-8)" />
|
||||||
|
</mask>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 0.5 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="1 : 0.5 : 1"
|
||||||
|
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||||
|
id="perspective3373-8" />
|
||||||
|
<inkscape:perspective
|
||||||
|
id="perspective3412-8"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
sodipodi:type="inkscape:persp3d" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.77380486"
|
||||||
|
inkscape:cx="555.0495"
|
||||||
|
inkscape:cy="-186.09343"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1909"
|
||||||
|
inkscape:window-height="2101"
|
||||||
|
inkscape:window-x="2564"
|
||||||
|
inkscape:window-y="4"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:deskcolor="#d1d1d1">
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="54,576"
|
||||||
|
id="guide3846"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="913,541"
|
||||||
|
id="guide3848"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="bg">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect905"
|
||||||
|
width="1082"
|
||||||
|
height="615"
|
||||||
|
x="-45"
|
||||||
|
y="-23"
|
||||||
|
ry="18" />
|
||||||
|
<g
|
||||||
|
id="FrOSCon-Logo-rgb-dark-blue-endorse-below"
|
||||||
|
transform="matrix(0.57529828,0,0,0.57529828,610.26734,464.5851)"
|
||||||
|
style="fill:#1f1fa3">
|
||||||
|
<path
|
||||||
|
d="m 0,125.00892 v -86.223767 0 C 0,31.796236 1.6859231,25.481687 5.0577694,19.841508 8.4296157,14.201329 12.966282,9.695316 18.667767,6.3234697 24.369253,2.9516235 30.653148,1.2657003 37.519453,1.2657003 h 41.531479 c 2.761423,0 5,2.2385763 5,5 V 19.43948 c 0,2.761424 -2.238577,5 -5,5 H 40.462155 v 0 c -3.923603,0 -7.264796,1.410045 -10.023579,4.230135 -2.758783,2.820089 -4.138175,6.191935 -4.138175,10.115538 v 15.782835 c 0,2.761423 2.238576,5 5,5 h 41.497288 c 2.761424,0 5,2.238576 5,5 v 13.173779 c 0,2.761424 -2.238576,5 -5,5 H 31.300401 c -2.761424,0 -5,2.238577 -5,5 v 37.267153 c 0,2.76143 -2.238576,5 -5,5 H 5 c -2.7614237,0 -5,-2.23857 -5,-5 z"
|
||||||
|
id="Path"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 92.042871,125.00892 v -62.130392 0 c 0,-8.337657 2.360292,-14.866777 7.080877,-19.587362 4.720582,-4.720585 11.249702,-7.080877 19.587362,-7.080877 h 20.93256 c 2.76143,0 5,2.238576 5,5 v 11.51851 c 0,2.761424 -2.23857,5 -5,5 h -16.51851 v 0 c -1.59396,0 -2.97335,0.551756 -4.13817,1.65527 -1.16482,1.103513 -1.74723,2.513558 -1.74723,4.230134 v 61.394717 c 0,2.76143 -2.23858,5 -5,5 H 97.042871 c -2.761424,0 -5,-2.23857 -5,-5 z"
|
||||||
|
id="path2287"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 298.50444,124.99554 v -13.17378 c 0,-2.76142 2.23857,-5 5,-5 h 50.17566 v 0 c 2.69748,0 5.14973,-0.67437 7.35676,-2.02311 2.20703,-1.34874 3.98491,-3.15727 5.33365,-5.425606 1.34874,-2.268333 2.0231,-4.751237 2.0231,-7.448715 0,-2.820089 -0.67436,-5.3643 -2.0231,-7.632633 -1.34874,-2.268333 -3.12662,-4.076869 -5.33365,-5.425608 -2.20703,-1.348738 -4.65928,-2.023107 -7.35676,-2.023107 h -21.51851 c -7.23414,0 -13.79391,-1.471351 -19.67932,-4.414054 -5.8854,-2.942702 -10.57533,-7.203489 -14.06979,-12.782362 -3.49446,-5.578873 -5.24169,-12.291913 -5.24169,-20.139119 0,-7.724593 1.65527,-14.437632 4.96581,-20.139118 3.31054,-5.701485 7.7859,-10.1461917 13.42608,-13.334119 5.64018,-3.1879274 11.89342,-4.7818911 18.75973,-4.7818911 h 50.91134 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -48.33648 v 0 c -2.45225,0 -4.72058,0.643716 -6.805,1.931148 -2.08441,1.287432 -3.70903,2.973355 -4.87385,5.057769 -1.16482,2.084414 -1.74723,4.414054 -1.74723,6.988918 0,2.574865 0.58241,4.904504 1.74723,6.988918 1.16482,2.084414 2.78944,3.739684 4.87385,4.96581 2.08442,1.226126 4.35275,1.839189 6.805,1.839189 h 22.25418 c 7.96982,0 14.89743,1.532657 20.78284,4.597972 5.8854,3.065315 10.45272,7.356755 13.70196,12.874322 3.24923,5.517567 4.87385,11.954728 4.87385,19.311483 0,8.705494 -1.68593,16.123553 -5.05777,22.254183 -3.37185,6.13063 -7.90851,10.78991 -13.61,13.97784 -5.70148,3.18792 -11.98538,4.78189 -18.85169,4.78189 h -53.4862 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||||
|
id="path2289"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 469.33159,129.99554 c -10.05424,-0.24523 -19.12757,-2.05376 -27.22,-5.42561 -8.09243,-3.37184 -15.02004,-7.96982 -20.78283,-13.79391 -5.76279,-5.8241 -10.2075,-12.598448 -13.33412,-20.323042 -3.12662,-7.724593 -4.68993,-16.000943 -4.68993,-24.829049 0,-8.828107 1.56331,-17.104457 4.68993,-24.82905 3.12662,-7.724594 7.57133,-14.498939 13.33412,-20.323037 5.76279,-5.824098 12.6904,-10.452724 20.78283,-13.8858764 8.09243,-3.4331526 17.16576,-5.2110351 27.22,-5.3336477 h 15.04716 c 2.76142,0 5,2.2385762 5,5 V 19.426098 c 0,2.761423 -2.23858,5 -5,5 h -14.49541 v 0 c -5.8854,0.122612 -11.28035,1.226126 -16.18486,3.31054 -4.9045,2.084414 -9.16529,4.96581 -12.78236,8.644187 -3.61707,3.678378 -6.40651,8.000472 -8.36831,12.966282 -1.9618,4.96581 -2.9427,10.391417 -2.9427,16.276822 0,5.885404 0.9809,11.311011 2.9427,16.276821 1.9618,4.96581 4.75124,9.287904 8.36831,12.966282 3.61707,3.678377 7.87786,6.559778 12.78236,8.644188 4.90451,2.08441 10.29946,3.18793 16.18486,3.31054 h 14.49541 c 2.76142,0 5,2.23858 5,5 v 13.17378 c 0,2.76142 -2.23858,5 -5,5 z"
|
||||||
|
id="path2291"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 547.43012,132.20257 c -9.68639,0 -18.33058,-2.17638 -25.93256,-6.52912 -7.60198,-4.35275 -13.61,-10.24965 -18.02405,-17.6907 -4.41406,-7.44105 -6.62108,-15.736562 -6.62108,-24.886527 0,-9.149965 2.20702,-17.445473 6.62108,-24.886525 4.41405,-7.441051 10.42207,-13.337951 18.02405,-17.690698 7.60198,-4.352747 16.24617,-6.52912 25.93256,-6.52912 9.6864,0 18.33058,2.176373 25.93256,6.52912 7.60198,4.352747 13.61,10.224741 18.02406,17.615981 4.41405,7.391241 6.62108,15.728897 6.62108,25.012969 0,9.16146 -2.20703,17.45122 -6.62108,24.86928 -4.41406,7.41806 -10.42208,13.30347 -18.02406,17.65622 -7.60198,4.35274 -16.24616,6.52912 -25.93256,6.52912 z m 0,-21.51851 c 5.14973,0 9.59444,-1.22613 13.33412,-3.67838 3.73968,-2.45225 6.62108,-5.75561 8.64419,-9.910069 2.02311,-4.154459 3.03466,-8.813259 3.03466,-13.976398 0,-5.165056 -1.01155,-9.831997 -3.03466,-14.000826 -2.02311,-4.168828 -4.90451,-7.479368 -8.64419,-9.931619 -3.73968,-2.452252 -8.18439,-3.678378 -13.33412,-3.678378 -5.14973,0 -9.59444,1.226126 -13.33412,3.678378 -3.73968,2.452251 -6.62108,5.755607 -8.64419,9.910066 -2.0231,4.15446 -3.03466,8.813259 -3.03466,13.976399 0,5.165055 1.01156,9.831997 3.03466,14.000825 2.02311,4.168832 4.90451,7.479372 8.64419,9.931622 3.73968,2.45225 8.18439,3.67838 13.33412,3.67838 z"
|
||||||
|
id="Shape"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 610.07947,124.99554 v -48.888235 0 c 0,-7.724593 1.80853,-14.774817 5.4256,-21.150672 3.61708,-6.375855 8.85876,-11.464277 15.72507,-15.265268 6.8663,-3.80099 15.08135,-5.701485 24.64513,-5.701485 9.68639,0 17.93209,1.900495 24.73709,5.701485 6.805,3.800991 12.01603,8.889413 15.63311,15.265268 3.61707,6.375855 5.4256,13.426079 5.4256,21.150672 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 v -48.888235 0 c 0,-3.80099 -0.9196,-7.264796 -2.75879,-10.391417 -1.83919,-3.126621 -4.32209,-5.609526 -7.44871,-7.448715 -3.12662,-1.839189 -6.59043,-2.758783 -10.39142,-2.758783 -3.80099,0 -7.2648,0.919594 -10.39142,2.758783 -3.12662,1.839189 -5.60952,4.322094 -7.44871,7.448715 -1.83919,3.126621 -2.75879,6.590427 -2.75879,10.391417 v 48.888235 c 0,2.76142 -2.23857,5 -5,5 h -15.19688 c -2.76143,0 -5,-2.23858 -5,-5 z"
|
||||||
|
id="path2294"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 220,0 c 36.45079,0 66,29.549206 66,66 0,36.45079 -29.54921,66 -66,66 -36.45079,0 -66,-29.54921 -66,-66 0,-36.450794 29.54921,-66 66,-66 z m -17.00189,18.568446 -1.93756,2.831494 1.53943,2.668682 -0.63153,5.078586 -1.8052,-2.303226 0.34534,-3.389575 -3.06967,-2.015477 -3.39205,1.361896 -0.0169,3.912827 2.97572,1.516205 1.45972,5.927492 2.15161,6.815043 -0.0305,7.082912 2.34465,2.071055 4.61088,0.221223 1.8584,0.946904 -4.51345,8.779253 -0.42032,7.509823 -8.75187,-8.896009 -3.40232,-1.733568 -5.60842,2.151177 -1.00711,1.97656 -0.36684,10.187218 4.61019,13.623996 -4.36646,-3.879041 -3.78726,-6.589605 -1.167,-3.653386 0.36458,-2.304699 2.18849,-2.430273 -1.37613,-3.145307 -3.29197,-0.699651 -1.96044,3.203366 1.47629,2.195534 -0.57391,2.87169 -1.97667,-2.314596 -0.0599,-2.520959 -3.84258,-1.369528 -1.98185,2.199722 0.57695,3.220288 2.81609,0.721386 1.23051,2.572829 -2.24123,0.291333 -2.30388,-2.607181 -3.31321,1.246521 -0.27564,3.134268 2.48751,1.660461 2.05638,-0.786817 3.60758,1.838155 7.71477,5.765467 6.95085,7.952341 3.6232,1.385835 4.33669,-2.787504 -0.68495,-13.861259 5.28244,6.489427 2.48527,2.416679 8.6469,4.405812 3.41594,0.590138 8.35499,0.459194 -11.61659,7.593309 0.2939,5.146904 3.25083,2.11666 10.51918,0.94909 9.19899,2.85252 3.60758,1.83816 0.57217,2.12612 2.80546,1.03644 2.37366,-2.06526 -0.93901,-3.41314 -3.46343,-0.33141 -1.08167,-1.98444 2.80474,-0.51677 2.23887,1.85425 2.94439,-1.42608 0.61471,-2.89631 -3.36659,-2.30373 -2.07468,1.43336 -3.03441,-0.23868 1.98592,-2.15223 2.64396,-0.0962 1.43926,-3.468912 -2.501,-2.252016 -3.35348,0.735449 -0.67977,3.199007 -1.65024,1.649618 -3.6416,1.203284 -7.5572,0.80932 -5.70475,-1.2525 13.73185,-4.278263 8.02601,-6.284677 1.00711,-1.97656 -1.55621,-5.801736 -3.40232,-1.733568 -12.34125,-1.851476 5.82852,-4.754204 4.44963,-8.811776 1.8584,0.946903 2.88918,3.60025 3.05367,0.679523 5.71227,-4.187905 6.77817,-2.265089 5.65344,-2.30316 2.97572,1.516205 3.15563,-2.313542 -0.892,-3.544729 -3.43486,-1.298747 -2.53924,2.271729 -2.92441,-0.106632 3.73745,-3.496042 3.06387,-0.323182 1.15185,-3.231833 -2.05137,-2.667005 -3.45449,0.792909 -0.63713,3.251767 -3.16848,2.671159 0.10965,-4.229708 1.66104,-2.137611 -2.23877,-3.241974 -3.54914,0.292887 -1.24839,3.543213 1.6286,2.38328 -1.09677,3.288072 -3.7193,6.163988 -4.50112,2.161253 -4.63654,-10.479651 3.61811,-4.86316 0.0449,-6.64112 1.34093,-1.90326 -0.4133,-5.102476 -1.03338,-1.16321 -1.11562,-4.370289 -2.81584,-3.091877 0.0301,-0.05818 -0.0927,-0.0099 -0.0625,-0.06915 -0.0303,0.05808 -4.1556,-0.460247 -4.19138,1.666237 -1.54846,-0.152307 -4.37092,2.664798 -0.75159,2.203542 -5.3464,3.939863 -1.80771,5.785606 -11.20351,2.408738 -0.8972,-4.911831 2.80062,-6.632079 2.01545,-2.819981 2.88538,-0.08329 2.13273,-3.09262 -1.84918,-3.043465 -3.93873,0.09438 -0.75303,2.600265 -3.35745,2.574872 0.29863,-4.133421 2.25623,-2.426791 -1.38902,-3.260807 z"
|
||||||
|
id="path2296"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 0.83694671,181.344 v -21.05081 c 0,-1.14329 0.17423049,-2.0978 0.52269139,-2.86354 0.3484609,-0.76574 0.8060417,-1.37036 1.3727422,-1.81388 0.5667005,-0.44351 1.1987969,-0.7587 1.8962891,-0.94558 0.6974921,-0.18687 1.3884257,-0.2803 2.0728007,-0.2803 0.9448177,0.0103 2.0588282,0.0239 3.3420309,0.0411 1.283204,0.0171 2.634274,0.0557 4.053211,0.11577 1.418938,0.0601 2.788828,0.15228 4.109672,0.2766 v 3.73669 H 7.901978 c -0.8189688,0 -1.4476433,0.22699 -1.8860235,0.68095 -0.4383802,0.45397 -0.6575703,1.06915 -0.6575703,1.84554 v 5.44477 l 11.1735628,0.25949 v 3.54335 L 5.3583842,170.59418 V 181.344 Z"
|
||||||
|
id="path2298"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 20.623859,181.344 v -19.55317 h 3.478906 l 1.042531,3.12931 c 0.764599,-0.94368 1.625486,-1.74478 2.58266,-2.4033 0.957175,-0.65852 2.083637,-0.98778 3.379387,-0.98778 0.274891,0 0.558716,0.0146 0.851477,0.0439 0.29276,0.0293 0.56594,0.0804 0.819539,0.15342 v 4.62922 c -0.353594,-0.0487 -0.723252,-0.0902 -1.108973,-0.12461 -0.385721,-0.0344 -0.758801,-0.0516 -1.119238,-0.0516 -0.774865,0 -1.470836,0.0898 -2.087914,0.26947 -0.617078,0.17965 -1.19452,0.44427 -1.732324,0.79387 -0.537805,0.34961 -1.06601,0.79226 -1.584614,1.32798 V 181.344 Z"
|
||||||
|
id="path2300"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 43.180654,181.54132 c -2.118141,0 -3.805886,-0.29485 -5.063235,-0.88455 -1.257349,-0.5897 -2.161104,-1.61094 -2.711265,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236627,-0.584 2.91116,-0.876 5.023597,-0.876 1.871766,0 3.37587,0.19219 4.512313,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.247231,2.25255 -0.741692,2.99243 -0.49446,0.73989 -1.194994,1.26762 -2.101601,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204076,2.17165 0.483339,2.89576 0.279263,0.72411 0.791119,1.24452 1.535567,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922695 v 2.66393 c -1.012494,0.18326 -2.073656,0.35131 -3.183484,0.50416 -1.109828,0.15284 -2.411852,0.22926 -3.90607,0.22926 z M 39.016802,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404731,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125754,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284344,-0.31367 -2.196844,-0.31367 -1.014395,0 -1.81673,0.16007 -2.407004,0.4802 -0.590273,0.32014 -1.011069,0.89026 -1.262386,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||||
|
id="path2302"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 62.113652,181.54132 c -2.118141,0 -3.805885,-0.29485 -5.063234,-0.88455 -1.257349,-0.5897 -2.161105,-1.61094 -2.711266,-3.06372 -0.550162,-1.45278 -0.825242,-3.46313 -0.825242,-6.03105 0,-2.63067 0.267286,-4.6721 0.801859,-6.12431 0.534573,-1.4522 1.420173,-2.4703 2.656801,-3.0543 1.236628,-0.584 2.91116,-0.876 5.023598,-0.876 1.871765,0 3.375869,0.19219 4.512312,0.57658 1.136443,0.38439 1.966247,1.05888 2.489414,2.02347 0.523167,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.741691,2.99243 -0.494461,0.73989 -1.194995,1.26762 -2.101602,1.58319 -0.906607,0.31557 -1.978129,0.47336 -3.214566,0.47336 h -5.732211 c 0.04296,1.2064 0.204077,2.17165 0.48334,2.89576 0.279263,0.72411 0.791118,1.24452 1.535566,1.56123 0.744448,0.31672 1.834125,0.47507 3.269031,0.47507 h 5.922696 v 2.66393 c -1.012495,0.18326 -2.073657,0.35131 -3.183485,0.50416 -1.109828,0.15284 -2.411851,0.22926 -3.90607,0.22926 z M 57.9498,170.4573 h 5.324438 c 0.85813,0 1.489561,-0.16472 1.894293,-0.49418 0.404732,-0.32945 0.607097,-0.92229 0.607097,-1.77851 0,-0.85395 -0.125753,-1.5273 -0.377261,-2.02005 -0.251508,-0.49275 -0.653293,-0.84368 -1.205356,-1.0528 -0.552062,-0.20911 -1.284343,-0.31367 -2.196843,-0.31367 -1.014396,0 -1.816731,0.16007 -2.407004,0.4802 -0.590274,0.32014 -1.011069,0.89026 -1.262387,1.71037 -0.251318,0.82011 -0.376977,1.97632 -0.376977,3.46864 z"
|
||||||
|
id="path2304"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 85.95017,181.563 c -1.458479,0 -2.653664,-0.43515 -3.585554,-1.30545 -0.931891,-0.8703 -1.397836,-2.07689 -1.397836,-3.61977 v -1.64592 c 0,-1.50031 0.517748,-2.72962 1.553246,-3.68793 1.035497,-0.95832 2.630946,-1.43747 4.786348,-1.43747 h 5.56796 v -1.70467 c 0,-0.68741 -0.117769,-1.26134 -0.353308,-1.72177 -0.235539,-0.46043 -0.675155,-0.80557 -1.318848,-1.0354 -0.643693,-0.22984 -1.600297,-0.34476 -2.869812,-0.34476 h -5.926688 v -2.62172 c 0.91174,-0.25284 1.972996,-0.46795 3.18377,-0.64531 1.210773,-0.17737 2.6568,-0.271 4.338082,-0.28088 1.614745,-0.0103 2.978742,0.18573 4.091992,0.58799 1.11325,0.40226 1.954271,1.06601 2.523062,1.99125 0.568792,0.92523 0.853188,2.18211 0.853188,3.77062 V 181.344 H 93.85242 l -0.763648,-2.12157 c -0.152844,0.14296 -0.450832,0.33858 -0.893965,0.58685 -0.443133,0.24828 -0.993389,0.51062 -1.650769,0.78704 -0.657381,0.27641 -1.380157,0.50662 -2.168329,0.69064 -0.788172,0.18403 -1.596684,0.27604 -2.425539,0.27604 z m 2.187149,-3.19204 c 0.312531,0.01 0.669737,-0.0249 1.071617,-0.10437 0.40188,-0.0795 0.808798,-0.17509 1.220754,-0.28687 0.411956,-0.11178 0.797772,-0.22603 1.157449,-0.34276 0.359677,-0.11672 0.653388,-0.22204 0.881133,-0.31595 0.227745,-0.0939 0.363099,-0.1479 0.406062,-0.16197 v -5.1214 l -4.221453,0.23382 c -1.112869,0.0772 -1.918531,0.35902 -2.416984,0.84549 -0.498453,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.124709,1.097 0.374125,1.46941 0.249417,0.37241 0.577156,0.6339 0.983219,0.78446 0.406062,0.15057 0.836648,0.23079 1.291758,0.24068 z"
|
||||||
|
id="path2306"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 101.1903,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77747,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.3766,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52143 v -12.47559 c 0,-0.70186 -0.13289,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07256,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path2308"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 128.4808,181.563 c -1.55467,0 -2.85261,-0.33288 -3.89381,-0.99862 -1.0412,-0.66575 -1.82053,-1.72139 -2.338,-3.16695 -0.51746,-1.44555 -0.77619,-3.32986 -0.77619,-5.65293 0,-2.42345 0.2305,-4.38552 0.6915,-5.8862 0.461,-1.50068 1.22931,-2.601 2.30492,-3.30097 1.07561,-0.69996 2.53447,-1.04994 4.37658,-1.04994 0.96953,0 1.92528,0.10066 2.86724,0.30198 0.94197,0.20132 1.77244,0.43144 2.49141,0.69036 v -9.00523 h 4.52144 v 27.8495 h -3.75779 l -0.76365,-1.90884 c -0.40226,0.36348 -0.92162,0.70728 -1.55809,1.03141 -0.63647,0.32413 -1.31514,0.5879 -2.03602,0.79131 -0.72087,0.20341 -1.43072,0.30512 -2.12954,0.30512 z m 1.52273,-3.65514 c 0.8779,0 1.66855,-0.13934 2.37193,-0.41804 0.70339,-0.27869 1.31305,-0.56841 1.82899,-0.86915 V 165.7431 c -0.6205,-0.20189 -1.24727,-0.38839 -1.88032,-0.55948 -0.63304,-0.17109 -1.32065,-0.25664 -2.06282,-0.25664 -1.01858,0 -1.84401,0.18478 -2.47629,0.55434 -0.63229,0.36957 -1.08883,1.03046 -1.36961,1.9827 -0.28078,0.95223 -0.42117,2.30757 -0.42117,4.06604 0,1.62957 0.13183,2.90973 0.39551,3.84048 0.26367,0.93075 0.69198,1.58633 1.28491,1.96673 0.59293,0.38039 1.36923,0.57059 2.32887,0.57059 z"
|
||||||
|
id="path2310"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 161.73343,181.563 c -1.80219,0 -3.38195,-0.17357 -4.7393,-0.5207 -1.35734,-0.34713 -2.49008,-0.99225 -3.39821,-1.93536 -0.90812,-0.9431 -1.58794,-2.31603 -2.03943,-4.11879 -0.4515,-1.80276 -0.67725,-4.15501 -0.67725,-7.05676 0,-2.91126 0.22822,-5.2733 0.68466,-7.08614 0.45644,-1.81283 1.1412,-3.20088 2.05427,-4.16413 0.91307,-0.96326 2.0459,-1.62596 3.39849,-1.98811 1.35259,-0.36215 2.92485,-0.54323 4.71677,-0.54323 1.82196,0 3.41161,0.18108 4.76895,0.54323 1.35735,0.36215 2.48761,1.02485 3.3908,1.98811 0.90318,0.96325 1.57805,2.3513 2.0246,4.16413 0.44656,1.81284 0.66984,4.17488 0.66984,7.08614 0,2.90175 -0.22585,5.254 -0.67754,7.05676 -0.45168,1.80276 -1.1315,3.17569 -2.03943,4.11879 -0.90794,0.94311 -2.0382,1.58823 -3.3908,1.93536 -1.35259,0.34713 -2.93473,0.5207 -4.74642,0.5207 z m 0,-4.06234 c 1.18549,0 2.18315,-0.12461 2.993,-0.37384 0.80984,-0.24923 1.45933,-0.70928 1.94847,-1.38016 0.48914,-0.67087 0.84321,-1.63594 1.06221,-2.89519 0.219,-1.25925 0.3285,-2.89928 0.3285,-4.92008 0,-2.12347 -0.11207,-3.82747 -0.3362,-5.112 -0.22413,-1.28453 -0.58067,-2.25863 -1.06962,-2.92228 -0.48895,-0.66365 -1.13587,-1.1104 -1.94077,-1.34024 -0.80491,-0.22983 -1.8001,-0.34475 -2.98559,-0.34475 -1.12123,0 -2.08535,0.11492 -2.89234,0.34475 -0.80699,0.22984 -1.46257,0.67659 -1.96672,1.34024 -0.50416,0.66365 -0.87581,1.63775 -1.11496,2.92228 -0.23916,1.28453 -0.35873,2.98853 -0.35873,5.112 0,2.0208 0.10456,3.66083 0.31367,4.92008 0.20911,1.25925 0.55567,2.22432 1.03968,2.89519 0.48401,0.67088 1.13454,1.13093 1.95161,1.38016 0.81707,0.24923 1.82633,0.37384 3.02779,0.37384 z"
|
||||||
|
id="path2312"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 175.99709,189.9945 v -28.20367 h 3.75779 l 0.76364,1.90884 c 0.45663,-0.35322 0.98636,-0.69806 1.58918,-1.03455 0.60282,-0.33648 1.26077,-0.61356 1.97385,-0.83123 0.71308,-0.21767 1.44755,-0.3265 2.2034,-0.3265 1.22808,0 2.28515,0.24447 3.17123,0.73342 0.88607,0.48895 1.60999,1.18083 2.17175,2.07565 0.56175,0.89482 0.97257,1.95693 1.23244,3.18634 0.25987,1.2294 0.38981,2.58247 0.38981,4.0592 0,2.13449 -0.22375,3.95103 -0.67126,5.44962 -0.4475,1.49859 -1.1776,2.63893 -2.19028,3.42102 -1.01269,0.78208 -2.38058,1.17313 -4.10369,1.17313 -0.97789,0 -1.97299,-0.13317 -2.9853,-0.3995 -1.0123,-0.26634 -1.93934,-0.62801 -2.78113,-1.08502 v 9.87325 z m 8.87235,-12.12941 c 0.70224,0 1.34518,-0.18374 1.9288,-0.55121 0.58361,-0.36747 1.05127,-1.00593 1.40296,-1.91539 0.3517,-0.90946 0.52754,-2.18829 0.52754,-3.83649 0,-1.58813 -0.17299,-2.85223 -0.51898,-3.7923 -0.34599,-0.94006 -0.80623,-1.60961 -1.38073,-2.00864 -0.57449,-0.39903 -1.22047,-0.59854 -1.93792,-0.59854 -0.89235,0 -1.70809,0.13935 -2.44721,0.41804 -0.73913,0.27869 -1.38092,0.56841 -1.92538,0.86915 v 10.2354 c 0.6148,0.35094 1.30279,0.63533 2.06397,0.85319 0.76117,0.21786 1.52349,0.32679 2.28695,0.32679 z"
|
||||||
|
id="path2314"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 204.51433,181.54132 c -2.11815,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87177,0 3.37587,0.19219 4.51231,0.57658 1.13645,0.38439 1.96625,1.05888 2.48942,2.02347 0.52316,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49447,0.73989 -1.195,1.26762 -2.10161,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73221 c 0.043,1.2064 0.20407,2.17165 0.48334,2.89576 0.27926,0.72411 0.79111,1.24452 1.53556,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41186,0.22926 -3.90607,0.22926 z m -4.16386,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40474,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.407,0.4802 -0.59028,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path2316"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 215.46409,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73998,0.30987 3.62092,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path2318"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 253.36294,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27042,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68646,-0.0914 -1.29584,-0.20236 -1.82813,-0.33277 v -3.54335 c 0.68703,0.0631 1.48604,0.11653 2.39702,0.16025 0.91098,0.0437 1.86673,0.0778 2.86725,0.10209 1.00052,0.0243 1.96178,0.0365 2.88378,0.0365 0.9836,0 1.84848,-0.0885 2.59464,-0.26548 0.74616,-0.17699 1.33082,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63475,-1.1219 0.63475,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.8067,-2.19085 -0.53781,-0.50359 -1.33311,-0.75538 -2.38591,-0.75538 h -2.52192 c -2.4512,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32958,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18316,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21241,-1.74857 0.92277,0 1.87652,0.0448 2.86126,0.1343 0.98474,0.0895 1.93127,0.19828 2.83959,0.32622 0.90831,0.12794 1.68014,0.26206 2.31546,0.40236 v 3.54335 c -1.08929,-0.0871 -2.31841,-0.16606 -3.68735,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81397,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69597,0.19257 -1.23007,0.54284 -1.60229,1.0508 -0.37223,0.50796 -0.55834,1.23738 -0.55834,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.9376,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57292,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78488,1.37284 2.29151,2.37963 0.50663,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39142,3.53403 -1.17427,4.60014 -0.78285,1.0661 -1.85371,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||||
|
id="path2320"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 274.02527,181.54132 c -1.54098,0 -2.86857,-0.15987 -3.98277,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74378,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50787,-4.98453 0.33857,-1.30184 0.86535,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62947,-1.25031 2.74348,-1.54155 1.11401,-0.29124 2.43448,-0.43686 3.96139,-0.43686 1.54137,0 2.87162,0.15284 3.99076,0.45853 1.11915,0.30569 2.0326,0.82667 2.74036,1.56294 0.70775,0.73627 1.23349,1.75533 1.5772,3.05716 0.3437,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84787,2.32136 -1.55582,3.06486 -0.70794,0.74349 -1.62149,1.26799 -2.74063,1.57349 -1.11915,0.3055 -2.46366,0.45824 -4.03354,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90713,-0.20303 0.53799,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35093,-0.42754 0.61556,-1.07095 0.79387,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17831,-0.8471 -0.44294,-1.48186 -0.79387,-1.90427 -0.35093,-0.42241 -0.7954,-0.7013 -1.33339,-0.83665 -0.538,-0.13536 -1.17371,-0.20303 -1.90713,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89885,0.20303 -0.53286,0.13535 -0.97486,0.41424 -1.32598,0.83665 -0.35112,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17337,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43563,1.50268 0.78675,1.93022 0.35112,0.42755 0.79312,0.709 1.32598,0.84435 0.53286,0.13536 1.16581,0.20303 1.89885,0.20303 z"
|
||||||
|
id="path2322"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 291.7726,181.563 c -1.79345,0 -3.18938,-0.50625 -4.18781,-1.51875 -0.99843,-1.01249 -1.49764,-2.49226 -1.49764,-4.43931 v -13.81411 h 4.52144 v 12.50581 c 0,1.28625 0.29542,2.15246 0.88626,2.59863 0.59085,0.44618 1.40696,0.66926 2.44836,0.66926 0.83683,0 1.65656,-0.13953 2.45918,-0.4186 0.80262,-0.27908 1.55848,-0.66214 2.26757,-1.14918 v -14.20592 h 4.522 V 181.344 h -3.68478 l -0.83722,-2.04857 c -0.91745,0.59541 -1.96815,1.12219 -3.15212,1.58034 -1.18397,0.45815 -2.43238,0.68723 -3.74524,0.68723 z"
|
||||||
|
id="path2324"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 307.02893,181.344 v -19.55317 h 3.4789 l 1.04254,3.12931 c 0.76459,-0.94368 1.62548,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08363,-0.98778 3.37938,-0.98778 0.27489,0 0.55872,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.3536,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38573,-0.0344 -0.75881,-0.0516 -1.11924,-0.0516 -0.77487,0 -1.47084,0.0898 -2.08792,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73232,0.79387 -0.53781,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path2326"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 329.05362,181.563 c -1.16039,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98626,-0.30835 -1.84145,-0.82971 -2.56555,-1.56408 -0.72411,-0.73437 -1.28549,-1.74535 -1.68414,-3.03292 -0.39864,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10337,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63793,1.99324 -0.35455,0.96877 -0.53182,2.36832 -0.53182,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74236,0.32946 1.69829,0.49418 2.86782,0.49418 h 5.56625 v 2.57838 c -0.5783,0.15285 -1.25916,0.29761 -2.04258,0.4343 -0.78342,0.13668 -1.60742,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||||
|
id="path2328"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 346.74072,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.9066,0.31557 -1.97813,0.47336 -3.21456,0.47336 h -5.73222 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83413,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01106,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path2330"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 374.69033,181.563 c -0.64255,0 -1.337,-0.0193 -2.08335,-0.0579 -0.74635,-0.0386 -1.50315,-0.0966 -2.27041,-0.17395 -0.76726,-0.0774 -1.49412,-0.16177 -2.18059,-0.25322 -0.68647,-0.0914 -1.29584,-0.20236 -1.82814,-0.33277 v -3.54335 c 0.68704,0.0631 1.48605,0.11653 2.39703,0.16025 0.91098,0.0437 1.86672,0.0778 2.86724,0.10209 1.00052,0.0243 1.96178,0.0365 2.88379,0.0365 0.9836,0 1.84848,-0.0885 2.59463,-0.26548 0.74616,-0.17699 1.33083,-0.49712 1.754,-0.96041 0.42317,-0.46328 0.63476,-1.1219 0.63476,-1.97584 V 173.018 c 0,-0.95698 -0.2689,-1.68727 -0.80671,-2.19085 -0.5378,-0.50359 -1.3331,-0.75538 -2.3859,-0.75538 h -2.52192 c -2.45121,0 -4.3416,-0.53771 -5.67119,-1.61313 -1.32959,-1.07542 -1.99438,-2.91249 -1.99438,-5.51121 v -1.40012 c 0,-2.58618 0.72772,-4.46213 2.18315,-5.62785 1.45544,-1.16571 3.52624,-1.74857 6.21242,-1.74857 0.92276,0 1.87651,0.0448 2.86125,0.1343 0.98475,0.0895 1.93127,0.19828 2.83959,0.32622 0.90832,0.12794 1.68014,0.26206 2.31547,0.40236 v 3.54335 c -1.0893,-0.0871 -2.31842,-0.16606 -3.68736,-0.23696 -1.36894,-0.0709 -2.64026,-0.10637 -3.81396,-0.10637 -0.93227,0 -1.74639,0.0963 -2.44236,0.28887 -0.69598,0.19257 -1.23007,0.54284 -1.6023,1.0508 -0.37222,0.50796 -0.55833,1.23738 -0.55833,2.18829 v 0.90679 c 0,1.14063 0.31253,1.94182 0.93759,2.40358 0.62506,0.46177 1.51475,0.69265 2.66906,0.69265 h 2.83046 c 1.57293,0 2.86991,0.28981 3.89096,0.86944 1.02105,0.57963 1.78489,1.37284 2.29152,2.37963 0.50662,1.00679 0.75994,2.15559 0.75994,3.4464 v 1.73147 c 0,2.00065 -0.39143,3.53403 -1.17428,4.60014 -0.78284,1.0661 -1.8537,1.79449 -3.21257,2.18515 -1.35886,0.39066 -2.9219,0.586 -4.68911,0.586 z"
|
||||||
|
id="path2332"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 395.35267,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26747,-2.00065 0.26747,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26747,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.366,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61338,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17337,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53286,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||||
|
id="path2334"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 408.72569,181.344 v -15.91914 h -2.85384 v -2.90004 l 2.85384,-0.73399 v -1.64193 c 0,-1.55809 0.20275,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.9596,-2.26813 0.9009,-0.49598 2.10625,-0.74397 3.61606,-0.74397 0.85167,0 1.60914,0.0529 2.27241,0.15883 0.66328,0.10589 1.22399,0.21168 1.68214,0.31738 v 3.22169 h -3.0814 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61897,0.534 -0.76364,0.96383 -0.14467,0.42983 -0.21701,0.98198 -0.21701,1.65647 v 1.87804 h 5.36094 v 3.63403 h -5.36094 V 181.344 Z"
|
||||||
|
id="path2336"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 427.85323,181.344 c -1.41818,0 -2.57696,-0.21501 -3.47634,-0.64503 -0.89938,-0.43001 -1.55201,-1.13882 -1.95788,-2.12641 -0.40587,-0.98759 -0.59436,-2.30777 -0.56547,-3.96053 l 0.15855,-9.18717 h -3.07455 v -2.90004 l 3.21599,-0.73399 0.63533,-5.48127 h 3.54335 v 5.48127 h 4.97198 v 3.63403 h -4.97198 v 9.1655 c 0,0.6376 0.0644,1.15735 0.19333,1.55923 0.12889,0.40188 0.30579,0.71698 0.53068,0.94529 0.22489,0.22832 0.47526,0.39257 0.7511,0.49275 0.27584,0.10019 0.5533,0.16245 0.83237,0.18678 l 2.44322,0.24067 v 3.32892 z"
|
||||||
|
id="path2338"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<polygon
|
||||||
|
id="polygon2340"
|
||||||
|
points="436.78825,161.79083 440.48217,177.15904 444.72016,161.79083 448.49962,161.79083 452.73761,177.15904 456.19542,161.79083 460.84574,161.79083 455.46427,181.344 450.48374,181.344 446.52405,168.09906 442.4794,181.344 437.58441,181.344 432.13792,161.79083 "
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 466.27267,181.563 c -1.45848,0 -2.65366,-0.43515 -3.58555,-1.30545 -0.93189,-0.8703 -1.39784,-2.07689 -1.39784,-3.61977 v -1.64592 c 0,-1.50031 0.51775,-2.72962 1.55325,-3.68793 1.03549,-0.95832 2.63094,-1.43747 4.78634,-1.43747 h 5.56797 v -1.70467 c 0,-0.68741 -0.11777,-1.26134 -0.35331,-1.72177 -0.23554,-0.46043 -0.67516,-0.80557 -1.31885,-1.0354 -0.64369,-0.22984 -1.6003,-0.34476 -2.86981,-0.34476 h -5.92669 v -2.62172 c 0.91174,-0.25284 1.973,-0.46795 3.18377,-0.64531 1.21077,-0.17737 2.6568,-0.271 4.33808,-0.28088 1.61475,-0.0103 2.97874,0.18573 4.09199,0.58799 1.11325,0.40226 1.95427,1.06601 2.52307,1.99125 0.56879,0.92523 0.85318,2.18211 0.85318,3.77062 V 181.344 h -3.54335 l -0.76365,-2.12157 c -0.15284,0.14296 -0.45083,0.33858 -0.89396,0.58685 -0.44313,0.24828 -0.99339,0.51062 -1.65077,0.78704 -0.65738,0.27641 -1.38016,0.50662 -2.16833,0.69064 -0.78817,0.18403 -1.59668,0.27604 -2.42554,0.27604 z m 2.18715,-3.19204 c 0.31253,0.01 0.66974,-0.0249 1.07162,-0.10437 0.40188,-0.0795 0.80879,-0.17509 1.22075,-0.28687 0.41196,-0.11178 0.79777,-0.22603 1.15745,-0.34276 0.35968,-0.11672 0.65339,-0.22204 0.88113,-0.31595 0.22775,-0.0939 0.3631,-0.1479 0.40607,-0.16197 v -5.1214 l -4.22146,0.23382 c -1.11287,0.0772 -1.91853,0.35902 -2.41698,0.84549 -0.49845,0.48648 -0.74768,1.13274 -0.74768,1.93878 v 0.82068 c 0,0.60719 0.12471,1.097 0.37412,1.46941 0.24942,0.37241 0.57716,0.6339 0.98322,0.78446 0.40606,0.15057 0.83665,0.23079 1.29176,0.24068 z"
|
||||||
|
id="path2342"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 481.5128,181.344 v -19.55317 h 3.47891 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95717,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85147,0.0439 0.29276,0.0293 0.56594,0.0804 0.81954,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.06601,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path2344"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 504.0696,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06324,-0.88455 -1.25735,-0.5897 -2.1611,-1.61094 -2.71126,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80185,-6.12431 0.53458,-1.4522 1.42018,-2.4703 2.65681,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96624,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.195,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74444,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32443 c 0.85813,0 1.48956,-0.16472 1.8943,-0.49418 0.40473,-0.32945 0.60709,-0.92229 0.60709,-1.77851 0,-0.85395 -0.12575,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28435,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25132,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||||
|
id="path2346"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 533.04178,181.563 c -1.58319,0 -2.9756,-0.1825 -4.17725,-0.5475 -1.20165,-0.365 -2.21035,-1.0317 -3.02608,-2.00009 -0.81574,-0.96839 -1.42968,-2.35748 -1.84183,-4.16727 -0.41214,-1.8098 -0.61821,-4.16481 -0.61821,-7.06503 0,-2.76222 0.2132,-5.03368 0.6396,-6.81438 0.4264,-1.78071 1.05603,-3.16628 1.88888,-4.15673 0.83284,-0.99044 1.8576,-1.68175 3.07426,-2.07394 1.21667,-0.39218 2.61033,-0.58828 4.18097,-0.58828 1.05698,0 2.09057,0.059 3.10079,0.17709 1.01021,0.11805 1.95056,0.26149 2.82105,0.4303 0.87048,0.16881 1.62434,0.35264 2.26157,0.55149 v 3.47891 c -0.4323,-0.0874 -1.02352,-0.1748 -1.77367,-0.26206 -0.75015,-0.0873 -1.60115,-0.16131 -2.553,-0.22214 -0.95186,-0.0608 -1.94011,-0.0913 -2.96478,-0.0913 -1.11857,0 -2.07165,0.12537 -2.85926,0.37612 -0.7876,0.25075 -1.42198,0.71688 -1.90313,1.39841 -0.48115,0.68152 -0.83342,1.65305 -1.05679,2.91458 -0.22337,1.26153 -0.33506,2.90327 -0.33506,4.92522 0,1.99191 0.10095,3.6251 0.30284,4.89955 0.20189,1.27446 0.53381,2.25568 0.99576,2.94367 0.46196,0.68799 1.08636,1.16515 1.8732,1.43149 0.78684,0.26633 1.77015,0.3995 2.94994,0.3995 1.83945,0 3.34203,-0.0405 4.50775,-0.12148 1.16572,-0.081 2.10445,-0.17508 2.8162,-0.2823 v 3.4789 c -0.68894,0.20304 -1.46352,0.37717 -2.32374,0.52241 -0.86022,0.14524 -1.78764,0.25902 -2.78227,0.34133 -0.99462,0.0823 -2.06054,0.12348 -3.19774,0.12348 z"
|
||||||
|
id="path2348"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 552.26543,181.54132 c -1.54099,0 -2.86858,-0.15987 -3.98278,-0.47963 -1.1142,-0.31975 -2.02879,-0.85851 -2.74377,-1.61626 -0.71498,-0.75776 -1.23815,-1.78299 -1.5695,-3.0757 -0.33135,-1.29271 -0.49703,-2.90669 -0.49703,-4.84195 0,-2.02119 0.16929,-3.6827 0.50786,-4.98453 0.33858,-1.30184 0.86536,-2.32099 1.58034,-3.05745 0.71498,-0.73646 1.62948,-1.25031 2.74349,-1.54155 1.11401,-0.29124 2.43447,-0.43686 3.96139,-0.43686 1.54136,0 2.87162,0.15284 3.99076,0.45853 1.11914,0.30569 2.03259,0.82667 2.74035,1.56294 0.70776,0.73627 1.23349,1.75533 1.5772,3.05716 0.34371,1.30183 0.51556,2.94909 0.51556,4.94176 0,1.97822 -0.16463,3.6172 -0.49389,4.91695 -0.32926,1.29974 -0.84786,2.32136 -1.55581,3.06486 -0.70795,0.74349 -1.62149,1.26799 -2.74064,1.57349 -1.11914,0.3055 -2.46365,0.45824 -4.03353,0.45824 z m 0,-3.63346 c 0.73342,0 1.36913,-0.0677 1.90712,-0.20303 0.538,-0.13535 0.98246,-0.4168 1.33339,-0.84435 0.35094,-0.42754 0.61556,-1.07095 0.79388,-1.93022 0.17832,-0.85927 0.26748,-2.00065 0.26748,-3.42415 0,-1.43339 -0.0892,-2.57364 -0.26748,-3.42074 -0.17832,-0.8471 -0.44294,-1.48186 -0.79388,-1.90427 -0.35093,-0.42241 -0.79539,-0.7013 -1.33339,-0.83665 -0.53799,-0.13536 -1.1737,-0.20303 -1.90712,-0.20303 -0.73304,0 -1.36599,0.0677 -1.89886,0.20303 -0.53286,0.13535 -0.97485,0.41424 -1.32597,0.83665 -0.35113,0.42241 -0.61337,1.05717 -0.78675,1.90427 -0.17338,0.8471 -0.26006,1.98735 -0.26006,3.42074 0,1.4235 0.0867,2.56488 0.26006,3.42415 0.17338,0.85927 0.43562,1.50268 0.78675,1.93022 0.35112,0.42755 0.79311,0.709 1.32597,0.84435 0.53287,0.13536 1.16582,0.20303 1.89886,0.20303 z"
|
||||||
|
id="path2350"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 564.37008,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.79919,-0.61974 1.77747,-1.17085 2.93482,-1.65333 1.15736,-0.48249 2.3495,-0.72373 3.57644,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88094,0.61974 1.50971,1.45059 1.88631,2.49255 0.37659,1.04196 0.56489,2.18401 0.56489,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39864,-1.79306 -0.26577,-0.49351 -0.63638,-0.87524 -1.11183,-1.14519 -0.47545,-0.26995 -1.05346,-0.40492 -1.73403,-0.40492 -0.62735,0 -1.21677,0.0661 -1.76826,0.19847 -0.55149,0.13231 -1.07257,0.3188 -1.56322,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path2352"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 586.53746,181.344 v -15.91914 h -2.85385 v -2.90004 l 2.85385,-0.73399 v -1.64193 c 0,-1.55809 0.20274,-2.84519 0.60824,-3.8613 0.40549,-1.01611 1.05869,-1.77215 1.95959,-2.26813 0.9009,-0.49598 2.10626,-0.74397 3.61607,-0.74397 0.85166,0 1.60913,0.0529 2.27241,0.15883 0.66327,0.10589 1.22398,0.21168 1.68213,0.31738 v 3.22169 h -3.08139 c -0.67221,0 -1.19053,0.10637 -1.55496,0.31909 -0.36443,0.21273 -0.61898,0.534 -0.76365,0.96383 -0.14467,0.42983 -0.217,0.98198 -0.217,1.65647 v 1.87804 h 5.36093 v 3.63403 H 591.0589 V 181.344 Z"
|
||||||
|
id="path2354"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 606.53244,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path2356"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 617.48221,181.344 v -19.55317 h 3.4789 l 1.04253,3.12931 c 0.7646,-0.94368 1.62549,-1.74478 2.58266,-2.4033 0.95718,-0.65852 2.08364,-0.98778 3.37939,-0.98778 0.27489,0 0.55871,0.0146 0.85148,0.0439 0.29276,0.0293 0.56594,0.0804 0.81953,0.15342 v 4.62922 c -0.35359,-0.0487 -0.72325,-0.0902 -1.10897,-0.12461 -0.38572,-0.0344 -0.7588,-0.0516 -1.11924,-0.0516 -0.77486,0 -1.47083,0.0898 -2.08791,0.26947 -0.61708,0.17965 -1.19452,0.44427 -1.73233,0.79387 -0.5378,0.34961 -1.066,0.79226 -1.58461,1.32798 V 181.344 Z"
|
||||||
|
id="path2358"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 640.039,181.54132 c -2.11814,0 -3.80589,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26728,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23662,-0.584 2.91116,-0.876 5.02359,-0.876 1.87177,0 3.37587,0.19219 4.51232,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27926,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.92269 v 2.66393 c -1.01249,0.18326 -2.07365,0.35131 -3.18348,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37727,-2.02005 -0.2515,-0.49275 -0.65329,-0.84368 -1.20535,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19685,-0.31367 -1.01439,0 -1.81673,0.16007 -2.407,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26239,1.71037 -0.25131,0.82011 -0.37697,1.97632 -0.37697,3.46864 z"
|
||||||
|
id="path2360"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 650.98876,181.344 v -19.55317 h 3.68479 l 0.83665,2.04856 c 0.7992,-0.61974 1.77748,-1.17085 2.93483,-1.65333 1.15735,-0.48249 2.3495,-0.72373 3.57643,-0.72373 1.533,0 2.73997,0.30987 3.62091,0.92961 0.88095,0.61974 1.50972,1.45059 1.88631,2.49255 0.3766,1.04196 0.5649,2.18401 0.5649,3.42615 V 181.344 h -4.52144 v -12.47559 c 0,-0.70186 -0.13288,-1.29955 -0.39865,-1.79306 -0.26577,-0.49351 -0.63637,-0.87524 -1.11182,-1.14519 -0.47545,-0.26995 -1.05347,-0.40492 -1.73404,-0.40492 -0.62734,0 -1.21676,0.0661 -1.76825,0.19847 -0.5515,0.13231 -1.07257,0.3188 -1.56323,0.55947 -0.49066,0.24068 -0.98598,0.52564 -1.48595,0.8549 V 181.344 Z"
|
||||||
|
id="path2362"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 679.3389,181.563 c -1.1604,0 -2.23372,-0.15418 -3.21998,-0.46253 -0.98627,-0.30835 -1.84145,-0.82971 -2.56556,-1.56408 -0.7241,-0.73437 -1.28548,-1.74535 -1.68413,-3.03292 -0.39865,-1.28758 -0.59797,-2.9104 -0.59797,-4.86847 0,-2.00522 0.18611,-3.66341 0.55834,-4.97456 0.37222,-1.31114 0.90822,-2.34103 1.60799,-3.08966 0.69978,-0.74863 1.55952,-1.27712 2.57924,-1.58547 1.01972,-0.30835 2.17004,-0.46253 3.45096,-0.46253 1.10336,0 2.20939,0.0575 3.31808,0.17252 1.10869,0.11502 2.23258,0.30921 3.37169,0.58258 v 2.62115 h -5.3387 c -1.16686,0 -2.11899,0.18003 -2.85641,0.54009 -0.73741,0.36006 -1.28339,1.02447 -1.63794,1.99324 -0.35454,0.96877 -0.53181,2.36832 -0.53181,4.19864 0,1.79421 0.18126,3.15992 0.54379,4.09713 0.36253,0.93721 0.91497,1.57054 1.65733,1.89999 0.74235,0.32946 1.69829,0.49418 2.86781,0.49418 h 5.56625 v 2.57838 c -0.57829,0.15285 -1.25915,0.29761 -2.04257,0.4343 -0.78342,0.13668 -1.60743,0.24219 -2.47202,0.31652 -0.86459,0.0743 -1.72272,0.1115 -2.57439,0.1115 z"
|
||||||
|
id="path2364"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
<path
|
||||||
|
d="m 697.026,181.54132 c -2.11814,0 -3.80588,-0.29485 -5.06323,-0.88455 -1.25735,-0.5897 -2.16111,-1.61094 -2.71127,-3.06372 -0.55016,-1.45278 -0.82524,-3.46313 -0.82524,-6.03105 0,-2.63067 0.26729,-4.6721 0.80186,-6.12431 0.53457,-1.4522 1.42017,-2.4703 2.6568,-3.0543 1.23663,-0.584 2.91116,-0.876 5.0236,-0.876 1.87176,0 3.37587,0.19219 4.51231,0.57658 1.13644,0.38439 1.96625,1.05888 2.48941,2.02347 0.52317,0.96459 0.78475,2.31642 0.78475,4.05549 0,1.25507 -0.24723,2.25255 -0.74169,2.99243 -0.49446,0.73989 -1.19499,1.26762 -2.1016,1.58319 -0.90661,0.31557 -1.97813,0.47336 -3.21457,0.47336 h -5.73221 c 0.043,1.2064 0.20408,2.17165 0.48334,2.89576 0.27927,0.72411 0.79112,1.24452 1.53557,1.56123 0.74445,0.31672 1.83412,0.47507 3.26903,0.47507 h 5.9227 v 2.66393 c -1.0125,0.18326 -2.07366,0.35131 -3.18349,0.50416 -1.10983,0.15284 -2.41185,0.22926 -3.90607,0.22926 z m -4.16385,-11.08402 h 5.32444 c 0.85813,0 1.48956,-0.16472 1.89429,-0.49418 0.40473,-0.32945 0.6071,-0.92229 0.6071,-1.77851 0,-0.85395 -0.12576,-1.5273 -0.37726,-2.02005 -0.25151,-0.49275 -0.6533,-0.84368 -1.20536,-1.0528 -0.55206,-0.20911 -1.28434,-0.31367 -2.19684,-0.31367 -1.0144,0 -1.81673,0.16007 -2.40701,0.4802 -0.59027,0.32014 -1.01107,0.89026 -1.26238,1.71037 -0.25132,0.82011 -0.37698,1.97632 -0.37698,3.46864 z"
|
||||||
|
id="path2366"
|
||||||
|
style="fill:#1f1fa3" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-476.36218)">
|
||||||
|
<g
|
||||||
|
id="bar"
|
||||||
|
transform="translate(0,-80)">
|
||||||
|
<rect
|
||||||
|
y="628.72675"
|
||||||
|
x="1"
|
||||||
|
height="241.19937"
|
||||||
|
width="1024"
|
||||||
|
id="rect3809-1"
|
||||||
|
style="fill:#1f1fa3;fill-opacity:1" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#daffc7;fill-opacity:1;stroke:none"
|
||||||
|
x="424.54688"
|
||||||
|
y="771.85767"
|
||||||
|
id="text2"
|
||||||
|
inkscape:label="text2"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3105"
|
||||||
|
x="424.54688"
|
||||||
|
y="771.85767"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:64px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#daffc7;fill-opacity:1">Pause</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="360"
|
||||||
|
y="131"
|
||||||
|
id="text3875"
|
||||||
|
transform="translate(0,556.36218)"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3877"
|
||||||
|
x="360"
|
||||||
|
y="131"
|
||||||
|
style="font-size:40px;line-height:1.25;font-family:sans-serif"> </tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:0.25;fill:#daffc7;fill-opacity:1;stroke:none"
|
||||||
|
x="423.70312"
|
||||||
|
y="773.32642"
|
||||||
|
id="text1"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3105-9"
|
||||||
|
x="423.70312"
|
||||||
|
y="773.32642"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:64px;line-height:125%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#daffc7;fill-opacity:1">Break</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 59 KiB |
9
froscon2023/genthumbs.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
rm -rf thumbs
|
||||||
|
mkdir thumbs
|
||||||
|
|
||||||
|
for intro in *.ts; do
|
||||||
|
echo $intro
|
||||||
|
ffmpeg -hide_banner -loglevel quiet -ss 4 -i "${intro}" -frames:v 1 "thumbs/${intro}.png"
|
||||||
|
done
|
|
@ -101,7 +101,7 @@ def renderFrame(infile, task, outfile):
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# invoke inkscape to convert the generated svg-file into a png inside the .frames-directory
|
# invoke inkscape to convert the generated svg-file into a png inside the .frames-directory
|
||||||
cmd = 'inkscape --export-background=white --export-background-opacity=0 --export-width={1} --export-height={2} --export-filename="{3}" "{4}" --pipe 2>&1 >/dev/null'.format(task.workdir, width, height, os.path.abspath(outfile), os.path.abspath(infile))
|
cmd = 'dbus-run-session inkscape --export-background=white --export-background-opacity=0 --export-width={1} --export-height={2} --export-png="{3}" "{4}" 2>&1 >/dev/null'.format(task.workdir, width, height, os.path.abspath(outfile), os.path.abspath(infile))
|
||||||
errorReturn = subprocess.check_output(cmd, shell=True, universal_newlines=True, stderr=subprocess.STDOUT, cwd=task.workdir)
|
errorReturn = subprocess.check_output(cmd, shell=True, universal_newlines=True, stderr=subprocess.STDOUT, cwd=task.workdir)
|
||||||
if errorReturn != '':
|
if errorReturn != '':
|
||||||
print("inkscape exited with error\n" + errorReturn)
|
print("inkscape exited with error\n" + errorReturn)
|
||||||
|
|