jh18-ulm artwork from github.com/verschwoerhaus/intro-outro-generator/
This commit is contained in:
parent
27632675ee
commit
8fd7be5933
6 changed files with 3116 additions and 0 deletions
215
jh18-ulm/__init__.py
Normal file
215
jh18-ulm/__init__.py
Normal file
|
@ -0,0 +1,215 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
|
||||||
|
from renderlib import *
|
||||||
|
from easing import *
|
||||||
|
from collections import deque
|
||||||
|
|
||||||
|
# Please EDIT this URL for each local event of Jugend hackt! ### URL to Schedule-XML
|
||||||
|
scheduleUrl = 'https://jh.kohl.okfn.de/schedule-jh.xml'
|
||||||
|
|
||||||
|
# For (really) too long titles
|
||||||
|
titlemap = {
|
||||||
|
}
|
||||||
|
|
||||||
|
def introFrames(parameters):
|
||||||
|
# 8 Sekunden
|
||||||
|
|
||||||
|
# 2 Sekunden Fadein logo und icongroup
|
||||||
|
frames = int(2*fps)
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
('icongroup', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
('alpaca', 'style', 'opacity', 0),
|
||||||
|
('text-bg', 'style', 'opacity', 0),
|
||||||
|
('projectname', 'style', 'opacity', 0),
|
||||||
|
('prenames', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 1 Sekunden Fadein alpaca und text-bg
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('icongroup', 'style', 'opacity', 1),
|
||||||
|
('alpaca', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
('text-bg', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
('projectname', 'style', 'opacity', 0),
|
||||||
|
('prenames', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 5 Sekunden Fadein #hack hack hack# projectname + prenames DIREKT einblenden, weil die Schriftart sich nicht faden lässt
|
||||||
|
frames = 5*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('icongroup', 'style', 'opacity', 1),
|
||||||
|
('alpaca', 'style', 'opacity', 1),
|
||||||
|
('text-bg', 'style', 'opacity', 1),
|
||||||
|
('projectname', 'style', 'opacity', 1),
|
||||||
|
('prenames', 'style', 'opacity', 1),
|
||||||
|
)
|
||||||
|
|
||||||
|
def outroFrames(parameters):
|
||||||
|
# 5 Sekunden
|
||||||
|
|
||||||
|
# 1 Sekunden Fadein logo
|
||||||
|
frames = int(1*fps)
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
('licensegroup', 'style', 'opacity', 0),
|
||||||
|
('logogroup', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 1 Sekunden Fadein licensegroup
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('licensegroup', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
('logogroup', 'style', 'opacity', 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 1 Sekunden Fadein logogroup
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('licensegroup', 'style', 'opacity', 1),
|
||||||
|
('logogroup', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2 Sekunden stehen bleiben
|
||||||
|
frames = 2*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('logo', 'style', 'opacity', 1),
|
||||||
|
('licensegroup', 'style', 'opacity', 1),
|
||||||
|
('logogroup', 'style', 'opacity', 1),
|
||||||
|
)
|
||||||
|
def backgroundFrames(parameters):
|
||||||
|
# 20 Sekunden
|
||||||
|
|
||||||
|
# 10 Sekunden alpaca einblenden
|
||||||
|
frames = 10*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('alpaca', 'style', 'opacity', "%.4f" % easeInCubic(i, 0.25, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 10 Sekunden alpaca ausblenden
|
||||||
|
frames = 10*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('background', 'style', 'opacity', 1),
|
||||||
|
('alpaca', 'style', 'opacity', "%.4f" % easeInCubic(i, 1, -0.75, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def pauseFrames(parameters):
|
||||||
|
# 6 Sekunden
|
||||||
|
|
||||||
|
# 3 Sekunden alpaca einblenden
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('pause', 'style', 'opacity', "%.4f" % easeInCubic(i, 1, -0.75, frames)),
|
||||||
|
('alpaca', 'style', 'opacity', "%.4f" % easeInCubic(i, 0.25, 0.75, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3 Sekunden alpaca ausblenden
|
||||||
|
frames = 3*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('pause', 'style', 'opacity', "%.4f" % easeInCubic(i, 0.25, 0.75, frames)),
|
||||||
|
('alpaca', 'style', 'opacity', "%.4f" % easeInCubic(i, 1, -0.75, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
s1 = 'Lorem, Ipsum, Ad Dolor... '
|
||||||
|
s2 = 'Lorem, Ipsum, Ad Dolor, Sit, Nomen, Est, Omen, Urbi et Orbi... '
|
||||||
|
render(
|
||||||
|
'intro.svg',
|
||||||
|
'../intro.ts',
|
||||||
|
introFrames,
|
||||||
|
{
|
||||||
|
'$PROJECTNAME': s1.upper(),
|
||||||
|
'$prenames': s2,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
render(
|
||||||
|
'outro.svg',
|
||||||
|
'../outro.ts',
|
||||||
|
outroFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
render(
|
||||||
|
'background.svg',
|
||||||
|
'../background.ts',
|
||||||
|
backgroundFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
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 ('Salon', 'Haus der Gewerkschaften'):
|
||||||
|
print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
|
||||||
|
continue
|
||||||
|
if not (idlist==[]):
|
||||||
|
if 000000 in idlist:
|
||||||
|
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||||
|
continue
|
||||||
|
if int(event['id']) not in idlist:
|
||||||
|
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||||
|
continue
|
||||||
|
|
||||||
|
# iterate over all events extracted from the schedule xml-export
|
||||||
|
for event in events(scheduleUrl):
|
||||||
|
#just select room Berlin
|
||||||
|
if event['room'] not in ('Salon', 'Haus der Gewerkschaften'):
|
||||||
|
print("skipping room %s (%s)" % (event['room'], event['title']))
|
||||||
|
continue
|
||||||
|
|
||||||
|
# generate a task description and put them into the queue
|
||||||
|
projectname = event['title']
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'intro.svg',
|
||||||
|
outfile = str(event['id'])+".ts",
|
||||||
|
sequence = introFrames,
|
||||||
|
parameters = {
|
||||||
|
# '$id': event['id'],
|
||||||
|
'$PROJECTNAME': projectname.upper(),
|
||||||
|
# '$subtitle': event['subtitle'],
|
||||||
|
'$prenames': event['personnames']
|
||||||
|
}
|
||||||
|
))
|
||||||
|
|
||||||
|
# place a task for the outro into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'outro.svg',
|
||||||
|
outfile = 'outro.ts',
|
||||||
|
sequence = outroFrames
|
||||||
|
))
|
||||||
|
|
||||||
|
# place the pause-sequence into the queue
|
||||||
|
queue.put(Rendertask(
|
||||||
|
infile = 'pause.svg',
|
||||||
|
outfile = 'pause.ts',
|
||||||
|
sequence = pauseFrames
|
||||||
|
))
|
BIN
jh18-ulm/artwork/background.png
Normal file
BIN
jh18-ulm/artwork/background.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 82 KiB |
236
jh18-ulm/artwork/background.svg
Normal file
236
jh18-ulm/artwork/background.svg
Normal file
|
@ -0,0 +1,236 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080">
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
.cls-1 {
|
||||||
|
fill: #b3c8c8;
|
||||||
|
stroke: #e6e6e6;
|
||||||
|
stroke-linejoin: round;
|
||||||
|
stroke-width: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-2 {
|
||||||
|
fill: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-3 {
|
||||||
|
fill: #ea690b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-4 {
|
||||||
|
fill: #0a0a0a;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<title>background-alpaka</title>
|
||||||
|
<g id="Background">
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229" class="cls-1" points="280 97.5 110 -2.5 110 -197.5 280 -97.5 280 97.5"/>
|
||||||
|
<polygon id="polygon2233" class="cls-1" points="-60 97.5 -60 -97.5 110 -197.5 110 -2.5 -60 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301" class="cls-1" points="110 197.5 -60 97.5 110 -2.5 280 97.5 110 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-2" data-name="polygon2229" class="cls-1" points="620 97.5 450 -2.5 450 -197.5 620 -97.5 620 97.5"/>
|
||||||
|
<polygon id="polygon2233-2" data-name="polygon2233" class="cls-1" points="280 97.5 280 -97.5 450 -197.5 450 -2.5 280 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-2" data-name="polygon2301" class="cls-1" points="450 197.5 280 97.5 450 -2.5 620 97.5 450 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-3" data-name="polygon2229" class="cls-1" points="960 97.5 790 -2.5 790 -197.5 960 -97.5 960 97.5"/>
|
||||||
|
<polygon id="polygon2233-3" data-name="polygon2233" class="cls-1" points="620 97.5 620 -97.5 790 -197.5 790 -2.5 620 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-3" data-name="polygon2301" class="cls-1" points="790 197.5 620 97.5 790 -2.5 960 97.5 790 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-4" data-name="polygon2229" class="cls-1" points="1300 97.5 1130 -2.5 1130 -197.5 1300 -97.5 1300 97.5"/>
|
||||||
|
<polygon id="polygon2233-4" data-name="polygon2233" class="cls-1" points="960 97.5 960 -97.5 1130 -197.5 1130 -2.5 960 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-4" data-name="polygon2301" class="cls-1" points="1130 197.5 960 97.5 1130 -2.5 1300 97.5 1130 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-5" data-name="polygon2229" class="cls-1" points="1640 97.5 1470 -2.5 1470 -197.5 1640 -97.5 1640 97.5"/>
|
||||||
|
<polygon id="polygon2233-5" data-name="polygon2233" class="cls-1" points="1300 97.5 1300 -97.5 1470 -197.5 1470 -2.5 1300 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-5" data-name="polygon2301" class="cls-1" points="1470 197.5 1300 97.5 1470 -2.5 1640 97.5 1470 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-6" data-name="polygon2229" class="cls-1" points="1980 97.5 1810 -2.5 1810 -197.5 1980 -97.5 1980 97.5"/>
|
||||||
|
<polygon id="polygon2233-6" data-name="polygon2233" class="cls-1" points="1640 97.5 1640 -97.5 1810 -197.5 1810 -2.5 1640 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-6" data-name="polygon2301" class="cls-1" points="1810 197.5 1640 97.5 1810 -2.5 1980 97.5 1810 197.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-7" data-name="polygon2229" class="cls-1" points="280 687.5 110 587.5 110 392.5 280 492.5 280 687.5"/>
|
||||||
|
<polygon id="polygon2233-7" data-name="polygon2233" class="cls-1" points="-60 687.5 -60 492.5 110 392.5 110 587.5 -60 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-7" data-name="polygon2301" class="cls-1" points="110 787.5 -60 687.5 110 587.5 280 687.5 110 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-8" data-name="polygon2229" class="cls-1" points="620 687.5 450 587.5 450 392.5 620 492.5 620 687.5"/>
|
||||||
|
<polygon id="polygon2233-8" data-name="polygon2233" class="cls-1" points="280 687.5 280 492.5 450 392.5 450 587.5 280 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-8" data-name="polygon2301" class="cls-1" points="450 787.5 280 687.5 450 587.5 620 687.5 450 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-9" data-name="polygon2229" class="cls-1" points="960 687.5 790 587.5 790 392.5 960 492.5 960 687.5"/>
|
||||||
|
<polygon id="polygon2233-9" data-name="polygon2233" class="cls-1" points="620 687.5 620 492.5 790 392.5 790 587.5 620 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-9" data-name="polygon2301" class="cls-1" points="790 787.5 620 687.5 790 587.5 960 687.5 790 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-10" data-name="polygon2229" class="cls-1" points="1300 687.5 1130 587.5 1130 392.5 1300 492.5 1300 687.5"/>
|
||||||
|
<polygon id="polygon2233-10" data-name="polygon2233" class="cls-1" points="960 687.5 960 492.5 1130 392.5 1130 587.5 960 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-10" data-name="polygon2301" class="cls-1" points="1130 787.5 960 687.5 1130 587.5 1300 687.5 1130 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-11" data-name="polygon2229" class="cls-1" points="1640 687.5 1470 587.5 1470 392.5 1640 492.5 1640 687.5"/>
|
||||||
|
<polygon id="polygon2233-11" data-name="polygon2233" class="cls-1" points="1300 687.5 1300 492.5 1470 392.5 1470 587.5 1300 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-11" data-name="polygon2301" class="cls-1" points="1470 787.5 1300 687.5 1470 587.5 1640 687.5 1470 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-12" data-name="polygon2229" class="cls-1" points="1980 687.5 1810 587.5 1810 392.5 1980 492.5 1980 687.5"/>
|
||||||
|
<polygon id="polygon2233-12" data-name="polygon2233" class="cls-1" points="1640 687.5 1640 492.5 1810 392.5 1810 587.5 1640 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-12" data-name="polygon2301" class="cls-1" points="1810 787.5 1640 687.5 1810 587.5 1980 687.5 1810 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-13" data-name="polygon2229" class="cls-1" points="280 1277.5 110 1177.5 110 982.5 280 1082.5 280 1277.5"/>
|
||||||
|
<polygon id="polygon2233-13" data-name="polygon2233" class="cls-1" points="-60 1277.5 -60 1082.5 110 982.5 110 1177.5 -60 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-14" data-name="polygon2229" class="cls-1" points="620 1277.5 450 1177.5 450 982.5 620 1082.5 620 1277.5"/>
|
||||||
|
<polygon id="polygon2233-14" data-name="polygon2233" class="cls-1" points="280 1277.5 280 1082.5 450 982.5 450 1177.5 280 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-15" data-name="polygon2229" class="cls-1" points="960 1277.5 790 1177.5 790 982.5 960 1082.5 960 1277.5"/>
|
||||||
|
<polygon id="polygon2233-15" data-name="polygon2233" class="cls-1" points="620 1277.5 620 1082.5 790 982.5 790 1177.5 620 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-16" data-name="polygon2229" class="cls-1" points="1300 1277.5 1130 1177.5 1130 982.5 1300 1082.5 1300 1277.5"/>
|
||||||
|
<polygon id="polygon2233-16" data-name="polygon2233" class="cls-1" points="960 1277.5 960 1082.5 1130 982.5 1130 1177.5 960 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-17" data-name="polygon2229" class="cls-1" points="1640 1277.5 1470 1177.5 1470 982.5 1640 1082.5 1640 1277.5"/>
|
||||||
|
<polygon id="polygon2233-17" data-name="polygon2233" class="cls-1" points="1300 1277.5 1300 1082.5 1470 982.5 1470 1177.5 1300 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-18" data-name="polygon2229" class="cls-1" points="1980 1277.5 1810 1177.5 1810 982.5 1980 1082.5 1980 1277.5"/>
|
||||||
|
<polygon id="polygon2233-18" data-name="polygon2233" class="cls-1" points="1640 1277.5 1640 1082.5 1810 982.5 1810 1177.5 1640 1277.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-19" data-name="polygon2229" class="cls-1" points="450 392.5 280 292.5 280 97.5 450 197.5 450 392.5"/>
|
||||||
|
<polygon id="polygon2233-19" data-name="polygon2233" class="cls-1" points="110 392.5 110 197.5 280 97.5 280 292.5 110 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-13" data-name="polygon2301" class="cls-1" points="280 492.5 110 392.5 280 292.5 450 392.5 280 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-20" data-name="polygon2229" class="cls-1" points="790 392.5 620 292.5 620 97.5 790 197.5 790 392.5"/>
|
||||||
|
<polygon id="polygon2233-20" data-name="polygon2233" class="cls-1" points="450 392.5 450 197.5 620 97.5 620 292.5 450 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-14" data-name="polygon2301" class="cls-1" points="620 492.5 450 392.5 620 292.5 790 392.5 620 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-21" data-name="polygon2229" class="cls-1" points="1129.99 392.5 960 292.5 960 97.5 1129.99 197.5 1129.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-21" data-name="polygon2233" class="cls-1" points="790 392.5 790 197.5 960 97.5 960 292.5 790 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-15" data-name="polygon2301" class="cls-1" points="960 492.5 790 392.5 960 292.5 1129.99 392.5 960 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-22" data-name="polygon2229" class="cls-1" points="1469.99 392.5 1299.99 292.5 1299.99 97.5 1469.99 197.5 1469.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-22" data-name="polygon2233" class="cls-1" points="1129.99 392.5 1129.99 197.5 1299.99 97.5 1299.99 292.5 1129.99 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-16" data-name="polygon2301" class="cls-1" points="1299.99 492.5 1129.99 392.5 1299.99 292.5 1469.99 392.5 1299.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-23" data-name="polygon2229" class="cls-1" points="1809.99 392.5 1639.99 292.5 1639.99 97.5 1809.99 197.5 1809.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-23" data-name="polygon2233" class="cls-1" points="1469.99 392.5 1469.99 197.5 1639.99 97.5 1639.99 292.5 1469.99 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-17" data-name="polygon2301" class="cls-1" points="1639.99 492.5 1469.99 392.5 1639.99 292.5 1809.99 392.5 1639.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2233-24" data-name="polygon2233" class="cls-1" points="1809.99 392.5 1809.99 197.5 1979.99 97.5 1979.99 292.5 1809.99 392.5"/>
|
||||||
|
<polygon id="polygon2301-18" data-name="polygon2301" class="cls-1" points="1979.99 492.5 1809.99 392.5 1979.99 292.5 2149.99 392.5 1979.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-24" data-name="polygon2229" class="cls-1" points="110 392.5 -60 292.5 -60 97.5 110 197.5 110 392.5"/>
|
||||||
|
<polygon id="polygon2301-19" data-name="polygon2301" class="cls-1" points="-60 492.5 -230 392.5 -60 292.5 110 392.5 -60 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-25" data-name="polygon2229" class="cls-1" points="450 982.5 280 882.5 280 687.5 450 787.5 450 982.5"/>
|
||||||
|
<polygon id="polygon2233-25" data-name="polygon2233" class="cls-1" points="110 982.5 110 787.5 280 687.5 280 882.5 110 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-20" data-name="polygon2301" class="cls-1" points="280 1082.5 110 982.5 280 882.5 450 982.5 280 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-26" data-name="polygon2229" class="cls-1" points="790 982.5 620 882.5 620 687.5 790 787.5 790 982.5"/>
|
||||||
|
<polygon id="polygon2233-26" data-name="polygon2233" class="cls-1" points="450 982.5 450 787.5 620 687.5 620 882.5 450 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-21" data-name="polygon2301" class="cls-1" points="620 1082.5 450 982.5 620 882.5 790 982.5 620 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-27" data-name="polygon2229" class="cls-1" points="1130 982.5 960 882.5 960 687.5 1130 787.5 1130 982.5"/>
|
||||||
|
<polygon id="polygon2233-27" data-name="polygon2233" class="cls-1" points="790 982.5 790 787.5 960 687.5 960 882.5 790 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-22" data-name="polygon2301" class="cls-1" points="960 1082.5 790 982.5 960 882.5 1130 982.5 960 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-28" data-name="polygon2229" class="cls-1" points="1470 982.5 1300 882.5 1300 687.5 1470 787.5 1470 982.5"/>
|
||||||
|
<polygon id="polygon2233-28" data-name="polygon2233" class="cls-1" points="1130 982.5 1130 787.5 1300 687.5 1300 882.5 1130 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-23" data-name="polygon2301" class="cls-1" points="1300 1082.5 1130 982.5 1300 882.5 1470 982.5 1300 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-29" data-name="polygon2229" class="cls-1" points="1810 982.5 1640 882.5 1640 687.5 1810 787.5 1810 982.5"/>
|
||||||
|
<polygon id="polygon2233-29" data-name="polygon2233" class="cls-1" points="1470 982.5 1470 787.5 1640 687.5 1640 882.5 1470 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-24" data-name="polygon2301" class="cls-1" points="1640 1082.5 1470 982.5 1640 882.5 1810 982.5 1640 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2233-30" data-name="polygon2233" class="cls-1" points="1810 982.5 1810 787.5 1980 687.5 1980 882.5 1810 982.5"/>
|
||||||
|
<polygon id="polygon2301-25" data-name="polygon2301" class="cls-1" points="1980 1082.5 1810 982.5 1980 882.5 2150 982.5 1980 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-30" data-name="polygon2229" class="cls-1" points="110 982.5 -60 882.5 -60 687.5 110 787.5 110 982.5"/>
|
||||||
|
<polygon id="polygon2301-26" data-name="polygon2301" class="cls-1" points="-60 1082.5 -230 982.5 -60 882.5 110 982.5 -60 1082.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Alpakas">
|
||||||
|
<g>
|
||||||
|
<polygon class="cls-2" points="1535.99 288.85 1553.33 288.85 1553.33 265.48 1723.77 265.48 1723.77 288.85 1746.88 288.85 1746.88 312.28 1746.88 336.08 1746.88 361.89 1723.77 361.89 1723.77 385.26 1700.66 385.26 1700.66 408.63 1674.63 408.63 1651.1 408.63 1627.58 408.63 1604.05 408.63 1582.22 408.63 1582.22 385.26 1559.11 385.26 1559.11 361.89 1535.99 361.89 1535.99 336.08 1535.99 312.28 1535.99 288.85"/>
|
||||||
|
<path class="cls-3" d="M1536,336.08V288.85h17.33V265.48h170.44v23.37h23.11v73h-23.11v23.37h-23.11v23.37H1582.22V385.26h-23.11V361.89H1536ZM1700.66,172v23.37h-26v23.37h-69.33V195.37h-23.11V172H1536v23.37h-26V385.26h26v23.37h23.11V432h164.66V408.63h23.11V385.26H1770V195.37h-23.12V172Z"/>
|
||||||
|
<rect class="cls-4" x="1562" y="310.3" width="20.22" height="25.3"/>
|
||||||
|
<polygon class="cls-4" points="1674.66 385.26 1674.66 358.97 1674.66 335.6 1651.55 335.6 1651.55 358.97 1628.44 358.97 1628.44 335.6 1605.33 335.6 1605.33 358.97 1605.33 385.26 1674.66 385.26"/>
|
||||||
|
<rect class="cls-4" x="1697.77" y="307.37" width="20.22" height="25.3"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 14 KiB |
682
jh18-ulm/artwork/intro.svg
Normal file
682
jh18-ulm/artwork/intro.svg
Normal file
|
@ -0,0 +1,682 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080">
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
.cls-1 {
|
||||||
|
fill: #b3c8c8;
|
||||||
|
stroke: #e6e6e6;
|
||||||
|
stroke-linejoin: round;
|
||||||
|
stroke-width: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-13, .cls-2 {
|
||||||
|
fill: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-3 {
|
||||||
|
fill: #ea690b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-4 {
|
||||||
|
fill: #0a0a0a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-5 {
|
||||||
|
fill: #29abe3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-6 {
|
||||||
|
fill: #141414;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-7 {
|
||||||
|
fill: #5edba6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-8 {
|
||||||
|
fill: #f76e17;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-9 {
|
||||||
|
fill: #5edaa5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-10 {
|
||||||
|
fill: #1a171b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-11 {
|
||||||
|
fill: #00a5dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-12, .cls-13 {
|
||||||
|
isolation: isolate;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-13 {
|
||||||
|
font-size: 37.33px;
|
||||||
|
font-family: ModernLEDBoard-7, Modern LED Board-7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-14 {
|
||||||
|
fill: #e9680f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-15 {
|
||||||
|
fill: #06a4dd;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<title>ulm-intro</title>
|
||||||
|
<g id="Background">
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229" class="cls-1" points="280 97.5 110 -2.5 110 -197.5 280 -97.5 280 97.5"/>
|
||||||
|
<polygon id="polygon2233" class="cls-1" points="-60 97.5 -60 -97.5 110 -197.5 110 -2.5 -60 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301" class="cls-1" points="110 197.5 -60 97.5 110 -2.5 280 97.5 110 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-2" data-name="polygon2229" class="cls-1" points="620 97.5 450 -2.5 450 -197.5 620 -97.5 620 97.5"/>
|
||||||
|
<polygon id="polygon2233-2" data-name="polygon2233" class="cls-1" points="280 97.5 280 -97.5 450 -197.5 450 -2.5 280 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-2" data-name="polygon2301" class="cls-1" points="450 197.5 280 97.5 450 -2.5 620 97.5 450 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-3" data-name="polygon2229" class="cls-1" points="960 97.5 790 -2.5 790 -197.5 960 -97.5 960 97.5"/>
|
||||||
|
<polygon id="polygon2233-3" data-name="polygon2233" class="cls-1" points="620 97.5 620 -97.5 790 -197.5 790 -2.5 620 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-3" data-name="polygon2301" class="cls-1" points="790 197.5 620 97.5 790 -2.5 960 97.5 790 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-4" data-name="polygon2229" class="cls-1" points="1300 97.5 1130 -2.5 1130 -197.5 1300 -97.5 1300 97.5"/>
|
||||||
|
<polygon id="polygon2233-4" data-name="polygon2233" class="cls-1" points="960 97.5 960 -97.5 1130 -197.5 1130 -2.5 960 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-4" data-name="polygon2301" class="cls-1" points="1130 197.5 960 97.5 1130 -2.5 1300 97.5 1130 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-5" data-name="polygon2229" class="cls-1" points="1640 97.5 1470 -2.5 1470 -197.5 1640 -97.5 1640 97.5"/>
|
||||||
|
<polygon id="polygon2233-5" data-name="polygon2233" class="cls-1" points="1300 97.5 1300 -97.5 1470 -197.5 1470 -2.5 1300 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-5" data-name="polygon2301" class="cls-1" points="1470 197.5 1300 97.5 1470 -2.5 1640 97.5 1470 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-6" data-name="polygon2229" class="cls-1" points="1980 97.5 1810 -2.5 1810 -197.5 1980 -97.5 1980 97.5"/>
|
||||||
|
<polygon id="polygon2233-6" data-name="polygon2233" class="cls-1" points="1640 97.5 1640 -97.5 1810 -197.5 1810 -2.5 1640 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-6" data-name="polygon2301" class="cls-1" points="1810 197.5 1640 97.5 1810 -2.5 1980 97.5 1810 197.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-7" data-name="polygon2229" class="cls-1" points="280 687.5 110 587.5 110 392.5 280 492.5 280 687.5"/>
|
||||||
|
<polygon id="polygon2233-7" data-name="polygon2233" class="cls-1" points="-60 687.5 -60 492.5 110 392.5 110 587.5 -60 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-7" data-name="polygon2301" class="cls-1" points="110 787.5 -60 687.5 110 587.5 280 687.5 110 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-8" data-name="polygon2229" class="cls-1" points="620 687.5 450 587.5 450 392.5 620 492.5 620 687.5"/>
|
||||||
|
<polygon id="polygon2233-8" data-name="polygon2233" class="cls-1" points="280 687.5 280 492.5 450 392.5 450 587.5 280 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-8" data-name="polygon2301" class="cls-1" points="450 787.5 280 687.5 450 587.5 620 687.5 450 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-9" data-name="polygon2229" class="cls-1" points="960 687.5 790 587.5 790 392.5 960 492.5 960 687.5"/>
|
||||||
|
<polygon id="polygon2233-9" data-name="polygon2233" class="cls-1" points="620 687.5 620 492.5 790 392.5 790 587.5 620 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-9" data-name="polygon2301" class="cls-1" points="790 787.5 620 687.5 790 587.5 960 687.5 790 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-10" data-name="polygon2229" class="cls-1" points="1300 687.5 1130 587.5 1130 392.5 1300 492.5 1300 687.5"/>
|
||||||
|
<polygon id="polygon2233-10" data-name="polygon2233" class="cls-1" points="960 687.5 960 492.5 1130 392.5 1130 587.5 960 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-10" data-name="polygon2301" class="cls-1" points="1130 787.5 960 687.5 1130 587.5 1300 687.5 1130 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-11" data-name="polygon2229" class="cls-1" points="1640 687.5 1470 587.5 1470 392.5 1640 492.5 1640 687.5"/>
|
||||||
|
<polygon id="polygon2233-11" data-name="polygon2233" class="cls-1" points="1300 687.5 1300 492.5 1470 392.5 1470 587.5 1300 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-11" data-name="polygon2301" class="cls-1" points="1470 787.5 1300 687.5 1470 587.5 1640 687.5 1470 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-12" data-name="polygon2229" class="cls-1" points="1980 687.5 1810 587.5 1810 392.5 1980 492.5 1980 687.5"/>
|
||||||
|
<polygon id="polygon2233-12" data-name="polygon2233" class="cls-1" points="1640 687.5 1640 492.5 1810 392.5 1810 587.5 1640 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-12" data-name="polygon2301" class="cls-1" points="1810 787.5 1640 687.5 1810 587.5 1980 687.5 1810 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-13" data-name="polygon2229" class="cls-1" points="280 1277.5 110 1177.5 110 982.5 280 1082.5 280 1277.5"/>
|
||||||
|
<polygon id="polygon2233-13" data-name="polygon2233" class="cls-1" points="-60 1277.5 -60 1082.5 110 982.5 110 1177.5 -60 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-14" data-name="polygon2229" class="cls-1" points="620 1277.5 450 1177.5 450 982.5 620 1082.5 620 1277.5"/>
|
||||||
|
<polygon id="polygon2233-14" data-name="polygon2233" class="cls-1" points="280 1277.5 280 1082.5 450 982.5 450 1177.5 280 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-15" data-name="polygon2229" class="cls-1" points="960 1277.5 790 1177.5 790 982.5 960 1082.5 960 1277.5"/>
|
||||||
|
<polygon id="polygon2233-15" data-name="polygon2233" class="cls-1" points="620 1277.5 620 1082.5 790 982.5 790 1177.5 620 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-16" data-name="polygon2229" class="cls-1" points="1300 1277.5 1130 1177.5 1130 982.5 1300 1082.5 1300 1277.5"/>
|
||||||
|
<polygon id="polygon2233-16" data-name="polygon2233" class="cls-1" points="960 1277.5 960 1082.5 1130 982.5 1130 1177.5 960 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-17" data-name="polygon2229" class="cls-1" points="1640 1277.5 1470 1177.5 1470 982.5 1640 1082.5 1640 1277.5"/>
|
||||||
|
<polygon id="polygon2233-17" data-name="polygon2233" class="cls-1" points="1300 1277.5 1300 1082.5 1470 982.5 1470 1177.5 1300 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-18" data-name="polygon2229" class="cls-1" points="1980 1277.5 1810 1177.5 1810 982.5 1980 1082.5 1980 1277.5"/>
|
||||||
|
<polygon id="polygon2233-18" data-name="polygon2233" class="cls-1" points="1640 1277.5 1640 1082.5 1810 982.5 1810 1177.5 1640 1277.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-19" data-name="polygon2229" class="cls-1" points="450 392.5 280 292.5 280 97.5 450 197.5 450 392.5"/>
|
||||||
|
<polygon id="polygon2233-19" data-name="polygon2233" class="cls-1" points="110 392.5 110 197.5 280 97.5 280 292.5 110 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-13" data-name="polygon2301" class="cls-1" points="280 492.5 110 392.5 280 292.5 450 392.5 280 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-20" data-name="polygon2229" class="cls-1" points="790 392.5 620 292.5 620 97.5 790 197.5 790 392.5"/>
|
||||||
|
<polygon id="polygon2233-20" data-name="polygon2233" class="cls-1" points="450 392.5 450 197.5 620 97.5 620 292.5 450 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-14" data-name="polygon2301" class="cls-1" points="620 492.5 450 392.5 620 292.5 790 392.5 620 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-21" data-name="polygon2229" class="cls-1" points="1129.99 392.5 960 292.5 960 97.5 1129.99 197.5 1129.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-21" data-name="polygon2233" class="cls-1" points="790 392.5 790 197.5 960 97.5 960 292.5 790 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-15" data-name="polygon2301" class="cls-1" points="960 492.5 790 392.5 960 292.5 1129.99 392.5 960 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-22" data-name="polygon2229" class="cls-1" points="1469.99 392.5 1299.99 292.5 1299.99 97.5 1469.99 197.5 1469.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-22" data-name="polygon2233" class="cls-1" points="1129.99 392.5 1129.99 197.5 1299.99 97.5 1299.99 292.5 1129.99 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-16" data-name="polygon2301" class="cls-1" points="1299.99 492.5 1129.99 392.5 1299.99 292.5 1469.99 392.5 1299.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-23" data-name="polygon2229" class="cls-1" points="1809.99 392.5 1639.99 292.5 1639.99 97.5 1809.99 197.5 1809.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-23" data-name="polygon2233" class="cls-1" points="1469.99 392.5 1469.99 197.5 1639.99 97.5 1639.99 292.5 1469.99 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-17" data-name="polygon2301" class="cls-1" points="1639.99 492.5 1469.99 392.5 1639.99 292.5 1809.99 392.5 1639.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2233-24" data-name="polygon2233" class="cls-1" points="1809.99 392.5 1809.99 197.5 1979.99 97.5 1979.99 292.5 1809.99 392.5"/>
|
||||||
|
<polygon id="polygon2301-18" data-name="polygon2301" class="cls-1" points="1979.99 492.5 1809.99 392.5 1979.99 292.5 2149.99 392.5 1979.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-24" data-name="polygon2229" class="cls-1" points="110 392.5 -60 292.5 -60 97.5 110 197.5 110 392.5"/>
|
||||||
|
<polygon id="polygon2301-19" data-name="polygon2301" class="cls-1" points="-60 492.5 -230 392.5 -60 292.5 110 392.5 -60 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-25" data-name="polygon2229" class="cls-1" points="450 982.5 280 882.5 280 687.5 450 787.5 450 982.5"/>
|
||||||
|
<polygon id="polygon2233-25" data-name="polygon2233" class="cls-1" points="110 982.5 110 787.5 280 687.5 280 882.5 110 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-20" data-name="polygon2301" class="cls-1" points="280 1082.5 110 982.5 280 882.5 450 982.5 280 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-26" data-name="polygon2229" class="cls-1" points="790 982.5 620 882.5 620 687.5 790 787.5 790 982.5"/>
|
||||||
|
<polygon id="polygon2233-26" data-name="polygon2233" class="cls-1" points="450 982.5 450 787.5 620 687.5 620 882.5 450 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-21" data-name="polygon2301" class="cls-1" points="620 1082.5 450 982.5 620 882.5 790 982.5 620 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-27" data-name="polygon2229" class="cls-1" points="1130 982.5 960 882.5 960 687.5 1130 787.5 1130 982.5"/>
|
||||||
|
<polygon id="polygon2233-27" data-name="polygon2233" class="cls-1" points="790 982.5 790 787.5 960 687.5 960 882.5 790 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-22" data-name="polygon2301" class="cls-1" points="960 1082.5 790 982.5 960 882.5 1130 982.5 960 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-28" data-name="polygon2229" class="cls-1" points="1470 982.5 1300 882.5 1300 687.5 1470 787.5 1470 982.5"/>
|
||||||
|
<polygon id="polygon2233-28" data-name="polygon2233" class="cls-1" points="1130 982.5 1130 787.5 1300 687.5 1300 882.5 1130 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-23" data-name="polygon2301" class="cls-1" points="1300 1082.5 1130 982.5 1300 882.5 1470 982.5 1300 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-29" data-name="polygon2229" class="cls-1" points="1810 982.5 1640 882.5 1640 687.5 1810 787.5 1810 982.5"/>
|
||||||
|
<polygon id="polygon2233-29" data-name="polygon2233" class="cls-1" points="1470 982.5 1470 787.5 1640 687.5 1640 882.5 1470 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-24" data-name="polygon2301" class="cls-1" points="1640 1082.5 1470 982.5 1640 882.5 1810 982.5 1640 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2233-30" data-name="polygon2233" class="cls-1" points="1810 982.5 1810 787.5 1980 687.5 1980 882.5 1810 982.5"/>
|
||||||
|
<polygon id="polygon2301-25" data-name="polygon2301" class="cls-1" points="1980 1082.5 1810 982.5 1980 882.5 2150 982.5 1980 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-30" data-name="polygon2229" class="cls-1" points="110 982.5 -60 882.5 -60 687.5 110 787.5 110 982.5"/>
|
||||||
|
<polygon id="polygon2301-26" data-name="polygon2301" class="cls-1" points="-60 1082.5 -230 982.5 -60 882.5 110 982.5 -60 1082.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Alpakas">
|
||||||
|
<g>
|
||||||
|
<polygon class="cls-2" points="176 878.85 193.33 878.85 193.33 855.48 363.78 855.48 363.78 878.85 386.89 878.85 386.89 902.28 386.89 926.08 386.89 951.89 363.78 951.89 363.78 975.26 340.67 975.26 340.67 998.63 314.64 998.63 291.11 998.63 267.58 998.63 244.06 998.63 222.22 998.63 222.22 975.26 199.11 975.26 199.11 951.89 176 951.89 176 926.08 176 902.28 176 878.85"/>
|
||||||
|
<path class="cls-3" d="M176,926.08V878.85h17.33V855.48H363.78v23.37h23.11v73H363.78v23.37H340.67v23.37H222.22V975.26H199.11V951.89H176ZM340.67,762v23.37h-26v23.37H245.33V785.37H222.22V762H176v23.37H150V975.26h26v23.37h23.11V1022H363.78V998.63h23.11V975.26H410V785.37H386.89V762Z"/>
|
||||||
|
<rect class="cls-4" x="202" y="900.3" width="20.22" height="25.3"/>
|
||||||
|
<polygon class="cls-4" points="314.67 975.26 314.67 948.97 314.67 925.6 291.56 925.6 291.56 948.97 268.44 948.97 268.44 925.6 245.33 925.6 245.33 948.97 245.33 975.26 314.67 975.26"/>
|
||||||
|
<rect class="cls-4" x="337.78" y="897.37" width="20.22" height="25.3"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Pixel_oben" data-name="Pixel oben">
|
||||||
|
<g>
|
||||||
|
<polygon class="cls-5" points="1102 40 1102 47 1095 47 1095 54 1088 54 1088 61 1088 68 1088 75 1088 82 1088 89 1088 96 1088 103 1088 110 1088 117 1095 117 1095 124 1102 124 1102 131 1109 131 1109 138 1116 138 1116 145 1123 145 1123 152 1116 152 1116 159 1109 159 1109 166 1102 166 1102 173 1102 180 1102 187 1102 194 1102 201 1102 208 1109 208 1109 201 1109 194 1109 187 1116 187 1116 194 1116 201 1116 208 1123 208 1130 208 1137 208 1144 208 1144 201 1144 194 1144 187 1151 187 1151 194 1151 201 1151 208 1158 208 1158 201 1158 194 1158 187 1158 180 1158 173 1158 166 1151 166 1151 159 1144 159 1144 152 1137 152 1137 145 1144 145 1144 138 1151 138 1151 131 1158 131 1158 124 1165 124 1165 117 1172 117 1172 54 1165 54 1165 47 1158 47 1158 40 1102 40"/>
|
||||||
|
<path class="cls-6" d="M1109,99.5h3.5V96H1102v3.5h7Zm7,10.5h3.5v-3.5H1116v-7h-17.5V103h3.5v3.5h3.5V110H1116Zm7,14h3.5v-3.5H1123Zm10.5,0h3.5v-3.5h-3.5Zm7,7h-21v3.5h21Zm14-31.5h3.5V96h-10.5v3.5h7Zm7,3.5V99.5H1144v7h-3.5V110h14v-3.5h3.5V103Z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon class="cls-5" points="1612 40 1612 47 1605 47 1605 54 1598 54 1598 61 1591 61 1591 68 1584 68 1584 75 1584 82 1584 89 1584 96 1584 103 1584 110 1584 117 1584 124 1584 131 1584 138 1584 138 1584 145 1584 152 1584 159 1584 166 1584 168 1584 173 1591 173 1591 180 1598 180 1598 187 1605 187 1612 187 1612 194 1612 201 1619 201 1619 208 1626 208 1633 208 1640 208 1647 208 1654 208 1661 208 1661 201 1668 201 1668 194 1668 187 1675 187 1682 187 1682 180 1689 180 1689 173 1696 173 1696 68 1689 68 1689 61 1682 61 1682 54 1675 54 1675 47 1668 47 1668 40 1612 40"/>
|
||||||
|
<path class="cls-7" d="M1591,117h7V89h-7v28Zm7,7h7V89h-7v35Zm7,7h7V89h-7v42Zm7,0h7V89h-7v42Zm0,42h7V145h-7v28Zm7-42h7V89h-7v42Zm0,42h7V145h-7v28Zm14-42h7V96h-7v35Zm0,42h7V138h-7V89h-7v84Zm7-42h7V96h-7v35Zm0,42h7V138h-7v35Zm49-56V89h-7v0h-7v0h-7v0h-7v0h-7v0h-7v84h21V145h-14V131h21v-7h7v-7Z"/>
|
||||||
|
<polygon class="cls-6" points="1629.5 113.5 1629.5 110 1629.5 106.5 1626 106.5 1622.5 106.5 1622.5 103 1619 103 1615.5 103 1612 103 1608.5 103 1605 103 1601.5 103 1598 103 1598 106.5 1601.5 106.5 1601.5 110 1605 110 1605 113.5 1608.5 113.5 1608.5 117 1612 117 1615.5 117 1619 117 1622.5 117 1626 117 1626 113.5 1629.5 113.5"/>
|
||||||
|
<polygon class="cls-6" points="1682 106.5 1682 103 1678.5 103 1675 103 1671.5 103 1668 103 1664.5 103 1661 103 1657.5 103 1657.5 106.5 1654 106.5 1650.5 106.5 1650.5 110 1650.5 113.5 1654 113.5 1654 117 1657.5 117 1661 117 1664.5 117 1668 117 1671.5 117 1671.5 113.5 1675 113.5 1675 110 1678.5 110 1678.5 106.5 1682 106.5"/>
|
||||||
|
<polygon class="cls-6" points="1650.5 166 1650.5 162.5 1650.5 159 1647 159 1647 155.5 1643.5 155.5 1640 155.5 1636.5 155.5 1633 155.5 1633 159 1629.5 159 1629.5 162.5 1629.5 166 1633 166 1633 169.5 1636.5 169.5 1640 169.5 1643.5 169.5 1647 169.5 1647 166 1650.5 166"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path class="cls-8" d="M1424.5,208h7V159h-7Zm84,0h7V159h-7Zm-49-14h7v7h-7Zm7-7h7v7h-7Zm-28-35v56h14v-7h7v7h21v-7h-7v-7h7v7h7v7h14V152Zm21-126v7h-7v7h-21v7h-7V82h-7v21h7v35h7v7h77v-7h7V103h7V82h-7V47h-7V40h-21V33h-7v7h-21V33h21V26Z"/>
|
||||||
|
<path class="cls-6" d="M1452.5,102.87v-3.5h-14v3.5m-3.5-3.5h3.5v-14H1435m3.5-3.5v3.5h14v-3.5m3.5,3.5h-3.5v14h3.5Z"/>
|
||||||
|
<path class="cls-6" d="M1501.5,102.87v-3.5h-14v3.5m-3.5-3.5h3.5v-14H1484m3.5-3.5v3.5h14v-3.5m3.5,3.5h-3.5v14h3.5Z"/>
|
||||||
|
<path class="cls-6" d="M1445.5,123.87v-3.5H1442v10.5h3.5v-7Zm38.5,7h-7v-10.5h7v10.5Zm-10.5,0h-7v-10.5h7v10.5Zm-10.5,0h-7v-10.5h7v10.5Zm28-10.5h3.5v-3.5h-49v3.5h7v10.5h-7v3.5h49v-3.5h-7v-10.5Zm7,10.5v-10.5h-3.5v10.5Z"/>
|
||||||
|
<rect class="cls-2" x="1466.5" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1473.5" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1459.5" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1452.5" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1480.5" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1459.5" y="33" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1466.5" y="33" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1473.5" y="33" width="7" height="7"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<rect class="cls-9" x="1272" y="40" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="40" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="40" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1293" y="40" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1300" y="40" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="40" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="40" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="40" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1237" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1230" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1237" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1230" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1237" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1230" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1237" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1230" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1237" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1230" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1237" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1237" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="145" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="145" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="145" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="152" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="152" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="159" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="166" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="166" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1286" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1272" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1265" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1279" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1258" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1251" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1244" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1237" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1356" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="166" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="166" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="145" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="145" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="145" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="152" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="152" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="152" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="159" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="159" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="159" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="145" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="145" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="152" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1356" y="75" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="124" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="138" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1356" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1363" y="82" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1356" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1363" y="89" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1356" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1363" y="96" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1356" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1363" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1356" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1363" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1356" y="117" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1349" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1342" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1335" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1314" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1321" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1328" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1307" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1293" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-9" x="1300" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1314" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1314" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1265" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1265" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1310.5" y="108.25" width="3.5" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1261.5" y="108.25" width="3.5" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1310.5" y="92.5" width="3.5" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1261.5" y="92.5" width="3.5" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1314" y="89" width="21" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1265" y="89" width="21" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1335" y="108.25" width="3.5" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1286" y="108.25" width="3.5" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1335" y="92.5" width="3.5" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1286" y="92.5" width="3.5" height="3.5"/>
|
||||||
|
<rect class="cls-10" x="1321" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1272" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1321" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1272" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1328" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1279" y="103" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1328" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-10" x="1279" y="110" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1293" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1300" y="131" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1286" y="46.87" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1307" y="47" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1279" y="53.87" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1272" y="60.87" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1265" y="67.87" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1314" y="54" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1321" y="61" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1328" y="68" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1314" y="152" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1314" y="166" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1293" y="166" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1293" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1293" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1300" y="166" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1300" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1300" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1314" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1314" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1279" y="152" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1279" y="166" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1279" y="180" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1279" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1307" y="159" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1307" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1307" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1307" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1321" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1321" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1321" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1321" y="159" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1286" y="159" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1286" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1286" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1286" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1272" y="201" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1272" y="187" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1272" y="173" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1272" y="159" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1265" y="194" width="7" height="7"/>
|
||||||
|
<rect class="cls-2" x="1328" y="194" width="7" height="7"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon class="cls-7" points="1860.31 110 1860.31 105.62 1860.31 101.25 1860.31 96.87 1855.94 96.87 1851.56 96.87 1847.19 96.87 1842.81 96.87 1838.44 96.87 1834.06 96.87 1829.69 96.87 1825.31 96.87 1820.94 96.87 1816.56 96.87 1812.19 96.87 1807.81 96.87 1803.44 96.87 1799.06 96.87 1794.69 96.87 1790.31 96.87 1785.94 96.87 1781.56 96.87 1777.19 96.87 1772.81 96.87 1768.44 96.87 1768.44 101.25 1768.44 105.62 1768.44 110 1764.06 110 1764.06 114.37 1764.06 118.75 1764.06 123.12 1764.06 127.5 1768.44 127.5 1772.81 127.5 1777.19 127.5 1781.56 127.5 1785.94 127.5 1790.31 127.5 1794.69 127.5 1799.06 127.5 1803.44 127.5 1807.81 127.5 1812.19 127.5 1816.56 127.5 1820.94 127.5 1825.31 127.5 1829.69 127.5 1834.06 127.5 1838.44 127.5 1842.81 127.5 1847.19 127.5 1847.19 123.12 1847.19 118.75 1851.56 118.75 1851.56 123.12 1851.56 127.5 1855.94 127.5 1855.94 123.12 1855.94 118.75 1855.94 114.37 1855.94 110 1860.31 110"/>
|
||||||
|
<polygon class="cls-5" points="1855.94 92.5 1855.94 88.12 1855.94 83.75 1855.94 79.37 1855.94 75 1855.94 70.62 1855.94 66.25 1855.94 61.87 1855.94 57.5 1855.94 53.12 1855.94 48.75 1855.94 44.37 1851.56 44.37 1847.19 44.37 1842.81 44.37 1838.44 44.37 1834.06 44.37 1829.69 44.37 1825.31 44.37 1820.94 44.37 1816.56 44.37 1812.19 44.37 1807.81 44.37 1803.44 44.37 1799.06 44.37 1794.69 44.37 1790.31 44.37 1785.94 44.37 1781.56 44.37 1777.19 44.37 1772.81 44.37 1772.81 48.75 1772.81 53.12 1772.81 57.5 1772.81 61.87 1772.81 66.25 1772.81 70.62 1772.81 75 1772.81 79.37 1772.81 83.75 1772.81 88.12 1772.81 92.5 1777.19 92.5 1781.56 92.5 1785.94 92.5 1790.31 92.5 1794.69 92.5 1799.06 92.5 1803.44 92.5 1807.81 92.5 1812.19 92.5 1816.56 92.5 1820.94 92.5 1825.31 92.5 1829.69 92.5 1834.06 92.5 1838.44 92.5 1842.81 92.5 1847.19 92.5 1851.56 92.5 1855.94 92.5"/>
|
||||||
|
<path class="cls-6" d="M1746.56,223.81h4.38v-4.37h-4.38Zm-4.37-4.44h4.37V215h-4.37Zm61.25-43.68v8.75h-4.38v8.75h-4.37v8.75h-4.38v4.37h-8.75v4.38h-4.37v4.37h-4.38v8.75h-4.37v4.38h-13.13v-4.32h-4.37v4.38h4.37v4.31h13.13v-4.37h4.37v-4.38h4.38v-8.75h4.37v-4.37h8.75v-4.38h4.38v-4.37h4.37v-8.75h4.38v-8.75h4.37v-8.75Zm-4.38,0h4.38v-4.38h-4.38Zm-8.75-21.88v30.63h4.38v-4.38h4.37v-4.37h-4.37V153.81Zm-4.37-8.75v4.38h-4.38v4.37h-21.87v4.38h-4.38v17.5h-4.37v26.18h-4.38v4.38h-4.37v4.37h-4.38V215h4.38v-4.38h4.37v-4.37h4.38v-4.31h4.37V175.69h4.38v-17.5h4.37v17.5h4.38v-17.5h4.37v17.5h4.38v-17.5h4.37v17.5h4.38V149.44h4.37v-4.38Zm8.75-.06v8.75h4.37V145Zm-4.38,0h4.38v-4.38h-4.38Z"/>
|
||||||
|
<path class="cls-6" d="M1842.81,180v26.25h30.63V184.38h-4.38v17.49h-21.87V180Zm-4.37-8.75V180h4.37v-8.75Zm-4.38-8.75v8.75h4.38V162.5Zm-4.37-8.75v8.75h4.37v-8.75Zm4.37,0h4.38v-4.38h-4.38Zm43.75-17.5v30.62h-4.37v17.51h4.37V166.87h4.38V136.25Zm-35-17.5v8.75h-78.75v4.37h78.75v21.88h-4.37v4.37h4.37v4.38h4.38V118.75Zm17.5,0v35h4.38v-35Zm8.75,0v35h4.38v-17.5h4.37v-4.38h-4.37V118.75Zm-100.62,0h4.37v-4.38h-4.37Zm8.75,0h4.37v-4.38h-4.37Zm61.25-4.38h-52.5v4.38h56.87v-4.38Zm8.75,4.38h4.37v-4.38h-4.37Zm17.5,0h4.37v-4.38h-4.37Zm-8.75-8.75v8.75h-4.38v35h4.38v-35h4.37V110Zm-83.13,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75,0h4.38v-4.37h-4.38Zm8.75-13.13V110h4.38V96.87Zm-4.37-52.5V92.5h-83.13V44.37h-4.37v52.5h-4.38V110h-4.37v17.5h4.37V110h4.38V96.87h91.87V44.37ZM1772.81,40v4.37h83.13V40Z"/>
|
||||||
|
<polygon class="cls-2" points="1803.44 184.37 1803.44 175.62 1799.06 175.62 1799.06 180 1794.69 180 1794.69 184.37 1790.31 184.37 1790.31 153.75 1794.69 153.75 1794.69 145 1790.31 145 1790.31 149.37 1785.94 149.37 1785.94 175.62 1781.56 175.62 1781.56 158.12 1777.19 158.12 1777.19 175.62 1772.81 175.62 1772.81 158.12 1768.44 158.12 1768.44 175.62 1764.06 175.62 1764.06 158.12 1759.69 158.12 1759.69 175.62 1755.31 175.62 1755.31 201.87 1750.94 201.87 1750.94 206.25 1746.56 206.25 1746.56 210.62 1742.19 210.62 1742.19 215 1746.56 215 1746.56 219.37 1750.94 219.37 1750.94 223.75 1755.31 223.75 1755.31 228.12 1768.44 228.12 1768.44 223.75 1772.81 223.75 1772.81 215 1777.19 215 1777.19 210.62 1781.56 210.62 1781.56 206.25 1785.94 206.25 1790.31 206.25 1790.31 201.87 1794.69 201.87 1794.69 193.12 1799.06 193.12 1799.06 184.37 1803.44 184.37"/>
|
||||||
|
<path class="cls-2" d="M1834.06,162.5h4.38v-8.75h-4.38Zm43.75,4.37V136.25h-4.37v17.5h-4.38v-35h-4.37v35h-4.38v-35h-4.37v35h-4.38v-35h-4.37V162.5h-4.38v-4.38h-4.37v13.13h4.37V180h4.38v21.87h21.87v-17.5h4.38v-17.5Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Logo_Titel" data-name="Logo Titel">
|
||||||
|
<g>
|
||||||
|
<polygon id="text-bg" class="cls-11" points="1798.2 843.3 575 843.3 575 1040 1875 1040 1875 892.5 1875 843.3 1875 766.8 1798.2 843.3"/>
|
||||||
|
<g id="projectname" class="cls-12">
|
||||||
|
<text class="cls-13" transform="translate(600 927.87)">$RROJECTNAME</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon class="cls-14" points="45 118.12 45 202.68 73.59 171.3 173.27 171.16 222.07 118.01 45 118.12"/>
|
||||||
|
<g>
|
||||||
|
<path class="cls-2" d="M90.06,132.54h5.16v18.62c0,2.13,2.13,3.43,3.86,3.43a3.55,3.55,0,0,0,3.68-3.28V132.54h5.16v19.34c0,4.62-4.25,7.87-8.84,7.87s-9-3.25-9-7.87Z"/>
|
||||||
|
<path class="cls-2" d="M126.23,154.41v5.16H112v-27.1h5.16V154a.38.38,0,0,0,.43.43Z"/>
|
||||||
|
<path class="cls-2" d="M150.63,132.5h6.89v27.07h-5.09V141.78c0-.11-.11-.15-6.75,17.79h-3.93l-6.39-17.94v17.94h-5.31V132.5h6.79l6.89,18.92Z"/>
|
||||||
|
</g>
|
||||||
|
<polygon class="cls-15" points="45 45 45 149.06 74.07 120.76 545 120.76 545 101.59 545 45 45 45"/>
|
||||||
|
<path class="cls-2" d="M515.83,66.21h4.74V61.44h-4.74Zm-6.31,0h4.74V61.44h-4.74Zm-6.31,0h4.73V61.44h-4.73Zm-6.32,0h4.74V61.44h-4.74Zm-6.32,0h4.74V61.44h-4.74Zm-12.63,0h4.74V61.44h-4.74Zm-25.26,0h4.73V61.44h-4.73Zm-18.95,0h4.74V61.44h-4.74Zm-6.31,0h4.73V61.44h-4.73Zm-6.33,0h4.74V61.44h-4.74Zm-31.57,0h4.73V61.44h-4.73Zm-25.27,0H369V61.44h-4.74Zm-25.26,0h4.73V61.44H339Zm-56.84,0h4.74V61.44h-4.74Zm-6.32,0h4.74V61.44h-4.74Zm-6.32,0h4.74V61.44h-4.74Zm-6.31,0h4.73V61.44H263.2Zm-12.63,0h4.74V61.44h-4.74Zm-25.27,0H230V61.44H225.3Zm-12.63,0h4.74V61.44h-4.74Zm-6.31,0h4.73V61.44h-4.73Zm-6.32,0h4.74V61.44H200Zm-6.32,0h4.74V61.44h-4.74Zm-25.26,0h4.74V61.44h-4.74Zm-6.32,0h4.74V61.44h-4.74Zm-6.31,0h4.74V61.44h-4.74Zm-19,0h4.74V61.44h-4.74Zm-25.26,0h4.73V61.44h-4.73Zm-19,0h4.74V61.44H92.67Zm-6.32,0h4.74V61.44H86.35Zm-6.31,0h4.74V61.44H80Zm-6.32,0h4.74V61.44H73.72ZM395.84,67.8h4.73V63h-4.73Zm-12.64,0h4.74V63H383.2ZM440,69.38h4.74V64.62H440Zm-25.26,0h4.74V64.62h-4.74Zm-126.32,0h4.74V64.62h-4.74Zm-101,0h4.73V64.62h-4.73Zm-12.63,0h4.73V64.62h-4.73Zm-25.27,0h4.74V64.62h-4.74ZM99,69.38h4.74V64.62H99Zm404.23,3.18h4.73V67.8h-4.73Zm-31.58,0h4.73V67.8h-4.73Zm-18.95,0h4.73V67.8h-4.73Zm-50.53,0h4.74V67.8h-4.74Zm-25.27,0h4.74V67.8h-4.74Zm-12.63,0H369V67.8h-4.74Zm-25.26,0h4.73V67.8H339Zm-75.79,0h4.73V67.8H263.2Zm-12.63,0h4.74V67.8h-4.74Zm-25.27,0H230V67.8H225.3Zm-88.42,0h4.74V67.8h-4.74Zm-25.26,0h4.73V67.8h-4.73Zm-37.9,0h4.74V67.8H73.72Zm341.06,3.18h4.74V71h-4.74Zm-126.32,0h4.74V71h-4.74Zm-101,0h4.73V71h-4.73Zm-37.9,0h4.74V71h-4.74ZM99,75.74h4.74V71H99Zm404.23,3.18h4.73V74.15h-4.73Zm-37.9,0h4.74V74.15h-4.74Zm-12.63,0h4.73V74.15h-4.73Zm-50.53,0h4.74V74.15h-4.74Zm-25.27,0h4.74V74.15h-4.74Zm-12.63,0H369V74.15h-4.74Zm-25.26,0h4.73V74.15H339Zm-75.79,0h4.73V74.15H263.2Zm-12.63,0h4.74V74.15h-4.74Zm-18.95,0h4.74V74.15h-4.74Zm-6.32,0H230V74.15H225.3Zm-88.42,0h4.74V74.15h-4.74Zm-25.26,0h4.73V74.15h-4.73ZM414.78,82.1h4.74V77.33h-4.74Zm-126.32,0h4.74V77.33h-4.74Zm-101,0h4.73V77.33h-4.73Zm-37.9,0h4.74V77.33h-4.74ZM99,82.1h4.74V77.33H99Zm404.23,3.18h4.73V80.51h-4.73Zm-44.22,0h4.74V80.51H459Zm-6.31,0h4.73V80.51h-4.73Zm-50.53,0h4.74V80.51h-4.74Zm-25.27,0h4.74V80.51h-4.74Zm-12.63,0H369V80.51h-4.74Zm-6.31,0h4.73V80.51h-4.73Zm-6.32,0h4.74V80.51h-4.74Zm-6.31,0H350V80.51h-4.73Zm-6.32,0h4.73V80.51H339Zm-75.79,0h4.73V80.51H263.2Zm-12.63,0h4.74V80.51h-4.74Zm-12.63,0h4.73V80.51h-4.73Zm-12.64,0H230V80.51H225.3Zm-18.94,0h4.73V80.51h-4.73Zm-6.32,0h4.74V80.51H200Zm-6.32,0h4.74V80.51h-4.74Zm-56.84,0h4.74V80.51h-4.74Zm-25.26,0h4.73V80.51h-4.73Zm303.16,3.17h4.74V83.69h-4.74Zm-18.94,0h4.73V83.69h-4.73Zm-6.32,0h4.73V83.69h-4.73Zm-6.32,0h4.74V83.69H383.2Zm-94.74,0h4.74V83.69h-4.74Zm-101,0h4.73V83.69h-4.73Zm-12.63,0h4.73V83.69h-4.73Zm-6.32,0h4.74V83.69h-4.74Zm-6.32,0h4.74V83.69h-4.74Zm-12.63,0h4.74V83.69h-4.74ZM99,88.45h4.74V83.69H99Zm404.23,3.19h4.73V86.87h-4.73Zm-37.9,0h4.74V86.87h-4.74Zm-12.63,0h4.73V86.87h-4.73Zm-50.53,0h4.74V86.87h-4.74Zm-25.27,0h4.74V86.87h-4.74Zm-12.63,0H369V86.87h-4.74Zm-25.26,0h4.73V86.87H339Zm-75.79,0h4.73V86.87H263.2Zm-12.63,0h4.74V86.87h-4.74Zm-6.32,0H249V86.87h-4.74Zm-18.95,0H230V86.87H225.3Zm-88.42,0h4.74V86.87h-4.74Zm-25.26,0h4.73V86.87h-4.73Zm303.16,3.17h4.74V90h-4.74Zm-126.32,0h4.74V90h-4.74Zm-101,0h4.73V90h-4.73Zm-12.63,0h4.73V90h-4.73Zm-25.27,0h4.74V90h-4.74ZM99,94.81h4.74V90H99Zm-25.26,0h4.74V90H73.72ZM503.21,98h4.73V93.22h-4.73Zm-31.58,0h4.73V93.22h-4.73Zm-18.95,0h4.73V93.22h-4.73Zm-50.53,0h4.74V93.22h-4.74Zm-25.27,0h4.74V93.22h-4.74Zm-12.63,0H369V93.22h-4.74ZM339,98h4.73V93.22H339ZM263.2,98h4.73V93.22H263.2Zm-12.63,0h4.74V93.22h-4.74ZM225.3,98H230V93.22H225.3Zm-88.42,0h4.74V93.22h-4.74Zm-25.26,0h4.73V93.22h-4.73ZM440,101.17h4.74V96.4H440Zm-25.26,0h4.74V96.4h-4.74Zm-126.32,0h4.74V96.4h-4.74Zm-101,0h4.73V96.4h-4.73Zm-12.63,0h4.73V96.4h-4.73Zm-25.27,0h4.74V96.4h-4.74Zm-50.53,0h4.74V96.4H99Zm-25.26,0h4.74V96.4H73.72Zm429.49,3.18h4.73V99.58h-4.73Zm-25.27,0h4.74V99.58h-4.74Zm-25.26,0h4.73V99.58h-4.73Zm-18.95,0h4.74V99.58h-4.74Zm-6.31,0h4.73V99.58h-4.73Zm-6.33,0h4.74V99.58h-4.74Zm-18.94,0h4.74V99.58h-4.74Zm-25.27,0h4.74V99.58h-4.74Zm-12.63,0H369V99.58h-4.74Zm-25.26,0h4.73V99.58H339Zm-56.84,0h4.74V99.58h-4.74Zm-6.32,0h4.74V99.58h-4.74Zm-6.32,0h4.74V99.58h-4.74Zm-6.31,0h4.73V99.58H263.2Zm-12.63,0h4.74V99.58h-4.74Zm-25.27,0H230V99.58H225.3Zm-12.63,0h4.74V99.58h-4.74Zm-6.31,0h4.73V99.58h-4.73Zm-6.32,0h4.74V99.58H200Zm-6.32,0h4.74V99.58h-4.74Zm-25.26,0h4.74V99.58h-4.74Zm-6.32,0h4.74V99.58h-4.74Zm-6.31,0h4.74V99.58h-4.74Zm-25.27,0h4.74V99.58h-4.74Zm-6.31,0H129V99.58h-4.73Zm-6.32,0h4.74V99.58h-4.74Zm-25.26,0h4.74V99.58H92.67Zm-6.32,0h4.74V99.58H86.35Zm-6.31,0h4.74V99.58H80Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 51 KiB |
514
jh18-ulm/artwork/outro.svg
Normal file
514
jh18-ulm/artwork/outro.svg
Normal file
|
@ -0,0 +1,514 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080">
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
.cls-1 {
|
||||||
|
fill: #b3c8c8;
|
||||||
|
stroke: #e6e6e6;
|
||||||
|
stroke-linejoin: round;
|
||||||
|
stroke-width: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-2 {
|
||||||
|
fill: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-3 {
|
||||||
|
fill: #ea690b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-4 {
|
||||||
|
fill: #0a0a0a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-5 {
|
||||||
|
fill: #e9680f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-6 {
|
||||||
|
fill: #06a4dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-7 {
|
||||||
|
isolation: isolate;
|
||||||
|
font-size: 35px;
|
||||||
|
font-family: Ebisu, Ebisu;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-8 {
|
||||||
|
letter-spacing: 0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-9 {
|
||||||
|
letter-spacing: -0.11em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-10 {
|
||||||
|
letter-spacing: 0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-11 {
|
||||||
|
letter-spacing: -0.03em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-12 {
|
||||||
|
letter-spacing: 0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-13 {
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-14 {
|
||||||
|
letter-spacing: -0.03em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-15 {
|
||||||
|
letter-spacing: 0.01em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-16 {
|
||||||
|
letter-spacing: -0.01em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-17 {
|
||||||
|
letter-spacing: 0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-18 {
|
||||||
|
letter-spacing: -0.03em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-19 {
|
||||||
|
letter-spacing: -0.01em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-20 {
|
||||||
|
letter-spacing: -0.09em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-21 {
|
||||||
|
letter-spacing: 0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-22 {
|
||||||
|
letter-spacing: -0.01em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-23 {
|
||||||
|
letter-spacing: 0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-24 {
|
||||||
|
letter-spacing: -0.08em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-25 {
|
||||||
|
letter-spacing: -0.04em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-26 {
|
||||||
|
letter-spacing: -0.06em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-27 {
|
||||||
|
fill: #1a1a18;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-28 {
|
||||||
|
fill: #ea5a2d;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<title>ulm-outro</title>
|
||||||
|
<g id="Background">
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229" class="cls-1" points="280 97.5 110 -2.5 110 -197.5 280 -97.5 280 97.5"/>
|
||||||
|
<polygon id="polygon2233" class="cls-1" points="-60 97.5 -60 -97.5 110 -197.5 110 -2.5 -60 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301" class="cls-1" points="110 197.5 -60 97.5 110 -2.5 280 97.5 110 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-2" data-name="polygon2229" class="cls-1" points="620 97.5 450 -2.5 450 -197.5 620 -97.5 620 97.5"/>
|
||||||
|
<polygon id="polygon2233-2" data-name="polygon2233" class="cls-1" points="280 97.5 280 -97.5 450 -197.5 450 -2.5 280 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-2" data-name="polygon2301" class="cls-1" points="450 197.5 280 97.5 450 -2.5 620 97.5 450 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-3" data-name="polygon2229" class="cls-1" points="960 97.5 790 -2.5 790 -197.5 960 -97.5 960 97.5"/>
|
||||||
|
<polygon id="polygon2233-3" data-name="polygon2233" class="cls-1" points="620 97.5 620 -97.5 790 -197.5 790 -2.5 620 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-3" data-name="polygon2301" class="cls-1" points="790 197.5 620 97.5 790 -2.5 960 97.5 790 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-4" data-name="polygon2229" class="cls-1" points="1300 97.5 1130 -2.5 1130 -197.5 1300 -97.5 1300 97.5"/>
|
||||||
|
<polygon id="polygon2233-4" data-name="polygon2233" class="cls-1" points="960 97.5 960 -97.5 1130 -197.5 1130 -2.5 960 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-4" data-name="polygon2301" class="cls-1" points="1130 197.5 960 97.5 1130 -2.5 1300 97.5 1130 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-5" data-name="polygon2229" class="cls-1" points="1640 97.5 1470 -2.5 1470 -197.5 1640 -97.5 1640 97.5"/>
|
||||||
|
<polygon id="polygon2233-5" data-name="polygon2233" class="cls-1" points="1300 97.5 1300 -97.5 1470 -197.5 1470 -2.5 1300 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-5" data-name="polygon2301" class="cls-1" points="1470 197.5 1300 97.5 1470 -2.5 1640 97.5 1470 197.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-6" data-name="polygon2229" class="cls-1" points="1980 97.5 1810 -2.5 1810 -197.5 1980 -97.5 1980 97.5"/>
|
||||||
|
<polygon id="polygon2233-6" data-name="polygon2233" class="cls-1" points="1640 97.5 1640 -97.5 1810 -197.5 1810 -2.5 1640 97.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-6" data-name="polygon2301" class="cls-1" points="1810 197.5 1640 97.5 1810 -2.5 1980 97.5 1810 197.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-7" data-name="polygon2229" class="cls-1" points="280 687.5 110 587.5 110 392.5 280 492.5 280 687.5"/>
|
||||||
|
<polygon id="polygon2233-7" data-name="polygon2233" class="cls-1" points="-60 687.5 -60 492.5 110 392.5 110 587.5 -60 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-7" data-name="polygon2301" class="cls-1" points="110 787.5 -60 687.5 110 587.5 280 687.5 110 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-8" data-name="polygon2229" class="cls-1" points="620 687.5 450 587.5 450 392.5 620 492.5 620 687.5"/>
|
||||||
|
<polygon id="polygon2233-8" data-name="polygon2233" class="cls-1" points="280 687.5 280 492.5 450 392.5 450 587.5 280 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-8" data-name="polygon2301" class="cls-1" points="450 787.5 280 687.5 450 587.5 620 687.5 450 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-9" data-name="polygon2229" class="cls-1" points="960 687.5 790 587.5 790 392.5 960 492.5 960 687.5"/>
|
||||||
|
<polygon id="polygon2233-9" data-name="polygon2233" class="cls-1" points="620 687.5 620 492.5 790 392.5 790 587.5 620 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-9" data-name="polygon2301" class="cls-1" points="790 787.5 620 687.5 790 587.5 960 687.5 790 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-10" data-name="polygon2229" class="cls-1" points="1300 687.5 1130 587.5 1130 392.5 1300 492.5 1300 687.5"/>
|
||||||
|
<polygon id="polygon2233-10" data-name="polygon2233" class="cls-1" points="960 687.5 960 492.5 1130 392.5 1130 587.5 960 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-10" data-name="polygon2301" class="cls-1" points="1130 787.5 960 687.5 1130 587.5 1300 687.5 1130 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-11" data-name="polygon2229" class="cls-1" points="1640 687.5 1470 587.5 1470 392.5 1640 492.5 1640 687.5"/>
|
||||||
|
<polygon id="polygon2233-11" data-name="polygon2233" class="cls-1" points="1300 687.5 1300 492.5 1470 392.5 1470 587.5 1300 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-11" data-name="polygon2301" class="cls-1" points="1470 787.5 1300 687.5 1470 587.5 1640 687.5 1470 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-12" data-name="polygon2229" class="cls-1" points="1980 687.5 1810 587.5 1810 392.5 1980 492.5 1980 687.5"/>
|
||||||
|
<polygon id="polygon2233-12" data-name="polygon2233" class="cls-1" points="1640 687.5 1640 492.5 1810 392.5 1810 587.5 1640 687.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-12" data-name="polygon2301" class="cls-1" points="1810 787.5 1640 687.5 1810 587.5 1980 687.5 1810 787.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-13" data-name="polygon2229" class="cls-1" points="280 1277.5 110 1177.5 110 982.5 280 1082.5 280 1277.5"/>
|
||||||
|
<polygon id="polygon2233-13" data-name="polygon2233" class="cls-1" points="-60 1277.5 -60 1082.5 110 982.5 110 1177.5 -60 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-14" data-name="polygon2229" class="cls-1" points="620 1277.5 450 1177.5 450 982.5 620 1082.5 620 1277.5"/>
|
||||||
|
<polygon id="polygon2233-14" data-name="polygon2233" class="cls-1" points="280 1277.5 280 1082.5 450 982.5 450 1177.5 280 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-15" data-name="polygon2229" class="cls-1" points="960 1277.5 790 1177.5 790 982.5 960 1082.5 960 1277.5"/>
|
||||||
|
<polygon id="polygon2233-15" data-name="polygon2233" class="cls-1" points="620 1277.5 620 1082.5 790 982.5 790 1177.5 620 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-16" data-name="polygon2229" class="cls-1" points="1300 1277.5 1130 1177.5 1130 982.5 1300 1082.5 1300 1277.5"/>
|
||||||
|
<polygon id="polygon2233-16" data-name="polygon2233" class="cls-1" points="960 1277.5 960 1082.5 1130 982.5 1130 1177.5 960 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-17" data-name="polygon2229" class="cls-1" points="1640 1277.5 1470 1177.5 1470 982.5 1640 1082.5 1640 1277.5"/>
|
||||||
|
<polygon id="polygon2233-17" data-name="polygon2233" class="cls-1" points="1300 1277.5 1300 1082.5 1470 982.5 1470 1177.5 1300 1277.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-18" data-name="polygon2229" class="cls-1" points="1980 1277.5 1810 1177.5 1810 982.5 1980 1082.5 1980 1277.5"/>
|
||||||
|
<polygon id="polygon2233-18" data-name="polygon2233" class="cls-1" points="1640 1277.5 1640 1082.5 1810 982.5 1810 1177.5 1640 1277.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-19" data-name="polygon2229" class="cls-1" points="450 392.5 280 292.5 280 97.5 450 197.5 450 392.5"/>
|
||||||
|
<polygon id="polygon2233-19" data-name="polygon2233" class="cls-1" points="110 392.5 110 197.5 280 97.5 280 292.5 110 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-13" data-name="polygon2301" class="cls-1" points="280 492.5 110 392.5 280 292.5 450 392.5 280 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-20" data-name="polygon2229" class="cls-1" points="790 392.5 620 292.5 620 97.5 790 197.5 790 392.5"/>
|
||||||
|
<polygon id="polygon2233-20" data-name="polygon2233" class="cls-1" points="450 392.5 450 197.5 620 97.5 620 292.5 450 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-14" data-name="polygon2301" class="cls-1" points="620 492.5 450 392.5 620 292.5 790 392.5 620 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-21" data-name="polygon2229" class="cls-1" points="1129.99 392.5 960 292.5 960 97.5 1129.99 197.5 1129.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-21" data-name="polygon2233" class="cls-1" points="790 392.5 790 197.5 960 97.5 960 292.5 790 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-15" data-name="polygon2301" class="cls-1" points="960 492.5 790 392.5 960 292.5 1129.99 392.5 960 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-22" data-name="polygon2229" class="cls-1" points="1469.99 392.5 1299.99 292.5 1299.99 97.5 1469.99 197.5 1469.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-22" data-name="polygon2233" class="cls-1" points="1129.99 392.5 1129.99 197.5 1299.99 97.5 1299.99 292.5 1129.99 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-16" data-name="polygon2301" class="cls-1" points="1299.99 492.5 1129.99 392.5 1299.99 292.5 1469.99 392.5 1299.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-23" data-name="polygon2229" class="cls-1" points="1809.99 392.5 1639.99 292.5 1639.99 97.5 1809.99 197.5 1809.99 392.5"/>
|
||||||
|
<polygon id="polygon2233-23" data-name="polygon2233" class="cls-1" points="1469.99 392.5 1469.99 197.5 1639.99 97.5 1639.99 292.5 1469.99 392.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-17" data-name="polygon2301" class="cls-1" points="1639.99 492.5 1469.99 392.5 1639.99 292.5 1809.99 392.5 1639.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2233-24" data-name="polygon2233" class="cls-1" points="1809.99 392.5 1809.99 197.5 1979.99 97.5 1979.99 292.5 1809.99 392.5"/>
|
||||||
|
<polygon id="polygon2301-18" data-name="polygon2301" class="cls-1" points="1979.99 492.5 1809.99 392.5 1979.99 292.5 2149.99 392.5 1979.99 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-24" data-name="polygon2229" class="cls-1" points="110 392.5 -60 292.5 -60 97.5 110 197.5 110 392.5"/>
|
||||||
|
<polygon id="polygon2301-19" data-name="polygon2301" class="cls-1" points="-60 492.5 -230 392.5 -60 292.5 110 392.5 -60 492.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-25" data-name="polygon2229" class="cls-1" points="450 982.5 280 882.5 280 687.5 450 787.5 450 982.5"/>
|
||||||
|
<polygon id="polygon2233-25" data-name="polygon2233" class="cls-1" points="110 982.5 110 787.5 280 687.5 280 882.5 110 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-20" data-name="polygon2301" class="cls-1" points="280 1082.5 110 982.5 280 882.5 450 982.5 280 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-26" data-name="polygon2229" class="cls-1" points="790 982.5 620 882.5 620 687.5 790 787.5 790 982.5"/>
|
||||||
|
<polygon id="polygon2233-26" data-name="polygon2233" class="cls-1" points="450 982.5 450 787.5 620 687.5 620 882.5 450 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-21" data-name="polygon2301" class="cls-1" points="620 1082.5 450 982.5 620 882.5 790 982.5 620 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-27" data-name="polygon2229" class="cls-1" points="1130 982.5 960 882.5 960 687.5 1130 787.5 1130 982.5"/>
|
||||||
|
<polygon id="polygon2233-27" data-name="polygon2233" class="cls-1" points="790 982.5 790 787.5 960 687.5 960 882.5 790 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-22" data-name="polygon2301" class="cls-1" points="960 1082.5 790 982.5 960 882.5 1130 982.5 960 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-28" data-name="polygon2229" class="cls-1" points="1470 982.5 1300 882.5 1300 687.5 1470 787.5 1470 982.5"/>
|
||||||
|
<polygon id="polygon2233-28" data-name="polygon2233" class="cls-1" points="1130 982.5 1130 787.5 1300 687.5 1300 882.5 1130 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-23" data-name="polygon2301" class="cls-1" points="1300 1082.5 1130 982.5 1300 882.5 1470 982.5 1300 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-29" data-name="polygon2229" class="cls-1" points="1810 982.5 1640 882.5 1640 687.5 1810 787.5 1810 982.5"/>
|
||||||
|
<polygon id="polygon2233-29" data-name="polygon2233" class="cls-1" points="1470 982.5 1470 787.5 1640 687.5 1640 882.5 1470 982.5"/>
|
||||||
|
</g>
|
||||||
|
<polygon id="polygon2301-24" data-name="polygon2301" class="cls-1" points="1640 1082.5 1470 982.5 1640 882.5 1810 982.5 1640 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2233-30" data-name="polygon2233" class="cls-1" points="1810 982.5 1810 787.5 1980 687.5 1980 882.5 1810 982.5"/>
|
||||||
|
<polygon id="polygon2301-25" data-name="polygon2301" class="cls-1" points="1980 1082.5 1810 982.5 1980 882.5 2150 982.5 1980 1082.5"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon id="polygon2229-30" data-name="polygon2229" class="cls-1" points="110 982.5 -60 882.5 -60 687.5 110 787.5 110 982.5"/>
|
||||||
|
<polygon id="polygon2301-26" data-name="polygon2301" class="cls-1" points="-60 1082.5 -230 982.5 -60 882.5 110 982.5 -60 1082.5"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Alpakas">
|
||||||
|
<g>
|
||||||
|
<polygon class="cls-2" points="1535.99 288.85 1553.33 288.85 1553.33 265.48 1723.77 265.48 1723.77 288.85 1746.88 288.85 1746.88 312.28 1746.88 336.08 1746.88 361.89 1723.77 361.89 1723.77 385.26 1700.66 385.26 1700.66 408.63 1674.63 408.63 1651.1 408.63 1627.58 408.63 1604.05 408.63 1582.22 408.63 1582.22 385.26 1559.11 385.26 1559.11 361.89 1535.99 361.89 1535.99 336.08 1535.99 312.28 1535.99 288.85"/>
|
||||||
|
<path class="cls-3" d="M1536,336.08V288.85h17.33V265.48h170.44v23.37h23.11v73h-23.11v23.37h-23.11v23.37H1582.22V385.26h-23.11V361.89H1536ZM1700.66,172v23.37h-26v23.37h-69.33V195.37h-23.11V172H1536v23.37h-26V385.26h26v23.37h23.11V432h164.66V408.63h23.11V385.26H1770V195.37h-23.12V172Z"/>
|
||||||
|
<rect class="cls-4" x="1562" y="310.3" width="20.22" height="25.3"/>
|
||||||
|
<polygon class="cls-4" points="1674.66 385.26 1674.66 358.97 1674.66 335.6 1651.55 335.6 1651.55 358.97 1628.44 358.97 1628.44 335.6 1605.33 335.6 1605.33 358.97 1605.33 385.26 1674.66 385.26"/>
|
||||||
|
<rect class="cls-4" x="1697.77" y="307.37" width="20.22" height="25.3"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Logo_Titel" data-name="Logo Titel">
|
||||||
|
<g>
|
||||||
|
<polygon class="cls-5" points="45 118.12 45 202.68 73.59 171.3 173.27 171.16 222.07 118.01 45 118.12"/>
|
||||||
|
<g>
|
||||||
|
<path class="cls-2" d="M90.06,132.54h5.16v18.62c0,2.13,2.13,3.43,3.86,3.43a3.55,3.55,0,0,0,3.68-3.28V132.54h5.16v19.34c0,4.62-4.25,7.87-8.84,7.87s-9-3.25-9-7.87Z"/>
|
||||||
|
<path class="cls-2" d="M126.23,154.41v5.16H112v-27.1h5.16V154a.38.38,0,0,0,.43.43Z"/>
|
||||||
|
<path class="cls-2" d="M150.63,132.5h6.89v27.07h-5.09V141.78c0-.11-.11-.15-6.75,17.79h-3.93l-6.39-17.94v17.94h-5.31V132.5h6.79l6.89,18.92Z"/>
|
||||||
|
</g>
|
||||||
|
<polygon class="cls-6" points="45 45 45 149.06 74.07 120.76 545 120.76 545 101.59 545 45 45 45"/>
|
||||||
|
<path class="cls-2" d="M515.83,66.21h4.74V61.44h-4.74Zm-6.31,0h4.74V61.44h-4.74Zm-6.31,0h4.73V61.44h-4.73Zm-6.32,0h4.74V61.44h-4.74Zm-6.32,0h4.74V61.44h-4.74Zm-12.63,0h4.74V61.44h-4.74Zm-25.26,0h4.73V61.44h-4.73Zm-18.95,0h4.74V61.44h-4.74Zm-6.31,0h4.73V61.44h-4.73Zm-6.33,0h4.74V61.44h-4.74Zm-31.57,0h4.73V61.44h-4.73Zm-25.27,0H369V61.44h-4.74Zm-25.26,0h4.73V61.44H339Zm-56.84,0h4.74V61.44h-4.74Zm-6.32,0h4.74V61.44h-4.74Zm-6.32,0h4.74V61.44h-4.74Zm-6.31,0h4.73V61.44H263.2Zm-12.63,0h4.74V61.44h-4.74Zm-25.27,0H230V61.44H225.3Zm-12.63,0h4.74V61.44h-4.74Zm-6.31,0h4.73V61.44h-4.73Zm-6.32,0h4.74V61.44H200Zm-6.32,0h4.74V61.44h-4.74Zm-25.26,0h4.74V61.44h-4.74Zm-6.32,0h4.74V61.44h-4.74Zm-6.31,0h4.74V61.44h-4.74Zm-19,0h4.74V61.44h-4.74Zm-25.26,0h4.73V61.44h-4.73Zm-19,0h4.74V61.44H92.67Zm-6.32,0h4.74V61.44H86.35Zm-6.31,0h4.74V61.44H80Zm-6.32,0h4.74V61.44H73.72ZM395.84,67.8h4.73V63h-4.73Zm-12.64,0h4.74V63H383.2ZM440,69.38h4.74V64.62H440Zm-25.26,0h4.74V64.62h-4.74Zm-126.32,0h4.74V64.62h-4.74Zm-101,0h4.73V64.62h-4.73Zm-12.63,0h4.73V64.62h-4.73Zm-25.27,0h4.74V64.62h-4.74ZM99,69.38h4.74V64.62H99Zm404.23,3.18h4.73V67.8h-4.73Zm-31.58,0h4.73V67.8h-4.73Zm-18.95,0h4.73V67.8h-4.73Zm-50.53,0h4.74V67.8h-4.74Zm-25.27,0h4.74V67.8h-4.74Zm-12.63,0H369V67.8h-4.74Zm-25.26,0h4.73V67.8H339Zm-75.79,0h4.73V67.8H263.2Zm-12.63,0h4.74V67.8h-4.74Zm-25.27,0H230V67.8H225.3Zm-88.42,0h4.74V67.8h-4.74Zm-25.26,0h4.73V67.8h-4.73Zm-37.9,0h4.74V67.8H73.72Zm341.06,3.18h4.74V71h-4.74Zm-126.32,0h4.74V71h-4.74Zm-101,0h4.73V71h-4.73Zm-37.9,0h4.74V71h-4.74ZM99,75.74h4.74V71H99Zm404.23,3.18h4.73V74.15h-4.73Zm-37.9,0h4.74V74.15h-4.74Zm-12.63,0h4.73V74.15h-4.73Zm-50.53,0h4.74V74.15h-4.74Zm-25.27,0h4.74V74.15h-4.74Zm-12.63,0H369V74.15h-4.74Zm-25.26,0h4.73V74.15H339Zm-75.79,0h4.73V74.15H263.2Zm-12.63,0h4.74V74.15h-4.74Zm-18.95,0h4.74V74.15h-4.74Zm-6.32,0H230V74.15H225.3Zm-88.42,0h4.74V74.15h-4.74Zm-25.26,0h4.73V74.15h-4.73ZM414.78,82.1h4.74V77.33h-4.74Zm-126.32,0h4.74V77.33h-4.74Zm-101,0h4.73V77.33h-4.73Zm-37.9,0h4.74V77.33h-4.74ZM99,82.1h4.74V77.33H99Zm404.23,3.18h4.73V80.51h-4.73Zm-44.22,0h4.74V80.51H459Zm-6.31,0h4.73V80.51h-4.73Zm-50.53,0h4.74V80.51h-4.74Zm-25.27,0h4.74V80.51h-4.74Zm-12.63,0H369V80.51h-4.74Zm-6.31,0h4.73V80.51h-4.73Zm-6.32,0h4.74V80.51h-4.74Zm-6.31,0H350V80.51h-4.73Zm-6.32,0h4.73V80.51H339Zm-75.79,0h4.73V80.51H263.2Zm-12.63,0h4.74V80.51h-4.74Zm-12.63,0h4.73V80.51h-4.73Zm-12.64,0H230V80.51H225.3Zm-18.94,0h4.73V80.51h-4.73Zm-6.32,0h4.74V80.51H200Zm-6.32,0h4.74V80.51h-4.74Zm-56.84,0h4.74V80.51h-4.74Zm-25.26,0h4.73V80.51h-4.73Zm303.16,3.17h4.74V83.69h-4.74Zm-18.94,0h4.73V83.69h-4.73Zm-6.32,0h4.73V83.69h-4.73Zm-6.32,0h4.74V83.69H383.2Zm-94.74,0h4.74V83.69h-4.74Zm-101,0h4.73V83.69h-4.73Zm-12.63,0h4.73V83.69h-4.73Zm-6.32,0h4.74V83.69h-4.74Zm-6.32,0h4.74V83.69h-4.74Zm-12.63,0h4.74V83.69h-4.74ZM99,88.45h4.74V83.69H99Zm404.23,3.19h4.73V86.87h-4.73Zm-37.9,0h4.74V86.87h-4.74Zm-12.63,0h4.73V86.87h-4.73Zm-50.53,0h4.74V86.87h-4.74Zm-25.27,0h4.74V86.87h-4.74Zm-12.63,0H369V86.87h-4.74Zm-25.26,0h4.73V86.87H339Zm-75.79,0h4.73V86.87H263.2Zm-12.63,0h4.74V86.87h-4.74Zm-6.32,0H249V86.87h-4.74Zm-18.95,0H230V86.87H225.3Zm-88.42,0h4.74V86.87h-4.74Zm-25.26,0h4.73V86.87h-4.73Zm303.16,3.17h4.74V90h-4.74Zm-126.32,0h4.74V90h-4.74Zm-101,0h4.73V90h-4.73Zm-12.63,0h4.73V90h-4.73Zm-25.27,0h4.74V90h-4.74ZM99,94.81h4.74V90H99Zm-25.26,0h4.74V90H73.72ZM503.21,98h4.73V93.22h-4.73Zm-31.58,0h4.73V93.22h-4.73Zm-18.95,0h4.73V93.22h-4.73Zm-50.53,0h4.74V93.22h-4.74Zm-25.27,0h4.74V93.22h-4.74Zm-12.63,0H369V93.22h-4.74ZM339,98h4.73V93.22H339ZM263.2,98h4.73V93.22H263.2Zm-12.63,0h4.74V93.22h-4.74ZM225.3,98H230V93.22H225.3Zm-88.42,0h4.74V93.22h-4.74Zm-25.26,0h4.73V93.22h-4.73ZM440,101.17h4.74V96.4H440Zm-25.26,0h4.74V96.4h-4.74Zm-126.32,0h4.74V96.4h-4.74Zm-101,0h4.73V96.4h-4.73Zm-12.63,0h4.73V96.4h-4.73Zm-25.27,0h4.74V96.4h-4.74Zm-50.53,0h4.74V96.4H99Zm-25.26,0h4.74V96.4H73.72Zm429.49,3.18h4.73V99.58h-4.73Zm-25.27,0h4.74V99.58h-4.74Zm-25.26,0h4.73V99.58h-4.73Zm-18.95,0h4.74V99.58h-4.74Zm-6.31,0h4.73V99.58h-4.73Zm-6.33,0h4.74V99.58h-4.74Zm-18.94,0h4.74V99.58h-4.74Zm-25.27,0h4.74V99.58h-4.74Zm-12.63,0H369V99.58h-4.74Zm-25.26,0h4.73V99.58H339Zm-56.84,0h4.74V99.58h-4.74Zm-6.32,0h4.74V99.58h-4.74Zm-6.32,0h4.74V99.58h-4.74Zm-6.31,0h4.73V99.58H263.2Zm-12.63,0h4.74V99.58h-4.74Zm-25.27,0H230V99.58H225.3Zm-12.63,0h4.74V99.58h-4.74Zm-6.31,0h4.73V99.58h-4.73Zm-6.32,0h4.74V99.58H200Zm-6.32,0h4.74V99.58h-4.74Zm-25.26,0h4.74V99.58h-4.74Zm-6.32,0h4.74V99.58h-4.74Zm-6.31,0h4.74V99.58h-4.74Zm-25.27,0h4.74V99.58h-4.74Zm-6.31,0H129V99.58h-4.73Zm-6.32,0h4.74V99.58h-4.74Zm-25.26,0h4.74V99.58H92.67Zm-6.32,0h4.74V99.58H86.35Zm-6.31,0h4.74V99.58H80Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Abbinder">
|
||||||
|
<text class="cls-7" transform="translate(820 846.69)">E<tspan class="cls-8" x="18.44" y="0">i</tspan><tspan x="26.53" y="0">ne </tspan><tspan class="cls-9" x="73.99" y="0">V</tspan><tspan class="cls-10" x="94.29" y="0">e</tspan><tspan class="cls-11" x="112.77" y="0">r</tspan><tspan x="124.49" y="0">a</tspan><tspan class="cls-12" x="145.04" y="0">n</tspan><tspan class="cls-13" x="163.87" y="0">s</tspan><tspan class="cls-14" x="175.73" y="0">t</tspan><tspan class="cls-15" x="189.8" y="0">a</tspan><tspan class="cls-10" x="210.7" y="0">lt</tspan><tspan class="cls-8" x="233.38" y="0">u</tspan><tspan class="cls-16" x="252.28" y="0">n</tspan><tspan x="270.58" y="0">g </tspan><tspan class="cls-14" x="302.01" y="0">v</tspan><tspan x="317.69" y="0">on:</tspan></text>
|
||||||
|
<g id="g643">
|
||||||
|
<g id="g645">
|
||||||
|
<path id="path647" d="M1003.27,937.15a6.94,6.94,0,1,1,7-6.93A6.76,6.76,0,0,1,1003.27,937.15Zm0-11.28c-2.43,0-3.84,1.64-3.84,4.34s1.41,4.33,3.84,4.33,3.82-1.62,3.82-4.33S1005.66,925.87,1003.27,925.87Z"/>
|
||||||
|
<path id="path649" d="M1019,932.46V937h-3.14V923.43h4.79c3.82,0,5.46,1.92,5.46,4.43,0,2.71-1.7,4.6-5.46,4.6Zm0-2.38h1.65c1.64,0,2.3-.82,2.3-2.22,0-1.23-.72-2.08-2.3-2.08h-1.64v4.3Z"/>
|
||||||
|
<path id="path651" d="M1040.62,923.43v2.42h-5.57V929h4.27v2.33h-4.27v3.23h5.57V937h-8.74V923.43Z"/>
|
||||||
|
<path id="path653" d="M1050,923.91l6.44,8.15c0-.52-.08-1-.08-1.45v-7.18h2.78V937h-1.64a1.22,1.22,0,0,1-1.1-.52l-6.39-8.09c0,.48.06.93.06,1.33V937h-2.78V923.43h1.65A1,1,0,0,1,1050,923.91Z"/>
|
||||||
|
<path id="path655" d="M1000.06,954.1h.5a1.14,1.14,0,0,0,1-.44l3.06-4.43a1.43,1.43,0,0,1,1.36-.62h2.74l-4,5.48a2.68,2.68,0,0,1-.92.82,2.25,2.25,0,0,1,1.18,1l4.1,6.29h-2.82a1.23,1.23,0,0,1-1.23-.58l-3.08-4.72a1.14,1.14,0,0,0-1.11-.47h-.76v5.77h-3.15V948.61h3.15v5.49Z"/>
|
||||||
|
<path id="path657" d="M1017.74,949.09l6.45,8.15c0-.52-.08-1-.08-1.45V948.6h2.77v13.57h-1.63a1.22,1.22,0,0,1-1.1-.52l-6.41-8.09c0,.47.06.93.06,1.33v7.28H1015V948.6h1.66A1.07,1.07,0,0,1,1017.74,949.09Z"/>
|
||||||
|
<path id="path659" d="M1040,962.33a6.94,6.94,0,1,1,7-6.94A6.75,6.75,0,0,1,1040,962.33Zm0-11.28c-2.42,0-3.84,1.64-3.84,4.33s1.42,4.33,3.84,4.33,3.82-1.61,3.82-4.33S1042.36,951.05,1040,951.05Z"/>
|
||||||
|
<path id="path661" d="M1050.45,948.61h2.64a1,1,0,0,1,1.05.68l1.86,7.08a10,10,0,0,1,.32,1.55c.12-.58.28-1.1.42-1.55l2.2-7.08a1.07,1.07,0,0,1,1-.68h.93a1,1,0,0,1,1,.68l2.18,7.08a12.87,12.87,0,0,1,.41,1.48c.1-.55.2-1,.31-1.48l1.87-7.08a1,1,0,0,1,1-.68h2.47L1066,962.18h-2.84l-2.56-8.41c-.08-.26-.18-.58-.27-.92a9.51,9.51,0,0,1-.27.92l-2.59,8.41h-2.84Z"/>
|
||||||
|
<path id="path663" d="M1079.05,959.66h5v2.52h-8.18V948.61h3.15v11Z"/>
|
||||||
|
<path id="path665" d="M1099.51,948.61V951h-5.57v3.17h4.27v2.33h-4.27v3.22h5.57v2.43h-8.74V948.61Z"/>
|
||||||
|
<path id="path667" d="M1111.41,962.18h-5.27V948.61h5.27c4.22,0,7,2.88,7,6.78S1115.62,962.18,1111.41,962.18Zm0-11.16h-2.1v8.73h2.1c2.41,0,3.82-1.65,3.82-4.37S1113.81,951,1111.41,951Z"/>
|
||||||
|
<path id="path669" d="M1132.56,959.49v-2h-1.34a.56.56,0,0,1-.63-.56v-1.74h4.82v5.74a8.31,8.31,0,0,1-5.2,1.45,6.77,6.77,0,0,1-6.94-6.94c0-4,2.8-6.93,7.18-6.93a7.15,7.15,0,0,1,5,1.82l-.91,1.39a.88.88,0,0,1-.71.42,1.25,1.25,0,0,1-.58-.18,4.94,4.94,0,0,0-3-.85c-2.35,0-3.84,1.74-3.84,4.33,0,2.87,1.67,4.53,4,4.53a5.36,5.36,0,0,0,2.1-.43Z"/>
|
||||||
|
<path id="path671" d="M1150.52,948.61V951H1145v3.17h4.27v2.33H1145v3.22h5.57v2.43h-8.74V948.61Z"/>
|
||||||
|
<path id="path673" d="M1005.65,973.78v2.42h-5.57v3.44h4.64v2.44h-4.64v5.28h-3.17V973.78Z"/>
|
||||||
|
<path id="path675" d="M1026.28,980.56a7.22,7.22,0,0,1-.51,2.74,6.78,6.78,0,0,1-1.43,2.21,6.59,6.59,0,0,1-2.23,1.46,8.12,8.12,0,0,1-5.77,0,6.38,6.38,0,0,1-3.67-3.67,7.66,7.66,0,0,1,0-5.47,6.4,6.4,0,0,1,3.67-3.66,8.12,8.12,0,0,1,5.77,0,6.42,6.42,0,0,1,3.66,3.66A7.48,7.48,0,0,1,1026.28,980.56Zm-3.23,0a6,6,0,0,0-.26-1.81,3.66,3.66,0,0,0-.75-1.36,3.23,3.23,0,0,0-1.19-.86,4.29,4.29,0,0,0-1.62-.3,4.11,4.11,0,0,0-1.62.3,3.26,3.26,0,0,0-1.2.86,4.06,4.06,0,0,0-.75,1.36,5.69,5.69,0,0,0-.27,1.81,6.07,6.07,0,0,0,.27,1.83,3.66,3.66,0,0,0,.75,1.36,3.16,3.16,0,0,0,1.2.85,4.67,4.67,0,0,0,3.24,0,3.2,3.2,0,0,0,1.19-.85,4,4,0,0,0,.75-1.36A6.08,6.08,0,0,0,1023.05,980.56Z"/>
|
||||||
|
<path id="path677" d="M1039,984.86a2.88,2.88,0,0,0,1.13-.21,2.43,2.43,0,0,0,.85-.6,2.64,2.64,0,0,0,.52-.95,4.21,4.21,0,0,0,.18-1.28v-8h3.14v8a6.3,6.3,0,0,1-.4,2.29,5.07,5.07,0,0,1-1.16,1.8,5.23,5.23,0,0,1-1.83,1.17,7.3,7.3,0,0,1-4.88,0,5,5,0,0,1-3-3,6.22,6.22,0,0,1-.4-2.29v-8h3.14v8a4.21,4.21,0,0,0,.18,1.28,2.87,2.87,0,0,0,.53,1,2.31,2.31,0,0,0,.84.6A3,3,0,0,0,1039,984.86Z"/>
|
||||||
|
<path id="path679" d="M1054.5,973.8a.91.91,0,0,1,.25.07.74.74,0,0,1,.21.15,2,2,0,0,1,.23.25l6.44,8.15c0-.26,0-.51-.05-.76s0-.48,0-.7v-7.18h2.78v13.58h-1.63a1.67,1.67,0,0,1-.62-.11,1.29,1.29,0,0,1-.48-.41l-6.4-8.09c0,.23,0,.47,0,.69s0,.44,0,.64v7.28h-2.78V973.78h1.66Z"/>
|
||||||
|
<path id="path681" d="M1084.5,980.56a7.08,7.08,0,0,1-.51,2.72,6.31,6.31,0,0,1-3.66,3.57,7.83,7.83,0,0,1-2.89.51h-5.27V973.78h5.27a7.9,7.9,0,0,1,2.89.51,6.69,6.69,0,0,1,2.22,1.41,6.4,6.4,0,0,1,1.44,2.15A7.14,7.14,0,0,1,1084.5,980.56Zm-3.23,0a6,6,0,0,0-.26-1.81,3.7,3.7,0,0,0-.75-1.37,3.25,3.25,0,0,0-1.19-.87,4.18,4.18,0,0,0-1.62-.3h-2.1v8.73h2.1a4.18,4.18,0,0,0,1.62-.3,3.23,3.23,0,0,0,1.19-.86,3.85,3.85,0,0,0,.75-1.37,6,6,0,0,0,.26-1.85Z"/>
|
||||||
|
<path id="path683" d="M1104.23,987.35h-2.43a1.09,1.09,0,0,1-.67-.19,1,1,0,0,1-.37-.49l-.81-2.37h-5.16l-.8,2.37a1.07,1.07,0,0,1-1,.68h-2.46l5.25-13.58H1099l5.24,13.58Zm-8.72-5.18h3.71l-1.24-3.72-.28-.83c-.11-.32-.21-.66-.32-1-.1.39-.2.74-.31,1.06s-.2.6-.3.84l-1.26,3.7Z"/>
|
||||||
|
<path id="path685" d="M1120.78,973.78v2.49H1117v11.08h-3.14V976.27H1110v-2.49Z"/>
|
||||||
|
<path id="path687" d="M1131.13,987.35H1128V973.77h3.17Z"/>
|
||||||
|
<path id="path689" d="M1152.63,980.56a7.22,7.22,0,0,1-.51,2.74,6.65,6.65,0,0,1-1.44,2.21,6.45,6.45,0,0,1-2.22,1.46,8.12,8.12,0,0,1-5.77,0,6.38,6.38,0,0,1-3.67-3.67,7.59,7.59,0,0,1,0-5.47,6.4,6.4,0,0,1,3.67-3.66,8.12,8.12,0,0,1,5.77,0,6.5,6.5,0,0,1,3.66,3.66A7.28,7.28,0,0,1,1152.63,980.56Zm-3.23,0a6,6,0,0,0-.26-1.81,3.66,3.66,0,0,0-.75-1.36,3.23,3.23,0,0,0-1.19-.86,4.37,4.37,0,0,0-1.62-.3,4.11,4.11,0,0,0-1.62.3,3.26,3.26,0,0,0-1.2.86,3.91,3.91,0,0,0-.76,1.36,6,6,0,0,0-.26,1.81,6.08,6.08,0,0,0,.26,1.83,3.54,3.54,0,0,0,.76,1.36,3.16,3.16,0,0,0,1.2.85,4.29,4.29,0,0,0,1.62.29,4.37,4.37,0,0,0,1.62-.29,3.2,3.2,0,0,0,1.19-.85,4,4,0,0,0,.75-1.36A5.78,5.78,0,0,0,1149.4,980.56Z"/>
|
||||||
|
<path id="path691" d="M1161.73,973.8a.91.91,0,0,1,.25.07.74.74,0,0,1,.21.15,2,2,0,0,1,.23.25l6.45,8.15c0-.26,0-.51,0-.76s0-.48,0-.7v-7.18h2.77v13.58h-1.63a1.58,1.58,0,0,1-.61-.11,1.2,1.2,0,0,1-.48-.41l-6.41-8.09c0,.23,0,.47,0,.69s0,.44,0,.64v7.28h-2.77V973.78h1.65l.34,0Z"/>
|
||||||
|
<rect id="rect693" x="921.66" y="905" width="43.58" height="5.26" transform="translate(-348.33 1120.21) rotate(-53.24)"/>
|
||||||
|
<rect id="rect695" x="916.5" y="907.98" width="20.99" height="5.26" transform="translate(-301.42 1334.32) rotate(-63.52)"/>
|
||||||
|
<rect id="rect697" x="901.39" y="898.07" width="33.01" height="5.26" transform="translate(-203.07 1530.95) rotate(-73.81)"/>
|
||||||
|
<polygon id="polygon699" points="903.44 893.53 908.68 894.07 906.52 914.95 901.28 914.4 903.44 893.53"/>
|
||||||
|
<polygon id="polygon701" points="895.12 890.89 896.91 914.34 891.66 914.74 889.87 891.29 895.12 890.89"/>
|
||||||
|
<polygon id="polygon703" points="883.28 899.89 887.35 915.46 882.26 916.79 878.19 901.23 883.28 899.89"/>
|
||||||
|
<rect id="rect705" x="870.74" y="909.06" width="5.26" height="10.79" transform="translate(-304.28 453.87) rotate(-24.96)"/>
|
||||||
|
<polygon id="polygon707" points="867.15 919.22 869.59 922.68 865.29 925.71 862.86 922.26 867.15 919.22"/>
|
||||||
|
<polygon id="polygon709" points="849.61 916.42 861.96 928.54 858.27 932.3 845.92 920.18 849.61 916.42"/>
|
||||||
|
<polygon id="polygon711" points="836.39 922.58 855.5 935.68 852.54 940.03 833.43 926.93 836.39 922.58"/>
|
||||||
|
<polygon id="polygon713" points="838.38 938.51 850.41 943.85 848.28 948.66 836.25 943.33 838.38 938.51"/>
|
||||||
|
<polygon id="polygon715" points="846.87 952.8 811.23 944.17 810 949.28 845.63 957.92 846.87 952.8"/>
|
||||||
|
<rect id="rect717" x="828.88" y="950.79" width="5.26" height="26.63" transform="translate(-179.28 1738.2) rotate(-86.67)"/>
|
||||||
|
<rect id="rect719" x="819.33" y="973.47" width="25.96" height="5.26" transform="translate(-111.9 107.78) rotate(-6.94)"/>
|
||||||
|
<rect id="rect721" x="841.33" y="982.18" width="6.03" height="5.26" transform="translate(-253.95 294.51) rotate(-17.24)"/>
|
||||||
|
<rect id="rect723" x="830.23" y="995.19" width="21.84" height="5.26" transform="translate(-365.84 501.47) rotate(-27.52)"/>
|
||||||
|
<rect id="rect725" x="834.93" y="1005.45" width="23.55" height="5.26" transform="translate(-440.21 730.63) rotate(-37.81)"/>
|
||||||
|
<rect id="rect727" x="843.3" y="1013.81" width="22.95" height="5.26" transform="translate(-472.62 973.87) rotate(-48.1)"/>
|
||||||
|
<rect id="rect729" x="862.15" y="1015.53" width="10.6" height="5.26" transform="translate(-454.33 1223.16) rotate(-58.39)"/>
|
||||||
|
<polygon id="polygon731" points="876.38 1016.99 881.28 1018.9 873.78 1038.12 868.87 1036.2 876.38 1016.99"/>
|
||||||
|
<rect id="rect733" x="876.84" y="1027.25" width="18.93" height="5.26" transform="translate(-294.31 1702.45) rotate(-78.95)"/>
|
||||||
|
<polygon id="polygon735" points="894.99 1021.59 900.25 1021.66 900.08 1034.83 894.82 1034.76 894.99 1021.59"/>
|
||||||
|
<polygon id="polygon737" points="909.81 1020.46 914.01 1045.58 908.82 1046.44 904.61 1021.34 909.81 1020.46"/>
|
||||||
|
<rect id="rect739" x="916.43" y="1017.99" width="5.26" height="15.38" transform="translate(-293.22 372.18) rotate(-19.81)"/>
|
||||||
|
<polygon id="polygon741" points="946.6 1045.67 927.51 1013.1 922.95 1015.74 942.04 1048.3 946.6 1045.67"/>
|
||||||
|
<polygon id="polygon743" points="934.99 1007.06 937.89 1010.04 934.09 1013.68 931.18 1010.7 934.99 1007.06"/>
|
||||||
|
<polygon id="polygon745" points="941.49 999.99 954.62 1010.75 951.27 1014.82 938.15 1004.06 941.49 999.99"/>
|
||||||
|
<polygon id="polygon747" points="946.5 991.77 959.91 999.22 957.36 1003.82 943.96 996.37 946.5 991.77"/>
|
||||||
|
<polygon id="polygon749" points="949.97 982.79 956.45 984.99 954.76 989.98 948.28 987.77 949.97 982.79"/>
|
||||||
|
<rect id="rect751" x="958.95" y="967.15" width="5.26" height="20.52" transform="translate(-146.89 1784.43) rotate(-81.52)"/>
|
||||||
|
<polygon id="polygon753" points="964.9 963.3 965.07 968.57 952.04 968.98 951.88 963.71 964.9 963.3"/>
|
||||||
|
<rect id="rect755" x="950.64" y="952.45" width="16.47" height="5.26" transform="translate(-178.88 222.19) rotate(-12.1)"/>
|
||||||
|
<polygon id="polygon757" points="957.34 940.9 959.34 945.77 948.96 950.05 946.95 945.18 957.34 940.9"/>
|
||||||
|
<polygon id="polygon759" points="969.59 919.24 972.42 923.68 944.94 941.3 942.1 936.87 969.59 919.24"/>
|
||||||
|
<polygon id="polygon761" points="939.99 925.69 943.58 929.54 939.42 933.41 935.84 929.56 939.99 925.69"/>
|
||||||
|
<path id="path763" d="M894.31,964a4.2,4.2,0,0,0-1.54-1.11,5.32,5.32,0,0,0-2.08-.39H888v11.27h2.72a5.37,5.37,0,0,0,2.09-.39,4.11,4.11,0,0,0,1.54-1.12,4.86,4.86,0,0,0,1-1.77,8.41,8.41,0,0,0,0-4.7A5.51,5.51,0,0,0,894.31,964Z"/>
|
||||||
|
<path id="path765" d="M931.46,969.07l-.12-3.86-11.7.36,11.45-2.44-.81-3.77-11.44,2.44,10.82-4.44-1.46-3.57-10.82,4.44,9.86-6.29-2.08-3.25L915.3,955l8.58-8-2.63-2.82-8.58,8,7-9.37-3.09-2.31-7,9.36,5.24-10.46-3.45-1.73-5.23,10.47,3.27-11.24-3.69-1.08L902.44,947l1.22-11.63-3.84-.4-1.26,12L897.62,935l-3.85.3.91,11.65-3-11.3-3.73,1,3,11.32-5-10.61L882.5,939l5,10.6L880.68,940l-3.15,2.22,6.77,9.56-8.36-8.19-2.7,2.75,8.36,8.19L871.92,948l-2.17,3.19,9.69,6.57L868.74,953l-1.57,3.53,10.71,4.73-11.38-2.75-.9,3.75L877,965l-11.68-.67-.22,3.85,11.69.67-11.62,1.42.47,3.83,11.62-1.42-11.18,3.47,1.14,3.69,11.18-3.48L868,981.8l1.78,3.42,10.38-5.42L870.92,987l2.37,3,9.24-7.18-7.81,8.71,2.88,2.58,7.81-8.71-6.14,10,3.29,2,6.14-10-4.26,10.91,3.59,1.4,4.26-10.91-2.24,11.49,3.79.74,2.24-11.47-.15,11.69,3.86.05.15-11.7,1.94,11.54,3.81-.64L903.75,989l4,11,3.63-1.3-4-11,5.86,10.13,3.34-1.94-5.86-10.12,7.58,8.91,2.93-2.5-7.58-8.92,9.05,7.42,2.44-3-9-7.43,10.23,5.7,1.88-3.37L918,976.92l11.08,3.76,1.24-3.64-11.07-3.77L930.79,975l.58-3.82-11.58-1.73,11.67-.38Zm-32.34,2.56a8,8,0,0,1-1.84,2.78,8.33,8.33,0,0,1-2.87,1.82,10.06,10.06,0,0,1-3.72.66h-6.81V959.36h6.81a9.86,9.86,0,0,1,3.72.67,8.63,8.63,0,0,1,2.87,1.82,8.24,8.24,0,0,1,1.84,2.77,9.06,9.06,0,0,1,.65,3.48A9.32,9.32,0,0,1,899.12,971.63ZM913,962.5h-7.18v4.09h5.5v3h-5.5v4.17H913v3.13H901.73V959.37H913Z"/>
|
||||||
|
<path id="path767" d="M1008.14,1002.79a7.56,7.56,0,0,1-.47,2.71,6.1,6.1,0,0,1-1.34,2.1,5.79,5.79,0,0,1-2.06,1.34,7.17,7.17,0,0,1-2.67.48h-5V996.14h5a7.17,7.17,0,0,1,2.67.48,5.83,5.83,0,0,1,2.06,1.36,6.05,6.05,0,0,1,1.34,2.09A7.57,7.57,0,0,1,1008.14,1002.79Zm-1.85,0a6.72,6.72,0,0,0-.33-2.19A4.75,4.75,0,0,0,1005,999a4.17,4.17,0,0,0-1.48-1,4.86,4.86,0,0,0-1.94-.36h-3.16V1008h3.16a5.23,5.23,0,0,0,1.94-.35,4,4,0,0,0,1.48-1,4.59,4.59,0,0,0,.94-1.63A6.72,6.72,0,0,0,1006.29,1002.79Z"/>
|
||||||
|
<path id="path769" d="M1024.27,996.14v1.46h-6.38V1002h5.16v1.41h-5.16V1008h6.38v1.46h-8.19V996.13Z"/>
|
||||||
|
<path id="path771" d="M1037.5,1008a3.6,3.6,0,0,0,1.47-.28,3,3,0,0,0,1.1-.78,3.29,3.29,0,0,0,.68-1.2,4.61,4.61,0,0,0,.24-1.52v-8.08h1.78v8.08a6.19,6.19,0,0,1-.36,2.13,4.94,4.94,0,0,1-1,1.71,4.86,4.86,0,0,1-1.67,1.12,5.71,5.71,0,0,1-2.2.41,5.58,5.58,0,0,1-2.21-.41,4.86,4.86,0,0,1-1.66-1.12,5,5,0,0,1-1.05-1.71,5.88,5.88,0,0,1-.37-2.13v-8.08H1034v8.07a4.89,4.89,0,0,0,.23,1.52,3.44,3.44,0,0,0,.68,1.2,3.14,3.14,0,0,0,1.1.78A3.57,3.57,0,0,0,1037.5,1008Z"/>
|
||||||
|
<path id="path773" d="M1060.41,996.14v1.51h-4.29v11.78h-1.79V997.65H1050v-1.51Z"/>
|
||||||
|
<path id="path775" d="M1074.59,998.23a.74.74,0,0,1-.17.21.36.36,0,0,1-.24.07.57.57,0,0,1-.36-.16c-.14-.1-.31-.22-.53-.35a4.28,4.28,0,0,0-.77-.36,3.44,3.44,0,0,0-1.09-.16,3.25,3.25,0,0,0-1.07.16,2.09,2.09,0,0,0-.77.45,1.78,1.78,0,0,0-.47.65,2.17,2.17,0,0,0-.16.81,1.5,1.5,0,0,0,.27.92,2.31,2.31,0,0,0,.72.62,6.14,6.14,0,0,0,1,.45l1.16.39a10.81,10.81,0,0,1,1.16.47,4.09,4.09,0,0,1,1,.64,3,3,0,0,1,.73,1,3.19,3.19,0,0,1,.27,1.39,4.46,4.46,0,0,1-.3,1.64,3.84,3.84,0,0,1-.87,1.33,4,4,0,0,1-1.4.89,5.25,5.25,0,0,1-1.88.32,5.57,5.57,0,0,1-2.35-.47,5.45,5.45,0,0,1-1.81-1.26l.52-.85a.73.73,0,0,1,.18-.17.39.39,0,0,1,.23-.07.71.71,0,0,1,.44.21c.17.14.37.29.62.46a4.53,4.53,0,0,0,.91.46,3.6,3.6,0,0,0,1.31.21,3.69,3.69,0,0,0,1.14-.17,2.37,2.37,0,0,0,.85-.49,2.13,2.13,0,0,0,.53-.76,2.66,2.66,0,0,0,.18-1,1.65,1.65,0,0,0-.27-1,2.24,2.24,0,0,0-.72-.64,5,5,0,0,0-1-.44l-1.17-.37c-.39-.13-.78-.27-1.16-.44a3.46,3.46,0,0,1-1-.66,3,3,0,0,1-.72-1,3.84,3.84,0,0,1,0-2.83,3.32,3.32,0,0,1,.79-1.17,3.69,3.69,0,0,1,1.28-.81,4.81,4.81,0,0,1,1.76-.3,5.67,5.67,0,0,1,2,.35,4.69,4.69,0,0,1,1.61,1Z"/>
|
||||||
|
<path id="path777" d="M1092.47,1006.69a.37.37,0,0,1,.27.12l.7.77a5.58,5.58,0,0,1-2,1.47,6.76,6.76,0,0,1-2.8.53,6.86,6.86,0,0,1-2.61-.49,5.63,5.63,0,0,1-2-1.39,6.42,6.42,0,0,1-1.29-2.15,7.82,7.82,0,0,1-.45-2.75,7.65,7.65,0,0,1,.48-2.76,6.38,6.38,0,0,1,1.37-2.15,6.16,6.16,0,0,1,2.1-1.39A7.22,7.22,0,0,1,1089,996a6.45,6.45,0,0,1,2.52.45,6.29,6.29,0,0,1,1.89,1.23l-.58.83a.54.54,0,0,1-.15.15.4.4,0,0,1-.24.06.45.45,0,0,1-.25-.09l-.32-.22-.44-.28a3.24,3.24,0,0,0-.59-.29,4.7,4.7,0,0,0-.79-.22,5.37,5.37,0,0,0-1-.09,5.22,5.22,0,0,0-2,.36,4.46,4.46,0,0,0-2.51,2.7,6.23,6.23,0,0,0-.36,2.18,6.32,6.32,0,0,0,.36,2.21,5.07,5.07,0,0,0,1,1.65,3.94,3.94,0,0,0,1.46,1,4.76,4.76,0,0,0,1.82.35,6.81,6.81,0,0,0,1.06-.07,4.61,4.61,0,0,0,.87-.22,3.3,3.3,0,0,0,.75-.38,7.43,7.43,0,0,0,.71-.54.68.68,0,0,1,.31-.11Z"/>
|
||||||
|
<path id="path779" d="M1112.06,1009.43h-1.8v-6h-7.16v6h-1.8V996.15h1.8v5.92h7.16v-5.92h1.8v13.28Z"/>
|
||||||
|
<path id="path781" d="M1122.59,1007.92h5.74v1.51h-7.55V996.15h1.8v11.77Z"/>
|
||||||
|
<path id="path783" d="M1146.74,1009.43h-1.39a.61.61,0,0,1-.39-.12.73.73,0,0,1-.22-.3l-1.24-3.21h-6l-1.24,3.21a.78.78,0,0,1-.22.3.56.56,0,0,1-.39.13h-1.39l5.31-13.28h1.82l5.32,13.27Zm-8.71-4.93h5l-2.09-5.4a10.6,10.6,0,0,1-.4-1.26c-.07.26-.14.49-.2.71s-.13.4-.19.56l-2.09,5.39Z"/>
|
||||||
|
<path id="path785" d="M1155.19,996.2a.94.94,0,0,1,.28.24l7.69,10c0-.17,0-.32,0-.48s0-.3,0-.44v-9.41h1.58v13.28h-.9a.7.7,0,0,1-.37-.08.8.8,0,0,1-.28-.25l-7.68-10,0,.45c0,.15,0,.28,0,.41v9.46h-1.58V996.12h.92a1.21,1.21,0,0,1,.35.08Z"/>
|
||||||
|
<path id="path787" d="M1184.92,1002.79a7.56,7.56,0,0,1-.47,2.71,6.07,6.07,0,0,1-1.33,2.1,5.79,5.79,0,0,1-2.06,1.34,7.21,7.21,0,0,1-2.67.48h-5V996.14h5a7.21,7.21,0,0,1,2.67.48,5.92,5.92,0,0,1,3.39,3.45A7.57,7.57,0,0,1,1184.92,1002.79Zm-1.84,0a6.72,6.72,0,0,0-.33-2.19,4.75,4.75,0,0,0-.94-1.63,4.12,4.12,0,0,0-1.49-1,5,5,0,0,0-1.93-.36h-3.16V1008h3.16a5.18,5.18,0,0,0,1.93-.35,4,4,0,0,0,1.49-1,4.59,4.59,0,0,0,.94-1.63A6.72,6.72,0,0,0,1183.08,1002.79Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<text class="cls-7" transform="translate(820 522.25)"><tspan class="cls-16">V</tspan><tspan class="cls-17" x="23.8" y="0">i</tspan><tspan class="cls-15" x="31.71" y="0">d</tspan><tspan class="cls-10" x="53.27" y="0">e</tspan><tspan x="71.75" y="0">o </tspan><tspan class="cls-18" x="102.27" y="0">b</tspan><tspan class="cls-17" x="122.29" y="0">y </tspan><tspan class="cls-9" x="149.13" y="0">V</tspan><tspan class="cls-10" x="169.43" y="0">e</tspan><tspan class="cls-19" x="187.91" y="0">r</tspan><tspan class="cls-17" x="200.34" y="0">s</tspan><tspan class="cls-12" x="212.9" y="0">c</tspan><tspan class="cls-16" x="232.33" y="0">h</tspan><tspan x="250.7" y="0">wör</tspan><tspan class="cls-8" x="309.26" y="0">hau</tspan><tspan x="367.77" y="0">s / C3</tspan><tspan class="cls-20" x="459.16" y="0">V</tspan><tspan class="cls-17" x="480.16" y="0">OC</tspan></text>
|
||||||
|
<text class="cls-7" transform="translate(820 603.36)">CC BY 4.0 J<tspan class="cls-21" x="187.56" y="0">u</tspan><tspan x="206.11" y="0">g</tspan><tspan class="cls-10" x="227.39" y="0">e</tspan><tspan class="cls-22" x="245.87" y="0">n</tspan><tspan class="cls-23" x="264.18" y="0">d </tspan><tspan class="cls-12" x="295.54" y="0">h</tspan><tspan x="314.44" y="0">ac</tspan><tspan class="cls-16" x="354.23" y="0">k</tspan><tspan x="370.26" y="0">t</tspan></text>
|
||||||
|
<g id="g789">
|
||||||
|
<path id="path2161" d="M1470.8,567.25c-2.4-1.6-3.7-4.3-3.9-8.2-.2-2.9.1-5.1,1.4-10.2,1.1-4.6,1.3-5.5,1.3-8.3l.1-2.4-.3-.6-.4-.6c-.1,0-1.6,1.8-2.6,3a16.51,16.51,0,0,0-3.4,7.8l-.1.9-.6.1c-1.3.3-1.3.3-1.5-.4a12.57,12.57,0,0,1,.2-4.3,28.9,28.9,0,0,1,3-5.6,25.93,25.93,0,0,0,3.1-5.7c.3-1,.4-1.1,1.9-1.2l1.1-.1.4,1a18.11,18.11,0,0,1,1.4,6.6c.1,3-.2,5.7-1.5,12.3-1.1,5.7-1.1,5.6-.8,7.4.6,3.1,1.3,4.9,2.8,6.4.3.4.4.4.3,1.2a3.09,3.09,0,0,1-.2,1.1c-.2.5-.7.4-1.7-.2ZM1459.7,555h-.5l.1-.5a2.32,2.32,0,0,1,1.4-1.8c.6-.3.9-.3,2.6-.4,1.1-.1,2.2-.1,2.4-.1h.5v1.2c0,1.4.4,1.2-2.9,1.5a15.25,15.25,0,0,1-3.6.1Zm11.2-1.6a2.7,2.7,0,0,1,.3-1.7,7.47,7.47,0,0,1,2.2-2.2,8.26,8.26,0,0,0,2.3-2.4c.7-1.3,1.1-5.5.8-7.7a17.5,17.5,0,0,0-4-8.6,5,5,0,0,1-.6-.8,7,7,0,0,1,1.3-1.3c.9-.9,1.3-1.2,1.4-1a49.72,49.72,0,0,0,2.7,5,7.09,7.09,0,0,0,3.7,2.8c.3.1.8.2,1,.3.7.3,1.6.2,3.2-.1,2.3-.5,3.1-.4,3.6.7.4.9.4,1.1-.8,1.5a14.12,14.12,0,0,1-7.4.1c-.8-.2-1.1-.2-1.2-.1s-.2,1.2,0,3a6,6,0,0,1-.2,2.6,14,14,0,0,1-4.2,8.2,5.29,5.29,0,0,1-1.7,1.2,8.43,8.43,0,0,0-1.4.6l-.7.4Zm-7-21.9a5.9,5.9,0,0,1-.8-.4c-.4-.2-.4-.3-.4-.7V530l.8-.1a9.61,9.61,0,0,0,5.4-2.2c1.8-1.4,3.3-3.5,5.8-7.7a8.66,8.66,0,0,1,1.4-2.1c.3,0,.8.6.9,1.1.2.7-.8,3.8-1.7,5.7a12.71,12.71,0,0,1-8.4,6.8,7.53,7.53,0,0,1-3,0Zm-61.8-1.7-20.1-.1-.4-.3a7.2,7.2,0,0,1-1.6-3.3,45.25,45.25,0,0,1-1.1-8.5c-.1-1.3-.2-4.2-.4-6.4a58.65,58.65,0,0,1,.1-11.1c.5-6.1,1.5-9.8,2.7-10.6.3-.2,4-.5,15.9-1,11.2-.5,23.2-.1,30,1,1.5.2,1.8.5,2.5,1.9a13.69,13.69,0,0,1,1.3,5.1c.1,2.1.1,2.6-.3,2.7a7.38,7.38,0,0,1-2.1,0c-.4-.2-.6-1-.8-2.6-.4-3.4-1-4.1-3.6-4.7-2.8-.7-7.1-.9-15.7-.9-8.3,0-14.8.3-21.2.8-1.6.1-2.1.2-2.5.5-1.3.6-2.2,2.2-2.8,4.5-.4,1.8-.5,2.9-.7,8.6-.2,8.2.1,12.1,1.3,16.4.7,2.6,1.3,3.4,2.8,4.2,1.7.8,1,.8,17.8.8,14.6,0,19.4-.1,21.3-.4s2.8-2.1,3.3-6.1c.3-1.8.3-2,.7-2.3a1.26,1.26,0,0,1,2.1.2c.4.7.3,2.8-.2,5.1a21.36,21.36,0,0,1-1.5,5.2c-.6.7-2.5,1.2-5.3,1.3-.7.1-10.5,0-21.5,0Zm56.5-2a4.35,4.35,0,0,1-1.9-1l-.5-.4.3-.2c.4-.4,1.4-.6,3.2-.8a14.94,14.94,0,0,0,2.2-.4,17.14,17.14,0,0,0,8.2-5.3,52.86,52.86,0,0,0,4.3-5.3c0-.1.3-.2.6-.2.6,0,.6-.1,0,1.8a18.79,18.79,0,0,1-8.3,10.2c-.9.6-1.1.6-3.9,1.2-3.1.6-3.2.6-4.2.4Zm-17-14.4c4.5-.1,8.2,0,10.5.1,1.9.1,3.5.1,3.5.1a6.9,6.9,0,0,0-2.2-1.1c-1.7-.5-2.5-.5-10-.6-4.1-.1-10.7-.2-14.8-.3-11.1-.2-1.6-.2-2.5,0a13.83,13.83,0,0,0-4.4,2.1c-1.3,1-2.7,2.6-6.2,6.9l-3.7,4.7h-1.3c-1.1,0-1.3,0-1.2-.2s4.7-6.6,5.7-7.9a45.83,45.83,0,0,1,6.3-6.6,8.55,8.55,0,0,1,3.9-1.2c1.8-.2,5.7-.2,16.9,0,9.5.2,9.3.1,12,1a4,4,0,0,0,1.6.4.91.91,0,0,0-.3-.5,5.59,5.59,0,0,0-2.4-1.6c-1.7-.6-2.3-.7-12-.8-8.7-.1-2.1-.2-12.5-.5l-4.9-.2-.7-.4c-1.3-.6-2.3-1.8-7.4-8.1-2.7-3.4-4.9-6.1-4.9-6.2a16.17,16.17,0,0,1,3,.2c.1.1,1.4,1.8,2.9,3.8,3.2,4.3,4.2,5.5,5.7,6.9a9.3,9.3,0,0,0,3.7,2.4c1.8.4-4.8,0,5.9-.2,12.4-.2,16.6-.1,18.6.4a22.37,22.37,0,0,1,4.6,1.6,9.42,9.42,0,0,0,1,.4c.1-.1-.4-.8-.9-1.3-1.8-1.7-4.5-2.7-7.8-3.1-1.3-.1-13.5-1.4-17.3-.6-2,.4-2.8-.7-2.5-1.8,5.9-1,15.3-.1,16.2-.1a30.49,30.49,0,0,1,10.5,2.6,6.29,6.29,0,0,1,2.6,1.9,29.1,29.1,0,0,1,4.8,7l.5,1.1v-.8c-.1-1.7-2.6-5.8-6.5-10.7a14.49,14.49,0,0,1-1.3-1.8c0-.2.5-.5.9-.5a5.78,5.78,0,0,1,2.7,1.8c3.4,4.2,5.5,7.7,6.5,10.6a5.29,5.29,0,0,0,.7,1.5l.3.3.4-.4.4-.4-.3-1.1c-.7-2.5-1.5-4-4.5-8.8-2.3-3.7-2.3-3.7-1.3-3.7a2.21,2.21,0,0,1,1.4.6,7.91,7.91,0,0,1,1.1.8c.3.3,2.8,4.5,3.7,6.2a31.14,31.14,0,0,1,1.2,3c.6,2.1.7,2.1,1.4,1.5.5-.4.5-.4.4-1.1a29.49,29.49,0,0,0-2.1-6.7,5.84,5.84,0,0,1-.5-1.3c0-.1.2-.3.4-.6s.4-.4.7-.2a6.15,6.15,0,0,1,2,2.2,30.69,30.69,0,0,1,1.1,3.1c.4,1.3.8,2.4.8,2.4s.3-.2.5-.5c1-1.3,1.4-1.5,1.9-.9.3.4.3.8,0,1.8s-.3,1.2.1,1.4a1.09,1.09,0,0,0,.5.1c.2,0,.2.3-.1,1.2a13.35,13.35,0,0,1-5.6,6.6,18.68,18.68,0,0,1-9.7,3.2,5,5,0,0,1-3.5-.7c-.6-.4-.7-.8-.1-1.2a7.66,7.66,0,0,1,3.3-.8,17.8,17.8,0,0,0,12.8-6.1c.5-.6.5-.6.1-.4a31,31,0,0,1-11,4.8,12.8,12.8,0,0,1-3,.2,11.06,11.06,0,0,1-4.4-.9c-.7-.3-.8-.5-.8-1.4v-.5l-10.2-.1c-5.6,0-14,.9-13-1.3-.6-.6,8.2-.7,12.1-.7Z"/>
|
||||||
|
<path id="path3041" d="M1398.4,494.55a13.8,13.8,0,1,0,13.5,13.8A13.64,13.64,0,0,0,1398.4,494.55Zm-5.7,4.6,7.6,4.6,7.6,4.6-7.7,4.4-7.7,4.4.1-9Z"/>
|
||||||
|
</g>
|
||||||
|
<text class="cls-7" transform="translate(820 684.47)"><tspan class="cls-8">j</tspan><tspan class="cls-21" x="8.08" y="0">u</tspan><tspan x="26.63" y="0">g</tspan><tspan class="cls-10" x="47.91" y="0">e</tspan><tspan class="cls-22" x="66.39" y="0">n</tspan><tspan class="cls-15" x="84.7" y="0">d</tspan><tspan class="cls-8" x="106.26" y="0">h</tspan><tspan class="cls-23" x="125.16" y="0">ac</tspan><tspan class="cls-16" x="164.95" y="0">k</tspan><tspan class="cls-24" x="180.98" y="0">t</tspan><tspan class="cls-25" x="193.3" y="0">.</tspan><tspan class="cls-17" x="199.85" y="0">o</tspan><tspan class="cls-26" x="220.22" y="0">r</tspan><tspan x="231.07" y="0">g</tspan></text>
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<path class="cls-27" d="M1354.41,960.36v10.51c0,1.12-.24,2.23-1.62,2.23s-1.62-1.11-1.62-2.23V960.05c0-.54.07-1.55-.77-1.55-.38,0-.61.3-.88.54l-1.42,1.32v10.51c0,1.12-.23,2.23-1.61,2.23s-1.62-1.11-1.62-2.23V957.22c0-1.15.3-2.29,1.68-2.29a1.58,1.58,0,0,1,1.55,1.28l.27-.2a3.61,3.61,0,0,1,2.46-1.08,3.56,3.56,0,0,1,3,1.62l.27-.27a3.2,3.2,0,0,1,2.83-1.35,3.34,3.34,0,0,1,2.7,1.31,4.74,4.74,0,0,1,.77,3.24l.34,11.19c0,1.15-.13,2.43-1.58,2.43s-1.59-1.11-1.62-2.19l-.34-10.69c0-.57.14-1.72-.74-1.72-.47,0-1.08.81-1.35,1.11Z"/>
|
||||||
|
<path class="cls-27" d="M1374.23,973.1a3.43,3.43,0,0,1-2.9-.88L1370,971a4,4,0,0,1-1.65-3.64v-6.24a4.27,4.27,0,0,1,1.58-3.88l1.15-1a4.32,4.32,0,0,1,3.57-1.35h3a4.63,4.63,0,0,1,3.57,1.18l1.31,1c1.49,1.18,1.69,2.43,1.69,4.22V964c0,1.86-.3,2.4-2.22,2.4h-10.39v1.07a1.62,1.62,0,0,0,.47,1l.81.88a2.73,2.73,0,0,0,2.16.6h7c1.07,0,2.22.24,2.22,1.62s-1.28,1.62-2.22,1.62Zm-2.7-10h9.37v-2c0-.6,0-1.11-.4-1.51l-1.25-1.08a2.29,2.29,0,0,0-1.55-.41H1375a2.6,2.6,0,0,0-1.65.37l-1.11.81a1.48,1.48,0,0,0-.68,1.49Z"/>
|
||||||
|
<path class="cls-27" d="M1400.59,954.93c1.11,0,2,.6,3.2,1.78l.54.58v-6.81c0-1.11.24-2.23,1.62-2.23s1.62,1.12,1.62,2.23v20.36c0,1.11-.24,2.26-1.62,2.26s-1.62-1.08-1.62-2.16v-.2l-.71.71a5.15,5.15,0,0,1-3.1,1.65h-3.13a5,5,0,0,1-2.77-1.15l-1.11-.94a4.19,4.19,0,0,1-1.79-3.74v-6.51a4.18,4.18,0,0,1,1.79-3.74l1.11-.95a4.08,4.08,0,0,1,3.1-1.14ZM1395,966c0,.91,0,2,.51,2.46l1,.77a2.14,2.14,0,0,0,1.22.64H1400a2.69,2.69,0,0,0,1.58-.81l1.86-1.58c.47-.41.94-.81.94-1.42V962c0-.6-.47-1-.94-1.41l-1.86-1.59a2.69,2.69,0,0,0-1.58-.81h-2.29a2.21,2.21,0,0,0-1.22.64l-1,.78c-.51.4-.51,1.55-.51,2.46Z"/>
|
||||||
|
<path class="cls-27" d="M1424.76,969.86h2.43c1.08,0,2.22.24,2.22,1.62s-1.28,1.62-2.22,1.62H1419c-.94,0-2.22-.2-2.22-1.62s1.14-1.62,2.22-1.62h2.56v-11.7H1419c-.94,0-2.22-.2-2.22-1.61s1.14-1.62,2.22-1.62h3.41c1.85,0,2.39.33,2.39,2.26Zm-4.89-21.47a1.34,1.34,0,0,1,1.52-1.52h1.85a1.34,1.34,0,0,1,1.52,1.52v1.55a1.34,1.34,0,0,1-1.52,1.52h-1.85a1.34,1.34,0,0,1-1.52-1.52Z"/>
|
||||||
|
<path class="cls-27" d="M1444,958.16c-1,0-2.23-.2-2.23-1.61s1.15-1.62,2.23-1.62h4.45a5.12,5.12,0,0,1,4.18,1.45,4.67,4.67,0,0,1,1.45,3.84l.34,11c0,.94-.44,1.89-1.52,1.89a1.65,1.65,0,0,1-1.65-1.62l-2.23,1.15a2.94,2.94,0,0,1-2,.47h-3.1a5,5,0,0,1-3.67-1.15,4.52,4.52,0,0,1-1.69-4v-1.41a4.23,4.23,0,0,1,1.58-3.61,5.32,5.32,0,0,1,3.78-1.21h7V961c0-2.43-.54-2.84-2.87-2.84Zm0,6.81c-.87,0-2.15.24-2.15,1.42v2.16c0,1.08,1.31,1.31,2.09,1.31h3.57l3.57-1.85v-.71c0-1.79-.5-2.33-2.29-2.33Z"/>
|
||||||
|
<path class="cls-27" d="M1471.62,969.86H1474c1.08,0,2.23.24,2.23,1.62s-1.28,1.62-2.23,1.62h-8.22c-1,0-2.23-.2-2.23-1.62s1.15-1.62,2.23-1.62h2.56V951.49h-2.56c-1,0-2.23-.2-2.23-1.62s1.15-1.62,2.23-1.62h3.4c1.86,0,2.4.34,2.4,2.26Z"/>
|
||||||
|
<path class="cls-27" d="M1491.37,973.1a3.43,3.43,0,0,1-2.9-.88l-1.38-1.21a4,4,0,0,1-1.65-3.64v-6.24a4.27,4.27,0,0,1,1.58-3.88l1.15-1a4.34,4.34,0,0,1,3.57-1.35h3a4.63,4.63,0,0,1,3.57,1.18l1.32,1c1.48,1.18,1.68,2.43,1.68,4.22V964c0,1.86-.3,2.4-2.22,2.4h-10.39v1.07a1.58,1.58,0,0,0,.48,1l.81.88c.43.47,1.07.6,2.15.6h7c1.08,0,2.22.24,2.22,1.62s-1.28,1.62-2.22,1.62Zm-2.7-10h9.38v-2c0-.6,0-1.11-.41-1.51l-1.25-1.08a2.29,2.29,0,0,0-1.55-.41h-2.73a2.62,2.62,0,0,0-1.65.37l-1.11.81a1.48,1.48,0,0,0-.68,1.49Z"/>
|
||||||
|
<path class="cls-27" d="M1548.14,966.09c0,2.32-.17,3.2-2.06,4.68l-1.95,1.55c-.68.54-1.72,1.45-2.6,1.45h-2.19c-1.45,0-2.12-.94-3.17-1.92l-.64-.61v6.51c0,1.11-.24,2.23-1.62,2.23s-1.62-1.12-1.62-2.23V957.32c0-1.15.14-2.39,1.62-2.39,1.32,0,1.62,1,1.62,2.12v.41l.64-.58c.84-.74,2.13-2,3-2h2.22c.78,0,1.82.81,2.7,1.48l1.95,1.52c1.89,1.48,2.06,2.39,2.06,4.68Zm-3.24-3.91a1.66,1.66,0,0,0-.67-1.42l-2.43-2a1.78,1.78,0,0,0-1.11-.58h-.84c-.48,0-1,.61-1.39,1l-2,1.92a2.12,2.12,0,0,0-.91,1.72v3.17a2,2,0,0,0,.47,1.38l2.46,2.33c.48.47,1,.91,1.39.91h.84a1.78,1.78,0,0,0,1.11-.58l2.43-2a1.66,1.66,0,0,0,.67-1.42Z"/>
|
||||||
|
<path class="cls-27" d="M1560.48,958.16h-.91c-1,0-2.23-.2-2.23-1.61s1.15-1.62,2.23-1.62h.91v-.44c0-1.85.1-3.2,1.55-4.62s3-1.62,5-1.62h2.19c1.11,0,2.36.1,2.36,1.62s-1.11,1.62-2.23,1.62h-2.53c-2.19,0-3.1.44-3.1,2.8v.64h2.87c1.08,0,2.22.23,2.22,1.62s-1.28,1.61-2.22,1.61h-2.87v12.71c0,1.12-.23,2.23-1.62,2.23s-1.61-1.11-1.61-2.23Z"/>
|
||||||
|
<path class="cls-27" d="M1584.58,958.16c-.94,0-2.23-.2-2.23-1.61s1.15-1.62,2.23-1.62H1589a5.11,5.11,0,0,1,4.18,1.45,4.64,4.64,0,0,1,1.45,3.84l.34,11c0,.94-.44,1.89-1.52,1.89a1.65,1.65,0,0,1-1.65-1.62l-2.23,1.15a2.94,2.94,0,0,1-2,.47h-3.1a5,5,0,0,1-3.67-1.15,4.52,4.52,0,0,1-1.69-4v-1.41a4.22,4.22,0,0,1,1.59-3.61,5.29,5.29,0,0,1,3.77-1.21h7V961c0-2.43-.54-2.84-2.87-2.84Zm0,6.81c-.88,0-2.16.24-2.16,1.42v2.16c0,1.08,1.31,1.31,2.09,1.31h3.57l3.58-1.85v-.71c0-1.79-.51-2.33-2.3-2.33Z"/>
|
||||||
|
<path class="cls-27" d="M1611.45,954.93c1.11,0,2,.6,3.2,1.78l.54.58v-6.81c0-1.11.23-2.23,1.62-2.23s1.61,1.12,1.61,2.23v20.36c0,1.11-.23,2.26-1.61,2.26s-1.62-1.08-1.62-2.16v-.2l-.71.71a5.15,5.15,0,0,1-3.1,1.65h-3.14a5,5,0,0,1-2.76-1.15l-1.11-.94a4.19,4.19,0,0,1-1.79-3.74v-6.51a4.18,4.18,0,0,1,1.79-3.74l1.11-.95a4.07,4.07,0,0,1,3.1-1.14ZM1605.82,966c0,.91,0,2,.5,2.46l1,.77a2.12,2.12,0,0,0,1.21.64h2.3a2.72,2.72,0,0,0,1.58-.81l1.85-1.58c.48-.41,1-.81,1-1.42V962c0-.6-.47-1-1-1.41l-1.85-1.59a2.72,2.72,0,0,0-1.58-.81h-2.3a2.18,2.18,0,0,0-1.21.64l-1,.78c-.5.4-.5,1.55-.5,2.46Z"/>
|
||||||
|
<path class="cls-27" d="M1631.94,973.1a3.43,3.43,0,0,1-2.9-.88l-1.38-1.21a4,4,0,0,1-1.65-3.64v-6.24a4.27,4.27,0,0,1,1.58-3.88l1.15-1a4.34,4.34,0,0,1,3.57-1.35h3a4.62,4.62,0,0,1,3.57,1.18l1.32,1c1.48,1.18,1.68,2.43,1.68,4.22V964c0,1.86-.3,2.4-2.22,2.4h-10.39v1.07a1.58,1.58,0,0,0,.48,1l.81.88a2.71,2.71,0,0,0,2.15.6h7c1.08,0,2.22.24,2.22,1.62s-1.28,1.62-2.22,1.62Zm-2.7-10h9.38v-2c0-.6,0-1.11-.41-1.51l-1.25-1.08a2.29,2.29,0,0,0-1.55-.41h-2.73a2.62,2.62,0,0,0-1.65.37l-1.11.81a1.48,1.48,0,0,0-.68,1.49Z"/>
|
||||||
|
<path class="cls-27" d="M1672.87,961a4.34,4.34,0,0,1,2.05-4.21c1.59-1.32,2.33-1.82,4.59-1.82h2.56c2.26,0,3,.5,4.58,1.82s2.06,2,2.06,4.21v6.1c0,2.13-.54,2.94-2.22,4.35a5.39,5.39,0,0,1-4.42,1.69h-2.56a5.39,5.39,0,0,1-4.42-1.69c-1.68-1.41-2.22-2.22-2.22-4.35Zm3.23,6.1c0,.68.24,1.12,1.18,1.93a3,3,0,0,0,2.23.87h2.56a3,3,0,0,0,2.22-.87c1-.81,1.18-1.25,1.18-1.93V961c0-.67-.23-1.11-1.18-1.92a2.92,2.92,0,0,0-2.22-.88h-2.56a3,3,0,0,0-2.23.88c-.94.81-1.18,1.25-1.18,1.92Z"/>
|
||||||
|
<path class="cls-27" d="M1696.29,957.32c0-1.18.14-2.39,1.62-2.39,1.28,0,1.62,1.08,1.62,2.16v1.31l2.53-2.09a4.85,4.85,0,0,1,2.86-1.38h2.6a4.26,4.26,0,0,1,3.17,1.28,4.72,4.72,0,0,1,1.45,3.67c0,1.12-.2,2.26-1.59,2.26-1.18,0-1.65-.94-1.65-2a2.14,2.14,0,0,0-.33-1.41c-.41-.58-1.18-.58-2-.58h-.94a2.52,2.52,0,0,0-1.62.78l-4.52,3.74v8.19c0,1.12-.24,2.23-1.62,2.23s-1.62-1.11-1.62-2.23Z"/>
|
||||||
|
<path class="cls-27" d="M1719.72,961a4.59,4.59,0,0,1,1.12-3.4l2.36-1.86a2.86,2.86,0,0,1,2-.77h3.13a6,6,0,0,1,3.17,1.62l.81.64v-.37a1.67,1.67,0,0,1,1.65-1.89c1.42,0,1.59,1.18,1.59,2.26V973c0,2.93-.24,3.54-1.59,4.68l-1.08.91a5.11,5.11,0,0,1-4,1.39h-5.36c-1,0-2.23-.21-2.23-1.62s1.15-1.62,2.23-1.62h5.93a2.33,2.33,0,0,0,1.62-.74l.81-.74a1.92,1.92,0,0,0,.47-1.35v-4.45l-.67.67a4.58,4.58,0,0,1-2.67,1.59h-3.81a3.27,3.27,0,0,1-2.42-1l-2-1.82a3.51,3.51,0,0,1-1-3Zm3.24,4.45c0,.68,0,1.38.4,1.69l1.35,1.08a1.41,1.41,0,0,0,1,.3H1728a2.88,2.88,0,0,0,1.48-.84l2.49-2.06a1.46,1.46,0,0,0,.34-1.08v-2.36a1.48,1.48,0,0,0-.34-1.08l-2.49-2a2.84,2.84,0,0,0-1.48-.85h-2.36a1.41,1.41,0,0,0-1,.31l-1.35,1.08c-.37.3-.4,1-.4,1.68Z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path class="cls-28" d="M1433.69,999.7v-3a.94.94,0,0,1,1.88,0v3a2,2,0,0,1-.11.73l-3.59,9.14c-.19.47-.36.83-.94.83s-.75-.36-.94-.83l-3.58-9.14a1.84,1.84,0,0,1-.12-.73v-3a.94.94,0,0,1,1.88,0v3l2.76,7.17Z"/>
|
||||||
|
<path class="cls-28" d="M1442.87,1010.37a1.9,1.9,0,0,1-1.61-.49l-.77-.68a2.25,2.25,0,0,1-.92-2v-3.47a2.38,2.38,0,0,1,.88-2.16l.64-.54a2.43,2.43,0,0,1,2-.75h1.65a2.58,2.58,0,0,1,2,.65l.73.59a2.53,2.53,0,0,1,.94,2.34v1.45c0,1-.17,1.33-1.24,1.33h-5.78v.6a.89.89,0,0,0,.26.53l.45.49a1.56,1.56,0,0,0,1.21.33h3.86c.6,0,1.24.14,1.24.91s-.71.9-1.24.9Zm-1.5-5.56h5.22v-1.09c0-.34,0-.62-.22-.84l-.7-.61a1.3,1.3,0,0,0-.86-.22h-1.52a1.43,1.43,0,0,0-.92.21l-.62.45a.81.81,0,0,0-.38.82Z"/>
|
||||||
|
<path class="cls-28" d="M1452.62,1001.58c0-.66.07-1.33.9-1.33s.9.6.9,1.2v.73l1.41-1.16a2.67,2.67,0,0,1,1.6-.77h1.44a2.37,2.37,0,0,1,1.77.71,2.63,2.63,0,0,1,.8,2c0,.62-.11,1.26-.88,1.26s-.92-.53-.92-1.11a1.17,1.17,0,0,0-.19-.79c-.22-.32-.65-.32-1.09-.32h-.52a1.4,1.4,0,0,0-.9.43l-2.52,2.09v4.56c0,.62-.13,1.24-.9,1.24s-.9-.62-.9-1.24Z"/>
|
||||||
|
<path class="cls-28" d="M1469,1010.37a1.91,1.91,0,0,1-1.62-.49l-.77-.68a2.25,2.25,0,0,1-.92-2v-3.47a2.38,2.38,0,0,1,.88-2.16l.64-.54a2.44,2.44,0,0,1,2-.75h1.65a2.57,2.57,0,0,1,2,.65l.74.59a2.55,2.55,0,0,1,.93,2.34v1.45c0,1-.16,1.33-1.23,1.33h-5.79v.6a.85.85,0,0,0,.27.53l.45.49c.24.26.6.33,1.2.33h3.87c.6,0,1.23.14,1.23.91s-.71.9-1.23.9Zm-1.51-5.56h5.22v-1.09c0-.34,0-.62-.22-.84l-.7-.61a1.3,1.3,0,0,0-.86-.22h-1.52a1.43,1.43,0,0,0-.92.21l-.62.45a.81.81,0,0,0-.38.82Z"/>
|
||||||
|
<path class="cls-28" d="M1484.07,1008.56h1.35c.6,0,1.24.14,1.24.91s-.71.9-1.24.9h-4.58c-.52,0-1.24-.12-1.24-.9s.64-.91,1.24-.91h1.43v-6.51h-1.43c-.52,0-1.24-.11-1.24-.9s.64-.9,1.24-.9h1.9c1,0,1.33.19,1.33,1.25Zm-2.72-12a.74.74,0,0,1,.84-.84h1a.74.74,0,0,1,.84.84v.87a.74.74,0,0,1-.84.84h-1a.74.74,0,0,1-.84-.84Z"/>
|
||||||
|
<path class="cls-28" d="M1493.57,1003.89v5.24c0,.62-.13,1.24-.9,1.24s-.9-.62-.9-1.24v-7.55c0-.66.08-1.33.9-1.33s.9.67.9,1.31v.25l1.47-1a3,3,0,0,1,1.56-.6h1.33a2.31,2.31,0,0,1,1.67.65c.81.7.77,1.47.81,2.45l.19,5.67c0,.63-.08,1.35-.89,1.35s-.88-.62-.9-1.22l-.19-5.56c0-1.11-.13-1.54-1.22-1.54h-.6a1.13,1.13,0,0,0-.56.17Z"/>
|
||||||
|
<path class="cls-28" d="M1520.52,1002.05H1520c-.52,0-1.24-.11-1.24-.9s.64-.9,1.24-.9h.51V1000a3.09,3.09,0,0,1,.86-2.57,3.46,3.46,0,0,1,2.78-.9h1.22c.62,0,1.32.06,1.32.9s-.62.9-1.24.9h-1.41c-1.22,0-1.73.25-1.73,1.56v.36h1.6c.6,0,1.24.13,1.24.9s-.72.9-1.24.9h-1.6v7.08c0,.62-.13,1.24-.9,1.24s-.9-.62-.9-1.24Z"/>
|
||||||
|
<path class="cls-28" d="M1539.75,1009c0,.42.07,1.34-.88,1.34-.77,0-.91-.64-.91-1.26v-.3l-1.46,1a3,3,0,0,1-1.56.6h-1.33a2.49,2.49,0,0,1-1.67-.66,2.85,2.85,0,0,1-.83-2.44l-.19-5.67c0-.66.08-1.35.91-1.35s.86.65.88,1.24l.19,5.53a2.88,2.88,0,0,0,.18,1.17c.15.26.62.37,1.05.37h.61a1,1,0,0,0,.56-.16l2.65-1.68v-5.23c0-.62.13-1.24.9-1.24s.9.62.9,1.24Zm-5.93-10.94c0,.56-.25,1.14-.94,1.14s-.94-.58-.94-1.14v-1.17c0-.63.26-1.16.94-1.16s.94.53.94,1.16Zm4.78,0c0,.56-.24,1.14-.94,1.14s-.93-.58-.93-1.14v-1.17c0-.63.26-1.16.93-1.16s.94.53.94,1.16Z"/>
|
||||||
|
<path class="cls-28" d="M1544,1001.58c0-.66.08-1.33.91-1.33s.9.6.9,1.2v.73l1.41-1.16a2.64,2.64,0,0,1,1.59-.77h1.45a2.37,2.37,0,0,1,1.76.71,2.64,2.64,0,0,1,.81,2c0,.62-.11,1.26-.88,1.26s-.92-.53-.92-1.11a1.17,1.17,0,0,0-.19-.79c-.23-.32-.66-.32-1.09-.32h-.53a1.43,1.43,0,0,0-.9.43l-2.51,2.09v4.56c0,.62-.13,1.24-.9,1.24s-.91-.62-.91-1.24Z"/>
|
||||||
|
<path class="cls-28" d="M1576.78,995.76h2.35v13.67a.94.94,0,0,1-1.88,0V998.35h0l-1.78,2.65v.3c0,.58-.23,1.12-.94,1.12s-.94-.54-.94-1.12v-.3l-1.78-2.65h0v11.08a.94.94,0,0,1-1.88,0V995.76h2.35l2.29,3.3Z"/>
|
||||||
|
<path class="cls-28" d="M1586.43,1010.37a1.9,1.9,0,0,1-1.61-.49l-.77-.68a2.23,2.23,0,0,1-.92-2v-3.47a2.38,2.38,0,0,1,.88-2.16l.64-.54a2.43,2.43,0,0,1,2-.75h1.65a2.58,2.58,0,0,1,2,.65l.73.59a2.53,2.53,0,0,1,.94,2.34v1.45c0,1-.17,1.33-1.24,1.33h-5.78v.6a.89.89,0,0,0,.26.53l.45.49a1.53,1.53,0,0,0,1.2.33h3.87c.6,0,1.24.14,1.24.91s-.71.9-1.24.9Zm-1.5-5.56h5.22v-1.09c0-.34,0-.62-.23-.84l-.69-.61a1.31,1.31,0,0,0-.86-.22h-1.53a1.46,1.46,0,0,0-.92.21l-.62.45a.82.82,0,0,0-.37.82Z"/>
|
||||||
|
<path class="cls-28" d="M1601.12,1000.25a2.58,2.58,0,0,1,1.78,1l.3.32v-3.79c0-.62.13-1.24.9-1.24s.9.62.9,1.24v11.34c0,.62-.13,1.26-.9,1.26s-.9-.6-.9-1.2v-.12l-.39.4a2.93,2.93,0,0,1-1.73.92h-1.75a2.85,2.85,0,0,1-1.54-.64l-.62-.53a2.32,2.32,0,0,1-1-2.08v-3.62a2.34,2.34,0,0,1,1-2.09l.62-.52a2.27,2.27,0,0,1,1.73-.64Zm-3.14,6.16c0,.5,0,1.14.28,1.37l.55.43a1.15,1.15,0,0,0,.67.35h1.28a1.52,1.52,0,0,0,.88-.45l1-.88c.27-.22.53-.45.53-.79v-2.27c0-.34-.26-.56-.53-.79l-1-.88a1.52,1.52,0,0,0-.88-.45h-1.28a1.17,1.17,0,0,0-.67.36l-.55.43c-.28.22-.28.86-.28,1.37Z"/>
|
||||||
|
<path class="cls-28" d="M1614.58,1008.56h1.35c.6,0,1.24.14,1.24.91s-.71.9-1.24.9h-4.58c-.53,0-1.24-.12-1.24-.9s.64-.91,1.24-.91h1.43v-6.51h-1.43c-.53,0-1.24-.11-1.24-.9s.64-.9,1.24-.9h1.9c1,0,1.33.19,1.33,1.25Zm-2.72-12a.74.74,0,0,1,.84-.84h1a.75.75,0,0,1,.85.84v.87a.74.74,0,0,1-.85.84h-1a.74.74,0,0,1-.84-.84Z"/>
|
||||||
|
<path class="cls-28" d="M1625.58,1010.37a1.9,1.9,0,0,1-1.61-.49l-.77-.68a2.25,2.25,0,0,1-.92-2v-3.47a2.38,2.38,0,0,1,.88-2.16l.64-.54a2.43,2.43,0,0,1,2-.75h1.65a2.58,2.58,0,0,1,2,.65l.73.59a2.53,2.53,0,0,1,.94,2.34v1.45c0,1-.17,1.33-1.24,1.33h-5.78v.6a.89.89,0,0,0,.26.53l.45.49a1.56,1.56,0,0,0,1.21.33h3.86c.6,0,1.24.14,1.24.91s-.71.9-1.24.9Zm-1.5-5.56h5.22v-1.09c0-.34,0-.62-.22-.84l-.7-.61a1.3,1.3,0,0,0-.86-.22H1626a1.43,1.43,0,0,0-.92.21l-.62.45a.81.81,0,0,0-.38.82Z"/>
|
||||||
|
<path class="cls-28" d="M1637.13,1003.89v5.24c0,.62-.13,1.24-.9,1.24s-.9-.62-.9-1.24v-7.55c0-.66.07-1.33.9-1.33s.9.67.9,1.31v.25l1.47-1a2.94,2.94,0,0,1,1.55-.6h1.34a2.32,2.32,0,0,1,1.67.65c.81.7.77,1.47.81,2.45l.18,5.67c0,.63-.07,1.35-.88,1.35s-.88-.62-.9-1.22l-.19-5.56c0-1.11-.13-1.54-1.22-1.54h-.6a1.1,1.1,0,0,0-.56.17Z"/>
|
||||||
|
<path class="cls-28" d="M1650.18,1001.56l.32-.32c.6-.6,1-1,1.79-1h2a2.12,2.12,0,0,1,1.33.64l.62.52a2.4,2.4,0,0,1,1,2.09v3.62a2.38,2.38,0,0,1-1,2.08l-.62.53a2.43,2.43,0,0,1-1.41.64h-1.86a2.57,2.57,0,0,1-1.74-.92l-.42-.4v.12c0,.58-.19,1.2-.9,1.2s-.9-.64-.9-1.26V997.77c0-.62.13-1.24.9-1.24s.9.62.9,1.24Zm0,4.47a1.24,1.24,0,0,0,.55,1.2l1,.88c.23.19.51.45.7.45h1.37a.81.81,0,0,0,.56-.16l.79-.66c.2-.17.22-.6.22-1v-3.19a1,1,0,0,0-.24-.75l-.83-.64a.64.64,0,0,0-.43-.15h-1.26a1.22,1.22,0,0,0-.75.32l-1.16,1a1.28,1.28,0,0,0-.55,1.07Z"/>
|
||||||
|
<path class="cls-28" d="M1666.78,1008.56h1.35c.6,0,1.24.14,1.24.91s-.71.9-1.24.9h-4.58c-.52,0-1.24-.12-1.24-.9s.64-.91,1.24-.91H1665v-6.51h-1.43c-.52,0-1.24-.11-1.24-.9s.64-.9,1.24-.9h1.9c1,0,1.33.19,1.33,1.25Zm-2.72-12a.74.74,0,0,1,.84-.84h1a.74.74,0,0,1,.84.84v.87a.74.74,0,0,1-.84.84h-1a.74.74,0,0,1-.84-.84Z"/>
|
||||||
|
<path class="cls-28" d="M1679.83,1008.56h1.35c.61,0,1.24.14,1.24.91s-.71.9-1.24.9h-4.58c-.52,0-1.24-.12-1.24-.9s.64-.91,1.24-.91H1678V998.33h-1.43c-.52,0-1.24-.11-1.24-.9s.64-.9,1.24-.9h1.9c1,0,1.33.19,1.33,1.26Z"/>
|
||||||
|
<path class="cls-28" d="M1692.47,1000.25a2.57,2.57,0,0,1,1.78,1l.3.32v-3.79c0-.62.14-1.24.91-1.24s.9.62.9,1.24v11.34c0,.62-.13,1.26-.9,1.26s-.91-.6-.91-1.2v-.12l-.39.4a2.88,2.88,0,0,1-1.73.92h-1.74a2.81,2.81,0,0,1-1.54-.64l-.62-.53a2.33,2.33,0,0,1-1-2.08v-3.62a2.35,2.35,0,0,1,1-2.09l.62-.52a2.23,2.23,0,0,1,1.72-.64Zm-3.14,6.16c0,.5,0,1.14.29,1.37l.54.43a1.18,1.18,0,0,0,.68.35h1.27a1.52,1.52,0,0,0,.89-.45l1-.88a1.11,1.11,0,0,0,.52-.79v-2.27c0-.34-.26-.56-.52-.79l-1-.88a1.52,1.52,0,0,0-.89-.45h-1.27a1.2,1.2,0,0,0-.68.36l-.54.43c-.29.22-.29.86-.29,1.37Z"/>
|
||||||
|
<path class="cls-28" d="M1709.41,1009c0,.42.07,1.34-.88,1.34-.77,0-.91-.64-.91-1.26v-.3l-1.46,1a3,3,0,0,1-1.56.6h-1.33a2.49,2.49,0,0,1-1.67-.66,2.85,2.85,0,0,1-.83-2.44l-.19-5.67c0-.66.08-1.35.91-1.35s.86.65.88,1.24l.19,5.53a2.88,2.88,0,0,0,.18,1.17c.15.26.62.37,1,.37h.6a1,1,0,0,0,.57-.16l2.65-1.68v-5.23c0-.62.13-1.24.9-1.24s.9.62.9,1.24Z"/>
|
||||||
|
<path class="cls-28" d="M1715.44,1003.89v5.24c0,.62-.13,1.24-.9,1.24s-.91-.62-.91-1.24v-7.55c0-.66.08-1.33.91-1.33s.9.67.9,1.31v.25l1.46-1a3,3,0,0,1,1.56-.6h1.33a2.29,2.29,0,0,1,1.67.65c.81.7.77,1.47.81,2.45l.19,5.67c0,.63-.08,1.35-.88,1.35s-.89-.62-.9-1.22l-.19-5.56c0-1.11-.13-1.54-1.22-1.54h-.6a1.14,1.14,0,0,0-.57.17Z"/>
|
||||||
|
<path class="cls-28" d="M1726.69,1003.61a2.59,2.59,0,0,1,.61-1.9l1.32-1a1.6,1.6,0,0,1,1.13-.43h1.74a3.31,3.31,0,0,1,1.77.9l.45.35v-.2a.93.93,0,0,1,.92-1c.79,0,.88.65.88,1.25v8.81c0,1.63-.13,2-.88,2.61l-.6.51a2.89,2.89,0,0,1-2.26.77h-3c-.53,0-1.24-.12-1.24-.9s.64-.91,1.24-.91h3.3a1.26,1.26,0,0,0,.9-.41l.45-.41a1.06,1.06,0,0,0,.27-.75v-2.48l-.38.37a2.49,2.49,0,0,1-1.48.89h-2.12a1.86,1.86,0,0,1-1.36-.55l-1.12-1a1.93,1.93,0,0,1-.56-1.69Zm1.8,2.48c0,.37,0,.77.22.93l.75.61a.8.8,0,0,0,.53.16h1.31a1.55,1.55,0,0,0,.83-.46l1.39-1.15a.83.83,0,0,0,.19-.6v-1.31a.86.86,0,0,0-.19-.61l-1.39-1.14a1.58,1.58,0,0,0-.83-.47H1730a.8.8,0,0,0-.53.17l-.75.6c-.2.17-.22.56-.22.94Z"/>
|
||||||
|
</g>
|
||||||
|
<path class="cls-27" d="M1323.17,924.82l-1.58-.33a43.81,43.81,0,0,1,2.84-8.09c.23-.53.45-1,.67-1.58s.29-.72.41-1c.67-1.74,1.11-2.89,3.7-3.76,1.48-.5,3-1.15,4.39-1.79a45.24,45.24,0,0,1,5-2,8.69,8.69,0,0,1,1.12-.27c0-.23.12-.46.19-.7a4.74,4.74,0,0,1,.09-.61c0-.07,0-.13,0-.17v-.12a1.65,1.65,0,0,1,1.11-1.62h0a7.13,7.13,0,0,1,.7-.83,3.87,3.87,0,0,1,4-1.22c.63.19,2.67.92,2.87,2.28s-1.21,2.95-1.71,3.4a4.84,4.84,0,0,1-3.62.93h-.14c-.43,0-.87-.06-1.29-.13-.26.08-.52.14-.78.2a2.83,2.83,0,0,0,.09.76c.12.37.3.4.39.42l-.28,1.59a2.08,2.08,0,0,1-1.65-1.52,3.56,3.56,0,0,1-.16-1l-.47.12a47.13,47.13,0,0,0-4.85,1.94c-1.46.65-3,1.32-4.53,1.85-1.86.62-2,1.13-2.7,2.8-.12.33-.26.68-.42,1.07s-.45,1.07-.68,1.6A43.35,43.35,0,0,0,1323.17,924.82Zm20.88-19.12h0a2.65,2.65,0,0,0,1.86-.53,4.49,4.49,0,0,0,1.2-2,3.73,3.73,0,0,0-1.74-1,2.11,2.11,0,0,0-2,.52l.19.08a1.74,1.74,0,0,1,1,1.45A2.17,2.17,0,0,1,1344.05,905.7Zm-2.46-.3.23.08a3.54,3.54,0,0,0,.33-.19,1.82,1.82,0,0,0,.79-.92l-.16-.1a5.93,5.93,0,0,0-.63,0A8.33,8.33,0,0,0,1341.59,905.4Z"/>
|
||||||
|
<path class="cls-28" d="M1317.72,1001.73c-2.42,0-4.86-.17-7.22-.34-2-.15-3.92-.28-5.55-.28l-4.51,0-4.54,0c-1.71,0-3.2,0-4.57,0l-.55,0c-.41,0-.88.09-1.33.09a3.33,3.33,0,0,1-1.69-.38c-2.47-1.46-2.37-5.6-2-10.86.08-1,.14-1.81.14-2.36a103.16,103.16,0,0,1,2-17.56,110.08,110.08,0,0,0,1.88-15.06c0-1.14.09-2.31.13-3.5.31-7.54.63-15.34-1.41-21.87L1288,928l1.67-.55c7.31-2.37,15.53-3.47,25.88-3.47,4.88,0,9.77.24,13.91.48l1.59.09.08,1.59c.87,17.3.85,34,.73,53.94,0,1,.09,2.26.19,3.61.38,5.32.86,11.94-3,15.31a7.33,7.33,0,0,1-1.66,1.09C1324.93,1001.2,1321.88,1001.73,1317.72,1001.73ZM1305,997.56c1.75,0,3.72.14,5.81.29,2.29.17,4.66.34,7,.34a19.29,19.29,0,0,0,8.09-1.33,3.55,3.55,0,0,0,.85-.55c2.55-2.21,2.12-8.09,1.81-12.39-.11-1.42-.2-2.75-.2-3.88.12-19.31.14-35.5-.65-52.15-3.72-.2-7.93-.38-12.11-.38-9.2,0-16.61.89-23.16,2.8,1.69,6.74,1.37,14.47,1.09,21.36,0,1.17-.1,2.33-.13,3.46a116.32,116.32,0,0,1-1.93,15.55,100.89,100.89,0,0,0-1.92,17c0,.68-.06,1.58-.14,2.62-.13,1.75-.46,6.26.19,7.43.27,0,.61,0,.92-.07s.64-.06.91-.06h.07c1.34,0,2.81,0,4.49,0l4.52,0Z"/>
|
||||||
|
<path class="cls-27" d="M1319.44,956.12a40.5,40.5,0,0,1-8-.7c-1.42-.29-2.9-.67-4.32-1-3.38-.87-6.88-1.76-10.15-1.66l-.41,0-.29-.31c-.28-.3-.42-.46-.48-6.27,0-2.74,0-5.72,0-6.25,0-.23,0-.47,0-.71.12-1.71.24-3.64,2-4.64a4.87,4.87,0,0,1,2.4-.44c1,0,2,.11,3,.2.69.06,1.33.13,1.73.13h3.6c1.39,0,2.46,0,3.47.07l1.27,0c5.91,0,8,.32,8.77,1.18s.85,2.38,1,3.75c0,.46.08.89.14,1.19.19,1.06.42,2.14.66,3.29a66.13,66.13,0,0,1,1.34,8,22.45,22.45,0,0,1,.06,3.25l0,.79-.79,0C1322.42,956.07,1320.86,956.12,1319.44,956.12Zm-21.79-5.18a42.23,42.23,0,0,1,9.87,1.72c1.47.38,2.86.74,4.23,1a38.46,38.46,0,0,0,7.69.67c1.19,0,2.47,0,4-.11a21,21,0,0,0-.08-2.2,62.21,62.21,0,0,0-1.3-7.74c-.25-1.16-.48-2.26-.68-3.34-.07-.38-.11-.85-.15-1.36a7.48,7.48,0,0,0-.55-2.75c-.48-.33-3-.53-7.44-.56l-1.35,0c-1,0-2-.07-3.38-.07h-3.6c-.48,0-1.14-.06-1.9-.14-.91-.09-2-.19-2.83-.19a3.31,3.31,0,0,0-1.51.21c-.83.48-1,1.54-1.07,3.22,0,.25,0,.49,0,.74C1297.46,941,1297.5,948.63,1297.65,950.94Z"/>
|
||||||
|
<path class="cls-27" d="M1656,973.22c-.67,0-1.16,0-1.59-.59a1.94,1.94,0,0,1-.34-1.38v-1.72a1.93,1.93,0,0,1,.34-1.38c.43-.59.92-.59,1.59-.59h2.22c.67,0,1.16,0,1.59.59a1.93,1.93,0,0,1,.34,1.38v1.72a1.94,1.94,0,0,1-.34,1.38c-.43.59-.92.59-1.59.59Z"/>
|
||||||
|
<path class="cls-27" d="M1300.58,961.55a6.93,6.93,0,0,1,2.4,0c1,.59.17,2.88.13,4.05-.77-.12-2.76-.32-2.86-1.15"/>
|
||||||
|
<path class="cls-27" d="M1317.4,983.9a7.18,7.18,0,0,1,0-2.41c.62-1,2.88-.08,4,0-.14.77-.4,2.75-1.23,2.83"/>
|
||||||
|
<path class="cls-27" d="M1308.28,963.38c-.13,1.26-.31,2.57-.47,3.8a11,11,0,0,0,3.3.08c0-.59.38-2.72,0-3.27s-2.39-.57-3-.52"/>
|
||||||
|
<path class="cls-27" d="M1315.51,963a16.76,16.76,0,0,0,0,2.35c.11.81.14.76,1,.81s2.85.42,3.28-.18a2.31,2.31,0,0,0-.62-2.9c-1.17-.5-2.6,0-3.8-.07a1.26,1.26,0,0,0,.15.64"/>
|
||||||
|
<path class="cls-27" d="M1299,971.53c-.23.7-.94,2.88-.56,3.64.49,1,2.78.34,3.62.56a7.85,7.85,0,0,0,.18-3.8c-.37-.74-2.49-.43-3.31-.39a1.28,1.28,0,0,0-.1.55"/>
|
||||||
|
<path class="cls-27" d="M1307.89,972.14c0,.81-.3,2.31.42,2.81a6.86,6.86,0,0,0,2.89.28c.38-.33.19-1.79.17-2.21,0-.79.08-.81-.64-1s-3.12-.52-2.84.57"/>
|
||||||
|
<path class="cls-27" d="M1317.53,971.65c0,1.1-.84,3.37.57,3.65a4.43,4.43,0,0,0,1.54,0c.7-.26.62-.9.65-1.68a6,6,0,0,0,0-1.89c-.3-.54-1.25-.33-1.87-.32s-.73-.09-1,.32a3.5,3.5,0,0,0-.08,1.3"/>
|
||||||
|
<path class="cls-27" d="M1298.23,982.67c0,.53-.32,1.47,0,2s1.32.4,2,.4c1,0,1.78.27,2.25-.7,1.06-2.2-2.9-1.54-4.27-1.47a1,1,0,0,0,.07.63"/>
|
||||||
|
<path class="cls-27" d="M1308.51,981.24c0,.79-.36,2-.09,2.76s1,.55,1.87.58c.45,0,1.75.31,2.11,0s.1-1.94.08-2.46c0-.68.09-1-.56-1.31a4.52,4.52,0,0,0-2.45-.07c-1.34.27-1.25.87-1,2"/>
|
||||||
|
<g>
|
||||||
|
<rect class="cls-27" x="1348.28" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1375.99" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1389.85" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1417.57" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1431.43" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1459.14" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1334.42" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1403.71" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1445.29" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1488.76" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1516.48" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1502.62" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1572.33" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1586.19" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1613.91" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1627.76" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1655.48" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1600.05" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1641.62" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1685.1" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1712.82" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1698.96" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1544.62" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1558.48" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
<rect class="cls-27" x="1726.67" y="985.51" width="8.9" height="2.36"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 66 KiB |
1469
jh18-ulm/artwork/pause.svg
Normal file
1469
jh18-ulm/artwork/pause.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 77 KiB |
Loading…
Add table
Reference in a new issue