added jh 16 berlin
This commit is contained in:
parent
b64c603bb4
commit
ee7773546d
6 changed files with 4081 additions and 0 deletions
202
jh16-berlin/__init__.py
Normal file
202
jh16-berlin/__init__.py
Normal file
|
@ -0,0 +1,202 @@
|
|||
#!/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 = 'http://data.c3voc.de/schedule/jh16/schedule-berlin.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):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
#just select room Berlin
|
||||
if event['room'] not in ('Berlin'):
|
||||
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
|
||||
))
|
1467
jh16-berlin/artwork/background.svg
Normal file
1467
jh16-berlin/artwork/background.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 76 KiB |
363
jh16-berlin/artwork/intro.svg
Normal file
363
jh16-berlin/artwork/intro.svg
Normal file
|
@ -0,0 +1,363 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1"
|
||||
id="Ebene_1" inkscape:version="0.91 r13725" sodipodi:docname="intro.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 1080"
|
||||
style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#00A5DD;}
|
||||
.st1{fill:#29ABE2;}
|
||||
.st2{fill:#5FDBA5;}
|
||||
.st3{fill:#FFFFFF;}
|
||||
.st4{fill:#F86E16;}
|
||||
</style>
|
||||
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview1462" inkscape:current-layer="Ebene_1" inkscape:cx="1331.2785" inkscape:cy="-124.12472" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="861" inkscape:window-maximized="0" inkscape:window-width="1596" inkscape:window-x="0" inkscape:window-y="18" inkscape:zoom="0.16812201" objecttolerance="10" pagecolor="#ffffff" showgrid="false" showguides="false">
|
||||
</sodipodi:namedview>
|
||||
<image style="overflow:visible;enable-background:new ;" width="1920" height="1080" id="background" xlink:href="7BC2C3039A33EF02.png" >
|
||||
</image>
|
||||
<polygon id="text-bg" inkscape:label="#text-bg" class="st0" points="1900,1060 1900,912.5 1900,863.3 1900,786.8 1823.2,863.3
|
||||
600,863.3 600,1060 ">
|
||||
</polygon>
|
||||
<g id="icongroup">
|
||||
<g id="g1105">
|
||||
<g id="g1107">
|
||||
<g id="XMLID_16_">
|
||||
<rect id="rect1110" x="1799" y="34.3" class="st1" width="63.3" height="38.7"/>
|
||||
<path id="path1112" class="st2" d="M1845.9,87.1v-4.7h-4.7v4.7H1845.9z M1854.1,87.1v-4.7h-4.7v4.7H1854.1z M1858.8,90.6h-4.7
|
||||
v4.7h4.7V90.6z M1862.3,87.1v-4.7h-4.7v4.7H1862.3z M1867,90.6h-4.7v4.7h4.7V90.6z M1867,87.1h4.7v4.7v4.7v4.7h-82.1v-4.7v-4.7
|
||||
v-4.7h4.7v-4.7v-4.7h68h4.7v4.7L1867,87.1L1867,87.1z M1800.1,90.6h-4.7v4.7h4.7V90.6z M1803.6,87.1v-4.7h-4.7v4.7H1803.6z
|
||||
M1808.3,90.6h-4.7v4.7h4.7V90.6z M1811.9,87.1v-4.7h-4.7v4.7H1811.9z M1815.4,87.1h4.7v-4.7h-4.7V87.1z M1823.6,87.1h4.7v-4.7
|
||||
h-4.7V87.1z M1833,87.1h4.7v-4.7h-4.7V87.1z M1845.9,90.6h-29.3h-2.3h-2.3v4.7h2.3h2.3h29.3h4.7v-4.7H1845.9z"/>
|
||||
<polygon id="polygon1114" points="1876.3,96.5 1876.3,101.2 1871.7,101.2 1871.7,96.5 1871.7,91.8 1871.7,87.1 1876.3,87.1
|
||||
1876.3,91.8 "/>
|
||||
<rect id="rect1116" x="1789.6" y="101.2" width="82.1" height="4.7"/>
|
||||
<polygon id="polygon1118" points="1871.7,82.4 1871.7,87.1 1867,87.1 1867,82.4 1867,77.7 1871.7,77.7 "/>
|
||||
<rect id="rect1120" x="1862.3" y="90.6" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1122" points="1867,73 1867,77.7 1862.3,77.7 1794.3,77.7 1794.3,73 1794.3,34.3 1799,34.3 1799,73
|
||||
1862.3,73 1862.3,34.3 1867,34.3 "/>
|
||||
<rect id="rect1124" x="1857.6" y="82.4" width="4.7" height="4.7"/>
|
||||
<rect id="rect1126" x="1799" y="29.6" width="63.3" height="4.7"/>
|
||||
<rect id="rect1128" x="1854.1" y="90.6" width="4.7" height="4.7"/>
|
||||
<rect id="rect1130" x="1849.4" y="82.4" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1132" points="1850.5,90.6 1850.5,95.3 1845.9,95.3 1816.5,95.3 1814.2,95.3 1811.9,95.3 1811.9,90.6
|
||||
1814.2,90.6 1816.5,90.6 1845.9,90.6 "/>
|
||||
<rect id="rect1134" x="1841.2" y="82.4" width="4.7" height="4.7"/>
|
||||
<rect id="rect1136" x="1833" y="82.4" width="4.7" height="4.7"/>
|
||||
<rect id="rect1138" x="1823.6" y="82.4" width="4.7" height="4.7"/>
|
||||
<rect id="rect1140" x="1815.4" y="82.4" width="4.7" height="4.7"/>
|
||||
<rect id="rect1142" x="1807.2" y="82.4" width="4.7" height="4.7"/>
|
||||
<rect id="rect1144" x="1803.6" y="90.6" width="4.7" height="4.7"/>
|
||||
<rect id="rect1146" x="1799" y="82.4" width="4.7" height="4.7"/>
|
||||
<rect id="rect1148" x="1795.4" y="90.6" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1150" points="1794.3,82.4 1794.3,87.1 1789.6,87.1 1789.6,82.4 1789.6,77.7 1794.3,77.7 "/>
|
||||
<polygon id="polygon1152" points="1789.6,96.5 1789.6,101.2 1784.9,101.2 1784.9,96.5 1784.9,91.8 1784.9,87.1 1789.6,87.1
|
||||
1789.6,91.8 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g1154">
|
||||
<polygon id="polygon1156" class="st3" points="1886.3,136.4 1886.3,141.1 1881.6,141.1 1881.6,155.2 1876.9,155.2 1876.9,159.8
|
||||
1876.9,164.5 1876.9,172.7 1853.5,172.7 1853.5,168 1853.5,163.4 1853.5,158.7 1848.8,158.7 1848.8,154 1848.8,149.3
|
||||
1844.1,149.3 1844.1,144.6 1844.1,139.9 1839.4,139.9 1839.4,135.2 1839.4,130.5 1844.1,130.5 1844.1,135.2 1848.8,135.2
|
||||
1848.8,139.9 1853.5,139.9 1853.5,135.2 1853.5,130.5 1853.5,125.8 1853.5,121.1 1853.5,116.5 1853.5,95.4 1858.2,95.4
|
||||
1858.2,100 1858.2,104.7 1858.2,109.4 1858.2,114.1 1858.2,118.8 1858.2,123.5 1862.9,123.5 1862.9,118.8 1862.9,114.1
|
||||
1862.9,109.4 1862.9,104.7 1862.9,100 1862.9,95.4 1867.5,95.4 1867.5,100 1867.5,104.7 1867.5,109.4 1867.5,114.1 1867.5,118.8
|
||||
1867.5,123.5 1872.2,123.5 1872.2,118.8 1872.2,114.1 1872.2,109.4 1872.2,104.7 1872.2,100 1872.2,95.4 1876.9,95.4 1876.9,100
|
||||
1876.9,104.7 1876.9,109.4 1876.9,114.1 1876.9,118.8 1876.9,123.5 1881.6,123.5 1881.6,118.8 1881.6,114.1 1881.6,109.4
|
||||
1881.6,108.3 1886.3,108.3 1886.3,112.9 1886.3,117.6 1886.3,122.3 1886.3,127 1886.3,131.7 "/>
|
||||
<polygon id="polygon1158" points="1891,136.4 1891,141.1 1886.3,141.1 1886.3,136.4 1886.3,131.7 1886.3,127 1886.3,122.3
|
||||
1886.3,117.6 1886.3,112.9 1886.3,108.3 1891,108.3 1891,112.9 1891,117.6 1891,122.3 1891,127 1891,131.7 "/>
|
||||
<rect id="rect1160" x="1881.6" y="141.1" width="4.7" height="14.1"/>
|
||||
<polygon id="polygon1162" points="1886.3,103.6 1886.3,108.3 1881.6,108.3 1881.6,109.4 1881.6,114.1 1881.6,118.8 1881.6,123.5
|
||||
1876.9,123.5 1876.9,118.8 1876.9,114.1 1876.9,109.4 1876.9,104.7 1876.9,100 1876.9,95.4 1881.6,95.4 1881.6,100 1881.6,103.6
|
||||
"/>
|
||||
<polygon id="polygon1164" points="1881.6,164.5 1881.6,177.4 1876.9,177.4 1848.8,177.4 1848.8,172.7 1848.8,168 1848.8,163.4
|
||||
1853.5,163.4 1853.5,168 1853.5,172.7 1876.9,172.7 1876.9,164.5 1876.9,159.8 1876.9,155.2 1881.6,155.2 1881.6,159.8 "/>
|
||||
<rect id="rect1166" x="1872.2" y="90.7" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1168" points="1872.2,118.8 1872.2,123.5 1867.5,123.5 1867.5,118.8 1867.5,114.1 1867.5,109.4 1867.5,104.7
|
||||
1867.5,100 1867.5,95.4 1872.2,95.4 1872.2,100 1872.2,104.7 1872.2,109.4 1872.2,114.1 "/>
|
||||
<rect id="rect1170" x="1862.9" y="90.7" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1172" points="1862.9,118.8 1862.9,123.5 1858.2,123.5 1858.2,118.8 1858.2,114.1 1858.2,109.4 1858.2,104.7
|
||||
1858.2,100 1858.2,95.4 1862.9,95.4 1862.9,100 1862.9,104.7 1862.9,109.4 1862.9,114.1 "/>
|
||||
<rect id="rect1174" x="1853.5" y="90.7" width="4.7" height="4.7"/>
|
||||
<rect id="rect1176" x="1848.8" y="158.7" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1178" points="1853.5,135.2 1853.5,139.9 1848.8,139.9 1848.8,135.2 1844.1,135.2 1844.1,130.5 1848.8,130.5
|
||||
1848.8,125.8 1848.8,121.1 1848.8,116.5 1848.8,95.4 1853.5,95.4 1853.5,116.5 1853.5,121.1 1853.5,125.8 1853.5,130.5 "/>
|
||||
<polygon id="polygon1180" points="1848.8,154 1848.8,158.7 1844.1,158.7 1844.1,154 1844.1,149.3 1848.8,149.3 "/>
|
||||
<polygon id="polygon1182" points="1844.1,144.6 1844.1,149.3 1839.4,149.3 1839.4,144.6 1839.4,139.9 1844.1,139.9 "/>
|
||||
<rect id="rect1184" x="1839.4" y="125.8" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1186" points="1839.4,135.2 1839.4,139.9 1834.7,139.9 1834.7,135.2 1834.7,130.5 1839.4,130.5 "/>
|
||||
</g>
|
||||
<g id="g1188">
|
||||
<polygon id="polygon1190" class="st3" points="1825.3,148.1 1825.3,152.8 1820.6,152.8 1820.6,157.4 1820.6,162.1 1816,162.1
|
||||
1816,166.8 1816,171.5 1811.3,171.5 1811.3,176.2 1806.6,176.2 1801.9,176.2 1801.9,180.9 1797.2,180.9 1797.2,185.6
|
||||
1792.5,185.6 1792.5,190.3 1792.5,195 1787.8,195 1787.8,198.5 1773.7,198.5 1773.7,193.8 1769.1,193.8 1769.1,189.1
|
||||
1764.4,189.1 1764.4,184.4 1759.7,184.4 1759.7,179.7 1764.4,179.7 1764.4,175 1769.1,175 1769.1,170.3 1773.7,170.3 1773.7,161
|
||||
1773.7,156.3 1773.7,146.9 1778.4,146.9 1778.4,142.2 1778.4,128.1 1783.1,128.1 1783.1,132.8 1783.1,137.5 1783.1,142.2
|
||||
1787.8,142.2 1787.8,137.5 1787.8,132.8 1787.8,128.1 1792.5,128.1 1792.5,132.8 1792.5,137.5 1792.5,142.2 1797.2,142.2
|
||||
1797.2,137.5 1797.2,132.8 1797.2,128.1 1801.9,128.1 1801.9,129.3 1801.9,134 1801.9,138.7 1801.9,143.4 1806.6,143.4
|
||||
1806.6,138.7 1806.6,134 1806.6,129.3 1806.6,124.6 1806.6,119.9 1811.3,119.9 1811.3,115.2 1816,115.2 1816,119.9 1816,124.6
|
||||
1811.3,124.6 1811.3,129.3 1811.3,134 1811.3,138.7 1811.3,143.4 1811.3,148.1 1811.3,152.8 1816,152.8 1816,148.1 1820.6,148.1
|
||||
1820.6,143.4 1825.3,143.4 "/>
|
||||
<polygon id="polygon1192" points="1830,148.1 1830,152.8 1825.3,152.8 1825.3,148.1 1825.3,143.4 1830,143.4 "/>
|
||||
<polygon id="polygon1194" points="1825.3,157.4 1825.3,162.1 1820.6,162.1 1820.6,157.4 1820.6,152.8 1825.3,152.8 "/>
|
||||
<rect id="rect1196" x="1820.6" y="138.7" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1198" points="1820.6,166.8 1820.6,171.5 1816,171.5 1816,166.8 1816,162.1 1820.6,162.1 "/>
|
||||
<polygon id="polygon1200" points="1820.6,143.4 1820.6,148.1 1816,148.1 1816,152.8 1811.3,152.8 1811.3,148.1 1811.3,143.4
|
||||
1811.3,138.7 1811.3,134 1811.3,129.3 1811.3,124.6 1816,124.6 1816,129.3 1816,134 1816,138.7 1816,143.4 "/>
|
||||
<polygon id="polygon1202" points="1820.6,119.9 1820.6,124.6 1816,124.6 1816,119.9 1816,115.2 1820.6,115.2 "/>
|
||||
<rect id="rect1204" x="1811.3" y="171.5" width="4.7" height="4.7"/>
|
||||
<rect id="rect1206" x="1811.3" y="110.5" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1208" points="1811.3,176.2 1811.3,180.9 1806.6,180.9 1801.9,180.9 1801.9,176.2 1806.6,176.2 "/>
|
||||
<rect id="rect1210" x="1806.6" y="115.2" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1212" points="1806.6,138.7 1806.6,143.4 1801.9,143.4 1801.9,138.7 1801.9,134 1801.9,129.3 1801.9,128.1
|
||||
1797.2,128.1 1797.2,132.8 1797.2,137.5 1797.2,142.2 1792.5,142.2 1792.5,137.5 1792.5,132.8 1792.5,128.1 1787.8,128.1
|
||||
1787.8,132.8 1787.8,137.5 1787.8,142.2 1783.1,142.2 1783.1,137.5 1783.1,132.8 1783.1,128.1 1778.4,128.1 1778.4,123.4
|
||||
1787.8,123.4 1792.5,123.4 1797.2,123.4 1801.9,123.4 1801.9,119.9 1806.6,119.9 1806.6,124.6 1806.6,129.3 1806.6,134 "/>
|
||||
<rect id="rect1214" x="1797.2" y="180.9" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1216" points="1797.2,190.3 1797.2,195 1792.5,195 1792.5,190.3 1792.5,185.6 1797.2,185.6 "/>
|
||||
<polygon id="polygon1218" points="1787.8,199.7 1787.8,203.2 1773.7,203.2 1773.7,198.5 1787.8,198.5 1787.8,195 1792.5,195
|
||||
1792.5,199.7 "/>
|
||||
<polygon id="polygon1220" points="1778.4,142.2 1778.4,146.9 1773.7,146.9 1773.7,142.2 1773.7,128.1 1778.4,128.1 "/>
|
||||
<rect id="rect1222" x="1769.1" y="193.8" width="4.7" height="4.7"/>
|
||||
<polygon id="polygon1224" points="1773.7,161 1773.7,170.3 1769.1,170.3 1769.1,161 1769.1,156.3 1769.1,146.9 1773.7,146.9
|
||||
1773.7,156.3 "/>
|
||||
<rect id="rect1226" x="1764.4" y="189.1" width="4.7" height="4.7"/>
|
||||
<rect id="rect1228" x="1764.4" y="170.3" width="4.7" height="4.7"/>
|
||||
<rect id="rect1230" x="1759.7" y="184.4" width="4.7" height="4.7"/>
|
||||
<rect id="rect1232" x="1759.7" y="175" width="4.7" height="4.7"/>
|
||||
<rect id="rect1234" x="1755" y="179.7" width="4.7" height="4.7"/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon id="polygon1236" class="st1" points="1200.4,54.1 1200.4,47.1 1193.4,47.1 1193.4,40.1 1186.3,40.1 1179.3,40.1
|
||||
1172.3,40.1 1165.2,40.1 1158.2,40.1 1150,40.1 1142.9,40.1 1135.9,40.1 1135.9,47.1 1128.9,47.1 1128.9,54.1 1121.8,54.1
|
||||
1121.8,61.2 1121.8,69.4 1121.8,76.4 1121.8,83.5 1121.8,90.5 1121.8,97.5 1121.8,104.6 1121.8,111.6 1121.8,118.6 1128.9,118.6
|
||||
1128.9,126.8 1135.9,126.8 1135.9,133.9 1142.9,133.9 1142.9,140.9 1150,140.9 1150,147.9 1158.2,147.9 1158.2,155 1150,155
|
||||
1150,162 1142.9,162 1142.9,169 1135.9,169 1135.9,176.1 1135.9,184.3 1135.9,191.3 1135.9,198.4 1135.9,205.4 1142.9,205.4
|
||||
1142.9,198.4 1142.9,191.3 1150,191.3 1150,198.4 1150,205.4 1158.2,205.4 1165.2,205.4 1172.3,205.4 1179.3,205.4 1179.3,198.4
|
||||
1179.3,191.3 1186.3,191.3 1186.3,198.4 1186.3,205.4 1193.4,205.4 1193.4,198.4 1193.4,191.3 1193.4,184.3 1193.4,176.1
|
||||
1193.4,169 1186.3,169 1186.3,162 1179.3,162 1179.3,155 1172.3,155 1172.3,147.9 1179.3,147.9 1179.3,140.9 1186.3,140.9
|
||||
1186.3,133.9 1193.4,133.9 1193.4,126.8 1200.4,126.8 1200.4,118.6 1208.6,118.6 1208.6,111.6 1208.6,104.6 1208.6,97.5
|
||||
1208.6,90.5 1208.6,83.5 1208.6,76.4 1208.6,69.4 1208.6,61.2 1208.6,54.1 "/>
|
||||
<g id="g1238">
|
||||
<rect id="rect1240" x="1302.4" y="184.3" class="st2" width="8.2" height="7"/>
|
||||
<rect id="rect1242" x="1288.3" y="184.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1244" x="1274.3" y="184.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1246" x="1310.6" y="191.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1248" x="1295.4" y="191.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1250" x="1302.4" y="198.4" class="st2" width="8.2" height="7"/>
|
||||
<rect id="rect1252" x="1288.3" y="198.4" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1254" x="1310.6" y="162" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1256" x="1295.4" y="162" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1258" x="1303.6" y="155" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1260" x="1302.4" y="169" class="st2" width="8.2" height="7"/>
|
||||
<rect id="rect1262" x="1260.2" y="169" class="st2" width="7" height="7"/>
|
||||
<polygon id="polygon1264" class="st2" points="1317.6,198.4 1317.6,205.4 1324.7,205.4 1331.7,205.4 1331.7,198.4 1324.7,198.4
|
||||
"/>
|
||||
<polygon id="polygon1266" class="st2" points="1317.6,169 1317.6,176.1 1310.6,176.1 1310.6,184.3 1317.6,184.3 1317.6,177.3
|
||||
1324.7,177.3 1331.7,177.3 1331.7,184.3 1338.8,184.3 1338.8,176.1 1331.7,176.1 1331.7,169 1324.7,169 "/>
|
||||
<rect id="rect1268" x="1295.4" y="176.1" class="st2" width="7" height="8.2"/>
|
||||
<rect id="rect1270" x="1281.3" y="191.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1272" x="1267.2" y="176.1" class="st2" width="7" height="8.2"/>
|
||||
<path id="path1274" class="st2" d="M1389.2,76.4v-7h-7v-8.2h-7v-7h-7v-7h-7v-7h-7v-7h-7h-8.2h-7v7h7v7h8.2v7h7v7h7v8.2h-7v-8.2h-7
|
||||
v-7h-8.2v-7h-7v-7h-7h-7v7h-7v7h-8.2v7h-7v8.2h-7v-8.2h7v-7h7v-7h8.2v-7h7v-7h-7h-8.2h-7v7h-7v7h-7v7h-7v7h-7v8.2h-7v7h-7v7v7v7v7
|
||||
v7h7v7h7h7v8.2h7h7v7h7v7v7v7h7v-7h1.2h7v7h7v7h7h7v-7h7v-7h7h1.2v7h7v-7v-7v-7h7v-7h7h7v-8.2h7h7v-7h7v-7v-7v-7v-7v-7
|
||||
C1396.2,76.4,1389.2,76.4,1389.2,76.4z M1324.7,133.9h-7v-7h7h7v7H1324.7z"/>
|
||||
<rect id="rect1276" x="1338.8" y="184.3" class="st2" width="8.2" height="7"/>
|
||||
<rect id="rect1278" x="1354" y="184.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1280" x="1368.1" y="184.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1282" x="1331.7" y="191.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1284" x="1347" y="191.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1286" x="1338.8" y="198.4" class="st2" width="8.2" height="7"/>
|
||||
<rect id="rect1288" x="1354" y="198.4" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1290" x="1331.7" y="162" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1292" x="1347" y="162" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1294" x="1338.8" y="155" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1296" x="1338.8" y="169" class="st2" width="8.2" height="7"/>
|
||||
<rect id="rect1298" x="1382.1" y="169" class="st2" width="7" height="7"/>
|
||||
<polygon id="polygon1300" class="st2" points="1324.7,184.3 1317.6,184.3 1317.6,191.3 1324.7,191.3 1331.7,191.3 1331.7,184.3
|
||||
"/>
|
||||
<rect id="rect1302" x="1347" y="176.1" class="st2" width="7" height="8.2"/>
|
||||
<rect id="rect1304" x="1361" y="191.3" class="st2" width="7" height="7"/>
|
||||
<rect id="rect1306" x="1375.1" y="176.1" class="st2" width="7" height="8.2"/>
|
||||
</g>
|
||||
<g id="g1308">
|
||||
<polygon id="polygon1310" class="st4" points="1458.3,176.1 1458.3,184.3 1458.3,191.3 1458.3,198.4 1458.3,205.4 1465.4,205.4
|
||||
1465.4,198.4 1465.4,191.3 1465.4,184.3 1465.4,176.1 1465.4,156.1 1458.3,156.1 "/>
|
||||
<path id="path1312" class="st4" d="M1546.3,85.8v-2.3v-7v-7v-8.2v-7v-7h-7v-7h-7h-7h-7v-7h-7v-7h-16.4v7h-7v7h-7h-7h-7v7h-7v7v7
|
||||
v8.2v7v7v2.3h-7v7v7v7h7v4.7v28.1h7v1.2v7h29.3h7h7h29.3v-7v-1.2h7v-28.1v-4.7h7v-7v-7v-7C1553.5,85.8,1546.3,85.8,1546.3,85.8z
|
||||
M1495.9,33h14.1v7h-7h-7L1495.9,33L1495.9,33z"/>
|
||||
<polygon id="polygon1314" class="st4" points="1540.4,176.1 1540.4,184.3 1540.4,191.3 1540.4,198.4 1540.4,205.4 1547.5,205.4
|
||||
1547.5,198.4 1547.5,191.3 1547.5,184.3 1547.5,176.1 1547.5,156.1 1540.4,156.1 "/>
|
||||
<polygon id="polygon1316" class="st4" points="1518.1,155 1509.9,155 1502.9,155 1495.9,155 1487.7,155 1480.6,155 1472.4,155
|
||||
1472.4,162 1472.4,169 1472.4,176.1 1472.4,184.3 1472.4,191.3 1472.4,198.4 1472.4,205.4 1480.6,205.4 1487.7,205.4
|
||||
1495.9,205.4 1502.9,205.4 1509.9,205.4 1518.1,205.4 1525.2,205.4 1533.4,205.4 1533.4,198.4 1533.4,191.3 1533.4,184.3
|
||||
1533.4,176.1 1533.4,169 1533.4,162 1533.4,155 1525.2,155 "/>
|
||||
</g>
|
||||
<g id="g1318">
|
||||
<rect id="rect1320" x="1501" y="184" class="st3" width="7" height="7"/>
|
||||
<rect id="rect1322" x="1492" y="191" class="st3" width="9" height="7"/>
|
||||
<rect id="rect1324" x="1485" y="198" class="st3" width="7" height="7"/>
|
||||
<rect id="rect1326" x="1508" y="191" class="st3" width="7" height="7"/>
|
||||
<rect id="rect1328" x="1515" y="198" class="st3" width="8" height="7"/>
|
||||
</g>
|
||||
<path id="path1330" class="st2" d="M1717.5,83.5h-7h-7h-7h-8.2h-7v7h-7h-7v-7h-7h-8.2h-7h-7h-7h-7v7v7v7v7h7v7h7v8.2h7h7h8.2v7v7
|
||||
h-7h-1.2h-7v7v7v7v7h7h1.2h7h7h7h7h7h7h1.2h7v-7v-7v-7v-7h-7h-1.2h-7v-7v-7h8.2h7h7v-8.2h7v-7h7v-7v-7v-7v-7H1717.5z M1674.1,162
|
||||
h-7v-7v-7h7h7v7v7H1674.1z M1681.1,133.9h-7h-7v-7h7h7V133.9z"/>
|
||||
<g id="g1332">
|
||||
<polygon id="polygon1334" points="1476.2,103.2 1476.2,95.4 1476.2,95.4 1476.2,91.3 1476.2,87.9 1472.2,87.9 1472.1,91.3
|
||||
1472.1,95.4 1472.1,95.4 1472.1,103.2 "/>
|
||||
|
||||
<rect id="rect1336" x="1483.4" y="81.3" transform="matrix(3.112295e-03 -1 1 3.112295e-03 1394.3613 1570.9081)" width="3.4" height="9.6"/>
|
||||
|
||||
<rect id="rect1338" x="1476.5" y="84" transform="matrix(3.104756e-03 -1 1 3.104756e-03 1387.5896 1564.0121)" width="3.4" height="4.1"/>
|
||||
|
||||
<rect id="rect1340" x="1476.6" y="102.8" transform="matrix(3.379855e-03 -1 1 3.379855e-03 1368.4644 1582.7228)" width="3.4" height="4.1"/>
|
||||
<polygon id="polygon1342" points="1493.8,87.9 1489.7,87.9 1489.7,91.3 1489.7,95.4 1489.7,95.4 1489.7,103.2 1480.3,103.2
|
||||
1480.3,106.6 1490,106.6 1490,103.2 1493.8,103.2 1493.8,95.4 1493.8,95.4 1493.8,91.3 "/>
|
||||
<polygon id="polygon1344" points="1530.7,91.3 1530.8,95.4 1530.8,95.4 1530.8,103.2 1534.9,103.2 1534.8,95.4 1534.8,95.4
|
||||
1534.8,91.3 1534.8,87.9 1530.7,87.9 "/>
|
||||
|
||||
<rect id="rect1346" x="1517.1" y="84.4" transform="matrix(1 -3.035083e-03 3.035083e-03 1 -0.2543 4.6195)" width="9.6" height="3.4"/>
|
||||
|
||||
<rect id="rect1348" x="1526.7" y="84.4" transform="matrix(1 -3.379855e-03 3.379855e-03 1 -0.2823 5.1675)" width="4.1" height="3.4"/>
|
||||
|
||||
<rect id="rect1350" x="1526.7" y="103.2" transform="matrix(1 -3.036130e-03 3.036130e-03 1 -0.3114 4.642)" width="4.1" height="3.4"/>
|
||||
<polygon id="polygon1352" points="1513.2,95.4 1513.2,95.4 1513.2,103.2 1517,103.2 1517,106.6 1526.7,106.6 1526.7,103.2
|
||||
1517.3,103.2 1517.2,95.4 1517.3,95.4 1517.2,91.3 1517.2,87.9 1513.1,87.9 1513.2,91.3 "/>
|
||||
<rect id="rect1354" x="1472.4" y="122.1" width="3.5" height="10.6"/>
|
||||
<rect id="rect1356" x="1529.9" y="122.1" width="3.5" height="10.6"/>
|
||||
<path id="path1358" d="M1524,122.1h5.9v-3.5h-26.4h-27.6v3.5h5.9v10.6h-5.9v3.5h27.6h26.4v-3.5h-5.9V122.1z M1491.2,132.7h-5.9
|
||||
v-10.6h5.9V132.7z M1501.7,132.7h-7v-10.6h7V132.7z M1511.1,132.7h-5.9v-10.6h5.9V132.7z M1520.5,132.7h-5.9v-10.6h5.9V132.7z"/>
|
||||
</g>
|
||||
<g id="g1360">
|
||||
<polygon id="polygon1362" points="1156,108.3 1151.9,108.3 1151.9,104.2 1151.9,100.8 1148.5,100.8 1148.5,96.7 1144.4,96.7
|
||||
1140.4,96.7 1137,96.7 1136.9,100.8 1132.9,100.8 1132.9,104.2 1136.9,104.2 1136.9,108.3 1140.3,108.3 1140.3,112.3
|
||||
1144.4,112.4 1148.5,112.4 1151.9,112.4 1155.9,112.4 "/>
|
||||
|
||||
<rect id="rect1364" x="1158.3" y="121.8" transform="matrix(2.817284e-03 -1 1 2.817284e-03 1033.2163 1283.8247)" width="4.1" height="4.1"/>
|
||||
|
||||
<rect id="rect1366" x="1168.7" y="121.9" transform="matrix(2.817284e-03 -1 1 2.817284e-03 1043.4868 1294.2721)" width="4.1" height="4.1"/>
|
||||
<polygon id="polygon1368" points="1193.4,104.2 1197.4,104.2 1197.4,100.8 1193.4,100.8 1193.3,96.7 1189.9,96.7 1185.9,96.7
|
||||
1181.8,96.7 1181.8,100.8 1178.4,100.8 1178.4,104.2 1178.4,108.3 1174.3,108.3 1174.4,112.4 1178.4,112.4 1181.8,112.4
|
||||
1185.9,112.4 1190,112.3 1190,108.3 1193.4,108.3 "/>
|
||||
|
||||
<rect id="rect1370" x="1163.5" y="125" transform="matrix(2.927291e-03 -1 1 2.927291e-03 1027.3768 1299.2382)" width="3.4" height="18.8"/>
|
||||
</g>
|
||||
<g id="g1372">
|
||||
<rect id="rect1374" x="1302.4" y="47.1" class="st3" width="8.2" height="7"/>
|
||||
<rect id="rect1376" x="1310.6" y="40.1" class="st3" width="7" height="7"/>
|
||||
<rect id="rect1378" x="1295.4" y="54.1" class="st3" width="7" height="7"/>
|
||||
<rect id="rect1380" x="1288.3" y="61.2" class="st3" width="7" height="8.2"/>
|
||||
<polygon id="polygon1382" class="st3" points="1317.6,126.8 1317.6,133.9 1324.7,133.9 1331.7,133.9 1331.7,126.8 1324.7,126.8
|
||||
"/>
|
||||
<rect id="rect1384" x="1338.8" y="47.1" class="st3" width="8.2" height="7"/>
|
||||
<rect id="rect1386" x="1331.7" y="40.1" class="st3" width="7" height="7"/>
|
||||
<rect id="rect1388" x="1347" y="54.1" class="st3" width="7" height="7"/>
|
||||
<rect id="rect1390" x="1354" y="61.2" class="st3" width="7" height="8.2"/>
|
||||
<polygon id="polygon1392" class="st3" points="1324.7,33 1317.6,33 1317.6,40.1 1324.7,40.1 1331.7,40.1 1331.7,33 "/>
|
||||
</g>
|
||||
<g id="g1394">
|
||||
<polygon id="polygon1396" points="1308.3,95.2 1291.8,95.2 1291.8,98.7 1289.5,98.7 1289.5,102.2 1287.7,102.2 1287.7,104.6
|
||||
1289.5,104.6 1289.5,108.1 1291.8,108.1 1291.8,111.6 1308.3,111.6 1308.3,108.1 1310.6,108.1 1310.6,98.7 1308.3,98.7 "/>
|
||||
<polygon id="polygon1398" points="1356.3,95.2 1339.9,95.2 1339.9,98.7 1337.6,98.7 1337.6,102.2 1335.8,102.2 1335.8,104.6
|
||||
1337.6,104.6 1337.6,108.1 1339.9,108.1 1339.9,111.6 1356.3,111.6 1356.3,108.1 1358.7,108.1 1358.7,98.7 1356.3,98.7 "/>
|
||||
<rect id="rect1400" x="1308.9" y="85.8" width="2.3" height="2.3"/>
|
||||
<polygon id="polygon1402" points="1292.4,85.8 1308.3,85.8 1308.3,83.5 1291.8,83.5 1291.8,85.8 1290.1,85.8 1290.1,88.1
|
||||
1292.4,88.1 "/>
|
||||
<rect id="rect1404" x="1356.9" y="85.8" width="2.3" height="2.3"/>
|
||||
<polygon id="polygon1406" points="1340.5,85.8 1356.3,85.8 1356.3,83.5 1339.9,83.5 1339.9,85.8 1338.2,85.8 1338.2,88.1
|
||||
1340.5,88.1 "/>
|
||||
<rect id="rect1408" x="1359.3" y="102.2" width="2.3" height="2.3"/>
|
||||
<rect id="rect1410" x="1311.2" y="102.2" width="2.3" height="2.3"/>
|
||||
</g>
|
||||
<polygon id="polygon1412" points="1662.9,102.2 1662.4,102.2 1662.4,98.7 1657.7,98.7 1657.7,96.4 1641.8,96.4 1641.3,96.4
|
||||
1632.5,96.4 1632.5,98.7 1634.6,98.7 1632.5,98.7 1632.5,101 1634.8,101 1634.8,103.4 1637.2,103.4 1637.2,105.7 1638.9,105.7
|
||||
1638.9,108.1 1641.3,108.1 1641.3,111.6 1657.7,111.6 1657.7,108.1 1662.4,108.1 1662.4,104.6 1662.9,104.6 "/>
|
||||
<polyline id="polyline1414" points="1713.4,98.7 1713.4,101 1715.7,101 1715.7,98.7 1713.6,98.7 1715.7,98.7 1715.7,96.4
|
||||
1706.9,96.4 1706.3,96.4 1690.5,96.4 1690.5,98.7 1685.8,98.7 1685.8,108.1 1690.5,108.1 1690.5,111.6 1706.9,111.6 1706.9,108.1
|
||||
1709.3,108.1 1709.3,105.7 1711,105.7 1711,103.4 1713.4,103.4 1713.4,101 "/>
|
||||
<polygon id="polygon1416" points="1685.2,153.8 1683.5,153.8 1683.5,150.3 1681.1,150.3 1681.1,147.9 1674.1,147.9 1667.1,147.9
|
||||
1667.1,150.3 1664.7,150.3 1664.7,153.8 1662.9,153.8 1662.9,156.1 1664.7,156.1 1664.7,159.7 1667.1,159.7 1667.1,162 1674.1,162
|
||||
1681.1,162 1681.1,159.7 1683.5,159.7 1683.5,156.1 1685.2,156.1 "/>
|
||||
<g id="g1418">
|
||||
<polygon id="polygon1420" class="st1" points="1667.1,126.8 1667.1,133.9 1674.1,133.9 1681.1,133.9 1681.1,126.8 1674.1,126.8
|
||||
"/>
|
||||
<path id="path1422" class="st1" d="M1724.5,61.2v-7h-7v-7h-7v-7h-7v-7h-7h-8.2h-7h-7h-7h-7h-8.2h-7v7h-7v7h-7v7h-7v7h-7v8.2v7v7v7
|
||||
v7v7v7v53.9h7v9.4h7v8.2h7h5.9v7v7h7v7h8.2h7h7h7h7h8.2v-7h7v-7v-7h1.2h7h7v-8.2h7v-9.4h7v-53.9v-7v-7v-7v-7v-7v-7v-8.2H1724.5z
|
||||
M1724.5,90.5v7v7v7h-7v7h-7v8.2h-7h-7h-8.2v7v7h8.2h7V169h-7h-1.2h-7h-7h-7h-7h-7h-7h-1.2h-7v-28.1h7h8.2v-7v-7h-8.2h-7h-7v-8.2
|
||||
h-7v-7h-7v-7v-7v-7v-7h7h7h7h7h8.2h7v7h7h7v-7h7h8.2h7h7h7h7V90.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="projectname" transform="translate(-49.287109,243.69023)">
|
||||
</g>
|
||||
<g id="prenames" transform="translate(-304.28859,248.38359)">
|
||||
</g>
|
||||
<g id="logo">
|
||||
<polygon id="polygon1428-4" class="st0" points="526.6,83.4 526.6,26 26.4,26 26.4,83.4 26.4,102.5 26.4,132.2 55.9,102.5
|
||||
526.6,102.5 "/>
|
||||
<path id="path1430-8" inkscape:connector-curvature="0" class="st3" d="M494.6,48.1h4.7v-4.8h-4.7V48.1z M488.3,48.1h4.7v-4.8h-4.7
|
||||
V48.1z M482,48.1h4.7v-4.8H482V48.1z M475.7,48.1h4.7v-4.8h-4.7V48.1z M469.4,48.1h4.7v-4.8h-4.7V48.1z M456.8,48.1h4.7v-4.8h-4.7
|
||||
V48.1z M431.6,48.1h4.7v-4.8h-4.7V48.1z M412.7,48.1h4.7v-4.8h-4.7V48.1z M406.4,48.1h4.7v-4.8h-4.7V48.1z M400.1,48.1h4.7v-4.8
|
||||
h-4.7V48.1z M368.6,48.1h4.7v-4.8h-4.7V48.1z M343.4,48.1h4.7v-4.8h-4.7V48.1z M318.2,48.1h4.7v-4.8h-4.7V48.1z M261.5,48.1h4.7
|
||||
v-4.8h-4.7V48.1z M255.2,48.1h4.7v-4.8h-4.7V48.1z M248.9,48.1h4.7v-4.8h-4.7V48.1z M242.6,48.1h4.7v-4.8h-4.7V48.1z M230,48.1h4.7
|
||||
v-4.8H230V48.1z M204.8,48.1h4.7v-4.8h-4.7V48.1z M192.2,48.1h4.7v-4.8h-4.7V48.1z M186,48.1h4.7v-4.8H186V48.1z M179.7,48.1h4.7
|
||||
v-4.8h-4.7V48.1z M173.4,48.1h4.7v-4.8h-4.7V48.1z M148.2,48.1h4.7v-4.8h-4.7V48.1z M141.9,48.1h4.7v-4.8h-4.7V48.1z M135.6,48.1
|
||||
h4.7v-4.8h-4.7V48.1z M116.7,48.1h4.7v-4.8h-4.7V48.1z M91.5,48.1h4.7v-4.8h-4.7V48.1z M72.6,48.1h4.7v-4.8h-4.7V48.1z M66.3,48.1
|
||||
H71v-4.8h-4.7V48.1z M60,48.1h4.7v-4.8H60V48.1z M53.7,48.1h4.7v-4.8h-4.7V48.1z M374.9,49.7h4.7v-4.8h-4.7V49.7z M362.3,49.7h4.7
|
||||
v-4.8h-4.7V49.7z M419,51.2h4.7v-4.8H419V51.2z M393.8,51.2h4.7v-4.8h-4.7V51.2z M267.8,51.2h4.7v-4.8h-4.7V51.2z M167.1,51.2h4.7
|
||||
v-4.8h-4.7V51.2z M154.5,51.2h4.7v-4.8h-4.7V51.2z M129.3,51.2h4.7v-4.8h-4.7V51.2z M78.9,51.2h4.7v-4.8h-4.7V51.2z M482,54.4h4.7
|
||||
v-4.8H482V54.4z M450.5,54.4h4.7v-4.8h-4.7V54.4z M431.6,54.4h4.7v-4.8h-4.7V54.4z M381.2,54.4h4.7v-4.8h-4.7V54.4z M356,54.4h4.7
|
||||
v-4.8H356V54.4z M343.4,54.4h4.7v-4.8h-4.7V54.4z M318.2,54.4h4.7v-4.8h-4.7V54.4z M242.6,54.4h4.7v-4.8h-4.7V54.4z M230,54.4h4.7
|
||||
v-4.8H230V54.4z M204.8,54.4h4.7v-4.8h-4.7V54.4z M116.7,54.4h4.7v-4.8h-4.7V54.4z M91.5,54.4h4.7v-4.8h-4.7V54.4z M53.7,54.4h4.7
|
||||
v-4.8h-4.7V54.4z M393.8,57.6h4.7v-4.8h-4.7V57.6z M267.8,57.6h4.7v-4.8h-4.7V57.6z M167.1,57.6h4.7v-4.8h-4.7V57.6z M129.3,57.6
|
||||
h4.7v-4.8h-4.7V57.6z M78.9,57.6h4.7v-4.8h-4.7V57.6z M482,60.8h4.7V56H482V60.8z M444.2,60.8h4.7V56h-4.7V60.8z M431.6,60.8h4.7
|
||||
V56h-4.7V60.8z M381.2,60.8h4.7V56h-4.7V60.8z M356,60.8h4.7V56H356V60.8z M343.4,60.8h4.7V56h-4.7V60.8z M318.2,60.8h4.7V56h-4.7
|
||||
V60.8z M242.6,60.8h4.7V56h-4.7V60.8z M230,60.8h4.7V56H230V60.8z M211.1,60.8h4.7V56h-4.7V60.8z M204.8,60.8h4.7V56h-4.7V60.8z
|
||||
M116.7,60.8h4.7V56h-4.7V60.8z M91.5,60.8h4.7V56h-4.7V60.8z M393.8,63.9h4.7v-4.8h-4.7V63.9z M267.8,63.9h4.7v-4.8h-4.7V63.9z
|
||||
M167.1,63.9h4.7v-4.8h-4.7V63.9z M129.3,63.9h4.7v-4.8h-4.7V63.9z M78.9,63.9h4.7v-4.8h-4.7V63.9z M482,67.1h4.7v-4.8H482V67.1z
|
||||
M437.9,67.1h4.7v-4.8h-4.7V67.1z M431.6,67.1h4.7v-4.8h-4.7V67.1z M381.2,67.1h4.7v-4.8h-4.7V67.1z M356,67.1h4.7v-4.8H356V67.1z
|
||||
M343.4,67.1h4.7v-4.8h-4.7V67.1z M337.1,67.1h4.7v-4.8h-4.7V67.1z M330.8,67.1h4.7v-4.8h-4.7V67.1z M324.5,67.1h4.7v-4.8h-4.7
|
||||
V67.1z M318.2,67.1h4.7v-4.8h-4.7V67.1z M242.6,67.1h4.7v-4.8h-4.7V67.1z M230,67.1h4.7v-4.8H230V67.1z M217.4,67.1h4.7v-4.8h-4.7
|
||||
V67.1z M204.8,67.1h4.7v-4.8h-4.7V67.1z M186,67.1h4.7v-4.8H186V67.1z M179.7,67.1h4.7v-4.8h-4.7V67.1z M173.4,67.1h4.7v-4.8h-4.7
|
||||
V67.1z M116.7,67.1h4.7v-4.8h-4.7V67.1z M91.5,67.1h4.7v-4.8h-4.7V67.1z M393.8,70.3h4.7v-4.8h-4.7V70.3z M374.9,70.3h4.7v-4.8
|
||||
h-4.7V70.3z M368.6,70.3h4.7v-4.8h-4.7V70.3z M362.3,70.3h4.7v-4.8h-4.7V70.3z M267.8,70.3h4.7v-4.8h-4.7V70.3z M167.1,70.3h4.7
|
||||
v-4.8h-4.7V70.3z M154.5,70.3h4.7v-4.8h-4.7V70.3z M148.2,70.3h4.7v-4.8h-4.7V70.3z M141.9,70.3h4.7v-4.8h-4.7V70.3z M129.3,70.3
|
||||
h4.7v-4.8h-4.7V70.3z M78.9,70.3h4.7v-4.8h-4.7V70.3z M482,73.4h4.7v-4.8H482V73.4z M444.2,73.4h4.7v-4.8h-4.7V73.4z M431.6,73.4
|
||||
h4.7v-4.8h-4.7V73.4z M381.2,73.4h4.7v-4.8h-4.7V73.4z M356,73.4h4.7v-4.8H356V73.4z M343.4,73.4h4.7v-4.8h-4.7V73.4z M318.2,73.4
|
||||
h4.7v-4.8h-4.7V73.4z M242.6,73.4h4.7v-4.8h-4.7V73.4z M230,73.4h4.7v-4.8H230V73.4z M223.7,73.4h4.7v-4.8h-4.7V73.4z M204.8,73.4
|
||||
h4.7v-4.8h-4.7V73.4z M116.7,73.4h4.7v-4.8h-4.7V73.4z M91.5,73.4h4.7v-4.8h-4.7V73.4z M393.8,76.6h4.7v-4.8h-4.7V76.6z
|
||||
M267.8,76.6h4.7v-4.8h-4.7V76.6z M167.1,76.6h4.7v-4.8h-4.7V76.6z M154.5,76.6h4.7v-4.8h-4.7V76.6z M129.3,76.6h4.7v-4.8h-4.7
|
||||
V76.6z M78.9,76.6h4.7v-4.8h-4.7V76.6z M53.7,76.6h4.7v-4.8h-4.7V76.6z M482,79.8h4.7V75H482V79.8z M450.5,79.8h4.7V75h-4.7V79.8z
|
||||
M431.6,79.8h4.7V75h-4.7V79.8z M381.2,79.8h4.7V75h-4.7V79.8z M356,79.8h4.7V75H356V79.8z M343.4,79.8h4.7V75h-4.7V79.8z
|
||||
M318.2,79.8h4.7V75h-4.7V79.8z M242.6,79.8h4.7V75h-4.7V79.8z M230,79.8h4.7V75H230V79.8z M204.8,79.8h4.7V75h-4.7V79.8z
|
||||
M116.7,79.8h4.7V75h-4.7V79.8z M91.5,79.8h4.7V75h-4.7V79.8z M419,82.9h4.7v-4.8H419V82.9z M393.8,82.9h4.7v-4.8h-4.7V82.9z
|
||||
M267.8,82.9h4.7v-4.8h-4.7V82.9z M167.1,82.9h4.7v-4.8h-4.7V82.9z M154.5,82.9h4.7v-4.8h-4.7V82.9z M129.3,82.9h4.7v-4.8h-4.7
|
||||
V82.9z M78.9,82.9h4.7v-4.8h-4.7V82.9z M53.7,82.9h4.7v-4.8h-4.7V82.9z M482,86.1h4.7v-4.8H482V86.1z M456.8,86.1h4.7v-4.8h-4.7
|
||||
V86.1z M431.6,86.1h4.7v-4.8h-4.7V86.1z M412.7,86.1h4.7v-4.8h-4.7V86.1z M406.4,86.1h4.7v-4.8h-4.7V86.1z M400.1,86.1h4.7v-4.8
|
||||
h-4.7V86.1z M381.2,86.1h4.7v-4.8h-4.7V86.1z M356,86.1h4.7v-4.8H356V86.1z M343.4,86.1h4.7v-4.8h-4.7V86.1z M318.2,86.1h4.7v-4.8
|
||||
h-4.7V86.1z M261.5,86.1h4.7v-4.8h-4.7V86.1z M255.2,86.1h4.7v-4.8h-4.7V86.1z M248.9,86.1h4.7v-4.8h-4.7V86.1z M242.6,86.1h4.7
|
||||
v-4.8h-4.7V86.1z M230,86.1h4.7v-4.8H230V86.1z M204.8,86.1h4.7v-4.8h-4.7V86.1z M192.2,86.1h4.7v-4.8h-4.7V86.1z M186,86.1h4.7
|
||||
v-4.8H186V86.1z M179.7,86.1h4.7v-4.8h-4.7V86.1z M173.4,86.1h4.7v-4.8h-4.7V86.1z M148.2,86.1h4.7v-4.8h-4.7V86.1z M141.9,86.1
|
||||
h4.7v-4.8h-4.7V86.1z M135.6,86.1h4.7v-4.8h-4.7V86.1z M110.4,86.1h4.7v-4.8h-4.7V86.1z M104.1,86.1h4.7v-4.8h-4.7V86.1z
|
||||
M97.8,86.1h4.7v-4.8h-4.7V86.1z M72.6,86.1h4.7v-4.8h-4.7V86.1z M66.3,86.1H71v-4.8h-4.7V86.1z M60,86.1h4.7v-4.8H60V86.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M200.3,881.8v16.9v17.8v17.8v17.8v17.8v17.9v17.8v18.8h17.8v17.8H236v17.9h34.7h17.8h17.8h17.9h17.8H361
|
||||
v-17.9h17.8v-17.8h17.8v-18.8v-17.8v-17.9v-17.8v-17.8v-17.8v-17.8v-16.9h-17.8V864h-35.7v17.8h-17.8v17.8h-18.8h-17.8h-16.9
|
||||
v-17.8h-17.8V864h-35.7v17.8H200.3z M218.2,953.2h13.9v-17.8H361v17.8h17.8v16.9v17.9v18.8H361v17.8h-17.8v17.8h-18.8h-17.9
|
||||
h-17.8h-17.8h-16.9v-17.8H236v-17.8h-17.8v-18.8v-17.9V953.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st3" d="M217,954v16.9v17.8v18.2h20v17h16v19h19.7h17.8h17.8h17.8H344v-19h16v-17h17v-18.2v-17.8V954h-17v-17h-15.9
|
||||
h-17.8h-17.8h-17.8h-17.8H230v17H217z"/>
|
||||
<rect x="344" y="970" width="16" height="20"/>
|
||||
<rect x="237" y="970" width="16" height="20"/>
|
||||
<rect x="306" y="990" width="18" height="17"/>
|
||||
<rect x="271" y="1007" width="53" height="17"/>
|
||||
<rect x="271" y="990" width="19" height="17"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 31 KiB |
562
jh16-berlin/artwork/outro.svg
Normal file
562
jh16-berlin/artwork/outro.svg
Normal file
|
@ -0,0 +1,562 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1"
|
||||
id="Ebene_1" inkscape:version="0.91 r13725" sodipodi:docname="outro.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 1080"
|
||||
style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{font-family:'Ebisu';}
|
||||
.st1{font-size:35px;}
|
||||
.st2{clip-path:url(#SVGID_2_);}
|
||||
.st3{clip-path:url(#SVGID_4_);fill:#1D1D1B;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:#EB5C2E;}
|
||||
.st5{fill:#00A5DD;}
|
||||
.st6{fill:#FFFFFF;}
|
||||
</style>
|
||||
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview812" inkscape:current-layer="Ebene_1" inkscape:cx="1176.6529" inkscape:cy="-176.04838" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="861" inkscape:window-maximized="0" inkscape:window-width="1596" inkscape:window-x="0" inkscape:window-y="18" inkscape:zoom="0.15357475" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<image style="overflow:visible;enable-background:new ;" width="1920" height="1080" id="background" xlink:href="B2C9C601C6833117.png" >
|
||||
</image>
|
||||
<g>
|
||||
<g>
|
||||
<g id="logogroup">
|
||||
<text id="text637" transform="matrix(1 0 0 1 961.0001 846.6875)" class="st0 st1">Eine Veranstaltung von:</text>
|
||||
<g id="g643">
|
||||
<g id="g645" transform="matrix(0.10023656,0,0,0.10023656,2.4018681,1.8542113)">
|
||||
<path id="path647" d="M11517.2,9330.9c-42.2,0-70.5-30.1-70.5-69.2s28.3-69.2,70.5-69.2c42.1,0,70.3,30.2,70.3,69.2
|
||||
C11587.4,9300.8,11559.3,9330.9,11517.2,9330.9z M11517.2,9218.4c-24.2,0-38.3,16.3-38.3,43.2c0,27.1,14.1,43.2,38.3,43.2
|
||||
c24,0,38.1-16.1,38.1-43.2C11555.3,9234.8,11541.1,9218.4,11517.2,9218.4z"/>
|
||||
<path id="path649" d="M11674.6,9284.1v45.3h-31.4V9194h47.8c38.1,0,54.5,19.2,54.5,44.2c0,27-17,45.9-54.5,45.9L11674.6,9284.1
|
||||
L11674.6,9284.1z M11674.6,9260.4h16.4c16.4,0,23-8.2,23-22.2c0-12.3-7.2-20.7-23-20.7h-16.3L11674.6,9260.4L11674.6,9260.4z"
|
||||
/>
|
||||
<path id="path651" d="M11889.9,9194v24.2h-55.6v31.6h42.6v23.2h-42.6v32.2h55.6v24.2h-87.2V9194H11889.9L11889.9,9194z"/>
|
||||
<path id="path653" d="M11982.9,9198.8l64.3,81.3c-0.4-5.2-0.8-10.1-0.8-14.5V9194h27.7v135.4h-16.3c-4.8,0-7.9-1.2-11-5.2
|
||||
l-63.8-80.7c0.4,4.8,0.6,9.3,0.6,13.3v72.6h-27.7V9194h16.5C11977.9,9194,11979.5,9194.6,11982.9,9198.8z"/>
|
||||
<path id="path655" d="M11485.2,9500h5c4.6,0,8-1.5,10-4.4l30.5-44.2c3.3-4.8,7.3-6.2,13.6-6.2h27.3l-40.1,54.7
|
||||
c-2.9,4-5.9,6.4-9.2,8.2c4.7,1.8,8.5,4.5,11.8,9.7l40.9,62.8h-28.1c-7.1,0-9.7-2-12.3-5.8l-30.7-47.1
|
||||
c-2.2-3.4-5.3-4.7-11.1-4.7h-7.6v57.6h-31.4v-135.4h31.4L11485.2,9500L11485.2,9500z"/>
|
||||
<path id="path657" d="M11661.6,9450l64.3,81.3c-0.5-5.2-0.8-10.1-0.8-14.5v-71.7h27.7v135.4h-16.3c-4.8,0-7.9-1.2-11-5.2
|
||||
l-63.9-80.7c0.4,4.7,0.6,9.3,0.6,13.3v72.6h-27.7v-135.4h16.5C11656.6,9445.2,11658.2,9445.8,11661.6,9450z"/>
|
||||
<path id="path659" d="M11883.2,9582.1c-42.2,0-70.5-30.1-70.5-69.2c0-39.1,28.3-69.2,70.5-69.2c42.1,0,70.3,30.2,70.3,69.2
|
||||
C11953.5,9552,11925.3,9582.1,11883.2,9582.1z M11883.2,9469.6c-24.2,0-38.3,16.3-38.3,43.2c0,27.1,14.1,43.2,38.3,43.2
|
||||
c24,0,38.1-16.1,38.1-43.2C11921.3,9486,11907.2,9469.6,11883.2,9469.6z"/>
|
||||
<path id="path661" d="M11987.9,9445.2h26.4c5.5,0,9.3,2.7,10.4,6.8l18.6,70.6c1.2,4.5,2.6,9.8,3.2,15.5
|
||||
c1.2-5.8,2.8-11,4.2-15.5l21.9-70.6c1.1-3.4,5-6.8,10.2-6.8h9.3c5.5,0,9,2.6,10.4,6.8l21.7,70.6c1.4,4.4,3,9.2,4.1,14.8
|
||||
c1-5.5,2-10.4,3.1-14.8l18.6-70.6c1-3.6,5-6.8,10.2-6.8h24.7l-41.8,135.4h-28.4l-25.5-83.9c-0.8-2.6-1.8-5.8-2.7-9.2
|
||||
c-0.8,3.4-1.8,6.6-2.7,9.2l-25.8,83.9h-28.4L11987.9,9445.2z"/>
|
||||
<path id="path663" d="M12273.3,9555.5h50.2v25.1h-81.6v-135.4h31.4L12273.3,9555.5L12273.3,9555.5L12273.3,9555.5z"/>
|
||||
<path id="path665" d="M12477.4,9445.2v24.2h-55.6v31.6h42.6v23.2h-42.6v32.2h55.6v24.2h-87.2v-135.4H12477.4L12477.4,9445.2z"
|
||||
/>
|
||||
<path id="path667" d="M12596.1,9580.6h-52.6v-135.4h52.6c42.1,0,70.3,28.7,70.3,67.7
|
||||
C12666.3,9552,12638.1,9580.6,12596.1,9580.6z M12596.1,9469.3h-21v87.1h21c24,0,38.1-16.5,38.1-43.6
|
||||
C12634.1,9486,12620,9469.3,12596.1,9469.3z"/>
|
||||
<path id="path669" d="M12807.1,9553.8v-20.5h-13.4c-4,0-6.3-2.3-6.3-5.6v-17.3h48.1v57.2c-13.8,10.1-29.7,14.5-51.9,14.5
|
||||
c-39.6,0-69.2-29.5-69.2-69.2c0-40.4,27.9-69.2,71.6-69.2c22.7,0,39.5,7.8,50.4,18.2l-9.1,13.8c-1.8,2.6-4.2,4.2-7,4.2
|
||||
c-1.8,0-3.8-0.7-5.8-1.8c-9.9-5.9-16.9-8.4-29.5-8.4c-23.4,0-38.3,17.3-38.3,43.2c0,28.6,16.7,45.1,39.4,45.1
|
||||
C12794.7,9557.9,12801.1,9556.3,12807.1,9553.8L12807.1,9553.8z"/>
|
||||
<path id="path671" d="M12986.3,9445.2v24.2h-55.6v31.6h42.6v23.2h-42.6v32.2h55.6v24.2h-87.2v-135.4H12986.3L12986.3,9445.2z"
|
||||
/>
|
||||
<path id="path673" d="M11541,9696.3v24.2h-55.6v34.3h46.3v24.3h-46.3v52.7h-31.6v-135.5H11541L11541,9696.3z"/>
|
||||
<path id="path675" d="M11746.8,9764c0,9.8-1.7,18.9-5.1,27.3c-3.4,8.4-8.1,15.7-14.3,22c-6.1,6.2-13.5,11.1-22.2,14.6
|
||||
c-8.6,3.5-18.2,5.3-28.8,5.3c-10.5,0-20.1-1.8-28.8-5.3s-16.1-8.4-22.3-14.6c-6.2-6.2-10.9-13.5-14.3-22
|
||||
c-3.4-8.4-5-17.5-5-27.3s1.7-18.9,5.1-27.3c3.4-8.4,8.1-15.7,14.3-21.9s13.6-11.1,22.3-14.6s18.3-5.3,28.8-5.3
|
||||
s20.1,1.8,28.8,5.3s16,8.4,22.2,14.6c6.1,6.2,10.9,13.5,14.3,21.9C11745.1,9745.2,11746.8,9754.3,11746.8,9764z M11714.6,9764
|
||||
c0-6.7-0.9-12.7-2.6-18.1c-1.7-5.4-4.2-9.9-7.5-13.6c-3.2-3.7-7.2-6.6-11.9-8.5s-10.1-3-16.1-3c-6.1,0-11.5,1-16.2,3
|
||||
c-4.8,2-8.7,4.8-12,8.5c-3.2,3.7-5.7,8.3-7.5,13.6c-1.7,5.4-2.6,11.4-2.6,18.1c0,6.7,0.9,12.8,2.6,18.2
|
||||
c1.7,5.4,4.2,9.9,7.5,13.6c3.2,3.7,7.2,6.5,12,8.5c4.7,1.9,10.1,2.9,16.2,2.9c6,0,11.4-1,16.1-2.9c4.7-2,8.7-4.8,11.9-8.5
|
||||
s5.7-8.2,7.5-13.6C11713.7,9776.8,11714.6,9770.7,11714.6,9764z"/>
|
||||
<path id="path677" d="M11873.9,9806.9c4.2,0,8-0.7,11.3-2.1c3.3-1.4,6.1-3.4,8.4-6s4-5.8,5.2-9.5c1.2-3.8,1.8-8,1.8-12.8v-80.2
|
||||
h31.4v80.2c0,8.3-1.3,15.9-4,22.9c-2.7,6.9-6.5,12.9-11.6,17.9c-5,5-11.1,8.9-18.3,11.7s-15.3,4.2-24.3,4.2s-17.2-1.4-24.3-4.2
|
||||
c-7.2-2.8-13.3-6.7-18.3-11.7c-5-5-8.8-11-11.5-17.9s-4-14.5-4-22.9v-80.2h31.4v80.1c0,4.8,0.6,9,1.8,12.8s2.9,6.9,5.2,9.6
|
||||
c2.3,2.6,5.1,4.6,8.4,6C11866,9806.2,11869.7,9806.9,11873.9,9806.9z"/>
|
||||
<path id="path679" d="M12028.3,9696.5c0.9,0.1,1.8,0.4,2.5,0.7c0.8,0.4,1.4,0.8,2.1,1.5c0.7,0.6,1.4,1.4,2.3,2.5l64.3,81.3
|
||||
c-0.2-2.6-0.4-5.1-0.5-7.6s-0.2-4.8-0.2-6.9v-71.7h27.7v135.5h-16.3c-2.4,0-4.4-0.4-6.1-1.1c-1.7-0.8-3.3-2.1-4.8-4.1
|
||||
l-63.9-80.7c0.2,2.3,0.4,4.7,0.5,6.9c0.1,2.3,0.2,4.4,0.2,6.4v72.6h-27.7v-135.5h16.5
|
||||
C12026.3,9696.3,12027.4,9696.4,12028.3,9696.5z"/>
|
||||
<path id="path681" d="M12327.6,9764c0,9.8-1.7,18.8-5.1,27.1s-8.1,15.4-14.3,21.5c-6.1,6-13.5,10.7-22.2,14.1
|
||||
c-8.6,3.4-18.2,5.1-28.8,5.1h-52.6v-135.5h52.6c10.5,0,20.1,1.7,28.8,5.1c8.6,3.4,16,8.1,22.2,14.1c6.1,6,10.9,13.1,14.3,21.4
|
||||
C12325.9,9745.3,12327.6,9754.3,12327.6,9764z M12295.4,9764c0-6.7-0.9-12.7-2.6-18.1c-1.7-5.4-4.2-10-7.5-13.7
|
||||
c-3.2-3.7-7.2-6.6-11.9-8.6c-4.7-2-10.1-3-16.1-3h-21v87.1h21c6,0,11.4-1,16.1-3s8.7-4.9,11.9-8.6c3.2-3.7,5.8-8.3,7.5-13.7
|
||||
C12294.6,9776.8,12295.4,9770.7,12295.4,9764L12295.4,9764z"/>
|
||||
<path id="path683" d="M12524.5,9831.7h-24.3c-2.7,0-5-0.6-6.7-1.9c-1.8-1.3-3-2.9-3.7-4.9l-8-23.6h-51.5l-8,23.6
|
||||
c-0.6,1.7-1.8,3.3-3.6,4.7s-4,2.1-6.6,2.1h-24.5l52.4-135.5h32.2L12524.5,9831.7L12524.5,9831.7z M12437.5,9780h37l-12.4-37.1
|
||||
c-0.8-2.3-1.7-5.1-2.8-8.3s-2.1-6.6-3.2-10.4c-1,3.8-2,7.3-3.1,10.5s-2,6-3,8.4L12437.5,9780L12437.5,9780z"/>
|
||||
<path id="path685" d="M12689.6,9696.3v24.9h-38.1v110.5h-31.4v-110.5h-38.1v-24.9H12689.6z"/>
|
||||
<path id="path687" d="M12792.8,9831.7h-31.6v-135.5h31.6V9831.7z"/>
|
||||
<path id="path689" d="M13007.3,9764c0,9.8-1.7,18.9-5.1,27.3c-3.4,8.4-8.1,15.7-14.3,22c-6.1,6.2-13.5,11.1-22.2,14.6
|
||||
c-8.6,3.5-18.2,5.3-28.8,5.3c-10.5,0-20.1-1.8-28.8-5.3s-16.1-8.4-22.3-14.6c-6.2-6.2-10.9-13.5-14.3-22
|
||||
c-3.4-8.4-5.1-17.5-5.1-27.3s1.7-18.9,5.1-27.3c3.4-8.4,8.1-15.7,14.3-21.9s13.6-11.1,22.3-14.6s18.3-5.3,28.8-5.3
|
||||
c10.5,0,20.1,1.8,28.8,5.3s16,8.4,22.2,14.6c6.1,6.2,10.9,13.5,14.3,21.9C13005.6,9745.2,13007.3,9754.3,13007.3,9764z
|
||||
M12975.1,9764c0-6.7-0.9-12.7-2.6-18.1c-1.7-5.4-4.2-9.9-7.5-13.6c-3.2-3.7-7.2-6.6-11.9-8.5s-10.1-3-16.1-3
|
||||
c-6.1,0-11.5,1-16.2,3c-4.8,2-8.7,4.8-12,8.5c-3.2,3.7-5.7,8.3-7.5,13.6c-1.7,5.4-2.6,11.4-2.6,18.1c0,6.7,0.9,12.8,2.6,18.2
|
||||
c1.7,5.4,4.2,9.9,7.5,13.6c3.2,3.7,7.2,6.5,12,8.5c4.7,1.9,10.1,2.9,16.2,2.9c6,0,11.4-1,16.1-2.9c4.7-2,8.7-4.8,11.9-8.5
|
||||
s5.7-8.2,7.5-13.6C12974.3,9776.8,12975.1,9770.7,12975.1,9764z"/>
|
||||
<path id="path691" d="M13098.1,9696.5c0.9,0.1,1.8,0.4,2.5,0.7c0.8,0.4,1.4,0.8,2.1,1.5c0.7,0.6,1.4,1.4,2.3,2.5l64.3,81.3
|
||||
c-0.2-2.6-0.4-5.1-0.5-7.6s-0.2-4.8-0.2-6.9v-71.7h27.7v135.5h-16.3c-2.4,0-4.4-0.4-6.1-1.1s-3.3-2.1-4.8-4.1l-63.9-80.7
|
||||
c0.2,2.3,0.3,4.7,0.5,6.9c0.1,2.3,0.2,4.4,0.2,6.4v72.6h-27.7v-135.5h16.5C13096,9696.3,13097.2,9696.4,13098.1,9696.5
|
||||
L13098.1,9696.5z"/>
|
||||
|
||||
<rect id="rect693" x="10703.3" y="9010" transform="matrix(0.5985 -0.8011 0.8011 0.5985 -2854.5366 12376.7256)" width="434.8" height="52.5"/>
|
||||
|
||||
<rect id="rect695" x="10651.4" y="9039.9" transform="matrix(0.4459 -0.8951 0.8951 0.4459 -2154.9434 14651.3008)" width="209.4" height="52.5"/>
|
||||
|
||||
<rect id="rect697" x="10501" y="8940.8" transform="matrix(0.2789 -0.9603 0.9603 0.2789 -920.2657 16708.5273)" width="329.3" height="52.5"/>
|
||||
<polygon id="polygon699" points="10521.3,8895.7 10573.6,8901.1 10552,9109.4 10499.8,9103.9 "/>
|
||||
<polygon id="polygon701" points="10438.3,8869.4 10456.2,9103.3 10403.8,9107.3 10385.9,8873.4 "/>
|
||||
<polygon id="polygon703" points="10320.2,8959.2 10360.8,9114.5 10310,9127.8 10269.4,8972.5 "/>
|
||||
|
||||
<rect id="rect705" x="10195.6" y="9050.8" transform="matrix(0.9066 -0.4219 0.4219 0.9066 -2887.011 5162.833)" width="52.5" height="107.6"/>
|
||||
<polygon id="polygon707" points="10159.3,9152 10183.6,9186.5 10140.7,9216.8 10116.4,9182.3 "/>
|
||||
<polygon id="polygon709" points="9984.3,9124.1 10107.5,9245 10070.7,9282.5 9947.5,9161.6 "/>
|
||||
<polygon id="polygon711" points="9852.4,9185.5 10043,9316.2 10013.5,9359.6 9822.9,9228.9 "/>
|
||||
<polygon id="polygon713" points="9872.2,9344.5 9992.3,9397.7 9971,9445.7 9851,9392.5 "/>
|
||||
<polygon id="polygon715" points="9956.9,9487 9601.4,9400.9 9589.1,9451.9 9944.6,9538.1 "/>
|
||||
|
||||
<rect id="rect717" x="9777.6" y="9466.9" transform="matrix(5.810124e-02 -0.9983 0.9983 5.810124e-02 -349.3207 18829.2578)" width="52.5" height="265.7"/>
|
||||
|
||||
<rect id="rect719" x="9681.8" y="9692.9" transform="matrix(0.9927 -0.1209 0.1209 0.9927 -1103.0343 1257.4363)" width="259" height="52.5"/>
|
||||
|
||||
<rect id="rect721" x="9901.2" y="9779.9" transform="matrix(0.9551 -0.2964 0.2964 0.9551 -2460.1931 3384.1438)" width="60.2" height="52.5"/>
|
||||
|
||||
<rect id="rect723" x="9790.7" y="9909.8" transform="matrix(0.8869 -0.462 0.462 0.8869 -3470.572 5697.479)" width="217.9" height="52.5"/>
|
||||
|
||||
<rect id="rect725" x="9837.6" y="10012.2" transform="matrix(0.7901 -0.613 0.613 0.7901 -4063.8154 8209.5508)" width="234.9" height="52.5"/>
|
||||
|
||||
<rect id="rect727" x="9921.7" y="10095.7" transform="matrix(0.6678 -0.7443 0.7443 0.6678 -4200.1636 10832.4717)" width="229" height="52.5"/>
|
||||
|
||||
<rect id="rect729" x="10109.3" y="10112.9" transform="matrix(0.5242 -0.8516 0.8516 0.5242 -3799.2646 13478.2539)" width="105.7" height="52.5"/>
|
||||
<polygon id="polygon731" points="10251.3,10127.4 10300.2,10146.5 10225.4,10338.2 10176.4,10319.1 "/>
|
||||
|
||||
<rect id="rect733" x="10255.6" y="10230" transform="matrix(0.1916 -0.9815 0.9815 0.1916 -1699.2485 18449.4805)" width="188.8" height="52.5"/>
|
||||
<polygon id="polygon735" points="10437,10173.3 10489.5,10174 10487.8,10305.4 10435.3,10304.7 "/>
|
||||
<polygon id="polygon737" points="10584.8,10162 10626.8,10412.6 10575,10421.2 10533,10170.8 "/>
|
||||
|
||||
<rect id="rect739" x="10651.2" y="10137.5" transform="matrix(0.9408 -0.3389 0.3389 0.9408 -2829.7842 4223.1348)" width="52.5" height="153.4"/>
|
||||
<polygon id="polygon741" points="10951.9,10413.5 10761.4,10088.6 10715.9,10114.9 10906.4,10439.8 "/>
|
||||
<polygon id="polygon743" points="10836,10028.3 10865,10058.1 10827.1,10094.4 10798,10064.6 "/>
|
||||
<polygon id="polygon745" points="10900.9,9957.8 11031.9,10065.1 10998.5,10105.7 10867.6,9998.4 "/>
|
||||
<polygon id="polygon747" points="10950.9,9875.8 11084.7,9950.1 11059.2,9996 10925.5,9921.7 "/>
|
||||
<polygon id="polygon749" points="10985.5,9786.2 11050.1,9808.2 11033.3,9857.9 10968.6,9835.9 "/>
|
||||
|
||||
<rect id="rect751" x="11074.9" y="9630.4" transform="matrix(0.1474 -0.9891 0.9891 0.1474 -161.6034 19278.1133)" width="52.5" height="204.7"/>
|
||||
<polygon id="polygon753" points="11134.4,9591.8 11136.1,9644.3 11006.2,9648.4 11004.5,9595.9 "/>
|
||||
|
||||
<rect id="rect755" x="10992" y="9483.4" transform="matrix(0.9778 -0.2096 0.2096 0.9778 -1747.2235 2532.3455)" width="164.3" height="52.5"/>
|
||||
<polygon id="polygon757" points="11059,9368.3 11079,9416.9 10975.4,9459.6 10955.4,9411 "/>
|
||||
<polygon id="polygon759" points="11181.2,9152.2 11209.5,9196.5 10935.3,9372.3 10907,9328.1 "/>
|
||||
<polygon id="polygon761" points="10885.9,9216.6 10921.7,9255 10880.3,9293.6 10844.5,9255.2 "/>
|
||||
<path id="path763" d="M10430.2,9598.8c-4.2-4.8-9.3-8.5-15.4-11.1s-13-3.9-20.7-3.9h-27.1v112.4h27.1c7.7,0,14.7-1.3,20.8-3.9
|
||||
c6.1-2.6,11.2-6.3,15.4-11.1s7.4-10.7,9.6-17.7c2.2-6.9,3.4-14.8,3.4-23.5c0-8.6-1.1-16.4-3.3-23.4
|
||||
C10437.6,9609.6,10434.4,9603.7,10430.2,9598.8z"/>
|
||||
<path id="path765" d="M10800.8,9649.3l-1.2-38.5l-116.7,3.6l114.2-24.3l-8-37.6l-114.2,24.3l108-44.3l-14.6-35.6l-107.9,44.3
|
||||
l98.3-62.8l-20.7-32.4l-98.4,62.9l85.6-79.4l-26.2-28.2l-85.6,79.4l70-93.4l-30.8-23.1l-70,93.4l52.2-104.4l-34.4-17.2
|
||||
l-52.2,104.4l32.7-112.1l-36.9-10.8l-32.7,112.1l12.2-116.1l-38.3-4l-12.6,120.2l-9.4-120.5l-38.4,3l9.1,116.3l-29.7-112.8
|
||||
l-37.2,9.8l29.7,112.9l-49.4-105.8l-34.9,16.3l49.4,105.8l-67.6-95.3l-31.4,22.2l67.5,95.3l-83.4-81.7l-26.9,27.5l83.4,81.7
|
||||
l-96.6-65.5l-21.6,31.9l96.7,65.5l-106.8-47.2l-15.6,35.2l106.8,47.2l-113.5-27.4l-9,37.4l113.5,27.4l-116.5-6.7l-2.2,38.4
|
||||
l116.6,6.7l-115.9,14.2l4.7,38.2l115.9-14.2l-111.5,34.7l11.4,36.8l111.5-34.7l-103.5,54l17.8,34.1l103.5-54l-92.2,71.6
|
||||
l23.6,30.4l92.2-71.6l-77.9,86.9l28.7,25.7l77.9-86.9l-61.2,99.4l32.8,20.2l61.2-99.4l-42.5,108.8l35.9,14l42.5-108.8
|
||||
l-22.4,114.6l37.8,7.4l22.4-114.5l-1.5,116.7l38.5,0.5l1.5-116.8l19.3,115.2l38-6.4l-19.3-115.1l39.5,109.8l36.2-13
|
||||
l-39.5-109.8l58.5,101l33.3-19.3l-58.5-101l75.6,88.9l29.3-24.9l-75.6-89l90.2,74l24.4-29.8l-90.3-74.1l102.1,56.8l18.7-33.6
|
||||
l-102-56.7l110.5,37.6l12.4-36.4l-110.5-37.6l115.5,17.3l5.7-38.1l-115.5-17.3L10800.8,9649.3L10800.8,9649.3z M10478.2,9674.9
|
||||
c-4.3,10.7-10.5,19.9-18.4,27.7s-17.4,13.9-28.6,18.2c-11.1,4.4-23.5,6.5-37.1,6.5h-67.9v-174.8h67.9c13.6,0,26,2.2,37.1,6.6
|
||||
c11.2,4.4,20.7,10.5,28.6,18.2c7.9,7.8,14,17,18.4,27.6c4.4,10.7,6.5,22.3,6.5,34.8
|
||||
C10484.7,9652.6,10482.5,9664.2,10478.2,9674.9z M10616.7,9583.8h-71.7v40.8h54.9v30h-54.9v41.6h71.7v31.2h-112.5v-174.8h112.5
|
||||
V9583.8z"/>
|
||||
<path id="path767" d="M11565.8,9985.7c0,9.9-1.6,19-4.7,27.1c-3.1,8.1-7.6,15.1-13.3,20.9c-5.7,5.8-12.6,10.3-20.6,13.4
|
||||
c-8,3.2-16.9,4.8-26.6,4.8h-49.6v-132.5h49.6c9.7,0,18.6,1.6,26.6,4.8s14.9,7.7,20.6,13.5s10.2,12.8,13.3,20.9
|
||||
S11565.8,9975.8,11565.8,9985.7z M11547.4,9985.7c0-8.1-1.1-15.4-3.3-21.8c-2.2-6.4-5.4-11.8-9.4-16.3
|
||||
c-4.1-4.4-9-7.8-14.8-10.2s-12.2-3.5-19.3-3.5h-31.5v103.5h31.5c7.1,0,13.5-1.2,19.3-3.5s10.7-5.7,14.8-10.1
|
||||
c4.1-4.4,7.2-9.8,9.4-16.2S11547.4,9993.9,11547.4,9985.7z"/>
|
||||
<path id="path769" d="M11726.7,9919.4v14.6h-63.6v44h51.5v14h-51.5v45.2h63.6v14.6h-81.7v-132.5L11726.7,9919.4z"/>
|
||||
<path id="path771" d="M11858.7,10037.7c5.5,0,10.4-0.9,14.7-2.8c4.3-1.8,8-4.4,11-7.8c3-3.3,5.3-7.3,6.8-11.9
|
||||
c1.6-4.6,2.3-9.7,2.3-15.2v-80.6h17.8v80.6c0,7.6-1.2,14.7-3.6,21.3c-2.4,6.5-5.9,12.2-10.4,17s-10.1,8.5-16.6,11.2
|
||||
s-13.9,4.1-22,4.1s-15.5-1.3-22-4.1c-6.5-2.8-12.1-6.4-16.6-11.2s-8-10.4-10.5-17c-2.4-6.5-3.6-13.6-3.6-21.3v-80.6h17.8v80.5
|
||||
c0,5.5,0.8,10.6,2.3,15.2c1.6,4.6,3.8,8.6,6.8,11.9c3,3.3,6.6,5.9,11,7.8C11848.3,10036.8,11853.2,10037.7,11858.7,10037.7z"/>
|
||||
<path id="path773" d="M12087.3,9919.4v15.1h-42.8v117.5h-17.9v-117.5h-43v-15.1H12087.3z"/>
|
||||
<path id="path775" d="M12228.8,9940.2c-0.5,0.9-1.1,1.6-1.7,2.1c-0.6,0.5-1.4,0.7-2.4,0.7c-1.1,0-2.3-0.5-3.6-1.6
|
||||
c-1.4-1-3.1-2.2-5.3-3.5c-2.1-1.2-4.7-2.4-7.7-3.5c-3-1-6.6-1.6-10.9-1.6c-4,0-7.5,0.5-10.6,1.6s-5.6,2.5-7.7,4.4
|
||||
c-2.1,1.8-3.6,4-4.7,6.5c-1,2.5-1.6,5.2-1.6,8.1c0,3.7,0.9,6.8,2.7,9.2s4.2,4.5,7.2,6.2s6.4,3.2,10.2,4.5s7.7,2.6,11.6,3.9
|
||||
c4,1.3,7.9,2.9,11.6,4.6c3.8,1.7,7.2,3.8,10.2,6.4c3,2.6,5.4,5.8,7.2,9.5s2.7,8.4,2.7,13.9c0,5.8-1,11.2-3,16.3
|
||||
s-4.8,9.5-8.6,13.3s-8.4,6.7-14,8.9c-5.5,2.1-11.8,3.2-18.8,3.2c-8.6,0-16.4-1.5-23.4-4.7c-7.1-3.1-13.1-7.3-18.1-12.6l5.2-8.5
|
||||
c0.5-0.7,1.1-1.2,1.8-1.7s1.5-0.7,2.3-0.7c1.3,0,2.8,0.7,4.4,2.1c1.7,1.4,3.7,2.9,6.2,4.6c2.5,1.7,5.5,3.2,9.1,4.6
|
||||
s7.9,2.1,13,2.1c4.2,0,8-0.6,11.4-1.7s6.1-2.8,8.5-4.9c2.3-2.1,4.1-4.7,5.3-7.6s1.8-6.2,1.8-9.9c0-4-0.9-7.3-2.7-9.8
|
||||
s-4.2-4.7-7.2-6.4c-2.9-1.7-6.3-3.2-10.1-4.4s-7.7-2.4-11.6-3.7s-7.8-2.7-11.6-4.4s-7.2-3.8-10.1-6.5c-3-2.6-5.3-6-7.2-9.9
|
||||
c-1.8-4-2.7-8.9-2.7-14.7c0-4.7,0.9-9.2,2.7-13.6c1.8-4.4,4.4-8.2,7.9-11.6c3.4-3.4,7.7-6.1,12.8-8.1s10.9-3,17.5-3
|
||||
c7.4,0,14.1,1.2,20.2,3.5s11.4,5.7,16,10.2L12228.8,9940.2z"/>
|
||||
<path id="path777" d="M12407.1,10024.6c1,0,1.9,0.4,2.7,1.2l7,7.7c-5.4,6.3-12,11.2-19.7,14.7s-17.1,5.3-28,5.3
|
||||
c-9.5,0-18.2-1.7-26-4.9c-7.8-3.3-14.4-7.9-19.9-13.9c-5.5-5.9-9.7-13.1-12.8-21.4s-4.5-17.5-4.5-27.5s1.6-19.1,4.8-27.5
|
||||
c3.2-8.3,7.8-15.5,13.6-21.4c5.9-6,12.9-10.6,21-13.9c8.2-3.3,17.2-4.9,27-4.9c9.7,0,18.1,1.5,25.2,4.5c7,3,13.3,7.1,18.8,12.3
|
||||
l-5.8,8.2c-0.4,0.6-0.9,1.1-1.5,1.5c-0.5,0.4-1.4,0.6-2.4,0.6c-0.8,0-1.6-0.3-2.5-0.9c-0.9-0.6-2-1.3-3.2-2.2
|
||||
c-1.2-0.8-2.7-1.8-4.3-2.8c-1.7-1-3.6-1.9-5.9-2.8c-2.3-0.9-4.9-1.6-7.9-2.2c-3-0.6-6.5-0.9-10.4-0.9c-7.1,0-13.6,1.2-19.5,3.6
|
||||
c-5.9,2.5-10.9,5.9-15.2,10.4c-4.2,4.5-7.6,10-9.9,16.5c-2.4,6.5-3.6,13.7-3.6,21.7c0,8.3,1.2,15.6,3.6,22.1
|
||||
c2.4,6.5,5.6,11.9,9.7,16.4c4.1,4.5,8.9,7.9,14.6,10.2c5.6,2.3,11.6,3.5,18.1,3.5c3.9,0,7.5-0.2,10.6-0.7s6-1.2,8.7-2.2
|
||||
s5.2-2.2,7.5-3.8c2.3-1.5,4.6-3.3,7-5.4C12405.1,10025.1,12406.1,10024.6,12407.1,10024.6L12407.1,10024.6z"/>
|
||||
<path id="path779" d="M12602.6,10052h-18v-60.3h-71.4v60.3h-18v-132.5h18v59.1h71.4v-59.1h18V10052L12602.6,10052z"/>
|
||||
<path id="path781" d="M12707.6,10036.9h57.3v15.1h-75.3v-132.5h17.9L12707.6,10036.9L12707.6,10036.9z"/>
|
||||
<path id="path783" d="M12948.6,10052h-13.9c-1.6,0-2.9-0.4-3.9-1.2s-1.7-1.8-2.2-3l-12.4-32h-59.5l-12.4,32
|
||||
c-0.4,1.1-1.2,2.1-2.2,3s-2.3,1.3-3.9,1.3h-13.9l53-132.5h18.2L12948.6,10052L12948.6,10052z M12861.7,10002.8h49.5l-20.8-53.9
|
||||
c-1.3-3.3-2.7-7.5-4-12.5c-0.7,2.5-1.4,4.8-2,7c-0.7,2.1-1.3,4-1.9,5.6L12861.7,10002.8L12861.7,10002.8z"/>
|
||||
<path id="path785" d="M13032.9,9920c0.8,0.4,1.7,1.2,2.7,2.4l76.8,99.9c-0.2-1.6-0.3-3.1-0.4-4.7c0-1.5-0.1-3-0.1-4.4v-93.9
|
||||
h15.7v132.5h-9c-1.4,0-2.6-0.2-3.6-0.8c-1-0.5-1.9-1.3-2.8-2.5l-76.7-99.8c0.1,1.5,0.2,3,0.3,4.5s0.1,2.8,0.1,4.1v94.4h-15.7
|
||||
v-132.5h9.2C13030.9,9919.4,13032.1,9919.6,13032.9,9920L13032.9,9920z"/>
|
||||
<path id="path787" d="M13329.5,9985.7c0,9.9-1.6,19-4.7,27.1c-3.1,8.1-7.6,15.1-13.3,20.9s-12.6,10.3-20.6,13.4
|
||||
c-8,3.2-16.9,4.8-26.6,4.8h-49.6v-132.5h49.6c9.7,0,18.6,1.6,26.6,4.8s14.9,7.7,20.6,13.5c5.8,5.8,10.2,12.8,13.3,20.9
|
||||
S13329.5,9975.8,13329.5,9985.7z M13311.1,9985.7c0-8.1-1.1-15.4-3.3-21.8c-2.2-6.4-5.4-11.8-9.4-16.3
|
||||
c-4.1-4.4-9-7.8-14.8-10.2c-5.8-2.3-12.2-3.5-19.3-3.5h-31.5v103.5h31.5c7.1,0,13.5-1.2,19.3-3.5s10.7-5.7,14.8-10.1
|
||||
c4.1-4.4,7.2-9.8,9.4-16.2C13310,10001.2,13311.1,9993.9,13311.1,9985.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="1415" y="899.9" width="428.6" height="115.9"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st2">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="1415" y="899.9" width="428.6" height="115.9"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path class="st3" d="M1484.4,960v9.6c0,1-0.2,2-1.5,2c-1.3,0-1.5-1-1.5-2v-9.8c0-0.5,0.1-1.4-0.7-1.4c-0.3,0-0.6,0.3-0.8,0.5
|
||||
l-1.3,1.2v9.6c0,1-0.2,2-1.5,2s-1.5-1-1.5-2v-12.4c0-1,0.3-2.1,1.5-2.1c0.7,0,1.2,0.5,1.4,1.2l0.2-0.2c0.8-0.6,1.2-1,2.2-1
|
||||
c1.1,0,2,0.6,2.7,1.5l0.2-0.2c0.9-0.9,1.3-1.2,2.6-1.2c1,0,1.9,0.4,2.4,1.2c0.7,0.9,0.7,1.8,0.7,2.9l0.3,10.2
|
||||
c0,1-0.1,2.2-1.4,2.2c-1.2,0-1.4-1-1.5-2l-0.3-9.7c0-0.5,0.1-1.6-0.7-1.6c-0.4,0-1,0.7-1.2,1L1484.4,960z"/>
|
||||
<path class="st3" d="M1502.4,971.6c-1.2,0-1.7,0-2.6-0.8l-1.3-1.1c-1.2-1-1.5-1.7-1.5-3.3v-5.7c0-1.6,0.2-2.5,1.4-3.5l1-0.9
|
||||
c1.4-1.2,2.1-1.2,3.2-1.2h2.7c1.4,0,2.1,0.2,3.2,1.1l1.2,0.9c1.3,1.1,1.5,2.2,1.5,3.8v2.4c0,1.7-0.3,2.2-2,2.2h-9.4v1
|
||||
c0,0.3,0.2,0.6,0.4,0.9l0.7,0.8c0.4,0.4,1,0.6,2,0.6h6.3c1,0,2,0.2,2,1.5c0,1.3-1.2,1.5-2,1.5H1502.4z M1499.9,962.6h8.5v-1.8
|
||||
c0-0.6,0-1-0.4-1.4l-1.1-1c-0.4-0.3-0.9-0.4-1.4-0.4h-2.5c-0.6,0-1,0-1.5,0.3l-1,0.7c-0.4,0.3-0.6,0.5-0.6,1.3V962.6z"/>
|
||||
<path class="st3" d="M1526.3,955.1c1,0,1.8,0.6,2.9,1.6l0.5,0.5v-6.2c0-1,0.2-2,1.5-2c1.3,0,1.5,1,1.5,2v18.5
|
||||
c0,1-0.2,2.1-1.5,2.1c-1.2,0-1.5-1-1.5-2v-0.2l-0.6,0.6c-0.9,0.9-1.9,1.5-2.8,1.5h-2.8c-1,0-2.1-0.7-2.5-1l-1-0.9
|
||||
c-1.2-1-1.6-1.8-1.6-3.4v-5.9c0-1.6,0.4-2.4,1.6-3.4l1-0.9c0.9-0.8,1.6-1,2.8-1H1526.3z M1521.2,965.2c0,0.8,0,1.9,0.5,2.2
|
||||
l0.9,0.7c0.4,0.3,0.7,0.6,1.1,0.6h2.1c0.4,0,0.9-0.2,1.4-0.7l1.7-1.4c0.4-0.4,0.9-0.7,0.9-1.3v-3.7c0-0.6-0.4-0.9-0.9-1.3
|
||||
l-1.7-1.4c-0.6-0.5-1.1-0.7-1.4-0.7h-2.1c-0.4,0-0.7,0.3-1.1,0.6l-0.9,0.7c-0.5,0.4-0.5,1.4-0.5,2.2V965.2z"/>
|
||||
<path class="st3" d="M1548.3,968.7h2.2c1,0,2,0.2,2,1.5c0,1.3-1.2,1.5-2,1.5h-7.5c-0.9,0-2-0.2-2-1.5c0-1.3,1-1.5,2-1.5h2.3
|
||||
v-10.6h-2.3c-0.9,0-2-0.2-2-1.5c0-1.3,1-1.5,2-1.5h3.1c1.7,0,2.2,0.3,2.2,2.1V968.7z M1543.8,949.2c0-1,0.6-1.4,1.4-1.4h1.7
|
||||
c0.8,0,1.4,0.3,1.4,1.4v1.4c0,1-0.6,1.4-1.4,1.4h-1.7c-0.8,0-1.4-0.3-1.4-1.4V949.2z"/>
|
||||
<path class="st3" d="M1565.7,958.1c-0.9,0-2-0.2-2-1.5c0-1.3,1-1.5,2-1.5h4c1.5,0,2.6,0.2,3.8,1.3c1.1,1.1,1.3,2,1.3,3.5
|
||||
l0.3,10c0,0.9-0.4,1.7-1.4,1.7c-0.8,0-1.5-0.6-1.5-1.5l-2,1c-0.8,0.4-0.9,0.4-1.8,0.4h-2.8c-1.3,0-2.3-0.2-3.3-1
|
||||
c-1.2-1-1.5-2.1-1.5-3.6v-1.3c0-1.4,0.3-2.3,1.4-3.3c1-0.9,2.1-1.1,3.4-1.1h6.3v-0.7c0-2.2-0.5-2.6-2.6-2.6H1565.7z
|
||||
M1565.7,964.2c-0.8,0-2,0.2-2,1.3v2c0,1,1.2,1.2,1.9,1.2h3.2l3.2-1.7v-0.6c0-1.6-0.5-2.1-2.1-2.1H1565.7z"/>
|
||||
<path class="st3" d="M1590.8,968.7h2.2c1,0,2,0.2,2,1.5c0,1.3-1.2,1.5-2,1.5h-7.5c-0.9,0-2-0.2-2-1.5c0-1.3,1-1.5,2-1.5h2.3
|
||||
V952h-2.3c-0.9,0-2-0.2-2-1.5c0-1.3,1-1.5,2-1.5h3.1c1.7,0,2.2,0.3,2.2,2.1V968.7z"/>
|
||||
<path class="st3" d="M1608.8,971.6c-1.2,0-1.7,0-2.6-0.8l-1.3-1.1c-1.2-1-1.5-1.7-1.5-3.3v-5.7c0-1.6,0.2-2.5,1.4-3.5l1-0.9
|
||||
c1.4-1.2,2.1-1.2,3.2-1.2h2.7c1.4,0,2.1,0.2,3.2,1.1l1.2,0.9c1.3,1.1,1.5,2.2,1.5,3.8v2.4c0,1.7-0.3,2.2-2,2.2h-9.4v1
|
||||
c0,0.3,0.2,0.6,0.4,0.9l0.7,0.8c0.4,0.4,1,0.6,2,0.6h6.3c1,0,2,0.2,2,1.5c0,1.3-1.2,1.5-2,1.5H1608.8z M1606.3,962.6h8.5v-1.8
|
||||
c0-0.6,0-1-0.4-1.4l-1.1-1c-0.4-0.3-0.9-0.4-1.4-0.4h-2.5c-0.6,0-1,0-1.5,0.3l-1,0.7c-0.4,0.3-0.6,0.5-0.6,1.3V962.6z"/>
|
||||
<path class="st3" d="M1660.3,965.3c0,2.1-0.2,2.9-1.9,4.3l-1.8,1.4c-0.6,0.5-1.6,1.3-2.4,1.3h-2c-1.3,0-1.9-0.9-2.9-1.7
|
||||
l-0.6-0.6v5.9c0,1-0.2,2-1.5,2c-1.3,0-1.5-1-1.5-2v-18.6c0-1,0.1-2.2,1.5-2.2c1.2,0,1.5,0.9,1.5,1.9v0.4l0.6-0.5
|
||||
c0.8-0.7,1.9-1.8,2.8-1.8h2c0.7,0,1.7,0.7,2.4,1.3l1.8,1.4c1.7,1.3,1.9,2.2,1.9,4.3V965.3z M1657.4,961.7
|
||||
c0-0.6-0.2-0.9-0.6-1.3l-2.2-1.8c-0.3-0.2-0.6-0.5-1-0.5h-0.8c-0.4,0-0.9,0.6-1.3,0.9l-1.8,1.7c-0.6,0.6-0.8,0.9-0.8,1.6v2.9
|
||||
c0,0.4,0.1,1,0.4,1.3l2.2,2.1c0.4,0.4,0.9,0.8,1.3,0.8h0.8c0.4,0,0.7-0.3,1-0.5l2.2-1.8c0.5-0.4,0.6-0.7,0.6-1.3V961.7z"/>
|
||||
<path class="st3" d="M1671.5,958.1h-0.8c-0.9,0-2-0.2-2-1.5c0-1.3,1-1.5,2-1.5h0.8v-0.4c0-1.7,0.1-2.9,1.4-4.2
|
||||
c1.4-1.3,2.7-1.5,4.5-1.5h2c1,0,2.1,0.1,2.1,1.5c0,1.3-1,1.5-2,1.5h-2.3c-2,0-2.8,0.4-2.8,2.5v0.6h2.6c1,0,2,0.2,2,1.5
|
||||
c0,1.3-1.2,1.5-2,1.5h-2.6v11.5c0,1-0.2,2-1.5,2s-1.5-1-1.5-2V958.1z"/>
|
||||
<path class="st3" d="M1693.4,958.1c-0.9,0-2-0.2-2-1.5c0-1.3,1-1.5,2-1.5h4c1.5,0,2.6,0.2,3.8,1.3c1.1,1.1,1.3,2,1.3,3.5
|
||||
l0.3,10c0,0.9-0.4,1.7-1.4,1.7c-0.8,0-1.5-0.6-1.5-1.5l-2,1c-0.8,0.4-0.9,0.4-1.8,0.4h-2.8c-1.3,0-2.3-0.2-3.3-1
|
||||
c-1.2-1-1.5-2.1-1.5-3.6v-1.3c0-1.4,0.3-2.3,1.4-3.3c1-0.9,2.1-1.1,3.4-1.1h6.3v-0.7c0-2.2-0.5-2.6-2.6-2.6H1693.4z
|
||||
M1693.4,964.2c-0.8,0-2,0.2-2,1.3v2c0,1,1.2,1.2,1.9,1.2h3.2l3.2-1.7v-0.6c0-1.6-0.5-2.1-2.1-2.1H1693.4z"/>
|
||||
<path class="st3" d="M1717.8,955.1c1,0,1.8,0.6,2.9,1.6l0.5,0.5v-6.2c0-1,0.2-2,1.5-2c1.3,0,1.5,1,1.5,2v18.5
|
||||
c0,1-0.2,2.1-1.5,2.1c-1.2,0-1.5-1-1.5-2v-0.2l-0.6,0.6c-0.9,0.9-1.9,1.5-2.8,1.5h-2.8c-1,0-2.1-0.7-2.5-1l-1-0.9
|
||||
c-1.2-1-1.6-1.8-1.6-3.4v-5.9c0-1.6,0.4-2.4,1.6-3.4l1-0.9c0.9-0.8,1.6-1,2.8-1H1717.8z M1712.7,965.2c0,0.8,0,1.9,0.5,2.2
|
||||
l0.9,0.7c0.4,0.3,0.7,0.6,1.1,0.6h2.1c0.4,0,0.9-0.2,1.4-0.7l1.7-1.4c0.4-0.4,0.9-0.7,0.9-1.3v-3.7c0-0.6-0.4-0.9-0.9-1.3
|
||||
l-1.7-1.4c-0.6-0.5-1.1-0.7-1.4-0.7h-2.1c-0.4,0-0.7,0.3-1.1,0.6l-0.9,0.7c-0.5,0.4-0.5,1.4-0.5,2.2V965.2z"/>
|
||||
<path class="st3" d="M1736.4,971.6c-1.2,0-1.7,0-2.6-0.8l-1.3-1.1c-1.2-1-1.5-1.7-1.5-3.3v-5.7c0-1.6,0.2-2.5,1.4-3.5l1-0.9
|
||||
c1.4-1.2,2.1-1.2,3.2-1.2h2.7c1.4,0,2.1,0.2,3.2,1.1l1.2,0.9c1.3,1.1,1.5,2.2,1.5,3.8v2.4c0,1.7-0.3,2.2-2,2.2h-9.4v1
|
||||
c0,0.3,0.2,0.6,0.4,0.9l0.7,0.8c0.4,0.4,1,0.6,2,0.6h6.3c1,0,2,0.2,2,1.5c0,1.3-1.2,1.5-2,1.5H1736.4z M1734,962.6h8.5v-1.8
|
||||
c0-0.6,0-1-0.4-1.4l-1.1-1c-0.4-0.3-0.9-0.4-1.4-0.4h-2.5c-0.6,0-1,0-1.5,0.3l-1,0.7c-0.4,0.3-0.6,0.5-0.6,1.3V962.6z"/>
|
||||
<path class="st3" d="M1773.6,960.6c0-2,0.4-2.6,1.9-3.8c1.4-1.2,2.1-1.7,4.2-1.7h2.3c2.1,0,2.7,0.5,4.2,1.7
|
||||
c1.5,1.2,1.9,1.9,1.9,3.8v5.5c0,1.9-0.5,2.7-2,4c-1.5,1.3-2.1,1.5-4,1.5h-2.3c-1.9,0-2.5-0.2-4-1.5c-1.5-1.3-2-2-2-4V960.6z
|
||||
M1776.5,966.1c0,0.6,0.2,1,1.1,1.7c0.6,0.6,1.1,0.8,2,0.8h2.3c0.9,0,1.4-0.2,2-0.8c0.9-0.7,1.1-1.1,1.1-1.7v-5.5
|
||||
c0-0.6-0.2-1-1.1-1.7c-0.6-0.6-1.1-0.8-2-0.8h-2.3c-0.9,0-1.4,0.2-2,0.8c-0.9,0.7-1.1,1.1-1.1,1.7V966.1z"/>
|
||||
<path class="st3" d="M1794.9,957.3c0-1.1,0.1-2.2,1.5-2.2c1.2,0,1.5,1,1.5,2v1.2l2.3-1.9c0.8-0.7,1.7-1.3,2.6-1.3h2.4
|
||||
c1.1,0,2.1,0.4,2.9,1.2c1,1,1.3,2,1.3,3.3c0,1-0.2,2.1-1.4,2.1c-1.1,0-1.5-0.9-1.5-1.8c0-0.5,0-0.9-0.3-1.3
|
||||
c-0.4-0.5-1.1-0.5-1.8-0.5h-0.9c-0.6,0-0.9,0.3-1.5,0.7l-4.1,3.4v7.4c0,1-0.2,2-1.5,2s-1.5-1-1.5-2V957.3z"/>
|
||||
<path class="st3" d="M1816.2,960.6c0-1.4,0.4-2.6,1-3.1l2.1-1.7c0.6-0.5,1.1-0.7,1.8-0.7h2.8c0.8,0,1.7,0.6,2.9,1.5l0.7,0.6
|
||||
v-0.3c0-0.9,0.5-1.7,1.5-1.7c1.3,0,1.4,1.1,1.4,2.1v14.4c0,2.7-0.2,3.2-1.4,4.3l-1,0.8c-1.3,1.1-2,1.3-3.7,1.3h-4.9
|
||||
c-0.9,0-2-0.2-2-1.5c0-1.3,1-1.5,2-1.5h5.4c0.6,0,1-0.3,1.5-0.7l0.7-0.7c0.2-0.2,0.4-0.7,0.4-1.2v-4l-0.6,0.6
|
||||
c-0.7,0.7-1.6,1.4-2.4,1.4h-3.5c-0.6,0-1.3-0.1-2.2-0.9l-1.8-1.7c-0.9-0.8-0.9-1.6-0.9-2.8V960.6z M1819.1,964.6
|
||||
c0,0.6,0,1.3,0.4,1.5l1.2,1c0.2,0.2,0.5,0.3,0.9,0.3h2.1c0.4,0,0.8-0.3,1.3-0.8l2.3-1.9c0.2-0.2,0.3-0.6,0.3-1v-2.1
|
||||
c0-0.4-0.1-0.8-0.3-1l-2.3-1.9c-0.6-0.5-1-0.8-1.3-0.8h-2.1c-0.4,0-0.6,0.1-0.9,0.3l-1.2,1c-0.3,0.3-0.4,0.9-0.4,1.5V964.6z"
|
||||
/>
|
||||
<path class="st4" d="M1556.4,995.8v-2.7c0-0.5,0.2-0.9,0.9-0.9s0.9,0.3,0.9,0.9v2.7c0,0.2,0,0.5-0.1,0.7l-3.3,8.3
|
||||
c-0.2,0.4-0.3,0.8-0.9,0.8c-0.5,0-0.7-0.3-0.9-0.8l-3.3-8.3c-0.1-0.2-0.1-0.4-0.1-0.7v-2.7c0-0.5,0.2-0.9,0.9-0.9
|
||||
c0.6,0,0.9,0.3,0.9,0.9v2.7l2.5,6.5L1556.4,995.8z"/>
|
||||
<path class="st4" d="M1564.7,1005.5c-0.7,0-1,0-1.5-0.4l-0.7-0.6c-0.6-0.6-0.8-1-0.8-1.8v-3.2c0-0.9,0.1-1.4,0.8-2l0.6-0.5
|
||||
c0.8-0.7,1.1-0.7,1.8-0.7h1.5c0.8,0,1.2,0.1,1.8,0.6l0.7,0.5c0.8,0.6,0.9,1.2,0.9,2.1v1.3c0,0.9-0.2,1.2-1.1,1.2h-5.3v0.5
|
||||
c0,0.2,0.1,0.4,0.2,0.5l0.4,0.4c0.2,0.2,0.5,0.3,1.1,0.3h3.5c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8H1564.7z
|
||||
M1563.3,1000.4h4.7v-1c0-0.3,0-0.6-0.2-0.8l-0.6-0.5c-0.2-0.2-0.5-0.2-0.8-0.2h-1.4c-0.3,0-0.6,0-0.8,0.2l-0.6,0.4
|
||||
c-0.2,0.2-0.3,0.3-0.3,0.8V1000.4z"/>
|
||||
<path class="st4" d="M1573.6,997.5c0-0.6,0.1-1.2,0.8-1.2c0.6,0,0.8,0.5,0.8,1.1v0.7l1.3-1.1c0.5-0.4,0.9-0.7,1.4-0.7h1.3
|
||||
c0.6,0,1.2,0.2,1.6,0.6c0.5,0.5,0.7,1.1,0.7,1.9c0,0.6-0.1,1.1-0.8,1.1c-0.6,0-0.8-0.5-0.8-1c0-0.3,0-0.5-0.2-0.7
|
||||
c-0.2-0.3-0.6-0.3-1-0.3h-0.5c-0.3,0-0.5,0.2-0.8,0.4l-2.3,1.9v4.1c0,0.6-0.1,1.1-0.8,1.1c-0.7,0-0.8-0.6-0.8-1.1V997.5z"/>
|
||||
<path class="st4" d="M1588.4,1005.5c-0.7,0-1,0-1.5-0.4l-0.7-0.6c-0.6-0.6-0.8-1-0.8-1.8v-3.2c0-0.9,0.1-1.4,0.8-2l0.6-0.5
|
||||
c0.8-0.7,1.1-0.7,1.8-0.7h1.5c0.8,0,1.2,0.1,1.8,0.6l0.7,0.5c0.7,0.6,0.9,1.2,0.9,2.1v1.3c0,0.9-0.2,1.2-1.1,1.2h-5.3v0.5
|
||||
c0,0.2,0.1,0.4,0.2,0.5l0.4,0.4c0.2,0.2,0.5,0.3,1.1,0.3h3.5c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8H1588.4z
|
||||
M1587,1000.4h4.7v-1c0-0.3,0-0.6-0.2-0.8l-0.6-0.5c-0.2-0.2-0.5-0.2-0.8-0.2h-1.4c-0.3,0-0.6,0-0.8,0.2l-0.6,0.4
|
||||
c-0.2,0.2-0.3,0.3-0.3,0.8V1000.4z"/>
|
||||
<path class="st4" d="M1602.1,1003.8h1.2c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8h-4.2c-0.5,0-1.1-0.1-1.1-0.8
|
||||
c0-0.7,0.6-0.8,1.1-0.8h1.3v-5.9h-1.3c-0.5,0-1.1-0.1-1.1-0.8c0-0.7,0.6-0.8,1.1-0.8h1.7c0.9,0,1.2,0.2,1.2,1.1V1003.8z
|
||||
M1599.7,993c0-0.6,0.3-0.8,0.8-0.8h0.9c0.4,0,0.8,0.2,0.8,0.8v0.8c0,0.6-0.3,0.8-0.8,0.8h-0.9c-0.4,0-0.8-0.2-0.8-0.8V993z"
|
||||
/>
|
||||
<path class="st4" d="M1610.8,999.6v4.8c0,0.6-0.1,1.1-0.8,1.1c-0.7,0-0.8-0.6-0.8-1.1v-6.9c0-0.6,0.1-1.2,0.8-1.2
|
||||
c0.7,0,0.8,0.6,0.8,1.2v0.2v0l1.3-0.9c0.4-0.3,0.9-0.5,1.4-0.5h1.2c0.6,0,1,0.2,1.5,0.6c0.7,0.6,0.7,1.3,0.7,2.2l0.2,5.1
|
||||
c0,0.6-0.1,1.2-0.8,1.2c-0.7,0-0.8-0.6-0.8-1.1l-0.2-5c0-1-0.1-1.4-1.1-1.4h-0.5c-0.2,0-0.3,0.1-0.5,0.2L1610.8,999.6z"/>
|
||||
<path class="st4" d="M1635.2,997.9h-0.5c-0.5,0-1.1-0.1-1.1-0.8c0-0.7,0.6-0.8,1.1-0.8h0.5v-0.2c0-0.9,0.1-1.6,0.8-2.3
|
||||
c0.8-0.8,1.5-0.8,2.5-0.8h1.1c0.6,0,1.2,0.1,1.2,0.8c0,0.7-0.6,0.8-1.1,0.8h-1.3c-1.1,0-1.6,0.2-1.6,1.4v0.3h1.4
|
||||
c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8h-1.4v6.4c0,0.6-0.1,1.1-0.8,1.1c-0.7,0-0.8-0.6-0.8-1.1V997.9z"/>
|
||||
<path class="st4" d="M1652.7,1004.3c0,0.4,0.1,1.2-0.8,1.2c-0.7,0-0.8-0.6-0.8-1.1v-0.3l-1.3,0.9c-0.5,0.3-1,0.5-1.4,0.5h-1.2
|
||||
c-0.5,0-1-0.1-1.5-0.6c-0.7-0.6-0.7-1.3-0.8-2.2l-0.2-5.1c0-0.6,0.1-1.2,0.8-1.2c0.7,0,0.8,0.6,0.8,1.1l0.2,5
|
||||
c0,0.4,0,0.8,0.2,1.1c0.1,0.2,0.6,0.3,1,0.3h0.5c0.2,0,0.4-0.1,0.5-0.2l2.4-1.5v-4.8c0-0.6,0.1-1.1,0.8-1.1
|
||||
c0.7,0,0.8,0.6,0.8,1.1V1004.3z M1647.3,994.3c0,0.5-0.2,1-0.9,1c-0.6,0-0.9-0.5-0.9-1v-1.1c0-0.6,0.2-1.1,0.9-1.1
|
||||
s0.9,0.5,0.9,1.1V994.3z M1651.7,994.3c0,0.5-0.2,1-0.9,1c-0.6,0-0.9-0.5-0.9-1v-1.1c0-0.6,0.2-1.1,0.9-1.1
|
||||
c0.6,0,0.9,0.5,0.9,1.1V994.3z"/>
|
||||
<path class="st4" d="M1656.5,997.5c0-0.6,0.1-1.2,0.8-1.2c0.6,0,0.8,0.5,0.8,1.1v0.7l1.3-1.1c0.5-0.4,0.9-0.7,1.4-0.7h1.3
|
||||
c0.6,0,1.2,0.2,1.6,0.6c0.5,0.5,0.7,1.1,0.7,1.9c0,0.6-0.1,1.1-0.8,1.1c-0.6,0-0.8-0.5-0.8-1c0-0.3,0-0.5-0.2-0.7
|
||||
c-0.2-0.3-0.6-0.3-1-0.3h-0.5c-0.3,0-0.5,0.2-0.8,0.4l-2.3,1.9v4.1c0,0.6-0.1,1.1-0.8,1.1c-0.7,0-0.8-0.6-0.8-1.1V997.5z"/>
|
||||
<path class="st4" d="M1686.3,992.2h2.1v12.4c0,0.5-0.2,0.9-0.9,0.9c-0.6,0-0.9-0.3-0.9-0.9v-10.1h0l-1.6,2.4v0.3
|
||||
c0,0.5-0.2,1-0.9,1c-0.6,0-0.9-0.5-0.9-1V997l-1.6-2.4h0v10.1c0,0.5-0.2,0.9-0.9,0.9c-0.6,0-0.9-0.3-0.9-0.9v-12.4h2.1l2.1,3
|
||||
L1686.3,992.2z"/>
|
||||
<path class="st4" d="M1695.1,1005.5c-0.7,0-1,0-1.5-0.4l-0.7-0.6c-0.6-0.6-0.8-1-0.8-1.8v-3.2c0-0.9,0.1-1.4,0.8-2l0.6-0.5
|
||||
c0.8-0.7,1.1-0.7,1.8-0.7h1.5c0.8,0,1.2,0.1,1.8,0.6l0.7,0.5c0.7,0.6,0.9,1.2,0.9,2.1v1.3c0,0.9-0.2,1.2-1.1,1.2h-5.3v0.5
|
||||
c0,0.2,0.1,0.4,0.2,0.5l0.4,0.4c0.2,0.2,0.5,0.3,1.1,0.3h3.5c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8H1695.1z
|
||||
M1693.7,1000.4h4.7v-1c0-0.3,0-0.6-0.2-0.8l-0.6-0.5c-0.2-0.2-0.5-0.2-0.8-0.2h-1.4c-0.3,0-0.6,0-0.8,0.2l-0.6,0.4
|
||||
c-0.2,0.2-0.3,0.3-0.3,0.8V1000.4z"/>
|
||||
<path class="st4" d="M1708.4,996.3c0.6,0,1,0.3,1.6,0.9l0.3,0.3V994c0-0.6,0.1-1.1,0.8-1.1c0.7,0,0.8,0.6,0.8,1.1v10.3
|
||||
c0,0.6-0.1,1.1-0.8,1.1c-0.6,0-0.8-0.5-0.8-1.1v-0.1l-0.4,0.4c-0.5,0.5-1.1,0.8-1.6,0.8h-1.6c-0.5,0-1.2-0.4-1.4-0.6l-0.6-0.5
|
||||
c-0.7-0.6-0.9-1-0.9-1.9v-3.3c0-0.9,0.2-1.3,0.9-1.9l0.6-0.5c0.5-0.4,0.9-0.6,1.6-0.6H1708.4z M1705.6,1001.9
|
||||
c0,0.5,0,1,0.3,1.2l0.5,0.4c0.2,0.2,0.4,0.3,0.6,0.3h1.2c0.2,0,0.5-0.1,0.8-0.4l0.9-0.8c0.2-0.2,0.5-0.4,0.5-0.7v-2.1
|
||||
c0-0.3-0.2-0.5-0.5-0.7l-0.9-0.8c-0.3-0.3-0.6-0.4-0.8-0.4h-1.2c-0.2,0-0.4,0.2-0.6,0.3l-0.5,0.4c-0.3,0.2-0.3,0.8-0.3,1.2
|
||||
V1001.9z"/>
|
||||
<path class="st4" d="M1720.7,1003.8h1.2c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8h-4.2c-0.5,0-1.1-0.1-1.1-0.8
|
||||
c0-0.7,0.6-0.8,1.1-0.8h1.3v-5.9h-1.3c-0.5,0-1.1-0.1-1.1-0.8c0-0.7,0.6-0.8,1.1-0.8h1.7c0.9,0,1.2,0.2,1.2,1.1V1003.8z
|
||||
M1718.2,993c0-0.6,0.3-0.8,0.8-0.8h0.9c0.4,0,0.8,0.2,0.8,0.8v0.8c0,0.6-0.3,0.8-0.8,0.8h-0.9c-0.4,0-0.8-0.2-0.8-0.8V993z"
|
||||
/>
|
||||
<path class="st4" d="M1730.7,1005.5c-0.7,0-1,0-1.5-0.4l-0.7-0.6c-0.6-0.6-0.8-1-0.8-1.8v-3.2c0-0.9,0.1-1.4,0.8-2l0.6-0.5
|
||||
c0.8-0.7,1.1-0.7,1.8-0.7h1.5c0.8,0,1.2,0.1,1.8,0.6l0.7,0.5c0.8,0.6,0.9,1.2,0.9,2.1v1.3c0,0.9-0.2,1.2-1.1,1.2h-5.3v0.5
|
||||
c0,0.2,0.1,0.4,0.2,0.5l0.4,0.4c0.2,0.2,0.5,0.3,1.1,0.3h3.5c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8H1730.7z
|
||||
M1729.3,1000.4h4.7v-1c0-0.3,0-0.6-0.2-0.8l-0.6-0.5c-0.2-0.2-0.5-0.2-0.8-0.2h-1.4c-0.3,0-0.6,0-0.8,0.2l-0.6,0.4
|
||||
c-0.2,0.2-0.3,0.3-0.3,0.8V1000.4z"/>
|
||||
<path class="st4" d="M1741.1,999.6v4.8c0,0.6-0.1,1.1-0.8,1.1c-0.7,0-0.8-0.6-0.8-1.1v-6.9c0-0.6,0.1-1.2,0.8-1.2
|
||||
c0.7,0,0.8,0.6,0.8,1.2v0.2v0l1.3-0.9c0.4-0.3,0.9-0.5,1.4-0.5h1.2c0.6,0,1,0.2,1.5,0.6c0.7,0.6,0.7,1.3,0.7,2.2l0.2,5.1
|
||||
c0,0.6-0.1,1.2-0.8,1.2c-0.7,0-0.8-0.6-0.8-1.1l-0.2-5c0-1-0.1-1.4-1.1-1.4h-0.5c-0.2,0-0.3,0.1-0.5,0.2L1741.1,999.6z"/>
|
||||
<path class="st4" d="M1753,997.5l0.3-0.3c0.5-0.5,0.9-0.9,1.6-0.9h1.8c0.4,0,0.8,0.2,1.2,0.6l0.6,0.5c0.6,0.6,0.9,1,0.9,1.9
|
||||
v3.3c0,0.9-0.2,1.3-0.9,1.9l-0.6,0.5c-0.4,0.3-0.9,0.6-1.3,0.6h-1.7c-0.7,0-1.1-0.4-1.6-0.8l-0.4-0.4v0.1
|
||||
c0,0.5-0.2,1.1-0.8,1.1c-0.7,0-0.8-0.6-0.8-1.1V994c0-0.6,0.1-1.1,0.8-1.1c0.7,0,0.8,0.6,0.8,1.1V997.5z M1753,1001.5
|
||||
c0,0.5,0.1,0.7,0.5,1.1l0.9,0.8c0.2,0.2,0.5,0.4,0.6,0.4h1.2c0.2,0,0.4-0.1,0.5-0.2l0.7-0.6c0.2-0.2,0.2-0.5,0.2-0.9v-2.9
|
||||
c0-0.3-0.1-0.6-0.2-0.7l-0.8-0.6c-0.1-0.1-0.2-0.1-0.4-0.1h-1.1c-0.2,0-0.5,0.1-0.7,0.3l-1.1,0.9c-0.3,0.2-0.5,0.5-0.5,1
|
||||
V1001.5z"/>
|
||||
<path class="st4" d="M1768.1,1003.8h1.2c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8h-4.2c-0.5,0-1.1-0.1-1.1-0.8
|
||||
c0-0.7,0.6-0.8,1.1-0.8h1.3v-5.9h-1.3c-0.5,0-1.1-0.1-1.1-0.8c0-0.7,0.6-0.8,1.1-0.8h1.7c0.9,0,1.2,0.2,1.2,1.1V1003.8z
|
||||
M1765.6,993c0-0.6,0.3-0.8,0.8-0.8h0.9c0.4,0,0.8,0.2,0.8,0.8v0.8c0,0.6-0.3,0.8-0.8,0.8h-0.9c-0.4,0-0.8-0.2-0.8-0.8V993z"
|
||||
/>
|
||||
<path class="st4" d="M1779.9,1003.8h1.2c0.5,0,1.1,0.1,1.1,0.8c0,0.7-0.6,0.8-1.1,0.8h-4.2c-0.5,0-1.1-0.1-1.1-0.8
|
||||
c0-0.7,0.6-0.8,1.1-0.8h1.3v-9.3h-1.3c-0.5,0-1.1-0.1-1.1-0.8c0-0.7,0.6-0.8,1.1-0.8h1.7c0.9,0,1.2,0.2,1.2,1.1V1003.8z"/>
|
||||
<path class="st4" d="M1791.4,996.3c0.6,0,1,0.3,1.6,0.9l0.3,0.3V994c0-0.6,0.1-1.1,0.8-1.1c0.7,0,0.8,0.6,0.8,1.1v10.3
|
||||
c0,0.6-0.1,1.1-0.8,1.1c-0.6,0-0.8-0.5-0.8-1.1v-0.1l-0.4,0.4c-0.5,0.5-1.1,0.8-1.6,0.8h-1.6c-0.5,0-1.2-0.4-1.4-0.6l-0.6-0.5
|
||||
c-0.7-0.6-0.9-1-0.9-1.9v-3.3c0-0.9,0.2-1.3,0.9-1.9l0.6-0.5c0.5-0.4,0.9-0.6,1.6-0.6H1791.4z M1788.6,1001.9
|
||||
c0,0.5,0,1,0.3,1.2l0.5,0.4c0.2,0.2,0.4,0.3,0.6,0.3h1.2c0.2,0,0.5-0.1,0.8-0.4l0.9-0.8c0.2-0.2,0.5-0.4,0.5-0.7v-2.1
|
||||
c0-0.3-0.2-0.5-0.5-0.7l-0.9-0.8c-0.3-0.3-0.6-0.4-0.8-0.4h-1.2c-0.2,0-0.4,0.2-0.6,0.3l-0.5,0.4c-0.3,0.2-0.3,0.8-0.3,1.2
|
||||
V1001.9z"/>
|
||||
<path class="st4" d="M1806.8,1004.3c0,0.4,0.1,1.2-0.8,1.2c-0.7,0-0.8-0.6-0.8-1.1v-0.3l-1.3,0.9c-0.5,0.3-1,0.5-1.4,0.5h-1.2
|
||||
c-0.5,0-1-0.1-1.5-0.6c-0.7-0.6-0.7-1.3-0.8-2.2l-0.2-5.1c0-0.6,0.1-1.2,0.8-1.2c0.7,0,0.8,0.6,0.8,1.1l0.2,5
|
||||
c0,0.4,0,0.8,0.2,1.1c0.1,0.2,0.6,0.3,1,0.3h0.5c0.2,0,0.4-0.1,0.5-0.2l2.4-1.5v-4.8c0-0.6,0.1-1.1,0.8-1.1
|
||||
c0.7,0,0.8,0.6,0.8,1.1V1004.3z"/>
|
||||
<path class="st4" d="M1812.3,999.6v4.8c0,0.6-0.1,1.1-0.8,1.1c-0.7,0-0.8-0.6-0.8-1.1v-6.9c0-0.6,0.1-1.2,0.8-1.2
|
||||
c0.7,0,0.8,0.6,0.8,1.2v0.2v0l1.3-0.9c0.4-0.3,0.9-0.5,1.4-0.5h1.2c0.6,0,1,0.2,1.5,0.6c0.7,0.6,0.7,1.3,0.7,2.2l0.2,5.1
|
||||
c0,0.6-0.1,1.2-0.8,1.2c-0.7,0-0.8-0.6-0.8-1.1l-0.2-5c0-1-0.1-1.4-1.1-1.4h-0.5c-0.2,0-0.3,0.1-0.5,0.2L1812.3,999.6z"/>
|
||||
<path class="st4" d="M1822.5,999.3c0-0.8,0.2-1.4,0.6-1.7l1.2-0.9c0.3-0.3,0.6-0.4,1-0.4h1.6c0.4,0,1,0.3,1.6,0.8l0.4,0.3
|
||||
v-0.2c0-0.5,0.3-1,0.8-1c0.7,0,0.8,0.6,0.8,1.1v8c0,1.5-0.1,1.8-0.8,2.4l-0.5,0.5c-0.7,0.6-1.1,0.7-2,0.7h-2.7
|
||||
c-0.5,0-1.1-0.1-1.1-0.8c0-0.7,0.6-0.8,1.1-0.8h3c0.3,0,0.6-0.2,0.8-0.4l0.4-0.4c0.1-0.1,0.2-0.4,0.2-0.7v-2.3l-0.3,0.3
|
||||
c-0.4,0.4-0.9,0.8-1.3,0.8h-1.9c-0.3,0-0.7-0.1-1.2-0.5l-1-0.9c-0.5-0.4-0.5-0.9-0.5-1.5V999.3z M1824.1,1001.6
|
||||
c0,0.3,0,0.7,0.2,0.9l0.7,0.5c0.1,0.1,0.3,0.2,0.5,0.2h1.2c0.2,0,0.4-0.2,0.8-0.4l1.3-1c0.1-0.1,0.2-0.3,0.2-0.5v-1.2
|
||||
c0-0.2-0.1-0.4-0.2-0.5l-1.3-1c-0.3-0.3-0.5-0.4-0.8-0.4h-1.2c-0.2,0-0.4,0.1-0.5,0.2l-0.7,0.5c-0.2,0.2-0.2,0.5-0.2,0.9
|
||||
V1001.6z"/>
|
||||
<path class="st3" d="M1456,927.8l-1.4-0.3c0.5-2.6,1.6-5,2.6-7.3c0.2-0.5,0.4-1,0.6-1.4c0.1-0.3,0.3-0.7,0.4-0.9
|
||||
c0.6-1.6,1-2.6,3.4-3.4c1.4-0.5,2.7-1.1,4-1.6c1.5-0.7,3-1.3,4.6-1.8c0.3-0.1,0.7-0.2,1-0.2c0-0.2,0.1-0.4,0.2-0.6
|
||||
c0-0.2,0-0.4,0.1-0.6c0-0.1,0-0.1,0-0.2l0-0.1c0.1-0.6,0.1-1.1,1-1.5c0,0,0,0,0,0c0.2-0.3,0.4-0.5,0.6-0.8
|
||||
c1.1-1.1,2.4-1.5,3.6-1.1c0.6,0.2,2.4,0.8,2.6,2.1c0.2,1.1-1.1,2.7-1.6,3.1c-1,0.9-2.3,0.9-3.3,0.8l-0.1,0
|
||||
c-0.4,0-0.8-0.1-1.2-0.1c-0.2,0.1-0.5,0.1-0.7,0.2c0,0.3,0,0.5,0.1,0.7c0.1,0.3,0.3,0.4,0.4,0.4l-0.3,1.5
|
||||
c-0.7-0.1-1.3-0.6-1.5-1.4c-0.1-0.3-0.1-0.6-0.1-0.9c-0.1,0-0.3,0.1-0.4,0.1c-1.5,0.5-3,1.1-4.4,1.8c-1.3,0.6-2.7,1.2-4.1,1.7
|
||||
c-1.7,0.6-1.9,1-2.5,2.5c-0.1,0.3-0.2,0.6-0.4,1c-0.2,0.5-0.4,1-0.6,1.5C1457.5,923,1456.5,925.3,1456,927.8 M1475,910.4
|
||||
L1475,910.4c0.8,0,1.3-0.2,1.7-0.5c0.5-0.4,1.1-1.5,1.1-1.8c-0.1-0.2-0.8-0.6-1.6-0.9c-0.6-0.2-1.2,0-1.8,0.5
|
||||
c0.1,0,0.1,0,0.2,0.1c0.8,0.4,0.9,1,0.9,1.3C1475.4,909.6,1475.2,910,1475,910.4 M1472.7,910.1c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2-0.1,0.3-0.2c0.5-0.3,0.7-0.7,0.7-0.8c0,0,0,0-0.1-0.1c-0.1,0-0.3,0-0.6,0C1473,909.4,1472.9,909.8,1472.7,910.1"/>
|
||||
<path class="st4" d="M1451,997.6c-2.2,0-4.4-0.2-6.6-0.3c-1.8-0.1-3.6-0.3-5-0.3c-1.4,0-2.7,0-4.1,0c-1.4,0-2.8,0-4.1,0
|
||||
c-1.5,0-2.9,0-4.1,0c-0.1,0-0.3,0-0.5,0c-0.4,0-0.8,0.1-1.2,0.1c-0.4,0-1,0-1.5-0.3c-2.2-1.3-2.1-5.1-1.8-9.9
|
||||
c0.1-0.9,0.1-1.6,0.1-2.1c0-5.5,0.9-10.8,1.8-15.9c0.8-4.5,1.6-9.1,1.7-13.7c0-1,0.1-2.1,0.1-3.2c0.3-6.9,0.6-13.9-1.3-19.9
|
||||
l-0.5-1.5l1.5-0.5c6.6-2.2,14.1-3.2,23.5-3.2c4.4,0,8.9,0.2,12.6,0.4l1.4,0.1l0.1,1.4c0.8,15.7,0.8,30.8,0.7,49
|
||||
c0,0.9,0.1,2,0.2,3.3c0.4,4.8,0.8,10.8-2.7,13.9c-0.5,0.4-1,0.7-1.5,1C1457.6,997.1,1454.8,997.6,1451,997.6 M1439.4,993.8
|
||||
c1.6,0,3.4,0.1,5.3,0.3c2.1,0.2,4.2,0.3,6.3,0.3c3.2,0,5.6-0.4,7.3-1.2c0.3-0.1,0.5-0.3,0.8-0.5c2.3-2,1.9-7.3,1.6-11.2
|
||||
c-0.1-1.3-0.2-2.5-0.2-3.5c0.1-17.5,0.1-32.2-0.6-47.4c-3.4-0.2-7.2-0.3-11-0.3c-8.4,0-15.1,0.8-21,2.5
|
||||
c1.5,6.1,1.2,13.1,1,19.4c0,1.1-0.1,2.1-0.1,3.1c-0.2,4.8-1,9.5-1.7,14.1c-0.9,5-1.7,10.2-1.7,15.4c0,0.6-0.1,1.4-0.1,2.4
|
||||
c-0.1,1.6-0.4,5.7,0.2,6.8c0.2,0,0.6,0,0.8-0.1c0.3,0,0.6-0.1,0.8-0.1l0.1,0c1.2,0,2.6,0,4.1,0c1.4,0,2.7,0,4.1,0
|
||||
C1436.7,993.8,1438.1,993.8,1439.4,993.8"/>
|
||||
<path class="st3" d="M1452.6,956.2c-2.8,0-5.2-0.2-7.3-0.6c-1.3-0.3-2.6-0.6-3.9-0.9c-3.1-0.8-6.2-1.6-9.2-1.5l-0.4,0
|
||||
l-0.3-0.3c-0.3-0.3-0.4-0.4-0.4-5.7c0-2.5,0-5.2,0-5.7c0-0.2,0-0.4,0-0.6c0.1-1.6,0.2-3.3,1.8-4.2c0.5-0.3,1.2-0.4,2.2-0.4
|
||||
c0.9,0,1.9,0.1,2.7,0.2c0.6,0.1,1.2,0.1,1.6,0.1c0.5,0,1,0,1.6,0c0.6,0,1.1,0,1.7,0c1.3,0,2.2,0,3.2,0.1c0.2,0,0.6,0,1.2,0
|
||||
c5.4,0,7.3,0.3,8,1.1c0.6,0.8,0.8,2.2,0.9,3.4c0,0.4,0.1,0.8,0.1,1.1c0.2,1,0.4,1.9,0.6,3c0.5,2.4,1,4.8,1.2,7.2
|
||||
c0.1,1.1,0.1,2,0.1,2.9l0,0.7l-0.7,0C1455.3,956.2,1453.9,956.2,1452.6,956.2 M1432.8,951.5c3,0,6,0.8,9,1.6
|
||||
c1.3,0.3,2.6,0.7,3.8,0.9c2,0.4,4.3,0.6,7,0.6c1.1,0,2.2,0,3.6-0.1c0-0.6,0-1.3-0.1-2c-0.2-2.3-0.7-4.7-1.2-7
|
||||
c-0.2-1.1-0.4-2.1-0.6-3c-0.1-0.3-0.1-0.8-0.1-1.2c-0.1-0.8-0.2-2.1-0.5-2.5c-0.4-0.3-2.7-0.5-6.8-0.5c-0.6,0-1,0-1.2,0
|
||||
c-0.9,0-1.8-0.1-3.1-0.1c-0.6,0-1.1,0-1.7,0c-0.5,0-1,0-1.6,0c-0.4,0-1-0.1-1.7-0.1c-0.8-0.1-1.8-0.2-2.6-0.2
|
||||
c-0.9,0-1.3,0.1-1.4,0.2c-0.8,0.4-0.9,1.4-1,2.9c0,0.2,0,0.4,0,0.7C1432.6,942.5,1432.7,949.4,1432.8,951.5"/>
|
||||
<path class="st3" d="M1758.3,971.7c-0.6,0-1.1,0-1.5-0.5c-0.3-0.4-0.3-0.7-0.3-1.3v-1.6c0-0.5,0-0.8,0.3-1.3
|
||||
c0.4-0.5,0.8-0.5,1.5-0.5h2c0.6,0,1.1,0,1.5,0.5c0.3,0.4,0.3,0.7,0.3,1.3v1.6c0,0.5,0,0.8-0.3,1.3c-0.4,0.5-0.8,0.5-1.5,0.5
|
||||
H1758.3z"/>
|
||||
<path class="st3" d="M1435.5,961.1c0.5,0,1.8-0.2,2.2,0c0.9,0.5,0.2,2.6,0.1,3.7c-0.7-0.1-2.5-0.3-2.6-1"/>
|
||||
<path class="st3" d="M1450.7,981.4c0-0.5-0.2-1.8,0-2.2c0.6-0.9,2.6-0.1,3.7,0c-0.1,0.7-0.4,2.5-1.1,2.6"/>
|
||||
<path class="st3" d="M1442.5,962.8c-0.1,1.1-0.3,2.3-0.4,3.4c0.9,0.2,2.1,0.1,3,0.1c0-0.5,0.4-2.5,0-3
|
||||
c-0.3-0.5-2.2-0.5-2.7-0.5"/>
|
||||
<path class="st3" d="M1449,962.4c0,0.7-0.1,1.5,0,2.1c0.1,0.7,0.1,0.7,0.9,0.7c0.6,0,2.6,0.4,3-0.2c0.5-0.7,0.2-2.3-0.6-2.6
|
||||
c-1.1-0.5-2.4,0-3.5-0.1c0,0.2,0,0.4,0.1,0.6"/>
|
||||
<path class="st3" d="M1434,970.2c-0.2,0.6-0.8,2.6-0.5,3.3c0.4,0.9,2.5,0.3,3.3,0.5c0.3-0.5,0.5-2.8,0.2-3.5
|
||||
C1436.6,969.9,1434.7,970.2,1434,970.2c-0.1,0.2-0.2,0.3-0.1,0.5"/>
|
||||
<path class="st3" d="M1442.1,970.7c0,0.7-0.3,2.1,0.4,2.6c0.3,0.2,2.4,0.4,2.6,0.3c0.3-0.3,0.2-1.6,0.2-2
|
||||
c0-0.7,0.1-0.7-0.6-0.9c-0.5-0.1-2.8-0.5-2.6,0.5"/>
|
||||
<path class="st3" d="M1450.9,970.3c0,1-0.8,3.1,0.5,3.3c0.3,0.1,1.1,0.1,1.4,0c0.6-0.2,0.6-0.8,0.6-1.5c0-0.3,0.2-1.4,0-1.7
|
||||
c-0.3-0.5-1.1-0.3-1.7-0.3C1451.2,970.1,1451,970,1450.9,970.3c-0.2,0.3-0.2,1-0.1,1.3"/>
|
||||
<path class="st3" d="M1433.3,980.3c0,0.5-0.3,1.3,0,1.8c0.4,0.6,1.2,0.4,1.8,0.4c0.9,0,1.6,0.2,2-0.6c1-2-2.6-1.4-3.9-1.3
|
||||
c0,0.2,0,0.4,0.1,0.6"/>
|
||||
<path class="st3" d="M1442.7,979c0,0.7-0.3,1.8-0.1,2.5c0.2,0.7,0.9,0.5,1.7,0.5c0.4,0,1.6,0.3,1.9,0c0.4-0.3,0.1-1.8,0.1-2.2
|
||||
c0-0.6,0.1-0.9-0.5-1.2c-0.6-0.3-1.6-0.2-2.2-0.1c-1.2,0.2-1.1,0.8-1,1.8"/>
|
||||
<rect x="1478.8" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1504" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1516.6" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1541.7" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1554.3" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1579.5" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1466.2" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1529.1" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1566.9" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1606.4" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1631.6" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1619" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1682.3" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1694.9" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1720.1" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1732.6" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1757.8" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1707.5" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1745.2" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1784.7" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1809.9" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1797.3" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1657.1" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1669.7" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
<rect x="1822.5" y="982.9" class="st3" width="8.1" height="2.1"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="licensegroup">
|
||||
<text id="text639" transform="matrix(1 0 0 1 959.9995 469.1293)" class="st0 st1">Video by mediale pfade / C3VOC </text>
|
||||
<text id="text641" transform="matrix(1 0 0 1 959.9996 550.5002)" class="st0 st1">CC BY 4.0 Jugend hackt</text>
|
||||
<g id="g789">
|
||||
|
||||
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" gridtolerance="10.0" guidetolerance="10.0" height="676.29px" id="base" inkscape:current-layer="svg2" inkscape:cx="496.5" inkscape:cy="334" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="753" inkscape:window-maximized="0" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="27" inkscape:zoom="0.73353293" objecttolerance="10.0" pagecolor="#ffffff" showgrid="false" width="930px">
|
||||
</sodipodi:namedview>
|
||||
|
||||
<path id="path2161_1_" inkscape:connector-curvature="0" sodipodi:nodetypes="sssscscsscsssssscssssssssscsssscssssssssssssssssssssssssscsssscsssssssssssssssssssssssssssssssssssssssssscsssssssssssscsssssscssssssscsssscsssssssssscsssscssscssssssscccsssscsssssssssssssssssssssssssssscsscs" d="
|
||||
M1599.8,508.3c-2.4-1.6-3.7-4.3-3.9-8.2c-0.2-2.9,0.1-5.1,1.4-10.2c1.1-4.6,1.3-5.5,1.3-8.3l0.1-2.4l-0.3-0.6
|
||||
c-0.2-0.3-0.4-0.6-0.4-0.6c-0.1,0-1.6,1.8-2.6,3c-2,2.7-3.1,5.3-3.4,7.8l-0.1,0.9l-0.6,0.1c-1.3,0.3-1.3,0.3-1.5-0.4
|
||||
c-0.2-0.9-0.1-3.3,0.2-4.3c0.5-1.4,1.5-3.3,3-5.6c1.7-2.5,2.7-4.5,3.1-5.7c0.3-1,0.4-1.1,1.9-1.2l1.1-0.1l0.4,1
|
||||
c0.9,2.3,1.3,4,1.4,6.6c0.1,3-0.2,5.7-1.5,12.3c-1.1,5.7-1.1,5.6-0.8,7.4c0.6,3.1,1.3,4.9,2.8,6.4c0.3,0.4,0.4,0.4,0.3,1.2
|
||||
c0,0.4-0.1,0.9-0.2,1.1C1601.3,509,1600.8,508.9,1599.8,508.3L1599.8,508.3z M1588.7,496h-0.5l0.1-0.5c0.1-0.8,0.6-1.4,1.4-1.8
|
||||
c0.6-0.3,0.9-0.3,2.6-0.4c1.1-0.1,2.2-0.1,2.4-0.1h0.5v1.2c0,1.4,0.4,1.2-2.9,1.5C1590,496.1,1589.8,496.1,1588.7,496z
|
||||
M1599.9,494.4c-0.1-0.4,0-1.2,0.3-1.7c0.3-0.6,1.1-1.4,2.2-2.2c1.1-0.8,2-1.8,2.3-2.4c0.7-1.3,1.1-5.5,0.8-7.7
|
||||
c-0.4-3-2-6.3-4-8.6c-0.3-0.4-0.6-0.7-0.6-0.8c0-0.1,0.6-0.7,1.3-1.3c0.9-0.9,1.3-1.2,1.4-1c0.2,0.5,2.2,4.4,2.7,5
|
||||
c1,1.4,2.3,2.4,3.7,2.8c0.3,0.1,0.8,0.2,1,0.3c0.7,0.3,1.6,0.2,3.2-0.1c2.3-0.5,3.1-0.4,3.6,0.7c0.4,0.9,0.4,1.1-0.8,1.5
|
||||
c-2,0.7-4.7,0.7-7.4,0.1c-0.8-0.2-1.1-0.2-1.2-0.1c-0.2,0.2-0.2,1.2,0,3c0.1,1,0.1,1.4-0.2,2.6c-0.7,3.6-2,6.2-4.2,8.2
|
||||
c-0.9,0.8-1.2,1-1.7,1.2c-0.4,0.1-1,0.4-1.4,0.6l-0.7,0.4L1599.9,494.4z M1592.9,472.5c-0.2-0.1-0.5-0.2-0.8-0.4
|
||||
c-0.4-0.2-0.4-0.3-0.4-0.7V471l0.8-0.1c2.1-0.2,3.8-0.9,5.4-2.2c1.8-1.4,3.3-3.5,5.8-7.7c0.8-1.4,1.3-2.1,1.4-2.1
|
||||
c0.3,0,0.8,0.6,0.9,1.1c0.2,0.7-0.8,3.8-1.7,5.7c-1.8,3.5-4.7,5.9-8.4,6.8C1595,472.7,1593.5,472.7,1592.9,472.5L1592.9,472.5z
|
||||
M1531.1,470.8l-20.1-0.1l-0.4-0.3c-0.5-0.4-1.3-1.9-1.6-3.3c-0.6-2.4-0.9-5-1.1-8.5c-0.1-1.3-0.2-4.2-0.4-6.4
|
||||
c-0.3-4.3-0.3-7,0.1-11.1c0.5-6.1,1.5-9.8,2.7-10.6c0.3-0.2,4-0.5,15.9-1c11.2-0.5,23.2-0.1,30,1c1.5,0.2,1.8,0.5,2.5,1.9
|
||||
c0.7,1.5,1.2,3.2,1.3,5.1c0.1,2.1,0.1,2.6-0.3,2.7s-1.8,0.1-2.1,0c-0.4-0.2-0.6-1-0.8-2.6c-0.4-3.4-1-4.1-3.6-4.7
|
||||
c-2.8-0.7-7.1-0.9-15.7-0.9c-8.3,0-14.8,0.3-21.2,0.8c-1.6,0.1-2.1,0.2-2.5,0.5c-1.3,0.6-2.2,2.2-2.8,4.5
|
||||
c-0.4,1.8-0.5,2.9-0.7,8.6c-0.2,8.2,0.1,12.1,1.3,16.4c0.7,2.6,1.3,3.4,2.8,4.2c1.7,0.8,1,0.8,17.8,0.8
|
||||
c14.6,0,19.4-0.1,21.3-0.4c1.8-0.3,2.8-2.1,3.3-6.1c0.3-1.8,0.3-2,0.7-2.3c0.7-0.7,1.7-0.6,2.1,0.2c0.4,0.7,0.3,2.8-0.2,5.1
|
||||
c-0.6,2.9-1.2,4.8-1.5,5.2c-0.6,0.7-2.5,1.2-5.3,1.3C1551.9,470.9,1542.1,470.8,1531.1,470.8L1531.1,470.8z M1587.6,468.8
|
||||
c-0.8-0.2-1.3-0.5-1.9-1l-0.5-0.4l0.3-0.2c0.4-0.4,1.4-0.6,3.2-0.8c0.9-0.1,1.9-0.3,2.2-0.4c3.4-1.1,5.5-2.4,8.2-5.3
|
||||
c1.3-1.4,4.1-4.8,4.3-5.3c0-0.1,0.3-0.2,0.6-0.2c0.6,0,0.6-0.1,0,1.8c-1.4,4.2-4.2,7.7-8.3,10.2c-0.9,0.6-1.1,0.6-3.9,1.2
|
||||
C1588.7,469,1588.6,469,1587.6,468.8L1587.6,468.8z M1570.6,454.4c4.5-0.1,8.2,0,10.5,0.1c1.9,0.1,3.5,0.1,3.5,0.1
|
||||
c0.1-0.1-1.3-0.8-2.2-1.1c-1.7-0.5-2.5-0.5-10-0.6c-4.1-0.1-10.7-0.2-14.8-0.3c-11.1-0.2-1.6-0.2-2.5,0
|
||||
c-1.7,0.5-3.2,1.2-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-0.2c0.1-0.3,4.7-6.6,5.7-7.9
|
||||
c2.1-2.6,5.1-5.8,6.3-6.6c0.9-0.6,2.4-1.1,3.9-1.2c1.8-0.2,5.7-0.2,16.9,0c9.5,0.2,9.3,0.1,12,1c0.8,0.3,1.6,0.5,1.6,0.4
|
||||
s-0.1-0.3-0.3-0.5c-0.4-0.6-1.4-1.2-2.4-1.6c-1.7-0.6-2.3-0.7-12-0.8c-8.7-0.1-2.1-0.2-12.5-0.5l-4.9-0.2l-0.7-0.4
|
||||
c-1.3-0.6-2.3-1.8-7.4-8.1c-2.7-3.4-4.9-6.1-4.9-6.2s2.8,0.1,3,0.2c0.1,0.1,1.4,1.8,2.9,3.8c3.2,4.3,4.2,5.5,5.7,6.9
|
||||
s2.8,2.2,3.7,2.4c1.8,0.4-4.8,0,5.9-0.2c12.4-0.2,16.6-0.1,18.6,0.4c1.6,0.4,3.5,1,4.6,1.6c0.5,0.2,0.9,0.4,1,0.4
|
||||
c0.1-0.1-0.4-0.8-0.9-1.3c-1.8-1.7-4.5-2.7-7.8-3.1c-1.3-0.1-13.5-1.4-17.3-0.6c-2,0.4-2.8-0.7-2.5-1.8c5.9-1,15.3-0.1,16.2-0.1
|
||||
c4.2,0.4,7.6,1.2,10.5,2.6c1.4,0.7,1.6,0.8,2.6,1.9c1.9,2,3.7,4.7,4.8,7l0.5,1.1v-0.8c-0.1-1.7-2.6-5.8-6.5-10.7
|
||||
c-0.7-0.9-1.3-1.7-1.3-1.8c0-0.2,0.5-0.5,0.9-0.5c0.6,0,2,1,2.7,1.8c3.4,4.2,5.5,7.7,6.5,10.6c0.2,0.6,0.5,1.3,0.7,1.5l0.3,0.3
|
||||
l0.4-0.4l0.4-0.4l-0.3-1.1c-0.7-2.5-1.5-4-4.5-8.8c-2.3-3.7-2.3-3.7-1.3-3.7c0.4,0,0.7,0.1,1.4,0.6c0.5,0.3,1,0.7,1.1,0.8
|
||||
c0.3,0.3,2.8,4.5,3.7,6.2c0.4,0.9,1,2.3,1.2,3c0.6,2.1,0.7,2.1,1.4,1.5c0.5-0.4,0.5-0.4,0.4-1.1c-0.2-1.6-1.1-4.4-2.1-6.7
|
||||
c-0.3-0.6-0.5-1.2-0.5-1.3c0-0.1,0.2-0.3,0.4-0.6c0.3-0.4,0.4-0.4,0.7-0.2c0.6,0.3,1.6,1.4,2,2.2c0.2,0.4,0.7,1.8,1.1,3.1
|
||||
c0.4,1.3,0.8,2.4,0.8,2.4c0.1,0,0.3-0.2,0.5-0.5c1-1.3,1.4-1.5,1.9-0.9c0.3,0.4,0.3,0.8,0,1.8s-0.3,1.2,0.1,1.4
|
||||
c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.2,0.3-0.1,1.2c-0.9,2.5-2.7,4.7-5.6,6.6c-2.8,1.9-6.3,3.1-9.7,3.2c-1.7,0.1-2.7-0.1-3.5-0.7
|
||||
c-0.6-0.4-0.7-0.8-0.1-1.2c0.6-0.4,1.5-0.6,3.3-0.8c5.5-0.4,9.7-2.5,12.8-6.1c0.5-0.6,0.5-0.6,0.1-0.4c-3.8,2.5-7.9,4.3-11,4.8
|
||||
c-0.9,0.2-1.6,0.2-3,0.2c-1.9-0.1-3.1-0.3-4.4-0.9c-0.7-0.3-0.8-0.5-0.8-1.4v-0.5l-10.2-0.1c-5.6,0-14,0.9-13-1.3
|
||||
C1557.9,454.5,1566.7,454.4,1570.6,454.4L1570.6,454.4z"/>
|
||||
<path id="path3041_1_" d="M1527.4,435.6c-7.5,0-13.5,6.2-13.5,13.8c0,7.6,6.1,13.8,13.5,13.8c7.5,0,13.5-6.2,13.5-13.8
|
||||
C1540.9,441.8,1534.8,435.6,1527.4,435.6z M1521.7,440.2l7.6,4.6l7.6,4.6l-7.7,4.4l-7.7,4.4l0.1-9L1521.7,440.2z"/>
|
||||
</g>
|
||||
<text id="text794" transform="matrix(1 0 0 1 959.999 626.5002)" class="st0 st1">wwww.jugendhackt.de</text>
|
||||
</g>
|
||||
<g id="logo">
|
||||
<polygon id="polygon800-6" class="st5" points="55.5,102.5 526.2,102.5 526.2,83.4 526.2,26 26,26 26,83.4 26,102.5 26,132.2
|
||||
"/>
|
||||
<path id="path802-6" inkscape:connector-curvature="0" class="st6" d="M494.2,48.1h4.7v-4.8h-4.7V48.1z M487.9,48.1h4.7v-4.8
|
||||
h-4.7V48.1z M481.6,48.1h4.7v-4.8h-4.7V48.1z M475.3,48.1h4.7v-4.8h-4.7V48.1z M469,48.1h4.7v-4.8H469V48.1z M456.4,48.1h4.7
|
||||
v-4.8h-4.7V48.1z M431.2,48.1h4.7v-4.8h-4.7V48.1z M412.3,48.1h4.7v-4.8h-4.7V48.1z M406,48.1h4.7v-4.8H406V48.1z M399.7,48.1
|
||||
h4.7v-4.8h-4.7V48.1z M368.2,48.1h4.7v-4.8h-4.7V48.1z M343,48.1h4.7v-4.8H343V48.1z M317.8,48.1h4.7v-4.8h-4.7V48.1z
|
||||
M261.2,48.1h4.7v-4.8h-4.7V48.1z M254.9,48.1h4.7v-4.8h-4.7V48.1z M248.5,48.1h4.7v-4.8h-4.7V48.1z M242.3,48.1h4.7v-4.8h-4.7
|
||||
V48.1z M229.7,48.1h4.7v-4.8h-4.7V48.1z M204.5,48.1h4.7v-4.8h-4.7V48.1z M191.9,48.1h4.7v-4.8h-4.7V48.1z M185.6,48.1h4.7v-4.8
|
||||
h-4.7V48.1z M179.3,48.1h4.7v-4.8h-4.7V48.1z M173,48.1h4.7v-4.8H173V48.1z M147.8,48.1h4.7v-4.8h-4.7V48.1z M141.5,48.1h4.7
|
||||
v-4.8h-4.7V48.1z M135.2,48.1h4.7v-4.8h-4.7V48.1z M116.3,48.1h4.7v-4.8h-4.7V48.1z M91.1,48.1h4.7v-4.8h-4.7V48.1z M72.2,48.1
|
||||
h4.7v-4.8h-4.7V48.1z M65.9,48.1h4.7v-4.8h-4.7V48.1z M59.6,48.1h4.7v-4.8h-4.7V48.1z M53.3,48.1H58v-4.8h-4.7V48.1z M374.5,49.7
|
||||
h4.7v-4.8h-4.7V49.7z M361.9,49.7h4.7v-4.8h-4.7V49.7z M418.6,51.2h4.7v-4.8h-4.7V51.2z M393.4,51.2h4.7v-4.8h-4.7V51.2z
|
||||
M267.5,51.2h4.7v-4.8h-4.7V51.2z M166.7,51.2h4.7v-4.8h-4.7V51.2z M154.1,51.2h4.7v-4.8h-4.7V51.2z M128.9,51.2h4.7v-4.8h-4.7
|
||||
V51.2z M78.5,51.2h4.7v-4.8h-4.7V51.2z M481.6,54.4h4.7v-4.8h-4.7V54.4z M450.1,54.4h4.7v-4.8h-4.7V54.4z M431.2,54.4h4.7v-4.8
|
||||
h-4.7V54.4z M380.8,54.4h4.7v-4.8h-4.7V54.4z M355.6,54.4h4.7v-4.8h-4.7V54.4z M343,54.4h4.7v-4.8H343V54.4z M317.8,54.4h4.7
|
||||
v-4.8h-4.7V54.4z M242.3,54.4h4.7v-4.8h-4.7V54.4z M229.7,54.4h4.7v-4.8h-4.7V54.4z M204.5,54.4h4.7v-4.8h-4.7V54.4z M116.3,54.4
|
||||
h4.7v-4.8h-4.7V54.4z M91.1,54.4h4.7v-4.8h-4.7V54.4z M53.3,54.4H58v-4.8h-4.7V54.4z M393.4,57.6h4.7v-4.8h-4.7V57.6z
|
||||
M267.5,57.6h4.7v-4.8h-4.7V57.6z M166.7,57.6h4.7v-4.8h-4.7V57.6z M128.9,57.6h4.7v-4.8h-4.7V57.6z M78.5,57.6h4.7v-4.8h-4.7
|
||||
V57.6z M481.6,60.7h4.7V56h-4.7V60.7z M443.8,60.7h4.7V56h-4.7V60.7z M431.2,60.7h4.7V56h-4.7V60.7z M380.8,60.7h4.7V56h-4.7
|
||||
V60.7z M355.6,60.7h4.7V56h-4.7V60.7z M343,60.7h4.7V56H343V60.7z M317.8,60.7h4.7V56h-4.7V60.7z M242.3,60.7h4.7V56h-4.7V60.7z
|
||||
M229.7,60.7h4.7V56h-4.7V60.7z M210.8,60.7h4.7V56h-4.7V60.7z M204.5,60.7h4.7V56h-4.7V60.7z M116.3,60.7h4.7V56h-4.7V60.7z
|
||||
M91.1,60.7h4.7V56h-4.7V60.7z M393.4,63.9h4.7v-4.8h-4.7V63.9z M267.5,63.9h4.7v-4.8h-4.7V63.9z M166.7,63.9h4.7v-4.8h-4.7V63.9
|
||||
z M128.9,63.9h4.7v-4.8h-4.7V63.9z M78.5,63.9h4.7v-4.8h-4.7V63.9z M481.6,67.1h4.7v-4.8h-4.7V67.1z M437.5,67.1h4.7v-4.8h-4.7
|
||||
V67.1z M431.2,67.1h4.7v-4.8h-4.7V67.1z M380.8,67.1h4.7v-4.8h-4.7V67.1z M355.6,67.1h4.7v-4.8h-4.7V67.1z M343,67.1h4.7v-4.8
|
||||
H343V67.1z M336.7,67.1h4.7v-4.8h-4.7V67.1z M330.4,67.1h4.7v-4.8h-4.7V67.1z M324.1,67.1h4.7v-4.8h-4.7V67.1z M317.8,67.1h4.7
|
||||
v-4.8h-4.7V67.1z M242.3,67.1h4.7v-4.8h-4.7V67.1z M229.7,67.1h4.7v-4.8h-4.7V67.1z M217.1,67.1h4.7v-4.8h-4.7V67.1z M204.5,67.1
|
||||
h4.7v-4.8h-4.7V67.1z M185.6,67.1h4.7v-4.8h-4.7V67.1z M179.3,67.1h4.7v-4.8h-4.7V67.1z M173,67.1h4.7v-4.8H173V67.1z
|
||||
M116.3,67.1h4.7v-4.8h-4.7V67.1z M91.1,67.1h4.7v-4.8h-4.7V67.1z M393.4,70.3h4.7v-4.8h-4.7V70.3z M374.5,70.3h4.7v-4.8h-4.7
|
||||
V70.3z M368.2,70.3h4.7v-4.8h-4.7V70.3z M361.9,70.3h4.7v-4.8h-4.7V70.3z M267.5,70.3h4.7v-4.8h-4.7V70.3z M166.7,70.3h4.7v-4.8
|
||||
h-4.7V70.3z M154.1,70.3h4.7v-4.8h-4.7V70.3z M147.8,70.3h4.7v-4.8h-4.7V70.3z M141.5,70.3h4.7v-4.8h-4.7V70.3z M128.9,70.3h4.7
|
||||
v-4.8h-4.7V70.3z M78.5,70.3h4.7v-4.8h-4.7V70.3z M481.6,73.4h4.7v-4.8h-4.7V73.4z M443.8,73.4h4.7v-4.8h-4.7V73.4z M431.2,73.4
|
||||
h4.7v-4.8h-4.7V73.4z M380.8,73.4h4.7v-4.8h-4.7V73.4z M355.6,73.4h4.7v-4.8h-4.7V73.4z M343,73.4h4.7v-4.8H343V73.4z
|
||||
M317.8,73.4h4.7v-4.8h-4.7V73.4z M242.3,73.4h4.7v-4.8h-4.7V73.4z M229.7,73.4h4.7v-4.8h-4.7V73.4z M223.4,73.4h4.7v-4.8h-4.7
|
||||
V73.4z M204.5,73.4h4.7v-4.8h-4.7V73.4z M116.3,73.4h4.7v-4.8h-4.7V73.4z M91.1,73.4h4.7v-4.8h-4.7V73.4z M393.4,76.6h4.7v-4.8
|
||||
h-4.7V76.6z M267.5,76.6h4.7v-4.8h-4.7V76.6z M166.7,76.6h4.7v-4.8h-4.7V76.6z M154.1,76.6h4.7v-4.8h-4.7V76.6z M128.9,76.6h4.7
|
||||
v-4.8h-4.7V76.6z M78.5,76.6h4.7v-4.8h-4.7V76.6z M53.3,76.6H58v-4.8h-4.7V76.6z M481.6,79.8h4.7V75h-4.7V79.8z M450.1,79.8h4.7
|
||||
V75h-4.7V79.8z M431.2,79.8h4.7V75h-4.7V79.8z M380.8,79.8h4.7V75h-4.7V79.8z M355.6,79.8h4.7V75h-4.7V79.8z M343,79.8h4.7V75
|
||||
H343V79.8z M317.8,79.8h4.7V75h-4.7V79.8z M242.3,79.8h4.7V75h-4.7V79.8z M229.7,79.8h4.7V75h-4.7V79.8z M204.5,79.8h4.7V75h-4.7
|
||||
V79.8z M116.3,79.8h4.7V75h-4.7V79.8z M91.1,79.8h4.7V75h-4.7V79.8z M418.6,82.9h4.7v-4.8h-4.7V82.9z M393.4,82.9h4.7v-4.8h-4.7
|
||||
V82.9z M267.5,82.9h4.7v-4.8h-4.7V82.9z M166.7,82.9h4.7v-4.8h-4.7V82.9z M154.1,82.9h4.7v-4.8h-4.7V82.9z M128.9,82.9h4.7v-4.8
|
||||
h-4.7V82.9z M78.5,82.9h4.7v-4.8h-4.7V82.9z M53.3,82.9H58v-4.8h-4.7V82.9z M481.6,86.1h4.7v-4.8h-4.7V86.1z M456.4,86.1h4.7
|
||||
v-4.8h-4.7V86.1z M431.2,86.1h4.7v-4.8h-4.7V86.1z M412.3,86.1h4.7v-4.8h-4.7V86.1z M406,86.1h4.7v-4.8H406V86.1z M399.7,86.1
|
||||
h4.7v-4.8h-4.7V86.1z M380.8,86.1h4.7v-4.8h-4.7V86.1z M355.6,86.1h4.7v-4.8h-4.7V86.1z M343,86.1h4.7v-4.8H343V86.1z
|
||||
M317.8,86.1h4.7v-4.8h-4.7V86.1z M261.2,86.1h4.7v-4.8h-4.7V86.1z M254.9,86.1h4.7v-4.8h-4.7V86.1z M248.5,86.1h4.7v-4.8h-4.7
|
||||
V86.1z M242.3,86.1h4.7v-4.8h-4.7V86.1z M229.7,86.1h4.7v-4.8h-4.7V86.1z M204.5,86.1h4.7v-4.8h-4.7V86.1z M191.9,86.1h4.7v-4.8
|
||||
h-4.7V86.1z M185.6,86.1h4.7v-4.8h-4.7V86.1z M179.3,86.1h4.7v-4.8h-4.7V86.1z M173,86.1h4.7v-4.8H173V86.1z M147.8,86.1h4.7
|
||||
v-4.8h-4.7V86.1z M141.5,86.1h4.7v-4.8h-4.7V86.1z M135.2,86.1h4.7v-4.8h-4.7V86.1z M110,86.1h4.7v-4.8H110V86.1z M103.7,86.1
|
||||
h4.7v-4.8h-4.7V86.1z M97.4,86.1h4.7v-4.8h-4.7V86.1z M72.2,86.1h4.7v-4.8h-4.7V86.1z M65.9,86.1h4.7v-4.8h-4.7V86.1z M59.6,86.1
|
||||
h4.7v-4.8h-4.7V86.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 56 KiB |
1469
jh16-berlin/artwork/pause.svg
Normal file
1469
jh16-berlin/artwork/pause.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 77 KiB |
18
jh16-berlin/artwork/svg-groups.txt
Normal file
18
jh16-berlin/artwork/svg-groups.txt
Normal file
|
@ -0,0 +1,18 @@
|
|||
#intro - Ablaufreihenfolge
|
||||
#Variablen:
|
||||
- #background zu sehen
|
||||
- #logo + #icongroup einblenden (2 Sek)
|
||||
- #alpaca + #text-bg einblenden (2 Sek)
|
||||
- Sofort #projectname + #prenames zeigen und stehen lassen (Problem beim FadeIn da LED-Schriftart = nichtmehrmeinfreund!) (5 Sek)
|
||||
|
||||
------------------------------------------
|
||||
=> 8 Sekunden
|
||||
|
||||
#outro - Ablaufreihenfolge
|
||||
- #background zu sehen
|
||||
- #logo einblenden (1 Sek)
|
||||
- #licensegroup einblenden (1 Sek)
|
||||
- #logogroup einblenden (1 Sek)
|
||||
- alles zeigen (2 Sek)
|
||||
------------------------------------------
|
||||
=> 5 Sekunden
|
Loading…
Add table
Reference in a new issue