All Systems Go!
This commit is contained in:
parent
2d7187f210
commit
cfcec70629
4 changed files with 4670 additions and 0 deletions
182
asg2017/__init__.py
Normal file
182
asg2017/__init__.py
Normal file
|
@ -0,0 +1,182 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://cfp.all-systems-go.io/en/ASG2017/public/schedule.xml'
|
||||
|
||||
# For (really) too long titles
|
||||
titlemap = {
|
||||
# 72: "Maximize your creativity and quality of use of HMI for automotive. TRITO Linkage, a compre-hensive HMI tool chain for Qt."
|
||||
}
|
||||
|
||||
def bounce(i, min, max, frames):
|
||||
if i == frames - 1:
|
||||
return 0
|
||||
|
||||
if i <= frames/2:
|
||||
return easeInOutQuad(i, min, max, frames/2)
|
||||
else:
|
||||
return max - easeInOutQuad(i - frames/2, min, max, frames/2)
|
||||
|
||||
def introFrames(parameters):
|
||||
move=50
|
||||
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('speaker', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
('title', 'style', 'opacity', "0"),
|
||||
)
|
||||
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('speaker', 'style', 'opacity', "1"),
|
||||
('title', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
# 3 Sekunde Text Fadeout
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield []
|
||||
|
||||
def pauseFrames(parameters):
|
||||
frames = 25*3
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
|
||||
)
|
||||
|
||||
frames = 25*1
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(p):
|
||||
# 2 Sekunden stehen bleiben
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('sponsoredby', 'style', 'opacity', "%.4f" % 1),
|
||||
('recordedby', 'style', 'opacity', "%.4f" % 0),
|
||||
)
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('sponsoredby', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||
('recordedby', 'style', 'opacity', "%.4f" % 0),
|
||||
)
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('sponsoredby', 'style', 'opacity', "%.4f" % 0),
|
||||
('recoededby', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
)
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield []
|
||||
|
||||
|
||||
def backgroundFrames(parameters):
|
||||
return
|
||||
frames = 25*3
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
|
||||
)
|
||||
|
||||
frames = 25*1
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
|
||||
)
|
||||
|
||||
frames = 20*fps
|
||||
for i in range(0, frames):
|
||||
xshift = 300 - ((i+1) * (300/frames))
|
||||
yshift = 150 - ((i+1) * (150/frames))
|
||||
yield(
|
||||
('pillgroup', 'attr', 'transform', 'translate(%.4f, %.4f)' % (xshift, yshift)),
|
||||
)
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$ID': 4711,
|
||||
'$TITLE': "Long Long Long title is LONG",
|
||||
'$COMPANY': 'Long Running Co',
|
||||
'$SPEAKER': 'Dr. Dr. Prof. Dr. Long Long'
|
||||
}
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
#
|
||||
render(
|
||||
'outro.svg',
|
||||
'../outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
#if event['room'] not in ('Galerie', 'Saal (Main Hall)'):
|
||||
# print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
|
||||
# continue
|
||||
if not (idlist==[]):
|
||||
if 000000 in idlist:
|
||||
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||
continue
|
||||
if int(event['id']) not in idlist:
|
||||
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||
continue
|
||||
|
||||
# generate a task description and put it into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$ID': event['id'],
|
||||
'$TITLE': event['title'],
|
||||
'$COMPANY': event['subtitle'],
|
||||
'$SPEAKER': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
||||
|
||||
# place the pause-sequence into the queue
|
||||
if not "pause" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'pause.svg',
|
||||
outfile = 'pause.ts',
|
||||
sequence = pauseFrames
|
||||
))
|
||||
|
||||
# place the background-sequence into the queue
|
||||
if not "bg" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'background.svg',
|
||||
outfile = 'background.ts',
|
||||
sequence = backgroundFrames
|
||||
))
|
1866
asg2017/artwork/Intro_Outro.svg
Normal file
1866
asg2017/artwork/Intro_Outro.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 109 KiB |
1637
asg2017/artwork/intro.svg
Normal file
1637
asg2017/artwork/intro.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 87 KiB |
985
asg2017/artwork/outro.svg
Normal file
985
asg2017/artwork/outro.svg
Normal file
|
@ -0,0 +1,985 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 1920 1080"
|
||||
id="svg6419"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="outro.svg">
|
||||
<defs
|
||||
id="defs6421">
|
||||
<clipPath
|
||||
id="clipPath5793"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5795"
|
||||
d="m 0,1080 1920,0 L 1920,0 0,0 0,1080 Z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath5801"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5803"
|
||||
d="m 0,1080.06 1920,0 0,-1080.120379 -1920,0 L 0,1080.06 Z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath5837"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5839"
|
||||
d="m 964.524,713.711 -135.302,-138.508 -7.067,-54.935 267.526,0 0,193.443 -125.157,0 z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath5935"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5937"
|
||||
d="m 0,1080 1920,0 L 1920,0 0,0 0,1080 Z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath5935-6"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5937-0"
|
||||
d="m 0,1080 1920,0 L 1920,0 0,0 0,1080 Z" />
|
||||
</clipPath>
|
||||
<clipPath
|
||||
id="clipPath5935-1"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5937-7"
|
||||
d="m 0,1080 1920,0 L 1920,0 0,0 0,1080 Z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.7"
|
||||
inkscape:cx="1014.9289"
|
||||
inkscape:cy="184.59441"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g5787"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1016"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata6424">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,27.637839)">
|
||||
<g
|
||||
transform="matrix(1.0010813,0,0,-1.0010813,-1.1685992,1052.8156)"
|
||||
inkscape:label="Intro_Outro"
|
||||
id="g5787">
|
||||
<g
|
||||
id="g5791"
|
||||
clip-path="url(#clipPath5793)">
|
||||
<g
|
||||
id="g5797">
|
||||
<g
|
||||
id="g5799" />
|
||||
<g
|
||||
id="g5805">
|
||||
<g
|
||||
clip-path="url(#clipPath5801)"
|
||||
id="g5807"
|
||||
style="opacity:0.14999402">
|
||||
<g
|
||||
transform="translate(0,-0.0605)"
|
||||
id="g5809">
|
||||
<path
|
||||
d="m 0,0 0.009,1080.121 1919.991,0 L 1920,0 0,0 Z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5811"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(993.8462,774.4478)"
|
||||
id="g5813">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5815"
|
||||
style="fill:#ec2227;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 56.657,56.646 120.376,0 0,-113.297 -60.195,-58.413 L 116.838,0 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(1111.5757,584.1475)"
|
||||
id="g5817">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5819"
|
||||
style="fill:#00a54f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 56.646,-56.646 0,-120.374 -113.291,0 -58.413,60.187 115.058,0 L 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(926.1538,772.2271)"
|
||||
id="g5821">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5823"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -56.658,56.652 -120.375,0 0,-113.296 60.2,-58.42 0,115.064 L 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(808.4312,581.9336)"
|
||||
id="g5825">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5827"
|
||||
style="fill:#30358f;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -56.652,-56.651 0,-120.376 113.291,0 58.418,60.195 L 0,-116.832 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(853.479,613.0376)"
|
||||
id="g5829">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5831"
|
||||
style="fill:none;stroke:#000000;stroke-width:2.5769999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0,0 92.202,94.389" />
|
||||
</g>
|
||||
<g
|
||||
id="g5833">
|
||||
<g
|
||||
clip-path="url(#clipPath5837)"
|
||||
id="g5835">
|
||||
<g
|
||||
transform="translate(927.6963,661.8999)"
|
||||
id="g5841">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5843"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 6.937,0 -0.4,10.202 -0.045,2.066 c 0,1.199 0.025,2.252 0.09,3.148 C 6.202,14.035 5.724,12.707 5.137,11.428 L 0,0 Z m 7.22,-7.505 -10.608,0 -2.962,-6.589 -9.622,0 17.623,35.163 11.919,0 2.91,-35.163 -9.021,0 -0.239,6.589 z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(947.6748,647.8057)"
|
||||
id="g5845">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5847"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 7.317,35.163 9.261,0 -5.704,-27.496 11.298,0 L 20.565,0 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(972.7441,647.8057)"
|
||||
id="g5849">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5851"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 7.324,35.163 9.26,0 -5.704,-27.496 11.293,0 L 20.56,0 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(898.2637,613.4565)"
|
||||
id="g5853">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5855"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,-3.555 -1.162,-6.324 -3.479,-8.305 -2.323,-1.981 -5.562,-2.974 -9.717,-2.974 -1.73,0 -3.376,0.194 -4.924,0.593 -1.549,0.387 -2.885,0.968 -4.001,1.716 l 0,8.422 c 1.323,-0.846 2.846,-1.569 4.556,-2.142 1.716,-0.575 3.271,-0.865 4.659,-0.865 1.168,0 2.051,0.251 2.652,0.742 0.6,0.503 0.897,1.2 0.897,2.116 0,0.439 -0.097,0.839 -0.285,1.22 -0.186,0.374 -0.457,0.748 -0.806,1.129 -0.342,0.375 -1.271,1.207 -2.793,2.485 -1.846,1.509 -3.188,3.052 -4.028,4.62 -0.832,1.575 -1.252,3.297 -1.252,5.169 0,2.103 0.517,3.994 1.55,5.666 1.039,1.678 2.497,2.974 4.381,3.897 1.89,0.923 4.001,1.388 6.338,1.388 3.774,0 7.169,-0.858 10.189,-2.575 L 0.735,15.159 c -2.697,1.406 -4.994,2.116 -6.891,2.116 -1.013,0 -1.794,-0.226 -2.336,-0.677 -0.542,-0.446 -0.813,-1.104 -0.813,-1.969 0,-0.787 0.257,-1.522 0.786,-2.207 0.53,-0.677 1.543,-1.587 3.028,-2.73 1.859,-1.393 3.239,-2.858 4.142,-4.4 C -0.445,3.75 0,1.994 0,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(916.0488,624.7886)"
|
||||
id="g5857">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5859"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 7.395,13.035 10.325,0 -14.494,-21.528 -2.865,-13.635 -9.267,0 2.846,13.635 -5.614,21.528 9.544,0 L 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(951.7207,613.4565)"
|
||||
id="g5861">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5863"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,-3.555 -1.162,-6.324 -3.478,-8.305 -2.323,-1.981 -5.562,-2.974 -9.712,-2.974 -1.742,0 -3.382,0.194 -4.93,0.593 -1.549,0.387 -2.885,0.968 -4.001,1.716 l 0,8.422 c 1.323,-0.846 2.846,-1.569 4.562,-2.142 1.71,-0.575 3.259,-0.865 4.653,-0.865 1.161,0 2.052,0.251 2.653,0.742 0.6,0.503 0.897,1.2 0.897,2.116 0,0.439 -0.091,0.839 -0.285,1.22 -0.187,0.374 -0.457,0.748 -0.8,1.129 -0.355,0.375 -1.285,1.207 -2.801,2.485 -1.845,1.509 -3.188,3.052 -4.027,4.62 -0.838,1.575 -1.257,3.297 -1.257,5.169 0,2.103 0.522,3.994 1.554,5.666 1.039,1.678 2.497,2.974 4.382,3.897 1.891,0.923 4.001,1.388 6.337,1.388 3.775,0 7.17,-0.858 10.183,-2.575 L 0.736,15.159 c -2.704,1.406 -4.995,2.116 -6.892,2.116 -1.013,0 -1.788,-0.226 -2.336,-0.677 -0.543,-0.446 -0.82,-1.104 -0.82,-1.969 0,-0.787 0.265,-1.522 0.794,-2.207 0.529,-0.677 1.542,-1.587 3.02,-2.73 1.865,-1.393 3.246,-2.858 4.149,-4.4 C -0.445,3.75 0,1.994 0,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(968.7954,602.6606)"
|
||||
id="g5865">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5867"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -9.261,0 5.608,27.394 -7.504,0 1.638,7.769 24.348,0 -1.678,-7.769 -7.537,0 L 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(1000.8408,602.6606)"
|
||||
id="g5869">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5871"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -20.559,0 7.318,35.163 20.565,0 -1.542,-7.621 -11.299,0 -1.11,-5.537 10.512,0 -1.704,-7.628 -10.517,0 -1.349,-6.633 11.298,0 L 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(1019.4771,602.6606)"
|
||||
id="g5873">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5875"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 0,25.232 -0.187,0 C -1.239,18.546 -1.923,14.442 -2.22,12.912 L -4.904,0 l -8.247,0 7.332,35.163 12.266,0 0,-24.968 0.187,0 11.331,24.968 12.455,0 L 23.011,0 14.694,0 17.463,13.203 c 0.787,3.659 1.645,7.15 2.556,10.486 l 0.36,1.543 -0.193,0 L 8.77,0 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(1071.5918,613.4565)"
|
||||
id="g5877">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5879"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,-3.555 -1.161,-6.324 -3.484,-8.305 -2.318,-1.981 -5.556,-2.974 -9.705,-2.974 -1.743,0 -3.382,0.194 -4.931,0.593 -1.548,0.387 -2.885,0.968 -4.001,1.716 l 0,8.422 c 1.323,-0.846 2.84,-1.569 4.556,-2.142 1.717,-0.575 3.266,-0.865 4.659,-0.865 1.162,0 2.047,0.251 2.647,0.742 0.606,0.503 0.903,1.2 0.903,2.116 0,0.439 -0.092,0.839 -0.285,1.22 -0.193,0.374 -0.458,0.748 -0.806,1.129 -0.342,0.375 -1.277,1.207 -2.794,2.485 -1.846,1.509 -3.187,3.052 -4.028,4.62 -0.838,1.575 -1.251,3.297 -1.251,5.169 0,2.103 0.517,3.994 1.548,5.666 1.033,1.678 2.492,2.974 4.382,3.897 1.884,0.923 4.001,1.388 6.337,1.388 3.775,0 7.17,-0.858 10.19,-2.575 l -3.2,-7.143 c -2.698,1.406 -5.002,2.116 -6.892,2.116 -1.008,0 -1.795,-0.226 -2.337,-0.677 -0.542,-0.446 -0.813,-1.104 -0.813,-1.969 0,-0.787 0.258,-1.522 0.787,-2.207 0.53,-0.677 1.543,-1.587 3.02,-2.73 1.866,-1.393 3.253,-2.858 4.149,-4.4 C -0.451,3.75 0,1.994 0,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(973.2227,578.3711)"
|
||||
id="g5881">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5883"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 14.455,0 -3.963,-19.119 c -3.95,-1.304 -8.066,-1.95 -12.338,-1.95 -4.131,0 -7.318,1.214 -9.596,3.653 -2.271,2.439 -3.413,5.898 -3.413,10.363 0,4.292 0.87,8.157 2.607,11.602 1.742,3.447 4.117,6.08 7.143,7.873 3.026,1.807 6.538,2.711 10.558,2.711 4.2,0 7.736,-0.865 10.615,-2.569 L 12.583,5.131 C 10.163,6.57 7.749,7.292 5.33,7.292 3.239,7.292 1.406,6.705 -0.201,5.543 -1.807,4.382 -3.085,2.666 -4.04,0.388 -4.996,-1.89 -5.473,-4.323 -5.473,-6.898 c 0,-4.24 1.652,-6.35 4.956,-6.35 0.995,0 2.039,0.11 3.149,0.329 l 1.206,5.583 -5.426,0 L 0,0 Z" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(1013.4629,579.8623)"
|
||||
id="g5885">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5887"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,1.833 -0.374,3.265 -1.136,4.297 -0.761,1.034 -1.859,1.55 -3.291,1.55 -1.561,0 -3.006,-0.672 -4.31,-2.021 -1.316,-1.348 -2.361,-3.194 -3.142,-5.555 -0.782,-2.363 -1.169,-4.775 -1.169,-7.241 0,-3.878 1.574,-5.821 4.737,-5.821 1.497,0 2.891,0.671 4.182,2.001 1.284,1.33 2.297,3.123 3.033,5.388 C -0.368,-5.15 0,-2.672 0,0 m -3.652,13.642 c 4.117,0 7.305,-1.187 9.589,-3.576 2.285,-2.38 3.421,-5.703 3.421,-9.962 0,-4.273 -0.788,-8.17 -2.356,-11.706 -1.568,-3.537 -3.736,-6.247 -6.498,-8.131 -2.769,-1.885 -5.976,-2.827 -9.623,-2.827 -4.251,0 -7.529,1.201 -9.84,3.588 -2.316,2.388 -3.471,5.705 -3.471,9.95 0,4.253 0.812,8.157 2.439,11.719 1.626,3.562 3.846,6.273 6.646,8.144 2.801,1.865 6.04,2.801 9.693,2.801" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(1033.8281,570.1948)"
|
||||
id="g5889">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5891"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -7.769,0 3.698,22.754 10.092,0 L 0,0 Z m -10.44,-9.356 c 0,1.716 0.516,3.078 1.536,4.091 1.032,1.007 2.44,1.51 4.246,1.51 1.368,0 2.426,-0.323 3.162,-0.968 0.736,-0.658 1.096,-1.568 1.096,-2.761 0,-1.756 -0.502,-3.124 -1.496,-4.086 -1.007,-0.961 -2.375,-1.438 -4.117,-1.438 -1.388,0 -2.472,0.302 -3.253,0.923 -0.788,0.612 -1.174,1.529 -1.174,2.729" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(960,183.9722)"
|
||||
id="g5893">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5895"
|
||||
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0,0 0,-138.596" />
|
||||
</g>
|
||||
<text
|
||||
id="text5897"
|
||||
style="font-variant:normal;font-weight:800;font-stretch:normal;font-size:48.13299942px;font-family:'Open Sans Extrabold';-inkscape-font-specification:OpenSans-Extrabold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,1014.4746,146.6387)">
|
||||
<tspan
|
||||
id="tspan5899"
|
||||
sodipodi:role="line"
|
||||
y="0"
|
||||
x="0 37.158676 61.899036 82.836891 112.29429 142.04048 170.58336 191.95441 203.26566 230.26826 257.27087 271.37384 298.37646 325.37909 336.69034 349.39746 360.70871 387.7113 414.71393 441.71655"
|
||||
style="-inkscape-font-specification:'Open Sans Ultra-Bold';font-family:'Open Sans';font-weight:800;font-style:normal;font-stretch:normal;font-variant:normal">October 21-22 . 2017</tspan>
|
||||
</text>
|
||||
<text
|
||||
id="text5901"
|
||||
style="font-variant:normal;font-weight:600;font-stretch:normal;font-size:25.64800072px;font-family:'Open Sans Semibold';-inkscape-font-specification:OpenSans-Semibold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,1014.4746,111.5059)">
|
||||
<tspan
|
||||
id="tspan5903"
|
||||
sodipodi:role="line"
|
||||
y="0"
|
||||
x="0 19.492479 36.368862 55.322735 71.78875 82.176193 104.82338 114.23619">BERLIN,</tspan>
|
||||
</text>
|
||||
<text
|
||||
id="text5905"
|
||||
style="font-variant:normal;font-weight:600;font-stretch:normal;font-size:25.66480064px;font-family:'Open Sans Semibold';-inkscape-font-specification:OpenSans-Semibold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,1137.9604,111.5059)">
|
||||
<tspan
|
||||
id="tspan5907"
|
||||
sodipodi:role="line"
|
||||
y="0"
|
||||
x="0 21.199125 38.086563 57.052849 83.307938 102.83885 125.50087">GERMANY</tspan>
|
||||
</text>
|
||||
<text
|
||||
id="text5909"
|
||||
style="font-variant:normal;font-weight:bold;font-stretch:normal;font-size:37px;font-family:'Open Sans';-inkscape-font-specification:OpenSans-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="matrix(1,0,0,-1,1014.002,52.3027)">
|
||||
<tspan
|
||||
id="tspan5911"
|
||||
sodipodi:role="line"
|
||||
y="0"
|
||||
x="0 24.309 40.367001 56.424999 79.846001 98.235001 108.78 124.061 139.342 161.69 172.97501 184.25999 196.174 214.563 235.616 254.005 270.06299 291.92999 328.26401 346.65302 358.56699 379.47198 402.375 412.92001 424.20499">https://all-systems-go.io</tspan>
|
||||
</text>
|
||||
<g
|
||||
id="bleh"
|
||||
style="fill:#000000">
|
||||
<text
|
||||
y="-103.6201"
|
||||
x="383.23898"
|
||||
transform="scale(1,-1)"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="text5913">
|
||||
<tspan
|
||||
x="383.23898"
|
||||
y="-103.6201"
|
||||
id="tspan5915"
|
||||
style="fill:#000000">R</tspan>
|
||||
</text>
|
||||
<text
|
||||
y="-104.19091"
|
||||
x="417.31079"
|
||||
transform="scale(1,-1)"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="text5917">
|
||||
<tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan5919"
|
||||
x="417.31079"
|
||||
y="-104.19091">ECORDED</tspan>
|
||||
</text>
|
||||
<text
|
||||
y="-103.6201"
|
||||
x="581.79248"
|
||||
transform="scale(1,-1)"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="text5921">
|
||||
<tspan
|
||||
x="581.79248 603.11169"
|
||||
y="-103.6201"
|
||||
sodipodi:role="line"
|
||||
id="tspan5923">BY</tspan>
|
||||
</text>
|
||||
<text
|
||||
y="-103.6201"
|
||||
x="621.53558"
|
||||
transform="scale(1,-1)"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="text5925">
|
||||
<tspan
|
||||
x="621.53558"
|
||||
y="-103.6201"
|
||||
id="tspan5927"
|
||||
style="fill:#000000">:</tspan>
|
||||
</text>
|
||||
<g
|
||||
id="g4983"
|
||||
style="fill:#000000">
|
||||
<g
|
||||
id="g3899"
|
||||
transform="matrix(0.32497885,0,0,-0.32497885,685.14216,191.51986)"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1">
|
||||
<path
|
||||
id="path3901"
|
||||
d="m 294.407,7.95792 c 6.213,1.027 19.117,20.42198 17.554,56.04198 -4.3,2.287 -9.289,0.945 -12.547,0.894 -10.184,-2.682 -0.678,-29.555 -14.953,-39.546 C 263.79,10.8809 119.447,14.4069 45.5808,21.1209 13.592,24.0289 17.478,87.0639 16.8569,120.43 c -0.5169,27.768 0.4448,58.119 11.4189,88.93 9.4468,26.524 44.2989,17.409 75.9712,18.571 56.978,0 160.981,1.883 173.53,-3.125 9.092,-3.629 12.796,-16.972 14.709,-25.575 3.351,-15.069 -0.168,-25.607 11.822,-25.324 6.313,0.149 7.555,5.857 6.592,16.772 -1.001,11.346 -4.393,26.441 -9.128,44.005 -3.421,12.688 -27.012,10.129 -42.628,10.129 C 180.218,242.704 100.45,245.236 24.0554,243.125 1.9155,242.514 1.46946,137.911 0.285625,118.923 -1.10525,96.6069 2.51438,7.01993 21.3615,6.01993 35.3674,5.27692 113.628,0.0309143 159.959,0.0189209 205.016,0.00692749 252.988,1.11093 294.407,7.95792"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3903"
|
||||
d="m 223.69,24.0759 c 5.487,15.616 -8.019,40.096 12.24,48.537 73.438,12.662 159.117,-14.772 221.582,23.635 16.882,16.4601 29.544,35.4531 37.563,55.7121 l 0,-9.285 c -9.285,-25.746 -28.278,-47.6931 -46.427,-70.0621 5.065,-6.753 10.974,1.266 16.038,3.376 18.571,23.213 37.563,46.8491 44.739,74.7051 1.265,1.688 3.798,5.065 5.908,2.11 l 2.955,-2.954 c -6.331,-29.966 -25.324,-54.4461 -41.362,-80.1921 7.175,-4.643 14.35,3.377 20.259,8.019 12.24,20.259 25.746,40.5181 30.388,64.1531 3.376,2.532 7.597,-2.11 9.285,-5.065 -2.532,-18.571 -8.864,-35.031 -16.461,-50.6471 1.266,-2.11 1.266,-5.065 4.221,-5.065 18.149,9.707 17.727,30.8111 24.057,47.2711 5.909,-0.422 8.863,-18.993 16.46,-8.019 2.532,6.753 -10.129,17.305 2.955,18.149 -6.331,30.388 -39.674,54.024 -68.796,60.777 -15.194,3.376 -35.453,8.018 -46.849,-3.798 2.11,-5.487 9.707,-6.331 15.194,-7.175 33.765,-1.266 65.842,-13.506 86.101,-40.518 l -0.844,-0.844 c -32.077,21.525 -71.75,42.206 -111.424,26.168 -3.376,-0.844 -5.065,-5.487 -2.954,-8.019 0.844,-2.532 -1.688,-3.798 -2.955,-4.221 -67.108,2.954 -137.596,-6.324 -202.593,4.227 -7.13,1.158 -7.934,7.746 -9.284,13.082 -3.414,13.511 5.21,32.647 -2.824,39.846 0,0 -5.936,1.741 -10.256,-0.177 -1.011,-5.609 -4.227,-37.144 2.948,-54.026 9.077,-21.357 89.954,-14.153 113.334,-14.626 42.722,-0.863 92.638,-2.254 132.734,0.701 -11.396,-11.396 -29.122,-11.818 -46.427,-11.396 -54.868,-0.844 -140.604,-0.559 -175.376,-2.466 -51.431,-2.822 -69.842,48.893 -102.341,82.658 l -15.194,0 c 20.259,-28.277 42.097,-60.522 70.062,-85.256 4.509,-3.988 7.645,-4.615 15.194,-6.752 21.025,-5.953 224.959,0.844 224.959,0.844 9.285,2.11 19.415,3.376 28.278,7.174 -5.065,-13.084 -21.525,-16.46 -34.609,-18.147 -73.017,-2.11 -146.877,-0.422 -218.628,-5.065 -19.415,-5.909 -29.544,-29.9661 -44.739,-44.7391 l -32.499,-41.362 16.46,0.844 c 21.103,24.479 35.575,54.506 62.887,73.8601 6.02,4.266 134.602,3.027 202.584,2.954 10.96,-0.012 33.77,7.175 48.542,15.195 2.532,-3.376 -1.688,-6.331 -4.221,-8.863 -30.811,-29.5441 -94.362,-20.3431 -117.328,-20.2641 -40.285,0.14 -88.233,8.522 -121.559,-12.235 -8.141,-5.071 -6.752,-35.875 -2.953,-52.758 l 10.973,0"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3905"
|
||||
d="m 575.267,153.649 c -7.175,30.389 -29.544,57.822 -57.823,73.017 -17.727,3.799 -40.518,15.616 -54.868,-2.11 9.708,-8.863 27.434,-2.954 38.83,-10.13 29.544,-8.441 53.858,-34.474 68.796,-60.777 1.91,-1.321 3.195,-2.823 5.065,0"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3907"
|
||||
d="m 584.142,179.84 c -5.065,26.168 -17.727,53.602 -44.739,66.686 -11.818,5.487 -30.388,11.818 -41.362,2.11 l 0,-4.221 c 41.784,1.688 62.887,-42.206 79.77,-71.75 4.643,-0.422 5.065,3.798 6.331,7.175"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3909"
|
||||
d="m 611.567,280.265 c 19.879,4.224 39.249,-15.615 43.47,10.131 -16.883,8.863 -39.674,6.331 -57.4,1.266 -3.799,7.597 1.688,16.038 0,25.324 -2.532,24.902 -11.818,48.537 -33.765,63.731 -6.357,3.3 -7.677,5.247 -11.431,5.909 1.138,-5.702 1.527,-10.353 2.5,-13.899 4.346,-2.92 23.503,-15.22 24.125,-31.684 9.707,-34.609 -0.844,-68.796 -24.058,-94.12 l 15.194,-13.928 c 8.863,17.726 18.896,42.495 41.364,47.269"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path3911"
|
||||
d="m 542.769,257.054 c 24.479,47.271 1.688,102.561 -4.221,151.098 2.532,18.149 5.065,36.719 20.259,49.381 -1.688,4.221 0.844,14.772 -5.909,12.24 -21.525,-11.396 -28.7,-34.187 -28.278,-57.822 -0.844,-41.784 21.525,-75.127 16.038,-117.333 L 536.86,286.6 c -17.305,18.57 -36.719,41.784 -35.453,70.905 l -11.396,2.11 c -12.662,-40.518 31.655,-63.743 37.564,-100.04 0,0 9.707,-3.786 15.194,-2.521"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.13311577px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="737.67926"
|
||||
y="-78.157478"
|
||||
id="text3926"
|
||||
sodipodi:linespacing="125%"
|
||||
transform="scale(1,-1)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3928"
|
||||
x="737.67926"
|
||||
y="-78.157478"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1">www.c3voc.de</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-0.23152501,0.19348027)"
|
||||
id="sponsoredby">
|
||||
<text
|
||||
transform="matrix(1,0,0,-1,367.2563,103.6201)"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="text5913-1">
|
||||
<tspan
|
||||
x="0"
|
||||
y="0"
|
||||
id="tspan5915-2">S</tspan>
|
||||
</text>
|
||||
<text
|
||||
transform="matrix(1,0,0,-1,393.0513,103.6201)"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="text5917-5">
|
||||
<tspan
|
||||
x="0 19.805799 45.434898 70.241501 88.303596 113.9327 134.26489 152.5573"
|
||||
y="0"
|
||||
sodipodi:role="line"
|
||||
id="tspan5919-4">PONSORED</tspan>
|
||||
</text>
|
||||
<text
|
||||
transform="matrix(1,0,0,-1,581.7925,103.6201)"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="text5921-9">
|
||||
<tspan
|
||||
x="0 21.319201"
|
||||
y="0"
|
||||
sodipodi:role="line"
|
||||
id="tspan5923-6">BY</tspan>
|
||||
</text>
|
||||
<text
|
||||
transform="matrix(1,0,0,-1,621.5356,103.6201)"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="text5925-2">
|
||||
<tspan
|
||||
x="0"
|
||||
y="0"
|
||||
id="tspan5927-9">:</tspan>
|
||||
</text>
|
||||
<path
|
||||
d="m 756.746,65.515 -98.318,0 0,98.318 98.318,0 0,-98.318 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5929"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g5931">
|
||||
<g
|
||||
id="g5933"
|
||||
clip-path="url(#clipPath5935-1)">
|
||||
<g
|
||||
id="g5939"
|
||||
transform="translate(669.8003,88.0601)">
|
||||
<path
|
||||
d="m 0,0 0.357,0 0.292,-1.051 c 0.082,-0.294 0.13,-0.5 0.145,-0.618 0.003,0.071 0.047,0.487 0.131,1.248 l 0.141,1.337 0.343,0 -0.377,-2.948 -0.383,0 -0.338,1.169 C 0.257,-0.678 0.212,-0.488 0.177,-0.294 0.135,-0.527 0.091,-0.718 0.046,-0.867 l -0.314,-1.165 -0.383,0 -0.41,2.948 0.343,0 0.178,-1.337 c 0.031,-0.237 0.058,-0.491 0.081,-0.763 0.022,-0.271 0.034,-0.433 0.034,-0.485 0.032,0.203 0.079,0.413 0.141,0.629 L 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5941"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5943"
|
||||
transform="translate(673.9639,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -1.697,0 0,2.948 1.697,0 0,-0.331 -1.323,0 0,-0.911 1.244,0 0,-0.327 -1.244,0 0,-1.048 L 0,0.331 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5945"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5947"
|
||||
transform="translate(677.02,87.4111)">
|
||||
<path
|
||||
d="m 0,0 0,-1.065 0.619,0 c 0.418,0 0.627,0.184 0.627,0.553 C 1.246,-0.171 1.028,0 0.593,0 L 0,0 Z m 0,0.314 0.573,0 c 0.209,0 0.362,0.038 0.458,0.111 0.096,0.074 0.144,0.197 0.144,0.367 0,0.162 -0.051,0.277 -0.154,0.347 C 0.918,1.208 0.755,1.244 0.532,1.244 L 0,1.244 0,0.314 Z m -0.377,1.25 0.887,0 C 0.878,1.564 1.146,1.505 1.312,1.388 1.478,1.27 1.561,1.081 1.561,0.818 1.561,0.646 1.508,0.503 1.402,0.389 1.297,0.274 1.154,0.205 0.974,0.181 l 0,-0.02 C 1.42,0.088 1.643,-0.142 1.643,-0.528 1.643,-0.795 1.558,-1.004 1.386,-1.155 1.214,-1.308 0.981,-1.383 0.686,-1.383 l -1.063,0 0,2.947 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5949"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5951"
|
||||
transform="translate(681.6895,88.9795)">
|
||||
<path
|
||||
d="M 0,0 0,-1.911 C 0,-2.261 -0.084,-2.528 -0.254,-2.714 -0.423,-2.899 -0.672,-2.992 -1,-2.992 c -0.649,0 -0.974,0.363 -0.974,1.089 l 0,1.899 0.375,0 0,-1.879 c 0,-0.52 0.206,-0.781 0.62,-0.781 0.396,0 0.597,0.262 0.604,0.785 L -0.375,0 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5953"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5955"
|
||||
transform="translate(684.5747,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -1.564,0 0,0.248 0.594,0.04 0,2.371 -0.594,0.041 0,0.248 L 0,2.948 0,2.7 -0.593,2.659 -0.593,0.288 0,0.248 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5957"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5959"
|
||||
transform="translate(686.1191,86.0278)">
|
||||
<path
|
||||
d="m 0,0 0,2.948 0.377,0 0,-2.613 1.28,0 L 1.657,0 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5961"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5963"
|
||||
transform="translate(689.3921,88.6548)">
|
||||
<path
|
||||
d="m 0,0 0,-2.305 0.193,0 c 0.715,0 1.073,0.389 1.073,1.168 C 1.266,-0.379 0.935,0 0.272,0 L 0,0 Z m -0.377,-2.627 0,2.948 0.689,0 C 0.738,0.321 1.07,0.194 1.307,-0.061 1.544,-0.314 1.663,-0.669 1.663,-1.125 1.663,-1.61 1.54,-1.982 1.294,-2.24 1.048,-2.498 0.693,-2.627 0.229,-2.627 l -0.606,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5965"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5967"
|
||||
transform="translate(693.7544,86.0278)">
|
||||
<path
|
||||
d="m 0,0 0,2.948 0.377,0 0,-2.613 1.28,0 L 1.657,0 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5969"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5971"
|
||||
transform="translate(698.396,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -1.564,0 0,0.248 0.594,0.04 0,2.371 -0.594,0.041 0,0.248 L 0,2.948 0,2.7 -0.593,2.659 -0.593,0.288 0,0.248 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5973"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5975"
|
||||
transform="translate(701.6719,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -0.434,0 -1.169,2.439 -0.016,0 c 0.024,-0.372 0.036,-0.652 0.036,-0.84 l 0,-1.599 -0.346,0 0,2.948 0.429,0 1.166,-2.428 0.012,0 c -0.019,0.407 -0.029,0.679 -0.029,0.814 l 0,1.614 L 0,2.948 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5977"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5979"
|
||||
transform="translate(704.7891,88.9795)">
|
||||
<path
|
||||
d="M 0,0 0,-1.911 C 0,-2.261 -0.084,-2.528 -0.254,-2.714 -0.423,-2.899 -0.672,-2.992 -1,-2.992 c -0.649,0 -0.974,0.363 -0.974,1.089 l 0,1.899 0.375,0 0,-1.879 c 0,-0.52 0.206,-0.781 0.62,-0.781 0.396,0 0.597,0.262 0.604,0.785 L -0.375,0 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5981"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5983"
|
||||
transform="translate(708.0234,86.0278)">
|
||||
<path
|
||||
d="M 0,0 -0.425,0 -1.141,1.28 -1.879,0 -2.26,0 l 0.913,1.541 -0.851,1.407 0.402,0 0.667,-1.127 0.673,1.127 0.385,0 L -0.921,1.552 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5985"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5987"
|
||||
transform="translate(711.624,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -0.377,0 0,2.617 -0.843,0 0,0.331 2.06,0 0,-0.331 L 0,2.617 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5989"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5991"
|
||||
transform="translate(715.4268,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -1.698,0 0,2.948 1.698,0 0,-0.331 -1.323,0 0,-0.911 1.244,0 0,-0.327 -1.244,0 0,-1.048 L 0,0.331 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5993"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5995"
|
||||
transform="translate(718.6504,86.4331)">
|
||||
<path
|
||||
d="m 0,0 0,-0.326 c -0.196,-0.08 -0.437,-0.119 -0.722,-0.119 -0.415,0 -0.733,0.131 -0.953,0.395 -0.221,0.263 -0.331,0.637 -0.331,1.122 0,0.465 0.12,0.834 0.36,1.105 0.241,0.272 0.57,0.407 0.987,0.407 0.295,0 0.553,-0.057 0.772,-0.172 L -0.044,2.097 c -0.207,0.105 -0.413,0.157 -0.615,0.157 -0.29,0 -0.52,-0.107 -0.692,-0.319 -0.172,-0.213 -0.258,-0.502 -0.258,-0.867 0,-0.385 0.081,-0.679 0.242,-0.881 0.161,-0.203 0.397,-0.304 0.708,-0.304 0.174,0 0.394,0.039 0.659,0.117"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path5997"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g5999"
|
||||
transform="translate(721.6826,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -0.377,0 0,1.375 -1.179,0 0,-1.375 -0.377,0 0,2.948 0.377,0 0,-1.242 1.179,0 0,1.242 L 0,2.948 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6001"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6003"
|
||||
transform="translate(724.772,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -0.434,0 -1.169,2.439 -0.016,0 c 0.024,-0.372 0.036,-0.652 0.036,-0.84 l 0,-1.599 -0.347,0 0,2.948 0.43,0 1.165,-2.428 0.012,0 c -0.019,0.407 -0.028,0.679 -0.028,0.814 l 0,1.614 L 0,2.948 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6005"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6007"
|
||||
transform="translate(726.9048,86.3159)">
|
||||
<path
|
||||
d="M 0,0 C 0.232,0 0.403,0.098 0.511,0.292 0.62,0.488 0.673,0.787 0.673,1.189 0.673,1.597 0.619,1.896 0.509,2.088 0.399,2.28 0.231,2.375 0.004,2.375 -0.449,2.375 -0.675,1.98 -0.675,1.189 -0.675,0.397 -0.45,0 0,0 m 0,-0.328 c -0.715,0 -1.072,0.507 -1.072,1.521 0,1.009 0.359,1.513 1.076,1.513 0.344,0 0.608,-0.132 0.791,-0.394 C 0.979,2.049 1.07,1.675 1.07,1.189 1.07,0.705 0.978,0.33 0.792,0.067 0.607,-0.197 0.343,-0.328 0,-0.328"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6009"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6011"
|
||||
transform="translate(729.2256,86.0278)">
|
||||
<path
|
||||
d="m 0,0 0,2.948 0.377,0 0,-2.613 1.28,0 L 1.657,0 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6013"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6015"
|
||||
transform="translate(733.0908,86.3159)">
|
||||
<path
|
||||
d="M 0,0 C 0.232,0 0.403,0.098 0.511,0.292 0.619,0.488 0.673,0.787 0.673,1.189 0.673,1.597 0.618,1.896 0.509,2.088 0.399,2.28 0.231,2.375 0.004,2.375 -0.449,2.375 -0.675,1.98 -0.675,1.189 -0.675,0.397 -0.451,0 0,0 m 0,-0.328 c -0.715,0 -1.073,0.507 -1.073,1.521 0,1.009 0.359,1.513 1.077,1.513 0.344,0 0.608,-0.132 0.791,-0.394 C 0.979,2.049 1.07,1.675 1.07,1.189 1.07,0.705 0.978,0.33 0.792,0.067 0.606,-0.197 0.342,-0.328 0,-0.328"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6017"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6019"
|
||||
transform="translate(736.2969,87.5845)">
|
||||
<path
|
||||
d="m 0,0 0.851,0 0,-1.446 c -0.263,-0.1 -0.545,-0.151 -0.847,-0.151 -0.353,0 -0.628,0.134 -0.826,0.402 -0.198,0.269 -0.297,0.641 -0.297,1.116 0,0.472 0.109,0.842 0.327,1.11 0.217,0.268 0.517,0.402 0.898,0.402 0.259,0 0.491,-0.058 0.698,-0.173 L 0.659,0.933 C 0.463,1.046 0.275,1.103 0.094,1.103 -0.164,1.103 -0.364,0.998 -0.508,0.789 -0.652,0.58 -0.724,0.29 -0.724,-0.083 c 0,-0.79 0.265,-1.186 0.794,-1.186 0.131,0 0.266,0.02 0.408,0.06 l 0,0.878 L 0,-0.331 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6021"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6023"
|
||||
transform="translate(740.0527,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -1.564,0 0,0.248 0.594,0.04 0,2.371 -0.594,0.041 0,0.248 L 0,2.948 0,2.7 -0.593,2.659 -0.593,0.288 0,0.248 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6025"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6027"
|
||||
transform="translate(743.2627,86.0278)">
|
||||
<path
|
||||
d="m 0,0 -1.698,0 0,2.948 1.698,0 0,-0.331 -1.323,0 0,-0.911 1.244,0 0,-0.327 -1.244,0 0,-1.048 L 0,0.331 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6029"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6031"
|
||||
transform="translate(744.5049,86.127)">
|
||||
<path
|
||||
d="M 0,0 0,0.358 C 0.284,0.243 0.562,0.185 0.834,0.185 1.305,0.185 1.54,0.346 1.54,0.669 1.54,0.809 1.493,0.916 1.398,0.991 1.303,1.067 1.111,1.156 0.822,1.26 0.543,1.358 0.342,1.475 0.221,1.611 0.099,1.748 0.038,1.925 0.038,2.143 c 0,0.233 0.087,0.417 0.259,0.549 0.173,0.133 0.41,0.199 0.711,0.199 0.308,0 0.587,-0.053 0.839,-0.158 L 1.718,2.403 C 1.458,2.508 1.216,2.56 0.992,2.56 0.598,2.56 0.401,2.42 0.401,2.139 0.401,2.001 0.445,1.892 0.533,1.808 0.621,1.725 0.803,1.636 1.079,1.54 1.409,1.422 1.63,1.3 1.741,1.174 1.852,1.048 1.907,0.887 1.907,0.689 1.907,0.431 1.814,0.229 1.628,0.081 1.442,-0.066 1.177,-0.139 0.834,-0.139 0.479,-0.139 0.2,-0.093 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6033"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
d="m 686.422,125.285 -6.04,0 0,-6.034 6.04,0 0,6.034 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6035"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 680.382,131.331 6.04,0 0,6.039 -6.04,0 0,-6.039 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6037"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g6039"
|
||||
transform="translate(674.3359,143.4111)">
|
||||
<path
|
||||
d="m 0,0 -6.04,0 0,-24.16 6.04,0 0,6.035 6.045,0 0,6.044 -6.045,0 L 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6041"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
d="m 698.502,137.37 -6.041,0 0,-18.119 6.041,0 0,18.119 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6043"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g6045"
|
||||
transform="translate(722.6621,95.1914)">
|
||||
<path
|
||||
d="m 0,0 -6.04,0 0,24.06 0,12.078 -6.039,0 0,-12.078 -6.041,0 0,18.118 18.12,0 L 0,25.136 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6047"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
d="m 674.336,95.091 6.046,0 0,6.041 -6.046,0 0,-6.041 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6049"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 680.382,101.132 6.04,0 0,12.079 -6.04,0 0,-12.079 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6051"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 668.295,101.132 6.041,0 0,12.079 -6.041,0 0,-12.079 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6053"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 698.502,107.171 6.04,0 0,-6.039 -6.04,0 0,6.039 z m -6.041,-12.08 18.122,0 0,18.12 -18.122,0 0,-18.12 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6055"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 746.828,113.211 -6.044,0 0,-6.039 6.044,0 0,6.039 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6057"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g6059"
|
||||
transform="translate(734.7441,107.1709)">
|
||||
<path
|
||||
d="m 0,0 0,12.081 -6.037,0 0,-24.161 6.037,0 0,6.041 6.04,0 L 6.04,0 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6061"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
d="m 746.828,101.132 -6.044,0 0,-6.04 6.044,0 0,6.04 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6063"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 904,92.294 -127.185,0 0,44.759 127.185,0 0,-44.759 z"
|
||||
style="fill:#455ea3;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6065"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g6067"
|
||||
transform="translate(797.4634,121.3081)">
|
||||
<path
|
||||
d="m 0,0 c -1.199,0 -1.545,-0.533 -1.545,-1.705 l 0,-1.945 3.197,0 -0.32,-3.144 -2.877,0 0,-9.538 -3.837,0 0,9.538 -2.584,0 0,3.144 2.584,0 0,1.892 c 0,3.17 1.279,4.848 4.849,4.848 0.773,0 1.679,-0.053 2.238,-0.133 L 1.705,0 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6069"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6071"
|
||||
transform="translate(803.2173,110.8643)">
|
||||
<path
|
||||
d="m 0,0 c 0,-1.892 0.693,-3.144 2.478,-3.144 1.572,0 2.371,1.146 2.371,2.957 l 0,1.279 C 4.849,2.904 4.05,4.05 2.478,4.05 0.693,4.05 0,2.797 0,0.906 L 0,0 Z m -3.836,0.853 c 0,3.543 1.678,6.207 5.195,6.207 1.918,0 3.09,-0.985 3.65,-2.211 l 0,1.945 3.677,0 0,-12.682 -3.677,0 0,1.918 c -0.533,-1.225 -1.732,-2.184 -3.65,-2.184 -3.517,0 -5.195,2.664 -5.195,6.207 l 0,0.8 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6073"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6075"
|
||||
transform="translate(819.8945,117.9243)">
|
||||
<path
|
||||
d="M 0,0 C 1.492,0 2.904,-0.32 3.676,-0.853 L 2.824,-3.57 c -0.586,0.293 -1.545,0.586 -2.558,0.586 -2.078,0 -2.984,-1.199 -2.984,-3.25 l 0,-0.746 c 0,-2.052 0.906,-3.25 2.984,-3.25 1.013,0 1.972,0.292 2.558,0.585 l 0.852,-2.717 C 2.904,-12.895 1.492,-13.214 0,-13.214 c -4.503,0 -6.554,2.424 -6.554,6.314 l 0,0.586 C -6.554,-2.424 -4.503,0 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6077"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6079"
|
||||
transform="translate(827.9131,112.4893)">
|
||||
<path
|
||||
d="m 0,0 4.636,0 0,0.32 c 0,1.385 -0.56,2.478 -2.238,2.478 C 0.666,2.798 0,1.705 0,0 m -3.836,-1.652 0,1.119 c 0,3.597 2.051,5.968 6.234,5.968 3.943,0 5.675,-2.397 5.675,-5.914 l 0,-2.025 -8.073,0 c 0.08,-1.732 0.853,-2.505 2.984,-2.505 1.439,0 2.957,0.294 4.077,0.773 l 0.692,-2.638 c -1.012,-0.533 -3.09,-0.932 -4.929,-0.932 -4.849,0 -6.66,2.424 -6.66,6.154"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6081"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6083"
|
||||
transform="translate(846.3755,111.7969)">
|
||||
<path
|
||||
d="m 0,0 c 0,1.785 -0.693,3.117 -2.531,3.117 -1.572,0 -2.425,-1.119 -2.425,-2.931 l 0,-1.332 c 0,-1.812 0.853,-2.931 2.425,-2.931 1.838,0 2.531,1.333 2.531,3.118 L 0,0 Z m 3.836,-0.879 c 0,-3.544 -1.705,-6.208 -5.221,-6.208 -1.919,0 -3.251,0.959 -3.783,2.185 l 0,-1.919 -3.624,0 0,19.05 3.836,0.346 0,-8.472 c 0.56,1.119 1.786,2.024 3.571,2.024 3.516,0 5.221,-2.664 5.221,-6.207 l 0,-0.799 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6085"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6087"
|
||||
transform="translate(860.2822,111.9033)">
|
||||
<path
|
||||
d="M 0,0 C 0,1.678 -0.693,3.011 -2.478,3.011 -4.263,3.011 -4.956,1.678 -4.956,0 l 0,-1.172 c 0,-1.679 0.693,-3.011 2.478,-3.011 1.785,0 2.478,1.332 2.478,3.011 L 0,0 Z m -8.792,-0.906 0,0.639 c 0,3.651 2.078,6.288 6.314,6.288 4.236,0 6.314,-2.637 6.314,-6.288 l 0,-0.639 c 0,-3.65 -2.078,-6.287 -6.314,-6.287 -4.236,0 -6.314,2.637 -6.314,6.287"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6089"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6091"
|
||||
transform="translate(874.1885,111.9033)">
|
||||
<path
|
||||
d="M 0,0 C 0,1.678 -0.693,3.011 -2.478,3.011 -4.263,3.011 -4.956,1.678 -4.956,0 l 0,-1.172 c 0,-1.679 0.693,-3.011 2.478,-3.011 1.785,0 2.478,1.332 2.478,3.011 L 0,0 Z m -8.792,-0.906 0,0.639 c 0,3.651 2.078,6.288 6.314,6.288 4.236,0 6.314,-2.637 6.314,-6.288 l 0,-0.639 c 0,-3.65 -2.078,-6.287 -6.314,-6.287 -4.236,0 -6.314,2.637 -6.314,6.287"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6093"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g6095"
|
||||
transform="translate(883.2988,111.6104)">
|
||||
<path
|
||||
d="m 0,0 3.783,6.048 4.077,0 -3.97,-6.261 4.13,-6.421 -4.077,0 -3.943,6.208 0,-6.208 -3.836,0 0,19.049 L 0,12.762 0,0 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path6097"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="fill:#000000"
|
||||
id="g5808"
|
||||
inkscape:label="#recordedby">
|
||||
<text
|
||||
id="text5810"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="scale(1,-1)"
|
||||
x="383.23898"
|
||||
y="-103.6201">
|
||||
<tspan
|
||||
style="fill:#000000"
|
||||
id="tspan5812"
|
||||
y="-103.6201"
|
||||
x="383.23898">R</tspan>
|
||||
</text>
|
||||
<text
|
||||
id="text5814"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="scale(1,-1)"
|
||||
x="417.31079"
|
||||
y="-104.19091">
|
||||
<tspan
|
||||
y="-104.19091"
|
||||
x="417.31079"
|
||||
id="tspan5816"
|
||||
sodipodi:role="line">ECORDED</tspan>
|
||||
</text>
|
||||
<text
|
||||
id="text5818"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.90000153px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="scale(1,-1)"
|
||||
x="581.79248"
|
||||
y="-103.6201">
|
||||
<tspan
|
||||
id="tspan5820"
|
||||
sodipodi:role="line"
|
||||
y="-103.6201"
|
||||
x="581.79248 603.11169">BY</tspan>
|
||||
</text>
|
||||
<text
|
||||
id="text5822"
|
||||
style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:47px;font-family:'Open Sans';-inkscape-font-specification:OpenSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
transform="scale(1,-1)"
|
||||
x="621.53558"
|
||||
y="-103.6201">
|
||||
<tspan
|
||||
style="fill:#000000"
|
||||
id="tspan5824"
|
||||
y="-103.6201"
|
||||
x="621.53558">:</tspan>
|
||||
</text>
|
||||
<g
|
||||
style="fill:#000000"
|
||||
id="g5826">
|
||||
<g
|
||||
style="opacity:1;fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.32497885,0,0,-0.32497885,685.14216,191.51986)"
|
||||
id="g5828">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="m 294.407,7.95792 c 6.213,1.027 19.117,20.42198 17.554,56.04198 -4.3,2.287 -9.289,0.945 -12.547,0.894 -10.184,-2.682 -0.678,-29.555 -14.953,-39.546 C 263.79,10.8809 119.447,14.4069 45.5808,21.1209 13.592,24.0289 17.478,87.0639 16.8569,120.43 c -0.5169,27.768 0.4448,58.119 11.4189,88.93 9.4468,26.524 44.2989,17.409 75.9712,18.571 56.978,0 160.981,1.883 173.53,-3.125 9.092,-3.629 12.796,-16.972 14.709,-25.575 3.351,-15.069 -0.168,-25.607 11.822,-25.324 6.313,0.149 7.555,5.857 6.592,16.772 -1.001,11.346 -4.393,26.441 -9.128,44.005 -3.421,12.688 -27.012,10.129 -42.628,10.129 C 180.218,242.704 100.45,245.236 24.0554,243.125 1.9155,242.514 1.46946,137.911 0.285625,118.923 -1.10525,96.6069 2.51438,7.01993 21.3615,6.01993 35.3674,5.27692 113.628,0.0309143 159.959,0.0189209 205.016,0.00692749 252.988,1.11093 294.407,7.95792"
|
||||
id="path5830" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="m 223.69,24.0759 c 5.487,15.616 -8.019,40.096 12.24,48.537 73.438,12.662 159.117,-14.772 221.582,23.635 16.882,16.4601 29.544,35.4531 37.563,55.7121 l 0,-9.285 c -9.285,-25.746 -28.278,-47.6931 -46.427,-70.0621 5.065,-6.753 10.974,1.266 16.038,3.376 18.571,23.213 37.563,46.8491 44.739,74.7051 1.265,1.688 3.798,5.065 5.908,2.11 l 2.955,-2.954 c -6.331,-29.966 -25.324,-54.4461 -41.362,-80.1921 7.175,-4.643 14.35,3.377 20.259,8.019 12.24,20.259 25.746,40.5181 30.388,64.1531 3.376,2.532 7.597,-2.11 9.285,-5.065 -2.532,-18.571 -8.864,-35.031 -16.461,-50.6471 1.266,-2.11 1.266,-5.065 4.221,-5.065 18.149,9.707 17.727,30.8111 24.057,47.2711 5.909,-0.422 8.863,-18.993 16.46,-8.019 2.532,6.753 -10.129,17.305 2.955,18.149 -6.331,30.388 -39.674,54.024 -68.796,60.777 -15.194,3.376 -35.453,8.018 -46.849,-3.798 2.11,-5.487 9.707,-6.331 15.194,-7.175 33.765,-1.266 65.842,-13.506 86.101,-40.518 l -0.844,-0.844 c -32.077,21.525 -71.75,42.206 -111.424,26.168 -3.376,-0.844 -5.065,-5.487 -2.954,-8.019 0.844,-2.532 -1.688,-3.798 -2.955,-4.221 -67.108,2.954 -137.596,-6.324 -202.593,4.227 -7.13,1.158 -7.934,7.746 -9.284,13.082 -3.414,13.511 5.21,32.647 -2.824,39.846 0,0 -5.936,1.741 -10.256,-0.177 -1.011,-5.609 -4.227,-37.144 2.948,-54.026 9.077,-21.357 89.954,-14.153 113.334,-14.626 42.722,-0.863 92.638,-2.254 132.734,0.701 -11.396,-11.396 -29.122,-11.818 -46.427,-11.396 -54.868,-0.844 -140.604,-0.559 -175.376,-2.466 -51.431,-2.822 -69.842,48.893 -102.341,82.658 l -15.194,0 c 20.259,-28.277 42.097,-60.522 70.062,-85.256 4.509,-3.988 7.645,-4.615 15.194,-6.752 21.025,-5.953 224.959,0.844 224.959,0.844 9.285,2.11 19.415,3.376 28.278,7.174 -5.065,-13.084 -21.525,-16.46 -34.609,-18.147 -73.017,-2.11 -146.877,-0.422 -218.628,-5.065 -19.415,-5.909 -29.544,-29.9661 -44.739,-44.7391 l -32.499,-41.362 16.46,0.844 c 21.103,24.479 35.575,54.506 62.887,73.8601 6.02,4.266 134.602,3.027 202.584,2.954 10.96,-0.012 33.77,7.175 48.542,15.195 2.532,-3.376 -1.688,-6.331 -4.221,-8.863 -30.811,-29.5441 -94.362,-20.3431 -117.328,-20.2641 -40.285,0.14 -88.233,8.522 -121.559,-12.235 -8.141,-5.071 -6.752,-35.875 -2.953,-52.758 l 10.973,0"
|
||||
id="path5832" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="m 575.267,153.649 c -7.175,30.389 -29.544,57.822 -57.823,73.017 -17.727,3.799 -40.518,15.616 -54.868,-2.11 9.708,-8.863 27.434,-2.954 38.83,-10.13 29.544,-8.441 53.858,-34.474 68.796,-60.777 1.91,-1.321 3.195,-2.823 5.065,0"
|
||||
id="path5834" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="m 584.142,179.84 c -5.065,26.168 -17.727,53.602 -44.739,66.686 -11.818,5.487 -30.388,11.818 -41.362,2.11 l 0,-4.221 c 41.784,1.688 62.887,-42.206 79.77,-71.75 4.643,-0.422 5.065,3.798 6.331,7.175"
|
||||
id="path5836" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="m 611.567,280.265 c 19.879,4.224 39.249,-15.615 43.47,10.131 -16.883,8.863 -39.674,6.331 -57.4,1.266 -3.799,7.597 1.688,16.038 0,25.324 -2.532,24.902 -11.818,48.537 -33.765,63.731 -6.357,3.3 -7.677,5.247 -11.431,5.909 1.138,-5.702 1.527,-10.353 2.5,-13.899 4.346,-2.92 23.503,-15.22 24.125,-31.684 9.707,-34.609 -0.844,-68.796 -24.058,-94.12 l 15.194,-13.928 c 8.863,17.726 18.896,42.495 41.364,47.269"
|
||||
id="path5838" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="m 542.769,257.054 c 24.479,47.271 1.688,102.561 -4.221,151.098 2.532,18.149 5.065,36.719 20.259,49.381 -1.688,4.221 0.844,14.772 -5.909,12.24 -21.525,-11.396 -28.7,-34.187 -28.278,-57.822 -0.844,-41.784 21.525,-75.127 16.038,-117.333 L 536.86,286.6 c -17.305,18.57 -36.719,41.784 -35.453,70.905 l -11.396,2.11 c -12.662,-40.518 31.655,-63.743 37.564,-100.04 0,0 9.707,-3.786 15.194,-2.521"
|
||||
id="path5840" />
|
||||
</g>
|
||||
<text
|
||||
transform="scale(1,-1)"
|
||||
sodipodi:linespacing="125%"
|
||||
id="text5842"
|
||||
y="-78.157478"
|
||||
x="737.67926"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.13311577px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:1;stroke:none"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1"
|
||||
y="-78.157478"
|
||||
x="737.67926"
|
||||
id="tspan5844"
|
||||
sodipodi:role="line">www.c3voc.de</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 59 KiB |
Loading…
Add table
Reference in a new issue