chore: add some old osc stuff and hackerhotel2024
140
hackerhotel2024/__init__.py
Normal file
|
@ -0,0 +1,140 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
from renderlib import *
|
||||||
|
from schedulelib import *
|
||||||
|
from easing import *
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'https://pretalx.hackerhotel.nl/hackerhotel-2024/schedule.xml'
|
||||||
|
|
||||||
|
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):
|
||||||
|
# 3 Sekunde Text Fadein
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 4 Sekunden stehen lassen
|
||||||
|
frames = 4*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield ()
|
||||||
|
|
||||||
|
# 1 Sekunde Fade to black layer
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('all', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||||
|
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def pauseFrames(parameters):
|
||||||
|
#5 Seconds Fade-In Hacker Fade-Out Hotel
|
||||||
|
frames = 5*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logohacker', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
('logohotel', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||||
|
)
|
||||||
|
#5 Seconds Fade-In Hotel Fade-Out Hacker
|
||||||
|
frames = 5*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('logohacker', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||||
|
('logohotel', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def outroFrames(p):
|
||||||
|
# 4 Sekunden stehen bleiben
|
||||||
|
frames = 4*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield []
|
||||||
|
# 1 Sekunde Fade to black layer
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('all', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
render(
|
||||||
|
'intro.svg',
|
||||||
|
'../intro.ts',
|
||||||
|
introFrames,
|
||||||
|
{
|
||||||
|
'$ID': 4711,
|
||||||
|
'$TITLE': "Long Long Long title is LONG",
|
||||||
|
'$SUBTITLE': 'Long Long Long Long subtitle is LONGER',
|
||||||
|
'$SPEAKER': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
render(
|
||||||
|
'pause.svg',
|
||||||
|
'../pause.ts',
|
||||||
|
pauseFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
# render(
|
||||||
|
# 'infobeamer.svg',
|
||||||
|
# '../infobeamer.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 ('Leonardo Da Vinci', 'Rembrandt', 'Willem van Oranje'):
|
||||||
|
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'],
|
||||||
|
'$SUBTITLE': 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
|
||||||
|
))
|
745
hackerhotel2024/artwork/intro.svg
Normal file
|
@ -0,0 +1,745 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
viewBox="0 0 1920 1080"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||||
|
sodipodi:docname="intro.svg"
|
||||||
|
enable-background="new"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath18">
|
||||||
|
<path
|
||||||
|
d="m 312.117,871.087 c -6.264,-1.72 -10.84,-10.647 -14.167,-15.645 l 0,0 c -4.194,-6.302 -7.979,-12.897 -11.534,-19.58 l 0,0 c -6.794,-12.771 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.658,-134.44 c -34.506,-10.769 -67.49,-29.469 -99.699,-48.874 l 0,0 c 12.812,-37.59 55.526,-58.834 95.24,-58.766 l 0,0 c 0.024,0 0.047,0 0.071,0 l 0,0 c -6.665,-0.282 -13.34,-0.125 -19.96,0.504 l 0,0 c 17.08,-29.328 37.542,-57.811 69.853,-68.2 l 0,0 c 26.039,-8.372 54.524,-0.76 79.568,10.242 l 0,0 c 16.073,7.061 37.811,23.424 50.174,37.459 l 0,0 c -5.443,-6.931 -9.356,-11.85 -9.378,-14.226 l 0,0 c -0.036,-4.022 11.889,-7.249 15.319,-7.836 l 0,0 c 4.537,-0.776 55.479,-8.821 65.762,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.162 l 0,0 c 9.775,1.619 19.405,4.609 27.984,9.637 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.648 -9.272,-36.305 l 0,0 c -0.171,-0.666 -0.311,-1.344 -0.413,-2.024 l 0,0 c -3.39,-22.815 -3.156,-46.468 -3.991,-69.493 l 0,0 c -0.901,-24.858 -1.418,-49.754 -2.83,-74.59 l 0,0 c -0.791,-13.917 -3.767,-27.11 -7.947,-40.362 l 0,0 c -1.785,-5.66 -3.752,-11.282 -5.94,-16.816 l 0,0 c 2.853,8.361 4.713,17.016 5.261,25.851 l 0,0 c 0.555,8.93 -0.352,17.967 -2.745,26.592 l 0,0 c -2.662,9.599 -7.206,18.729 -13.686,26.328 l 0,0 c -1.536,1.801 -2.531,3.044 -3.792,5.045 l 0,0 c -1.313,2.081 -3.691,4.003 -5.535,5.683 l 0,0 c -4.28,3.901 -8.981,7.314 -13.802,10.512 l 0,0 c -8.952,5.937 -18.089,11.527 -28.039,15.555 l 0,0 c -22.597,9.151 -48.915,13.05 -72.999,8.126 l 0,0 c -49.265,-10.074 -94.2,-46.844 -113.089,-93.79 l 0,0 c -7.565,-18.805 -8.616,-45.719 -6.222,-65.756 l 0,0 c 7.2,-60.243 65.422,-100.088 125.514,-108.448 l 0,0 c 24.824,-3.455 52.18,-1.693 76.294,4.869 l 0,0 c 50.617,13.775 89.298,54.937 112.844,99.669 l 0,0 c 2.794,5.307 14.736,24.552 14.675,26.909 l 0,0 c 0.267,-10.318 3.457,-20.545 9.106,-29.184 l 0,0 16.227,92.559 c 1.621,-9.021 7.294,-17.234 15.157,-21.945 l 0,0 0.204,60.905 c 1.41,-9.085 6.602,-14.523 14.491,-19.244 l 0,0 c -4.166,27.38 -4.717,52.34 -2.482,79.945 l 0,0 c 7.063,-4.324 13.65,-8.62 20.658,-10.281 l 0,0 c -3.651,26.792 -12.97,49.694 -16.621,76.487 l 0,0 c 10.534,-8.562 10.319,-10.84 19.664,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.882,-0.923 c -10.728,25.86 -25.45,41.841 -43.486,63.254 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.489 l 0,0 c -14.416,20.027 -33.431,26.496 -56.345,35.655 l 0,0 c 14.572,6.667 21.146,13.146 30.811,25.412 l 0,0 c -25.908,4.436 -43.613,6.974 -69.672,10.409 l 0,0 c 9.984,6.221 25.959,11.735 32.646,23.966 l 0,0 c -23.093,-0.068 -51.514,-1.99 -74.606,-2.058 l 0,0 c 3.118,9.15 16.024,22.056 15.344,33.286 l 0,0 -67.289,-24.136 c -2.029,7.646 4.971,10.282 1.623,31.588 l 0,0 -54.542,-23.538 c 0,6.9 9.282,21.518 5.236,31.248 l 0,0 c -1.052,2.53 -27.624,-18.934 -36.917,-20.788 l 0,0 c 0,0 19.327,52.162 14.75,52.15 l 0,0 c -15.455,-0.042 -33.75,-18.848 -49.058,-21.738 l 0,0 c -3.6,5.947 -6.717,12.18 -9.698,18.456 l 0,0 c -5.957,12.543 -11.32,25.358 -17.137,37.966 l 0,0 c -2.809,6.088 -5.71,12.138 -8.882,18.045 l 0,0 c -2.044,3.808 -3.89,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.531 -9.801,2.531 l 0,0 c -1.401,0 -2.751,-0.155 -3.948,-0.484 m 41.469,-271.97 c -2.238,-1.885 -4.527,-3.722 -6.865,-5.509 l 0,0 c 2.327,1.793 4.616,3.631 6.865,5.509 m 85.349,-45.569 c 0,0 0,0 0,0 M 383.533,241.747 c -16.443,19.302 -23.431,46.211 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.037 39.804,56.683 l 0,0 c 20.808,11.645 47.481,12.699 68.622,1.67 l 0,0 c 21.142,-11.029 35.713,-34.183 35.364,-58.026 l 0,0 c -0.349,-23.843 -16.558,-46.24 -39.055,-54.146 l 0,0 c -13.248,-4.655 -27.77,-4.347 -39.5,3.375 l 0,0 c -11.729,7.722 -19.3,22.583 -15.553,36.117 l 0,0 c 3.746,13.535 19.143,23.26 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.83 14.374,-7.338 l 0,0 c 6.351,-3.339 14.186,-5.411 20.409,0.204 l 0,0 c 2.348,2.119 3.893,5.052 4.395,8.174 l 0,0 c 1.65,10.257 -5.836,19.545 -14.699,22.812 l 0,0 c -6.84,2.521 -14.529,2.26 -21.749,1.25 l 0,0 c -23.7,-3.318 -46.176,-17.837 -57.931,-38.681 l 0,0 c -11.755,-20.845 -11.322,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.479,-17.733 32.216,-21.387 l 0,0 c -16.77,4.192 -32.281,13.594 -43.507,26.771 m 146.601,21.02 c 0.24,0.346 0.478,0.693 0.716,1.042 l 0,0 c -2.094,-3.187 -4.311,-6.295 -6.662,-9.313 l 0,0 c -5.252,-6.741 -11.254,-13.003 -17.851,-18.524 l 0,0 c 9.038,7.807 17.014,17.001 23.797,26.795"
|
||||||
|
id="path20-4"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath28">
|
||||||
|
<path
|
||||||
|
d="m 314.284,874.024 c -6.264,-1.721 -10.84,-10.648 -14.166,-15.645 l 0,0 c -4.194,-6.302 -7.981,-12.897 -11.535,-19.58 l 0,0 c -6.794,-12.772 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.657,-134.44 c -34.506,-10.769 -67.491,-29.47 -99.701,-48.874 l 0,0 c 12.813,-37.59 55.528,-58.835 95.241,-58.767 l 0,0 c 0.017,0 0.031,0 0.048,0 l 0,0 c -6.659,-0.281 -13.323,-0.124 -19.938,0.505 l 0,0 c 17.081,-29.328 37.544,-57.812 69.854,-68.2 l 0,0 c 26.039,-8.373 54.524,-0.761 79.568,10.242 l 0,0 c 16.072,7.06 37.807,23.42 50.171,37.455 l 0,0 c -5.441,-6.928 -9.354,-11.847 -9.375,-14.223 l 0,0 c -0.036,-4.022 11.889,-7.249 15.32,-7.836 l 0,0 c 4.536,-0.776 55.478,-8.82 65.761,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.161 l 0,0 c 9.774,1.618 19.404,4.608 27.984,9.636 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.647 -9.272,-36.304 l 0,0 c -0.171,-0.666 -0.312,-1.345 -0.413,-2.025 l 0,0 c -3.39,-22.814 -3.157,-46.467 -3.991,-69.492 l 0,0 c -0.902,-24.859 -1.418,-49.754 -2.83,-74.591 l 0,0 c -0.791,-13.916 -3.768,-27.109 -7.947,-40.362 l 0,0 c -1.785,-5.661 -3.753,-11.284 -5.942,-16.82 l 0,0 c 2.854,8.362 4.714,17.02 5.263,25.856 l 0,0 c 0.554,8.929 -0.353,17.967 -2.745,26.592 l 0,0 c -2.662,9.598 -7.206,18.729 -13.686,26.327 l 0,0 c -1.536,1.801 -3.494,3.382 -4.757,5.383 l 0,0 c -1.312,2.081 -2.726,3.665 -4.57,5.345 l 0,0 c -4.28,3.901 -8.981,7.315 -13.802,10.512 l 0,0 c -8.952,5.938 -18.598,10.791 -28.547,14.819 l 0,0 c -22.597,9.149 -47.586,13.078 -71.67,8.153 l 0,0 c -49.265,-10.074 -95.021,-46.134 -113.91,-93.081 l 0,0 c -7.566,-18.804 -8.616,-45.718 -6.222,-65.755 l 0,0 c 7.2,-60.244 65.422,-100.089 125.514,-108.45 l 0,0 c 24.823,-3.453 52.179,-1.692 76.293,4.87 l 0,0 c 50.618,13.775 89.298,54.937 112.845,99.669 l 0,0 c 2.794,5.306 14.736,24.552 14.675,26.91 l 0,0 c 0.266,-10.318 3.457,-20.545 9.105,-29.185 l 0,0 16.228,92.559 c 1.622,-9.021 7.294,-17.234 15.156,-21.944 l 0,0 0.204,60.905 c 1.411,-9.085 6.603,-14.524 14.491,-19.245 l 0,0 c -4.165,27.381 -4.717,52.34 -2.481,79.945 l 0,0 c 7.063,-4.324 13.65,-8.619 20.657,-10.281 l 0,0 c -3.651,26.793 -12.969,49.695 -16.621,76.488 l 0,0 c 10.535,-8.562 10.321,-10.841 19.665,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.881,-0.924 c -10.726,25.861 -25.449,41.842 -43.485,63.255 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.488 l 0,0 c -14.416,20.028 -33.431,26.496 -56.345,35.655 l 0,0 c 14.571,6.668 21.146,13.147 30.811,25.413 l 0,0 c -25.908,4.436 -43.613,6.973 -69.673,10.409 l 0,0 c 9.985,6.22 25.961,11.735 32.648,23.966 l 0,0 c -23.094,-0.069 -51.515,-1.991 -74.608,-2.06 l 0,0 c 3.119,9.152 16.025,22.058 15.345,33.287 l 0,0 -67.289,-24.135 c -2.03,7.644 4.971,10.282 1.624,31.588 l 0,0 -54.543,-23.538 c 0,6.899 9.282,21.517 5.235,31.248 l 0,0 c -1.052,2.53 -27.623,-18.935 -36.917,-20.789 l 0,0 c 0,0 19.328,52.162 14.751,52.15 l 0,0 c -15.456,-0.043 -33.751,-18.848 -49.059,-21.737 l 0,0 c -3.6,5.946 -6.717,12.18 -9.697,18.454 l 0,0 c -5.958,12.545 -11.32,25.36 -17.137,37.968 l 0,0 c -2.808,6.086 -5.71,12.137 -8.882,18.045 l 0,0 c -2.044,3.808 -3.889,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.53 -9.801,2.53 l 0,0 c -1.401,0 -2.752,-0.154 -3.948,-0.483 m 41.469,-271.971 c -2.231,-1.88 -4.511,-3.71 -6.842,-5.492 l 0,0 c 2.319,1.787 4.601,3.62 6.842,5.492 m 85.349,-45.569 c 0,0 0,0 0,0 M 385.7,244.684 c -16.443,19.301 -23.431,46.21 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.036 39.804,56.681 l 0,0 c 20.807,11.646 47.481,12.699 68.623,1.672 l 0,0 c 21.141,-11.029 35.712,-34.184 35.362,-58.026 l 0,0 C 510.325,292.31 494.456,269.141 471.96,261.234 l 0,0 c -13.249,-4.656 -28.749,-3.925 -40.478,3.797 l 0,0 c -11.73,7.722 -18.663,22.934 -14.915,36.468 l 0,0 c 3.747,13.534 19.144,23.259 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.831 14.374,-7.339 l 0,0 c 6.352,-3.338 14.186,-5.411 20.41,0.205 l 0,0 c 2.347,2.118 3.891,5.052 4.393,8.173 l 0,0 c 1.651,10.257 -5.876,18.554 -14.739,21.821 l 0,0 c -6.84,2.522 -14.381,2.425 -21.601,1.414 l 0,0 c -23.699,-3.317 -46.283,-17.011 -58.038,-37.854 l 0,0 c -11.755,-20.844 -11.323,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.481,-17.733 32.218,-21.388 l 0,0 c -16.769,4.192 -32.283,13.595 -43.509,26.773 m 146.6,21.019 c 0.248,0.358 0.494,0.716 0.739,1.075 l 0,0 c -2.1,-3.197 -4.324,-6.317 -6.684,-9.346 l 0,0 c -5.241,-6.727 -11.231,-12.977 -17.813,-18.49 l 0,0 c 9.023,7.8 16.985,16.98 23.758,26.761"
|
||||||
|
id="path30"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1428">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1430"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1436">
|
||||||
|
<path
|
||||||
|
d="m 153.069,874.507 547.722,0 0,-721.1 -547.722,0 0,721.1 z"
|
||||||
|
id="path1438"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,239.82324,731.99097)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1468">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1470" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1472" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1480">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1482"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,324.3374,727.64069)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1516">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1518" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1520" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1528">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1530"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1560">
|
||||||
|
<path
|
||||||
|
d="m 529.474,574.673 c 6.87,-7.702 13.741,-15.405 20.611,-23.107 l 0,0 c 2.925,-3.279 6.035,-7.149 6.026,-11.402 l 0,0 c -10e-4,-0.461 -0.038,-0.925 -0.116,-1.394 l 0,0 c -0.679,-4.076 -4.235,-6.974 -7.641,-9.312 l 0,0 c -8.134,-5.582 -16.812,-10.954 -24.245,-17.441 l 0,0 c -3.348,-2.922 -15.688,-9.847 -17.856,-11.768 l 0,0 c -10.514,-9.322 -29.698,-8.23 -43.695,-6.992 l 0,0 c -2.978,0.263 -6.376,0.501 -8.544,-1.558 l 0,0 c -1.461,-1.388 -1.959,-3.483 -2.345,-5.461 l 0,0 c -0.541,-2.777 -0.961,-5.706 -0.964,-8.569 l 0,0 c -0.005,-3.924 0.773,-7.721 3.093,-10.826 l 0,0 c 5.5,-7.361 17.621,-6.775 24.515,-0.701 l 0,0 c 3.855,3.397 7.098,8.39 12.216,8.854 l 0,0 c 5.187,0.469 9.462,-4.158 11.606,-8.906 l 0,0 c 2.145,-4.748 3.149,-10.106 6.358,-14.211 l 0,0 c 6.392,-8.178 21.134,-7.2 26.389,1.752 l 0,0 c 1.293,2.202 1.885,4.672 1.889,7.167 l 0,0 c 0.013,7.643 -5.488,15.526 -13.22,16.729 l 0,0 c -0.999,1.438 -1.44,3.117 -1.442,4.842 l 0,0 c -0.002,2.689 1.063,5.487 2.742,7.64 l 0,0 c 2.755,3.534 6.807,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.214 l 0,0 c 2.132,2.238 4.348,4.93 4.35,7.937 l 0,0 c 0,0.269 -0.017,0.54 -0.054,0.814 l 0,0 c -0.28,2.082 -1.645,3.833 -2.959,5.471 l 0,0 c -9.167,11.424 -18.333,22.849 -27.5,34.273 l 0,0 -23.071,-6.074 z"
|
||||||
|
id="path1562"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1646">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1648"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1658">
|
||||||
|
<path
|
||||||
|
d="m 444.813,571.047 c 6.832,-7.66 13.665,-15.32 20.499,-22.979 l 0,0 c 3.241,-3.634 6.709,-7.994 5.908,-12.797 l 0,0 c -0.056,-0.338 -0.132,-0.668 -0.226,-0.99 l 0,0 c -0.987,-3.65 -4.29,-6.315 -7.463,-8.492 l 0,0 c -8.135,-5.582 -16.812,-10.954 -24.246,-17.441 l 0,0 c -3.348,-2.922 -15.687,-9.846 -17.855,-11.769 l 0,0 c -10.514,-9.321 -29.699,-8.229 -43.695,-6.992 l 0,0 c -2.979,0.264 -6.375,0.503 -8.543,-1.557 l 0,0 c -0.945,-0.898 -1.487,-2.091 -1.857,-3.358 l 0,0 c -0.178,-0.638 -0.315,-1.291 -0.44,-1.933 l 0,0 c -1.283,-6.581 -1.885,-14.024 2.129,-19.396 l 0,0 c 5.499,-7.36 17.621,-6.774 24.514,-0.7 l 0,0 c 3.856,3.397 7.099,8.391 12.216,8.854 l 0,0 c 5.189,0.47 9.464,-4.158 11.607,-8.906 l 0,0 c 2.144,-4.747 3.15,-10.106 6.357,-14.211 l 0,0 c 6.393,-8.177 21.135,-7.199 26.39,1.752 l 0,0 c 0.57,0.971 1.003,1.993 1.311,3.046 l 0,0 c 2.398,8.633 -3.607,19.267 -12.691,20.68 l 0,0 c -1.621,2.332 -1.772,5.302 -0.964,8.064 l 0,0 c 0.46,1.658 1.268,3.248 2.313,4.588 l 0,0 c 2.754,3.534 6.806,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.215 l 0,0 c 1.669,1.751 3.39,3.782 4.06,6.024 l 0,0 c 0.225,0.825 0.306,1.678 0.187,2.556 l 0,0 c -0.279,2.082 -1.644,3.832 -2.959,5.47 l 0,0 c -9.166,11.425 -18.334,22.85 -27.5,34.274 l 0,0 -22.909,-6.031 z"
|
||||||
|
id="path1660"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.29623369"
|
||||||
|
inkscape:cx="1284.4589"
|
||||||
|
inkscape:cy="1102.1704"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer3"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="1870"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="79.389313,583.96947"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide5258"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="752.5,175"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5684"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="622.14288,33.487991"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5686"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="512,936"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5806"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1852.7369,1139.6332"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide5827"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Background">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="rect3797"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
x="0"
|
||||||
|
y="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Text"
|
||||||
|
style="display:inline">
|
||||||
|
<g
|
||||||
|
id="textblock">
|
||||||
|
<flowRoot
|
||||||
|
transform="matrix(0.9364115,0,0,1,-50.681751,166.85714)"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:'Alte Haas Grotesk';-inkscape-font-specification:'Alte Haas Grotesk';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
id="title"
|
||||||
|
xml:space="preserve"><flowRegion
|
||||||
|
id="flowRegion5059"><rect
|
||||||
|
y="62.857143"
|
||||||
|
x="137.14285"
|
||||||
|
height="473.63077"
|
||||||
|
width="1895.5304"
|
||||||
|
id="rect5061" /></flowRegion><flowPara
|
||||||
|
id="flowPara5065"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:82.6717px;line-height:120%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#eeee23;fill-opacity:1">$TITLE</flowPara><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:20.6679px;line-height:120%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#35b9ab;fill-opacity:1"
|
||||||
|
id="flowPara4200"> </flowPara><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:62.0037px;line-height:120%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1"
|
||||||
|
id="flowPara5604">$SUBTITLE</flowPara></flowRoot>
|
||||||
|
<flowRoot
|
||||||
|
transform="matrix(0.9364115,0,0,1,-51.93175,642.91475)"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:'Alte Haas Grotesk';-inkscape-font-specification:'Alte Haas Grotesk';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
id="speaker"
|
||||||
|
xml:space="preserve"><flowRegion
|
||||||
|
id="flowRegion5059-9"><rect
|
||||||
|
y="62.857143"
|
||||||
|
x="137.14285"
|
||||||
|
height="237.2281"
|
||||||
|
width="1896.8654"
|
||||||
|
id="rect5061-3" /></flowRegion><flowPara
|
||||||
|
id="flowPara5121"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:62.0037px;line-height:120%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#eeee23;fill-opacity:1">$SPEAKER</flowPara></flowRoot>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="all"
|
||||||
|
inkscape:label="#all">
|
||||||
|
<g
|
||||||
|
id="g13155"
|
||||||
|
transform="matrix(0.85352299,0,0,0.85352299,819.38453,-420.0124)">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 878.31395,588.31178 h -6.875 v -13.75 h -20.625 v 13.75 h -6.875 v -32.66145 h 6.875 v 12.03645 h 20.625 v -12.03645 h 6.875 z m 0,0"
|
||||||
|
id="path11" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 885.18895,555.65033 h 34.37499 v 32.66145 h -6.875 v -13.75 h -20.62499 v 13.75 h -6.875 v -32.66145 m 6.875,12.03645 h 20.62499 v -5.15624 h -20.62499 z m 0,0"
|
||||||
|
id="path13" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 933.31394,562.53054 v 18.90624 h 27.50522 v 6.875 h -34.38022 v -32.66145 h 34.38022 v 6.88021 z m 0,0"
|
||||||
|
id="path15" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 990.7254,571.29617 11.3438,17.01561 h -8.16671 l -9.15105,-13.75 h -10.18228 v 13.75 h -6.875 v -32.65624 h 6.875 v 12.02604 h 10.5677 l 8.76563,-12.02604 h 8.16671 z m 0,0"
|
||||||
|
id="path17" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1015.8192,574.56178 v 6.875 h 27.5 v 6.875 h -34.375 v -32.65624 h 34.375 v 6.875 h -27.5 v 5.15624 h 27.5 v 6.875 z m 0,0"
|
||||||
|
id="path19" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1084.5691,574.56178 h -6.875 l 6.875,13.75 h -8.1614 l -6.875,-13.75 h -12.4635 v 13.75 h -6.875 v -32.65624 h 34.3749 v 18.90624 m -27.4999,-6.875 h 20.6249 v -5.15624 h -20.6249 z m 0,0"
|
||||||
|
id="path21" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 852.39728,551.84303 c 0,-1.18749 0.96355,-2.14582 2.15104,-2.14582 1.18229,0 2.14584,0.95833 2.14584,2.14582 0,1.18751 -0.96355,2.15104 -2.14584,2.15104 -1.18749,0 -2.15104,-0.96353 -2.15104,-2.15104"
|
||||||
|
id="path23" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 835.9754,582.63991 c 0,-1.1875 0.96355,-2.15104 2.14584,-2.15104 1.18749,0 2.15104,0.96354 2.15104,2.15104 0,1.1875 -0.96355,2.14583 -2.15104,2.14583 -1.18229,0 -2.14584,-0.95833 -2.14584,-2.14583"
|
||||||
|
id="path25" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 856.1004,583.35345 c 0,-1.1875 0.95833,-2.14583 2.14584,-2.14583 1.18749,0 2.15104,0.95833 2.15104,2.14583 0,1.1875 -0.96355,2.15105 -2.15104,2.15105 -1.18751,0 -2.14584,-0.96355 -2.14584,-2.15105"
|
||||||
|
id="path27" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 875.79311,595.53054 c 0,-1.18751 0.96354,-2.15104 2.15105,-2.15104 1.18228,0 2.14583,0.96353 2.14583,2.15104 0,1.18749 -0.96355,2.14582 -2.14583,2.14582 -1.18751,0 -2.15105,-0.95833 -2.15105,-2.14582"
|
||||||
|
id="path29" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 900.86083,581.92117 c 0,-1.18751 0.95833,-2.14584 2.14582,-2.14584 1.18751,0 2.15104,0.95833 2.15104,2.14584 0,1.18749 -0.96353,2.15104 -2.15104,2.15104 -1.18749,0 -2.14582,-0.96355 -2.14582,-2.15104"
|
||||||
|
id="path31" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 872.20977,544.68158 c 0,-1.18751 0.96355,-2.14584 2.15106,-2.14584 1.18749,0 2.15104,0.95833 2.15104,2.14584 0,1.18749 -0.96355,2.14583 -2.15104,2.14583 -1.18751,0 -2.15106,-0.95834 -2.15106,-2.14583"
|
||||||
|
id="path33" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 914.46498,544.68158 c 0,-1.18751 0.96355,-2.14584 2.15104,-2.14584 1.18751,0 2.14584,0.95833 2.14584,2.14584 0,1.18749 -0.95833,2.14583 -2.14584,2.14583 -1.18749,0 -2.15104,-0.95834 -2.15104,-2.14583"
|
||||||
|
id="path35" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1086.3504,579.89511 c 0,-1.18749 0.9635,-2.15104 2.1458,-2.15104 1.1875,0 2.1511,0.96355 2.1511,2.15104 0,1.1823 -0.9636,2.14584 -2.1511,2.14584 -1.1823,0 -2.1458,-0.96354 -2.1458,-2.14584"
|
||||||
|
id="path37" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 920.9129,592.66595 c 0,-1.18751 0.96354,-2.15104 2.14583,-2.15104 1.18751,0 2.15104,0.96353 2.15104,2.15104 0,1.18749 -0.96353,2.14583 -2.15104,2.14583 -1.18229,0 -2.14583,-0.95834 -2.14583,-2.14583"
|
||||||
|
id="path39" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1003.2723,592.78574 c 0,-1.1875 0.9635,-2.15104 2.151,-2.15104 1.1875,0 2.1459,0.96354 2.1459,2.15104 0,1.1875 -0.9584,2.14584 -2.1459,2.14584 -1.1875,0 -2.151,-0.95834 -2.151,-2.14584"
|
||||||
|
id="path41" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 977.49102,597.08262 c 0,-1.18751 0.95834,-2.15104 2.15104,-2.15104 1.1823,0 2.14584,0.96353 2.14584,2.15104 0,1.18749 -0.96354,2.14582 -2.14584,2.14582 -1.1927,0 -2.15104,-0.95833 -2.15104,-2.14582"
|
||||||
|
id="path43" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 978.56394,557.57221 c 0,-1.18751 0.96355,-2.14584 2.15104,-2.14584 1.1823,0 2.14584,0.95833 2.14584,2.14584 0,1.18749 -0.96354,2.14582 -2.14584,2.14582 -1.18749,0 -2.15104,-0.95833 -2.15104,-2.14582"
|
||||||
|
id="path45" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1026.1889,551.24407 c 0,-1.18229 0.9636,-2.14582 2.1511,-2.14582 1.1875,0 2.151,0.95833 2.151,2.14582 0,1.18751 -0.9635,2.15104 -2.151,2.15104 -1.1875,0 -2.1511,-0.96353 -2.1511,-2.15104"
|
||||||
|
id="path47" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1014.0171,544.80137 c 0,-1.1875 0.9583,-2.15104 2.1458,-2.15104 1.1875,0 2.151,0.96354 2.151,2.15104 0,1.1875 -0.9635,2.14584 -2.151,2.14584 -1.1875,0 -2.1458,-0.95834 -2.1458,-2.14584"
|
||||||
|
id="path49" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1073.4598,549.09825 c 0,-1.18751 0.9583,-2.14584 2.1458,-2.14584 1.1875,0 2.151,0.95833 2.151,2.14584 0,1.18749 -0.9635,2.14582 -2.151,2.14582 -1.1875,0 -2.1458,-0.95833 -2.1458,-2.14582"
|
||||||
|
id="path51" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 948.12644,573.8795 c 0,-1.18751 0.96354,-2.15105 2.15105,-2.15105 1.18228,0 2.14583,0.96354 2.14583,2.15105 0,1.18228 -0.96355,2.14583 -2.14583,2.14583 -1.18751,0 -2.15105,-0.96355 -2.15105,-2.14583"
|
||||||
|
id="path53" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 938.1004,550.41074 c 0,-1.18749 0.96354,-2.14583 2.15104,-2.14583 1.18229,0 2.14584,0.95834 2.14584,2.14583 0,1.18751 -0.96355,2.14584 -2.14584,2.14584 -1.1875,0 -2.15104,-0.95833 -2.15104,-2.14584"
|
||||||
|
id="path55" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 828.16811,571.89511 c 0,-1.18749 0.96354,-2.14582 2.15105,-2.14582 1.18228,0 2.14583,0.95833 2.14583,2.14582 0,1.18751 -0.96355,2.15106 -2.14583,2.15106 -1.18751,0 -2.15105,-0.96355 -2.15105,-2.15106"
|
||||||
|
id="path57" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 854.81394,551.78053 -6.41145,-6.97916 h -9.84896 l -7.52084,6.56249 v 8.1198 l 7.16146,7.21875 v 15.69792"
|
||||||
|
id="path59" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 830.31915,571.65553 v 17.1875 l 5.3698,5.375 h 18.61979 l 3.9375,-5.42708 v -5.67709"
|
||||||
|
id="path61" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 877.94415,595.65032 h 15.03646 l 5.36979,-5.13541 v -3.9948 l 3.70313,-3.8802"
|
||||||
|
id="path63" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 874.36082,544.80137 h 7.16146 l 5.60937,2.86458 h 16.59375 l 3.04688,2.86458 h 33.47916"
|
||||||
|
id="path65" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 950.27748,574.16595 h 8.59375 l 4.65105,-5.375 v -16.46874 l -7.81771,-7.52084 h -39.08854"
|
||||||
|
id="path67" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 923.77748,592.78574 h 36.64584 l 2.625,4.29688 h 16.59375"
|
||||||
|
id="path69" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1005.4233,592.78574 h 40.8229 l 3.9375,4.29688 h 11.099 l 4,-4.29688 h 23.8333 l 4.3229,-2.32812 0.073,-5.81771 -4.5365,-4.40105"
|
||||||
|
id="path71" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 980.71498,557.33262 v -9.30729 l 4.95313,-3.22396 h 9.01041 l 8.59378,6.44792 h 23.6354"
|
||||||
|
id="path73" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1017.5952,544.80137 h 16.4739 l 4.0573,4.29688 h 37.4792"
|
||||||
|
id="path75" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1039.2306,647.29095 h -6.901 v -13.80729 h -20.7188 v 13.80729 h -6.901 v -32.79688 h 6.901 v 12.08333 h 20.7188 v -12.08333 h 6.901 z m 0,0"
|
||||||
|
id="path77" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1080.6629,647.29095 h -34.526 v -32.79688 h 34.526 z m -27.6198,-6.90104 h 20.7135 v -18.98959 h -20.7135 z m 0,0"
|
||||||
|
id="path79" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1122.09,621.40032 h -13.8073 v 25.89063 h -6.9063 v -25.89063 h -13.8125 v -6.90625 h 34.5261 z m 0,0"
|
||||||
|
id="path81" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1135.8973,633.48366 v 6.90625 h 27.6198 v 6.90104 h -34.5209 v -32.79688 h 34.5209 v 6.90625 h -27.6198 v 5.17708 h 27.6198 v 6.90626 z m 0,0"
|
||||||
|
id="path83" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1170.4233,647.29095 v -32.79688 h 6.9063 v 25.89584 h 27.6198 v 6.90104 z m 0,0"
|
||||||
|
id="path85" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1013.0639,610.79095 c 0,-1.19271 0.9688,-2.16145 2.1563,-2.16145 1.1927,0 2.1614,0.96874 2.1614,2.16145 0,1.18749 -0.9687,2.15625 -2.1614,2.15625 -1.1875,0 -2.1563,-0.96876 -2.1563,-2.15625"
|
||||||
|
id="path87" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1033.9233,605.03574 c 0,-1.19271 0.9636,-2.15624 2.1563,-2.15624 1.1927,0 2.1562,0.96353 2.1562,2.15624 0,1.1927 -0.9635,2.15625 -2.1562,2.15625 -1.1927,0 -2.1563,-0.96355 -2.1563,-2.15625"
|
||||||
|
id="path89" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1112.3244,609.35344 c 0,-1.1927 0.9635,-2.16145 2.1562,-2.16145 1.1927,0 2.1562,0.96875 2.1562,2.16145 0,1.18751 -0.9635,2.15626 -2.1562,2.15626 -1.1927,0 -2.1562,-0.96875 -2.1562,-2.15626"
|
||||||
|
id="path91" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1131.0223,605.03574 c 0,-1.19271 0.9687,-2.15624 2.1562,-2.15624 1.1927,0 2.1563,0.96353 2.1563,2.15624 0,1.1927 -0.9636,2.15625 -2.1563,2.15625 -1.1875,0 -2.1562,-0.96355 -2.1562,-2.15625"
|
||||||
|
id="path93" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1192.1577,624.45762 c 0,-1.19271 0.9687,-2.16146 2.1562,-2.16146 1.1927,0 2.1615,0.96875 2.1615,2.16146 0,1.18749 -0.9636,2.15625 -2.1615,2.15625 -1.1875,0 -2.1562,-0.96876 -2.1562,-2.15625"
|
||||||
|
id="path95" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 995.92332,641.59824 c 0,-1.1927 0.96354,-2.15625 2.15625,-2.15625 1.19271,0 2.16143,0.96355 2.16143,2.15625 0,1.19271 -0.96872,2.15626 -2.16143,2.15626 -1.19271,0 -2.15625,-0.96355 -2.15625,-2.15626"
|
||||||
|
id="path97" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1025.4129,642.31699 c 0,-1.19271 0.9687,-2.15625 2.1563,-2.15625 1.1927,0 2.1562,0.96354 2.1562,2.15625 0,1.19271 -0.9635,2.15625 -2.1562,2.15625 -1.1876,0 -2.1563,-0.96354 -2.1563,-2.15625"
|
||||||
|
id="path99" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1034.4025,654.66595 c 0,-1.19271 0.9687,-2.16145 2.1562,-2.16145 1.1927,0 2.1563,0.96874 2.1563,2.16145 0,1.18749 -0.9636,2.15625 -2.1563,2.15625 -1.1875,0 -2.1562,-0.96876 -2.1562,-2.15625"
|
||||||
|
id="path101" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1072.5223,651.78574 c 0,-1.19271 0.9687,-2.15624 2.1562,-2.15624 1.1927,0 2.1615,0.96353 2.1615,2.15624 0,1.1927 -0.9688,2.16146 -2.1615,2.16146 -1.1875,0 -2.1562,-0.96876 -2.1562,-2.16146"
|
||||||
|
id="path103" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 988.01186,630.80658 c 0,-1.18751 0.96354,-2.15626 2.15624,-2.15626 1.19272,0 2.15626,0.96875 2.15626,2.15626 0,1.1927 -0.96354,2.16145 -2.15626,2.16145 -1.1927,0 -2.15624,-0.96875 -2.15624,-2.16145"
|
||||||
|
id="path105" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1014.7723,610.60866 -6.4427,-7.01042 h -9.89066 l -7.55208,6.58854 v 8.15625 l 7.19271,7.25 v 15.76563"
|
||||||
|
id="path107" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 990.16811,630.56699 v 17.26563 l 5.39583,5.39062 h 28.04686 l 3.9583,-5.44792 v -5.69792"
|
||||||
|
id="path109" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1180.4129,657.54095 c 0,1.19271 -0.9688,2.15625 -2.1615,2.15625 -1.1875,0 -2.1562,-0.96354 -2.1562,-2.15625 0,-1.19271 0.9687,-2.15625 2.1562,-2.15625 1.1927,0 2.1615,0.96354 2.1615,2.15625"
|
||||||
|
id="path111" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1190.4806,651.78574 c 0,1.1927 -0.9688,2.16146 -2.1562,2.16146 -1.1928,0 -2.1563,-0.96876 -2.1563,-2.16146 0,-1.19271 0.9635,-2.15624 2.1563,-2.15624 1.1874,0 2.1562,0.96353 2.1562,2.15624"
|
||||||
|
id="path113" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1205.5848,609.35344 c 0,1.18751 -0.9688,2.15626 -2.1563,2.15626 -1.1927,0 -2.1562,-0.96875 -2.1562,-2.15626 0,-1.1927 0.9635,-2.16145 2.1562,-2.16145 1.1875,0 2.1563,0.96875 2.1563,2.16145"
|
||||||
|
id="path115" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1063.8921,657.54095 c 0,1.19271 -0.9688,2.15625 -2.1563,2.15625 -1.1927,0 -2.1614,-0.96354 -2.1614,-2.15625 0,-1.19271 0.9687,-2.15625 2.1614,-2.15625 1.1875,0 2.1563,0.96354 2.1563,2.15625"
|
||||||
|
id="path117" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1096.2566,627.93158 c 0,1.1927 -0.9635,2.15625 -2.1562,2.15625 -1.1927,0 -2.1563,-0.96355 -2.1563,-2.15625 0,-1.19271 0.9636,-2.15626 2.1563,-2.15626 1.1927,0 2.1562,0.96355 2.1562,2.15626"
|
||||||
|
id="path119" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1109.5639,654.54616 c 0,1.1875 -0.9635,2.15624 -2.1562,2.15624 -1.1927,0 -2.1563,-0.96874 -2.1563,-2.15624 0,-1.19272 0.9636,-2.16146 2.1563,-2.16146 1.1927,0 2.1562,0.96874 2.1562,2.16146"
|
||||||
|
id="path121" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 1178.2514,657.54095 H 1164.59 l -3.474,-2.875 h -16.6666 l -3.0573,-2.16147 h -14.2084 l -3.8333,4.31771 h -7.1927 l -2.9948,-2.27604 -4.5313,-0.23957"
|
||||||
|
id="path123" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1093.3816,628.71282 -3.8385,2.90625 0.1249,7.86459 3.7136,3.39582 -0.089,9.45834 -2.4895,5.20313 h -29.0677"
|
||||||
|
id="path125" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1035.84,605.03574 h 15.1041 l 5.0365,4.3125 h 58.9792"
|
||||||
|
id="path127" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1188.3244,651.78574 h 17.9791 l 3.2396,-5.21354 v -30.39062 l -6.2239,-6.93751"
|
||||||
|
id="path129" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1194.6316,624.73366 -13.2552,-13.22396 h -25.4218 l -6.3959,-6.47396 h -15.1771"
|
||||||
|
id="path131" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1036.5587,654.66595 h 13.6667 l 5.276,-2.88021 h 18.4584"
|
||||||
|
id="path133" />
|
||||||
|
</g>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Open Sans Pro';-inkscape-font-specification:'Open Sans Pro';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="79.389313"
|
||||||
|
y="141.33333"
|
||||||
|
id="text5802"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan5804"
|
||||||
|
x="79.389313"
|
||||||
|
y="141.33333"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:70px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold'">Hacker Hotel 2024</tspan></text>
|
||||||
|
<g
|
||||||
|
id="g20765"
|
||||||
|
transform="matrix(2.4640207,0,0,2.4640207,-2141.334,-2613.2162)">
|
||||||
|
<g
|
||||||
|
id="g20922"
|
||||||
|
transform="translate(-106.05972,-17.424097)">
|
||||||
|
<g
|
||||||
|
id="g1906"
|
||||||
|
transform="matrix(1.3333333,0,0,1.3333333,1326.3341,1294.8908)">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -66.867182,120.36719 c 0,-0.89062 0.72266,-1.60937 1.61328,-1.60937 0.88672,0 1.60938,0.71875 1.60938,1.60937 0,0.89063 -0.72266,1.61328 -1.60938,1.61328 -0.89062,0 -1.61328,-0.72265 -1.61328,-1.61328"
|
||||||
|
id="path23-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -79.183592,143.46485 c 0,-0.89063 0.72266,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72265 1.61328,1.61328 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.88672,0 -1.60938,-0.71875 -1.60938,-1.60937"
|
||||||
|
id="path25-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -64.089842,144 c 0,-0.89062 0.71875,-1.60937 1.60938,-1.60937 0.89062,0 1.61328,0.71875 1.61328,1.60937 0,0.89063 -0.72266,1.61329 -1.61328,1.61329 -0.89063,0 -1.60938,-0.72266 -1.60938,-1.61329"
|
||||||
|
id="path27-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -49.320312,153.13282 c 0,-0.89063 0.72266,-1.61328 1.61329,-1.61328 0.88671,0 1.60937,0.72265 1.60937,1.61328 0,0.89062 -0.72266,1.60937 -1.60937,1.60937 -0.89063,0 -1.61329,-0.71875 -1.61329,-1.60937"
|
||||||
|
id="path29-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -30.519522,142.92579 c 0,-0.89063 0.71875,-1.60938 1.60937,-1.60938 0.89063,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72265,1.61328 -1.61328,1.61328 -0.89062,0 -1.60937,-0.72266 -1.60937,-1.61328"
|
||||||
|
id="path31-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -52.007812,114.9961 c 0,-0.89063 0.72266,-1.60938 1.61329,-1.60938 0.89062,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.89063,0 -1.61329,-0.71875 -1.61329,-1.60937"
|
||||||
|
id="path33-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -20.316402,114.9961 c 0,-0.89063 0.72266,-1.60938 1.61328,-1.60938 0.89063,0 1.60938,0.71875 1.60938,1.60938 0,0.89062 -0.71875,1.60937 -1.60938,1.60937 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path35-8" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 108.59766,141.40625 c 0,-0.89062 0.72266,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72266 1.61328,1.61328 0,0.88672 -0.72266,1.60938 -1.61328,1.60938 -0.88672,0 -1.60938,-0.72266 -1.60938,-1.60938"
|
||||||
|
id="path37-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -15.480462,150.98438 c 0,-0.89063 0.72265,-1.61328 1.60937,-1.61328 0.89063,0 1.61328,0.72265 1.61328,1.61328 0,0.89062 -0.72265,1.60937 -1.61328,1.60937 -0.88672,0 -1.60937,-0.71875 -1.60937,-1.60937"
|
||||||
|
id="path39-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 46.289068,151.07422 c 0,-0.89062 0.72266,-1.61328 1.61328,-1.61328 0.89063,0 1.60938,0.72266 1.60938,1.61328 0,0.89063 -0.71875,1.60938 -1.60938,1.60938 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60938"
|
||||||
|
id="path41-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 26.953128,154.29688 c 0,-0.89063 0.71875,-1.61328 1.61328,-1.61328 0.88672,0 1.60938,0.72265 1.60938,1.61328 0,0.89062 -0.72266,1.60937 -1.60938,1.60937 -0.89453,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path43-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 27.757818,124.66407 c 0,-0.89063 0.72266,-1.60938 1.61328,-1.60938 0.88672,0 1.60938,0.71875 1.60938,1.60938 0,0.89062 -0.72266,1.60937 -1.60938,1.60937 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path45-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 63.476568,119.91797 c 0,-0.88672 0.72266,-1.60937 1.61328,-1.60937 0.89063,0 1.61328,0.71875 1.61328,1.60937 0,0.89063 -0.72265,1.61328 -1.61328,1.61328 -0.89062,0 -1.61328,-0.72265 -1.61328,-1.61328"
|
||||||
|
id="path47-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 54.347658,115.08594 c 0,-0.89062 0.71875,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72266 1.61328,1.61328 0,0.89063 -0.72266,1.60938 -1.61328,1.60938 -0.89063,0 -1.60938,-0.71875 -1.60938,-1.60938"
|
||||||
|
id="path49-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 98.929688,118.3086 c 0,-0.89063 0.71875,-1.60938 1.609382,-1.60938 0.89062,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.890632,0 -1.609382,-0.71875 -1.609382,-1.60937"
|
||||||
|
id="path51-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 4.929688,136.89454 c 0,-0.89063 0.72266,-1.61329 1.61329,-1.61329 0.88671,0 1.60937,0.72266 1.60937,1.61329 0,0.88671 -0.72266,1.60937 -1.60937,1.60937 -0.89063,0 -1.61329,-0.72266 -1.61329,-1.60937"
|
||||||
|
id="path53-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -2.589842,119.29297 c 0,-0.89062 0.72266,-1.60937 1.61328,-1.60937 0.88672,0 1.60938,0.71875 1.60938,1.60937 0,0.89063 -0.72266,1.60938 -1.60938,1.60938 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60938"
|
||||||
|
id="path55-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -85.039062,135.40625 c 0,-0.89062 0.72266,-1.60937 1.61329,-1.60937 0.88671,0 1.60937,0.71875 1.60937,1.60937 0,0.89063 -0.72266,1.61329 -1.60937,1.61329 -0.89063,0 -1.61329,-0.72266 -1.61329,-1.61329"
|
||||||
|
id="path57-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -65.054683,120.32031 -4.808594,-5.23437 h -7.386719 l -5.640625,4.92187 v 6.08985 l 5.371094,5.41406 v 11.77344"
|
||||||
|
id="path59-7" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -83.425777,135.22656 v 12.89063 l 4.027344,4.03125 h 13.964844 l 2.953125,-4.07031 v -4.25782"
|
||||||
|
id="path61-8" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -47.707027,153.22266 h 11.277344 l 4.027344,-3.85156 v -2.9961 l 2.777343,-2.91015"
|
||||||
|
id="path63-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -50.394527,115.08594 h 5.371094 l 4.207031,2.14844 h 12.445313 l 2.285156,2.14843 h 25.109375"
|
||||||
|
id="path65-5" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 6.542973,137.10938 h 6.445313 l 3.488281,-4.03125 v -12.35156 l -5.863281,-5.64063 h -29.316407"
|
||||||
|
id="path67-0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -13.332027,151.07422 h 27.484375 l 1.96875,3.22266 h 12.445313"
|
||||||
|
id="path69-3" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 47.902348,151.07422 h 30.617188 l 2.953125,3.22266 h 8.324218 l 3,-3.22266 h 17.875001 l 3.24219,-1.74609 0.0547,-4.36328 -3.40235,-3.30079"
|
||||||
|
id="path71-6" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 29.371098,124.48438 v -6.98047 l 3.714844,-2.41797 h 6.757812 l 6.445313,4.83594 h 17.726562"
|
||||||
|
id="path73-1" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 57.031254,115.08594 h 12.355469 l 3.042969,3.22266 h 28.109378"
|
||||||
|
id="path75-0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g1877"
|
||||||
|
transform="matrix(1.3333333,0,0,1.3333333,1440.3341,1234.547)">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 53.632818,164.57813 c 0,-0.89453 0.72656,-1.62109 1.61719,-1.62109 0.89453,0 1.62109,0.72656 1.62109,1.62109 0,0.89062 -0.72656,1.61719 -1.62109,1.61719 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.61719"
|
||||||
|
id="path87-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 69.277348,160.26172 c 0,-0.89453 0.72266,-1.61718 1.61719,-1.61718 0.89453,0 1.61719,0.72265 1.61719,1.61718 0,0.89453 -0.72266,1.61719 -1.61719,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path89-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 128.07813,163.5 c 0,-0.89453 0.72266,-1.62109 1.61719,-1.62109 0.89453,0 1.61718,0.72656 1.61718,1.62109 0,0.89063 -0.72265,1.61719 -1.61718,1.61719 -0.89453,0 -1.61719,-0.72656 -1.61719,-1.61719"
|
||||||
|
id="path91-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 142.10157,160.26172 c 0,-0.89453 0.72656,-1.61718 1.61718,-1.61718 0.89454,0 1.61719,0.72265 1.61719,1.61718 0,0.89453 -0.72265,1.61719 -1.61719,1.61719 -0.89062,0 -1.61718,-0.72266 -1.61718,-1.61719"
|
||||||
|
id="path93-0" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 187.95313,174.82813 c 0,-0.89453 0.72656,-1.62109 1.61719,-1.62109 0.89453,0 1.62109,0.72656 1.62109,1.62109 0,0.89062 -0.72266,1.61719 -1.62109,1.61719 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.61719"
|
||||||
|
id="path95-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 40.777348,187.6836 c 0,-0.89453 0.72266,-1.61719 1.61719,-1.61719 0.89453,0 1.62109,0.72266 1.62109,1.61719 0,0.89453 -0.72656,1.61719 -1.62109,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path97-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 62.894538,188.22266 c 0,-0.89453 0.72656,-1.61719 1.61719,-1.61719 0.89453,0 1.61718,0.72266 1.61718,1.61719 0,0.89453 -0.72265,1.61719 -1.61718,1.61719 -0.89063,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path99-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 69.636728,197.48438 c 0,-0.89453 0.72656,-1.62109 1.61718,-1.62109 0.89453,0 1.61719,0.72656 1.61719,1.62109 0,0.89062 -0.72266,1.61719 -1.61719,1.61719 -0.89062,0 -1.61718,-0.72657 -1.61718,-1.61719"
|
||||||
|
id="path101-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 98.226568,195.32422 c 0,-0.89453 0.72656,-1.61718 1.61719,-1.61718 0.894532,0 1.621092,0.72265 1.621092,1.61718 0,0.89453 -0.72656,1.6211 -1.621092,1.6211 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.6211"
|
||||||
|
id="path103-4" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 34.843758,179.58985 c 0,-0.89063 0.72265,-1.61719 1.61718,-1.61719 0.89454,0 1.61719,0.72656 1.61719,1.61719 0,0.89453 -0.72265,1.62109 -1.61719,1.62109 -0.89453,0 -1.61718,-0.72656 -1.61718,-1.62109"
|
||||||
|
id="path105-7" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 54.914067,164.44141 -4.832031,-5.25781 h -7.417969 l -5.664063,4.9414 v 6.11719 l 5.394532,5.4375 v 11.82422"
|
||||||
|
id="path107-6" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 36.460942,179.41016 v 12.94922 l 4.046875,4.04297 h 21.035156 l 2.96875,-4.08594 v -4.27344"
|
||||||
|
id="path109-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 179.14454,199.64063 c 0,0.89453 -0.72657,1.61719 -1.6211,1.61719 -0.89062,0 -1.61719,-0.72266 -1.61719,-1.61719 0,-0.89453 0.72657,-1.61719 1.61719,-1.61719 0.89453,0 1.6211,0.72266 1.6211,1.61719"
|
||||||
|
id="path111-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 186.69532,195.32422 c 0,0.89453 -0.72657,1.6211 -1.61719,1.6211 -0.89453,0 -1.61719,-0.72657 -1.61719,-1.6211 0,-0.89453 0.72266,-1.61718 1.61719,-1.61718 0.89062,0 1.61719,0.72265 1.61719,1.61718"
|
||||||
|
id="path113-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 198.02344,163.5 c 0,0.89063 -0.72656,1.61719 -1.61719,1.61719 -0.89453,0 -1.61718,-0.72656 -1.61718,-1.61719 0,-0.89453 0.72265,-1.62109 1.61718,-1.62109 0.89063,0 1.61719,0.72656 1.61719,1.62109"
|
||||||
|
id="path115-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 91.753908,199.64063 c 0,0.89453 -0.72656,1.61719 -1.61719,1.61719 -0.89453,0 -1.62109,-0.72266 -1.62109,-1.61719 0,-0.89453 0.72656,-1.61719 1.62109,-1.61719 0.89063,0 1.61719,0.72266 1.61719,1.61719"
|
||||||
|
id="path117-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 116.02735,177.4336 c 0,0.89453 -0.72266,1.61719 -1.61719,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719 0,-0.89453 0.72266,-1.61719 1.61719,-1.61719 0.89453,0 1.61719,0.72266 1.61719,1.61719"
|
||||||
|
id="path119-4" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 126.00782,197.39454 c 0,0.89062 -0.72266,1.61718 -1.61719,1.61718 -0.89453,0 -1.61719,-0.72656 -1.61719,-1.61718 0,-0.89454 0.72266,-1.6211 1.61719,-1.6211 0.89453,0 1.61719,0.72656 1.61719,1.6211"
|
||||||
|
id="path121-5" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 177.52344,199.64063 h -10.24609 l -2.60547,-2.15625 h -12.5 l -2.29297,-1.6211 h -10.65625 l -2.875,3.23828 h -5.39453 l -2.24609,-1.70703 -3.39844,-0.17968"
|
||||||
|
id="path123-2" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 113.8711,178.01953 -2.87891,2.17969 0.0937,5.89844 2.78516,2.54687 -0.0664,7.09375 -1.86718,3.90235 H 90.136725"
|
||||||
|
id="path125-5" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 70.714848,160.26172 h 11.328125 l 3.777344,3.23438 h 44.234373"
|
||||||
|
id="path127-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 185.07813,195.32422 h 13.48438 l 2.42968,-3.91015 V 168.6211 l -4.66796,-5.20313"
|
||||||
|
id="path129-7" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 189.8086,175.03516 -9.94141,-9.91797 h -19.0664 l -4.79688,-4.85547 H 144.6211"
|
||||||
|
id="path131-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 71.253911,197.48438 H 81.50391 l 3.957032,-2.16016 h 13.84375"
|
||||||
|
id="path133-4" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="FadeOutLayer"
|
||||||
|
style="display:inline">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;fill-opacity:1;opacity:0"
|
||||||
|
id="fadeout"
|
||||||
|
width="1932.7112"
|
||||||
|
height="1092.9814"
|
||||||
|
x="-4.4430141"
|
||||||
|
y="-1.8739687"
|
||||||
|
inkscape:label="#fadeout" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 58 KiB |
1605
hackerhotel2024/artwork/logos/HackerHotel.pdf
Normal file
300
hackerhotel2024/artwork/logos/HackerHotel.svg
Normal file
|
@ -0,0 +1,300 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="116.221pt"
|
||||||
|
height="314.646pt"
|
||||||
|
viewBox="0 0 116.221 314.646"
|
||||||
|
version="1.2"
|
||||||
|
id="svg136"
|
||||||
|
sodipodi:docname="HackerHotel.svg"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview138"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="1.0524298"
|
||||||
|
inkscape:cx="34.681649"
|
||||||
|
inkscape:cy="298.83229"
|
||||||
|
inkscape:window-width="1870"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg136" />
|
||||||
|
<defs
|
||||||
|
id="defs5">
|
||||||
|
<clipPath
|
||||||
|
id="clip1">
|
||||||
|
<path
|
||||||
|
d="M 0 0 L 116.222656 0 L 116.222656 314.644531 L 0 314.644531 Z M 0 0 "
|
||||||
|
id="path2" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
clip-path="url(#clip1)"
|
||||||
|
clip-rule="nonzero"
|
||||||
|
id="g9"
|
||||||
|
transform="rotate(90,58.111328,157.32227)">
|
||||||
|
<path
|
||||||
|
style="fill:#070502;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 116.22266,314.64453 V 0 H 0 v 314.64453 z m 0,0"
|
||||||
|
id="path7" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -47.429682,147.71875 h -5.15625 v -10.3125 h -15.46875 v 10.3125 h -5.15625 v -24.49609 h 5.15625 V 132.25 h 15.46875 v -9.02734 h 5.15625 z m 0,0"
|
||||||
|
id="path11" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -42.273432,123.22266 h 25.78125 v 24.49609 h -5.15625 v -10.3125 h -15.46875 v 10.3125 h -5.15625 v -24.49609 m 5.15625,9.02734 h 15.46875 v -3.86718 h -15.46875 z m 0,0"
|
||||||
|
id="path13" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -6.179682,128.38282 v 14.17968 h 20.62891 v 5.15625 h -25.78516 v -24.49609 h 25.78516 v 5.16016 z m 0,0"
|
||||||
|
id="path15" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 36.878908,134.95704 8.50782,12.76171 h -6.125 l -6.86329,-10.3125 h -7.63671 v 10.3125 h -5.15625 v -24.49218 h 5.15625 v 9.01953 h 7.92578 l 6.57422,-9.01953 h 6.125 z m 0,0"
|
||||||
|
id="path17" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 55.699228,137.40625 v 5.15625 h 20.625 v 5.15625 h -25.78125 v -24.49218 h 25.78125 v 5.15625 h -20.625 V 132.25 h 20.625 v 5.15625 z m 0,0"
|
||||||
|
id="path19" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 107.26172,137.40625 h -5.15625 l 5.15625,10.3125 h -6.12109 l -5.156252,-10.3125 h -9.34765 v 10.3125 h -5.15625 v -24.49218 h 25.781242 v 14.17968 M 86.636728,132.25 h 15.468742 v -3.86718 H 86.636728 Z m 0,0"
|
||||||
|
id="path21" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -66.867182,120.36719 c 0,-0.89062 0.72266,-1.60937 1.61328,-1.60937 0.88672,0 1.60938,0.71875 1.60938,1.60937 0,0.89063 -0.72266,1.61328 -1.60938,1.61328 -0.89062,0 -1.61328,-0.72265 -1.61328,-1.61328"
|
||||||
|
id="path23" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -79.183592,143.46485 c 0,-0.89063 0.72266,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72265 1.61328,1.61328 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.88672,0 -1.60938,-0.71875 -1.60938,-1.60937"
|
||||||
|
id="path25" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -64.089842,144 c 0,-0.89062 0.71875,-1.60937 1.60938,-1.60937 0.89062,0 1.61328,0.71875 1.61328,1.60937 0,0.89063 -0.72266,1.61329 -1.61328,1.61329 -0.89063,0 -1.60938,-0.72266 -1.60938,-1.61329"
|
||||||
|
id="path27" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -49.320312,153.13282 c 0,-0.89063 0.72266,-1.61328 1.61329,-1.61328 0.88671,0 1.60937,0.72265 1.60937,1.61328 0,0.89062 -0.72266,1.60937 -1.60937,1.60937 -0.89063,0 -1.61329,-0.71875 -1.61329,-1.60937"
|
||||||
|
id="path29" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -30.519522,142.92579 c 0,-0.89063 0.71875,-1.60938 1.60937,-1.60938 0.89063,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72265,1.61328 -1.61328,1.61328 -0.89062,0 -1.60937,-0.72266 -1.60937,-1.61328"
|
||||||
|
id="path31" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -52.007812,114.9961 c 0,-0.89063 0.72266,-1.60938 1.61329,-1.60938 0.89062,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.89063,0 -1.61329,-0.71875 -1.61329,-1.60937"
|
||||||
|
id="path33" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -20.316402,114.9961 c 0,-0.89063 0.72266,-1.60938 1.61328,-1.60938 0.89063,0 1.60938,0.71875 1.60938,1.60938 0,0.89062 -0.71875,1.60937 -1.60938,1.60937 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path35" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 108.59766,141.40625 c 0,-0.89062 0.72266,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72266 1.61328,1.61328 0,0.88672 -0.72266,1.60938 -1.61328,1.60938 -0.88672,0 -1.60938,-0.72266 -1.60938,-1.60938"
|
||||||
|
id="path37" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -15.480462,150.98438 c 0,-0.89063 0.72265,-1.61328 1.60937,-1.61328 0.89063,0 1.61328,0.72265 1.61328,1.61328 0,0.89062 -0.72265,1.60937 -1.61328,1.60937 -0.88672,0 -1.60937,-0.71875 -1.60937,-1.60937"
|
||||||
|
id="path39" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 46.289068,151.07422 c 0,-0.89062 0.72266,-1.61328 1.61328,-1.61328 0.89063,0 1.60938,0.72266 1.60938,1.61328 0,0.89063 -0.71875,1.60938 -1.60938,1.60938 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60938"
|
||||||
|
id="path41" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 26.953128,154.29688 c 0,-0.89063 0.71875,-1.61328 1.61328,-1.61328 0.88672,0 1.60938,0.72265 1.60938,1.61328 0,0.89062 -0.72266,1.60937 -1.60938,1.60937 -0.89453,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path43" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 27.757818,124.66407 c 0,-0.89063 0.72266,-1.60938 1.61328,-1.60938 0.88672,0 1.60938,0.71875 1.60938,1.60938 0,0.89062 -0.72266,1.60937 -1.60938,1.60937 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path45" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 63.476568,119.91797 c 0,-0.88672 0.72266,-1.60937 1.61328,-1.60937 0.89063,0 1.61328,0.71875 1.61328,1.60937 0,0.89063 -0.72265,1.61328 -1.61328,1.61328 -0.89062,0 -1.61328,-0.72265 -1.61328,-1.61328"
|
||||||
|
id="path47" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 54.347658,115.08594 c 0,-0.89062 0.71875,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72266 1.61328,1.61328 0,0.89063 -0.72266,1.60938 -1.61328,1.60938 -0.89063,0 -1.60938,-0.71875 -1.60938,-1.60938"
|
||||||
|
id="path49" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 98.929688,118.3086 c 0,-0.89063 0.71875,-1.60938 1.609382,-1.60938 0.89062,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.890632,0 -1.609382,-0.71875 -1.609382,-1.60937"
|
||||||
|
id="path51" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 4.929688,136.89454 c 0,-0.89063 0.72266,-1.61329 1.61329,-1.61329 0.88671,0 1.60937,0.72266 1.60937,1.61329 0,0.88671 -0.72266,1.60937 -1.60937,1.60937 -0.89063,0 -1.61329,-0.72266 -1.61329,-1.60937"
|
||||||
|
id="path53" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -2.589842,119.29297 c 0,-0.89062 0.72266,-1.60937 1.61328,-1.60937 0.88672,0 1.60938,0.71875 1.60938,1.60937 0,0.89063 -0.72266,1.60938 -1.60938,1.60938 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60938"
|
||||||
|
id="path55" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -85.039062,135.40625 c 0,-0.89062 0.72266,-1.60937 1.61329,-1.60937 0.88671,0 1.60937,0.71875 1.60937,1.60937 0,0.89063 -0.72266,1.61329 -1.60937,1.61329 -0.89063,0 -1.61329,-0.72266 -1.61329,-1.61329"
|
||||||
|
id="path57" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -65.054683,120.32031 -4.808594,-5.23437 h -7.386719 l -5.640625,4.92187 v 6.08985 l 5.371094,5.41406 v 11.77344"
|
||||||
|
id="path59" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -83.425777,135.22656 v 12.89063 l 4.027344,4.03125 h 13.964844 l 2.953125,-4.07031 v -4.25782"
|
||||||
|
id="path61" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -47.707027,153.22266 h 11.277344 l 4.027344,-3.85156 v -2.9961 l 2.777343,-2.91015"
|
||||||
|
id="path63" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -50.394527,115.08594 h 5.371094 l 4.207031,2.14844 h 12.445313 l 2.285156,2.14843 h 25.109375"
|
||||||
|
id="path65" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 6.542973,137.10938 h 6.445313 l 3.488281,-4.03125 v -12.35156 l -5.863281,-5.64063 h -29.316407"
|
||||||
|
id="path67" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -13.332027,151.07422 h 27.484375 l 1.96875,3.22266 h 12.445313"
|
||||||
|
id="path69" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 47.902348,151.07422 h 30.617188 l 2.953125,3.22266 h 8.324218 l 3,-3.22266 h 17.875001 l 3.24219,-1.74609 0.0547,-4.36328 -3.40235,-3.30079"
|
||||||
|
id="path71" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 29.371098,124.48438 v -6.98047 l 3.714844,-2.41797 h 6.757812 l 6.445313,4.83594 h 17.726562"
|
||||||
|
id="path73" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 57.031254,115.08594 h 12.355469 l 3.042969,3.22266 h 28.109378"
|
||||||
|
id="path75" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 73.257818,191.95313 h -5.17578 v -10.35547 h -15.53906 v 10.35547 h -5.17579 v -24.59766 h 5.17579 v 9.0625 h 15.53906 v -9.0625 h 5.17578 z m 0,0"
|
||||||
|
id="path77" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 104.33204,191.95313 H 78.437508 v -24.59766 h 25.894532 z m -20.714852,-5.17578 h 15.53516 v -14.24219 h -15.53516 z m 0,0"
|
||||||
|
id="path79" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 135.40235,172.53516 h -10.35547 v 19.41797 h -5.17969 v -19.41797 h -10.35937 v -5.17969 h 25.89453 z m 0,0"
|
||||||
|
id="path81" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 145.75782,181.59766 v 5.17969 h 20.71484 v 5.17578 h -25.89062 v -24.59766 h 25.89062 v 5.17969 h -20.71484 v 3.88281 h 20.71484 v 5.17969 z m 0,0"
|
||||||
|
id="path83" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 171.65235,191.95313 v -24.59766 h 5.17969 v 19.42188 h 20.71484 v 5.17578 z m 0,0"
|
||||||
|
id="path85" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 53.632818,164.57813 c 0,-0.89453 0.72656,-1.62109 1.61719,-1.62109 0.89453,0 1.62109,0.72656 1.62109,1.62109 0,0.89062 -0.72656,1.61719 -1.62109,1.61719 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.61719"
|
||||||
|
id="path87" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 69.277348,160.26172 c 0,-0.89453 0.72266,-1.61718 1.61719,-1.61718 0.89453,0 1.61719,0.72265 1.61719,1.61718 0,0.89453 -0.72266,1.61719 -1.61719,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path89" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 128.07813,163.5 c 0,-0.89453 0.72266,-1.62109 1.61719,-1.62109 0.89453,0 1.61718,0.72656 1.61718,1.62109 0,0.89063 -0.72265,1.61719 -1.61718,1.61719 -0.89453,0 -1.61719,-0.72656 -1.61719,-1.61719"
|
||||||
|
id="path91" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 142.10157,160.26172 c 0,-0.89453 0.72656,-1.61718 1.61718,-1.61718 0.89454,0 1.61719,0.72265 1.61719,1.61718 0,0.89453 -0.72265,1.61719 -1.61719,1.61719 -0.89062,0 -1.61718,-0.72266 -1.61718,-1.61719"
|
||||||
|
id="path93" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 187.95313,174.82813 c 0,-0.89453 0.72656,-1.62109 1.61719,-1.62109 0.89453,0 1.62109,0.72656 1.62109,1.62109 0,0.89062 -0.72266,1.61719 -1.62109,1.61719 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.61719"
|
||||||
|
id="path95" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 40.777348,187.6836 c 0,-0.89453 0.72266,-1.61719 1.61719,-1.61719 0.89453,0 1.62109,0.72266 1.62109,1.61719 0,0.89453 -0.72656,1.61719 -1.62109,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path97" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 62.894538,188.22266 c 0,-0.89453 0.72656,-1.61719 1.61719,-1.61719 0.89453,0 1.61718,0.72266 1.61718,1.61719 0,0.89453 -0.72265,1.61719 -1.61718,1.61719 -0.89063,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path99" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 69.636728,197.48438 c 0,-0.89453 0.72656,-1.62109 1.61718,-1.62109 0.89453,0 1.61719,0.72656 1.61719,1.62109 0,0.89062 -0.72266,1.61719 -1.61719,1.61719 -0.89062,0 -1.61718,-0.72657 -1.61718,-1.61719"
|
||||||
|
id="path101" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 98.226568,195.32422 c 0,-0.89453 0.72656,-1.61718 1.61719,-1.61718 0.894532,0 1.621092,0.72265 1.621092,1.61718 0,0.89453 -0.72656,1.6211 -1.621092,1.6211 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.6211"
|
||||||
|
id="path103" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 34.843758,179.58985 c 0,-0.89063 0.72265,-1.61719 1.61718,-1.61719 0.89454,0 1.61719,0.72656 1.61719,1.61719 0,0.89453 -0.72265,1.62109 -1.61719,1.62109 -0.89453,0 -1.61718,-0.72656 -1.61718,-1.62109"
|
||||||
|
id="path105" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 54.914067,164.44141 -4.832031,-5.25781 h -7.417969 l -5.664063,4.9414 v 6.11719 l 5.394532,5.4375 v 11.82422"
|
||||||
|
id="path107" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 36.460942,179.41016 v 12.94922 l 4.046875,4.04297 h 21.035156 l 2.96875,-4.08594 v -4.27344"
|
||||||
|
id="path109" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 179.14454,199.64063 c 0,0.89453 -0.72657,1.61719 -1.6211,1.61719 -0.89062,0 -1.61719,-0.72266 -1.61719,-1.61719 0,-0.89453 0.72657,-1.61719 1.61719,-1.61719 0.89453,0 1.6211,0.72266 1.6211,1.61719"
|
||||||
|
id="path111" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 186.69532,195.32422 c 0,0.89453 -0.72657,1.6211 -1.61719,1.6211 -0.89453,0 -1.61719,-0.72657 -1.61719,-1.6211 0,-0.89453 0.72266,-1.61718 1.61719,-1.61718 0.89062,0 1.61719,0.72265 1.61719,1.61718"
|
||||||
|
id="path113" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 198.02344,163.5 c 0,0.89063 -0.72656,1.61719 -1.61719,1.61719 -0.89453,0 -1.61718,-0.72656 -1.61718,-1.61719 0,-0.89453 0.72265,-1.62109 1.61718,-1.62109 0.89063,0 1.61719,0.72656 1.61719,1.62109"
|
||||||
|
id="path115" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 91.753908,199.64063 c 0,0.89453 -0.72656,1.61719 -1.61719,1.61719 -0.89453,0 -1.62109,-0.72266 -1.62109,-1.61719 0,-0.89453 0.72656,-1.61719 1.62109,-1.61719 0.89063,0 1.61719,0.72266 1.61719,1.61719"
|
||||||
|
id="path117" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 116.02735,177.4336 c 0,0.89453 -0.72266,1.61719 -1.61719,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719 0,-0.89453 0.72266,-1.61719 1.61719,-1.61719 0.89453,0 1.61719,0.72266 1.61719,1.61719"
|
||||||
|
id="path119" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 126.00782,197.39454 c 0,0.89062 -0.72266,1.61718 -1.61719,1.61718 -0.89453,0 -1.61719,-0.72656 -1.61719,-1.61718 0,-0.89454 0.72266,-1.6211 1.61719,-1.6211 0.89453,0 1.61719,0.72656 1.61719,1.6211"
|
||||||
|
id="path121" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 177.52344,199.64063 h -10.24609 l -2.60547,-2.15625 h -12.5 l -2.29297,-1.6211 h -10.65625 l -2.875,3.23828 h -5.39453 l -2.24609,-1.70703 -3.39844,-0.17968"
|
||||||
|
id="path123" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 113.8711,178.01953 -2.87891,2.17969 0.0937,5.89844 2.78516,2.54687 -0.0664,7.09375 -1.86718,3.90235 H 90.136725"
|
||||||
|
id="path125" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 70.714848,160.26172 h 11.328125 l 3.777344,3.23438 h 44.234373"
|
||||||
|
id="path127" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 185.07813,195.32422 h 13.48438 l 2.42968,-3.91015 V 168.6211 l -4.66796,-5.20313"
|
||||||
|
id="path129" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 189.8086,175.03516 -9.94141,-9.91797 h -19.0664 l -4.79688,-4.85547 H 144.6211"
|
||||||
|
id="path131" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 71.253911,197.48438 H 81.50391 l 3.957032,-2.16016 h 13.84375"
|
||||||
|
id="path133" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 19 KiB |
406
hackerhotel2024/artwork/logos/HackerHotel_Logo_Lasercutter.svg
Normal file
|
@ -0,0 +1,406 @@
|
||||||
|
<?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="750.26471mm"
|
||||||
|
height="350.26483mm"
|
||||||
|
viewBox="0 0 750.26471 350.26483"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1616"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="HackerHotel_Logo_Lasercutter.svg">
|
||||||
|
<defs
|
||||||
|
id="defs1610">
|
||||||
|
<marker
|
||||||
|
style="overflow:visible"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
orient="auto"
|
||||||
|
id="DistanceX">
|
||||||
|
<path
|
||||||
|
id="path2163"
|
||||||
|
style="stroke:#000000;stroke-width:0.5"
|
||||||
|
d="M 3,-3 -3,3 M 0,-5 V 5"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<pattern
|
||||||
|
y="0"
|
||||||
|
x="0"
|
||||||
|
width="8"
|
||||||
|
patternUnits="userSpaceOnUse"
|
||||||
|
id="Hatch"
|
||||||
|
height="8">
|
||||||
|
<path
|
||||||
|
id="path2166"
|
||||||
|
stroke-width="0.25"
|
||||||
|
stroke="#000000"
|
||||||
|
linecap="square"
|
||||||
|
d="M8 4 l-4,4" />
|
||||||
|
<path
|
||||||
|
id="path2168"
|
||||||
|
stroke-width="0.25"
|
||||||
|
stroke="#000000"
|
||||||
|
linecap="square"
|
||||||
|
d="M6 2 l-4,4" />
|
||||||
|
<path
|
||||||
|
id="path2170"
|
||||||
|
stroke-width="0.25"
|
||||||
|
stroke="#000000"
|
||||||
|
linecap="square"
|
||||||
|
d="M4 0 l-4,4" />
|
||||||
|
</pattern>
|
||||||
|
<symbol
|
||||||
|
id="*Model_Space" />
|
||||||
|
<symbol
|
||||||
|
id="*Paper_Space" />
|
||||||
|
<symbol
|
||||||
|
id="SAL-CLOSED_CIRCLE-SO">
|
||||||
|
<path
|
||||||
|
id="path2175"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 0.46679,1122.5197 a 0.46679,0.46679 0 1 0 -0.93358,0 0.46679,0.46679 0 1 0 0.93358,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</symbol>
|
||||||
|
<symbol
|
||||||
|
id="SAL-CLOSED_BLANK-SO">
|
||||||
|
<path
|
||||||
|
id="path2178"
|
||||||
|
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||||
|
d="M -3.779528,1121.8898 0,1122.5197"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2180"
|
||||||
|
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||||
|
d="m 0,1122.5197 -3.779528,0.6299"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2182"
|
||||||
|
style="fill:none;stroke:#000000;stroke-linecap:round"
|
||||||
|
d="m -3.779528,1121.8898 v 1.2598"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</symbol>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.175"
|
||||||
|
inkscape:cx="1865.6713"
|
||||||
|
inkscape:cy="-254.28066"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="g2251"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1027"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="-8"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1613">
|
||||||
|
<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></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Laag 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(124.91212,-122.62353)">
|
||||||
|
<g
|
||||||
|
id="g2423"
|
||||||
|
transform="matrix(0.26458333,0,0,0.26458333,259.2203,249.75595)">
|
||||||
|
<g
|
||||||
|
id="g2251"
|
||||||
|
inkscape:label="0">
|
||||||
|
<path
|
||||||
|
id="path2187"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -1277.4803,-336.37795 h 68.0315 v 128.50393 h 219.21258 v -128.50393 h 75.59055 V 3.779528 h -75.59055 V -139.84252 H -1209.4488 V 3.779528 h -68.0315 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2189"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -846.61417,-336.37795 h 362.83464 V 3.779528 h -68.03149 V -139.84252 h -219.2126 V 3.779528 h -75.59055 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2191"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -771.02362,-215.43307 h 211.65354 v -45.35433 h -211.65354 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2193"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="M -45.354331,-336.37795 H -408.18898 V 3.779528 H -45.354331 V -64.251969 H -340.15748 V -268.34646 h 294.803149 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2195"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="M 30.23622,-336.37795 V 3.779528 H 98.267717 V -139.84252 H 211.65354 L 302.36221,3.779528 h 83.1496 L 272.12598,-170.07874 385.51181,-336.37795 h -83.1496 l -98.26772,128.50393 H 98.267717 v -128.50393 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2197"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 461.10236,-336.37795 h 362.83465 v 68.03149 H 529.13386 v 60.47244 h 294.80315 v 68.0315 H 529.13386 v 75.590551 H 823.93701 V 3.779528 H 461.10236 Z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2199"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="M 899.52756,3.779528 V -336.37795 h 362.83464 v 196.53543 h -75.5905 l 68.0315,143.622048 h -83.1497 L 1103.622,-139.84252 H 967.55905 V 3.779528 Z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2201"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="M 975.11811,-215.43307 H 1186.7717 V -260.7874 H 975.11811 Z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2203"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -1050.7087,366.61417 h 68.03154 v 128.50394 h 219.21259 V 366.61417 h 75.59055 v 340.15748 h -75.59055 V 563.14961 h -219.21259 v 143.62204 h -68.03154 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2205"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 257.00787,366.61417 h 362.83465 v 68.0315 H 325.03937 v 60.47244 h 294.80315 v 68.0315 H 325.03937 v 75.59055 h 294.80315 v 68.03149 H 257.00787 Z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2207"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -612.28346,366.61417 h 355.27559 v 340.15748 h -355.27559 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2209"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -544.25197,434.64567 h 219.2126 v 204.09449 h -219.2126 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2211"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -181.41732,366.61417 h 362.83464 v 68.0315 H 37.795276 V 706.77165 H -37.795276 V 434.64567 H -181.41732 Z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2213"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 687.87402,366.61417 h 75.59055 v 272.12599 h 287.24413 v 68.03149 H 687.87402 Z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2215"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="M -1345.5118,-79.098721 V -217.64707 l -75.5906,-75.59055 v -86.28067 l 77.8046,-77.80454 h 101.3988 l 58.1817,58.18172 a 26.456693,26.456693 0 1 1 -5.3451,5.34506 l -55.9677,-55.96773 h -95.1367 l -73.3765,73.37656 v 80.01854 l 75.5905,75.59055 v 141.679409 a 26.456693,26.456693 0 1 1 -7.559,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2217"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -1126.2992,-19.168996 v 43.411693 l -47.5683,47.568327 H -1365.975 L -1428.6614,9.124587 V -140.11388 a 26.456693,26.456693 0 1 1 7.559,0 V 5.993524 l 58.2585,58.258445 h 185.8453 l 43.1403,-43.140335 v -40.28063 a 26.456693,26.456693 0 1 1 7.5591,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2219"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -671.27997,-40.56162 -31.71216,27.181846 v 45.181526 l -55.12738,55.127382 h -134.12035 a 26.456693,26.456693 0 1 1 0,-7.559055 h 130.98929 l 50.69939,-50.69939 v -45.527136 l 34.35184,-29.444435 a 26.456693,26.456693 0 1 1 4.91937,5.739262 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2221"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="M 128.77529,102.04724 H -12.904114 L -58.258445,56.692913 H -416.01939 a 26.456693,26.456693 0 1 1 0,-7.559055 H -55.127382 L -9.773051,94.488189 H 128.77529 a 26.456693,26.456693 0 1 1 0,7.559051 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2223"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -930.03514,-457.32283 h 50.97075 l 30.23622,30.23622 h 204.09449 l 30.23622,30.23622 h 327.52472 a 26.456693,26.456693 0 1 1 0,7.55905 h -330.65578 l -30.23622,-30.23622 h -204.09449 l -30.23622,-30.23622 h -47.83969 a 26.456693,26.456693 0 1 1 0,-7.55905 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2225"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -128.77529,-147.40157 h 62.784985 l 43.31314,-50.532 v -170.8946 l -80.935615,-80.93561 h -380.4381 a 26.456693,26.456693 0 1 1 0,-7.55905 h 383.56917 l 85.3636,85.3636 v 176.82194 l -47.395522,55.29477 h -66.261658 a 26.456693,26.456693 0 1 1 0,-7.55905 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2227"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="M -1126.2996,623.89346 V 485.16041 l -75.5883,-75.40319 v -93.84244 l 70.2455,-70.24549 h 116.5169 l 58.18174,58.18172 a 26.456693,26.456693 0 1 1 -5.34506,5.34506 l -55.96768,-55.96772 h -110.2548 l -65.8175,65.8175 v 87.57488 l 75.5882,75.40314 v 141.86948 a 26.456693,26.456693 0 1 1 -7.5591,1.1e-4 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2229"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -695.70443,260.7874 h 134.12036 l 45.35433,45.35433 H 75.861909 a 26.456693,26.456693 0 1 1 0,7.55906 H -519.36081 l -45.35433,-45.35433 h -130.98929 a 26.456693,26.456693 0 1 1 0,-7.55906 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2231"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 453.27195,49.133858 h 406.24634 l 45.35433,45.354331 h 110.25478 l 45.3543,-45.354331 h 264.5669 l 28.0223,-28.022224 v -49.782323 l -33.2906,-33.29056 a 26.456693,26.456693 0 1 1 5.3451,-5.345059 l 35.5045,35.504556 v 56.044449 l -32.4502,32.450216 h -264.5669 l -45.3544,45.354327 H 901.74155 L 856.38722,56.692913 H 453.27195 a 26.456693,26.456693 0 1 1 0,-7.559055 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2233"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 559.09872,-457.32283 h 171.91563 l 45.35433,45.35433 h 365.32002 a 26.456693,26.456693 0 1 1 0,7.55905 H 773.23762 l -45.35433,-45.35433 H 559.09872 a 26.456693,26.456693 0 1 1 0,-7.55905 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2235"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 158.74016,-343.66565 v -73.64791 l 40.00927,-40.00927 h 116.51689 l 68.0315,68.03149 h 259.49322 a 26.456693,26.456693 0 1 1 0,7.55906 H 380.16675 l -68.03149,-68.0315 H 201.88049 l -35.58128,35.58128 v 70.51685 a 26.456693,26.456693 0 1 1 -7.55905,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2237"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -1201.8898,562.87825 v 153.66646 l 50.6994,50.69938 h 291.67211 l 43.14034,-43.14033 v -40.28063 a 26.456693,26.456693 0 1 1 7.55905,0 v 43.41169 l -47.56832,47.56833 h -297.93418 l -55.1274,-55.12738 V 562.87825 a 26.456693,26.456693 0 1 1 7.559,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2239"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -688.14537,782.36221 h 123.43023 l 30.23622,-30.23623 h 194.5928 a 26.456693,26.456693 0 1 1 0,7.55906 h -191.46173 l -30.23622,30.23622 h -126.5613 a 26.456693,26.456693 0 1 1 0,-7.55905 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2241"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m -431.1375,812.59843 h 274.61134 l 35.58128,-35.58128 V 666.76238 l -45.35433,-45.35433 v -71.33536 l 34.35184,-29.44444 a 26.456693,26.456693 0 1 1 4.91937,5.73926 l -31.71216,27.18185 v 64.72763 l 45.35433,45.35433 v 116.51689 l -40.00927,40.00927 h -277.7424 a 26.456693,26.456693 0 1 1 0,-7.55905 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2243"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 52.642028,782.36221 h 35.546948 l 30.236224,22.67716 h 72.76517 l 45.35433,-45.35433 h 154.31217 l 22.67717,22.67717 h 181.17757 l 37.79528,30.23622 h 116.11092 a 26.456693,26.456693 0 1 1 0,7.55905 H 629.85532 L 592.06004,789.92126 H 410.40297 L 387.72581,767.24409 H 239.67577 l -45.35433,45.35434 H 115.90551 L 85.669291,789.92126 H 52.642028 a 26.456693,26.456693 0 1 1 0,-7.55905 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2245"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="m 906.81764,759.66845 149.23356,-0.0945 47.5708,-47.45449 V 368.82817 l -43.0636,-43.06361 a 26.456693,26.456693 0 1 0 -5.345,5.34506 l 40.8496,40.84961 v 337.02371 l -43.1394,43.0339 -146.11074,0.0926 a 26.456693,26.456693 0 1 0 0.005,7.55905 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path2247"
|
||||||
|
style="fill:none;stroke:#000000"
|
||||||
|
d="M 920.37513,452.21945 810.96927,336.37795 H 538.90691 l -68.0315,-68.03149 h -146.1074 a 26.456693,26.456693 0 1 1 0,-7.55906 h 149.23847 l 68.03149,68.0315 h 272.18961 l 111.64308,118.21032 a 26.456693,26.456693 0 1 1 -5.49553,5.19023 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g2253"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_KADER_AFSNIJMARKERING-G" />
|
||||||
|
<g
|
||||||
|
id="g2255"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_KADER_CENTERMARKERING-G" />
|
||||||
|
<g
|
||||||
|
id="g2257"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_KADER-G" />
|
||||||
|
<g
|
||||||
|
id="g2259"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_KADER_VOUWMERK-G" />
|
||||||
|
<g
|
||||||
|
id="g2261"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_KADER_ROOSTERVERDELING-G" />
|
||||||
|
<g
|
||||||
|
id="g2263"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_KADER_ROOSTERVERDELING-T35" />
|
||||||
|
<g
|
||||||
|
id="g2265"
|
||||||
|
inkscape:label="X-XX-AL-VERWIJZING_LABEL-S" />
|
||||||
|
<g
|
||||||
|
id="g2267"
|
||||||
|
inkscape:label="X-XX-AL-ALGEMEEN-T25" />
|
||||||
|
<g
|
||||||
|
id="g2269"
|
||||||
|
inkscape:label="X-XX-AL-ALGEMEEN-T50" />
|
||||||
|
<g
|
||||||
|
id="g2271"
|
||||||
|
inkscape:label="X-XX-AL-ALGEMEEN-T35" />
|
||||||
|
<g
|
||||||
|
id="g2273"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_TITELBLOK-G" />
|
||||||
|
<g
|
||||||
|
id="g2275"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_TITELBLOK-S" />
|
||||||
|
<g
|
||||||
|
id="g2277"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_TITELBLOK-T18" />
|
||||||
|
<g
|
||||||
|
id="g2279"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_TITELBLOK-T25" />
|
||||||
|
<g
|
||||||
|
id="g2281"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_TITELBLOK-T35" />
|
||||||
|
<g
|
||||||
|
id="g2283"
|
||||||
|
inkscape:label="X-XX-AL-VERWIJZING_LABEL-G" />
|
||||||
|
<g
|
||||||
|
id="g2285"
|
||||||
|
inkscape:label="X-XX-AL-VERWIJZING_DOORSNEDE-G" />
|
||||||
|
<g
|
||||||
|
id="g2287"
|
||||||
|
inkscape:label="X-XX-AL-VERWIJZING_DOORSNEDE-S" />
|
||||||
|
<g
|
||||||
|
id="g2289"
|
||||||
|
inkscape:label="X-XX-AL-DETAIL1-S" />
|
||||||
|
<g
|
||||||
|
id="g2291"
|
||||||
|
inkscape:label="Defpoints" />
|
||||||
|
<g
|
||||||
|
id="g2293"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_VIEWPORT-GN" />
|
||||||
|
<g
|
||||||
|
id="g2295"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_TITELBLOK_LOGO-G" />
|
||||||
|
<g
|
||||||
|
id="g2297"
|
||||||
|
inkscape:label="X-XX-AL-ALGEMEEN-T18" />
|
||||||
|
<g
|
||||||
|
id="g2299"
|
||||||
|
inkscape:label="X-XX-AL-REFERENTIE-G" />
|
||||||
|
<g
|
||||||
|
id="g2301"
|
||||||
|
inkscape:label="X-XX-AL-MAATVOERING-T18" />
|
||||||
|
<g
|
||||||
|
id="g2303"
|
||||||
|
inkscape:label="X-XX-AL-ORIENTATIE-S" />
|
||||||
|
<g
|
||||||
|
id="g2305"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_LEGENDA-G" />
|
||||||
|
<g
|
||||||
|
id="g2307"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_LEGENDA-T18" />
|
||||||
|
<g
|
||||||
|
id="g2309"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_LEGENDA-T25" />
|
||||||
|
<g
|
||||||
|
id="g2311"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_LEGENDA-T50" />
|
||||||
|
<g
|
||||||
|
id="g2313"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_BIJSCHRIFTEN-T25" />
|
||||||
|
<g
|
||||||
|
id="g2315"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_QRCODE-S" />
|
||||||
|
<g
|
||||||
|
id="g2317"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_SCHAALBALK-S" />
|
||||||
|
<g
|
||||||
|
id="g2319"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_SITUATIE-S" />
|
||||||
|
<g
|
||||||
|
id="g2321"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_LEGENDA-GN" />
|
||||||
|
<g
|
||||||
|
id="g2323"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_WIJZIGINGSBLOK-G" />
|
||||||
|
<g
|
||||||
|
id="g2325"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_WIJZIGINGSBLOK-S" />
|
||||||
|
<g
|
||||||
|
id="g2327"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_WIJZIGINGSBLOK-T25" />
|
||||||
|
<g
|
||||||
|
id="g2329"
|
||||||
|
inkscape:label="X-XX-AL-TEKENBLAD_WIJZIGINGSBLOK-T18" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 17 KiB |
54
hackerhotel2024/artwork/logos/by.svg
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
<?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://web.resource.org/cc/" 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="120" height="42" id="svg2759" sodipodi:version="0.32" inkscape:version="0.45+devel" version="1.0" sodipodi:docname="by.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||||
|
<defs id="defs2761"/>
|
||||||
|
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#8b8b8b" borderopacity="1" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="179" inkscape:cy="89.569904" inkscape:document-units="px" inkscape:current-layer="layer1" width="120px" height="42px" inkscape:showpageshadow="false" inkscape:window-width="1198" inkscape:window-height="624" inkscape:window-x="396" inkscape:window-y="242"/>
|
||||||
|
<metadata id="metadata2764">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1">
|
||||||
|
<g transform="matrix(0.9937728,0,0,0.9936696,-177.69267,6.25128e-7)" id="g260" inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by.png" inkscape:export-xdpi="300.23013" inkscape:export-ydpi="300.23013">
|
||||||
|
<path id="path3817_1_" nodetypes="ccccccc" d="M 181.96579,0.51074 L 296.02975,0.71338 C 297.6235,0.71338 299.04733,0.47705 299.04733,3.89404 L 298.90768,41.46093 L 179.08737,41.46093 L 179.08737,3.75439 C 179.08737,2.06934 179.25046,0.51074 181.96579,0.51074 z" style="fill:#aab2ab"/>
|
||||||
|
|
||||||
|
<path d="M 297.29636,0 L 181.06736,0 C 179.82078,0 178.80613,1.01416 178.80613,2.26074 L 178.80613,41.75732 C 178.80613,42.03906 179.03513,42.26757 179.31687,42.26757 L 299.04734,42.26757 C 299.32908,42.26757 299.55808,42.03905 299.55808,41.75732 L 299.55808,2.26074 C 299.55807,1.01416 298.54343,0 297.29636,0 z M 181.06735,1.02148 L 297.29635,1.02148 C 297.98043,1.02148 298.53658,1.57714 298.53658,2.26074 C 298.53658,2.26074 298.53658,18.20898 298.53658,29.71045 L 215.19234,29.71045 C 212.14742,35.21631 206.28121,38.95459 199.54879,38.95459 C 192.81344,38.95459 186.94869,35.21973 183.90524,29.71045 L 179.8276,29.71045 C 179.8276,18.20899 179.8276,2.26074 179.8276,2.26074 C 179.82761,1.57715 180.38376,1.02148 181.06735,1.02148 z" id="path263"/>
|
||||||
|
|
||||||
|
<g enable-background="new " id="g265">
|
||||||
|
<path d="M 253.07761,32.95605 C 253.39499,32.95605 253.68503,32.98437 253.94773,33.04003 C 254.20945,33.09569 254.43308,33.18749 254.62058,33.31542 C 254.8071,33.44237 254.95261,33.6123 255.05515,33.82323 C 255.15769,34.03514 255.20945,34.29589 255.20945,34.60741 C 255.20945,34.94335 255.13328,35.22264 254.97996,35.44628 C 254.82762,35.67089 254.60105,35.85351 254.30223,35.99706 C 254.71434,36.11522 255.02196,36.32226 255.22508,36.61815 C 255.4282,36.91404 255.52977,37.27049 255.52977,37.68749 C 255.52977,38.02343 255.46434,38.31444 255.33348,38.56054 C 255.20262,38.80566 255.02586,39.00683 254.80516,39.1621 C 254.58348,39.31835 254.33055,39.43358 254.04735,39.5078 C 253.76317,39.583 253.47215,39.6201 253.17235,39.6201 L 249.936,39.6201 L 249.936,32.95604 L 253.07761,32.95604 L 253.07761,32.95605 z M 252.89011,35.65137 C 253.15183,35.65137 253.36667,35.58887 253.53562,35.46485 C 253.70359,35.34083 253.78757,35.13965 253.78757,34.86036 C 253.78757,34.70509 253.75925,34.57716 253.70359,34.47852 C 253.64695,34.37891 253.57273,34.30176 253.47898,34.24512 C 253.38523,34.18946 253.27781,34.15039 253.15671,34.12891 C 253.03561,34.10743 252.90866,34.09668 252.77878,34.09668 L 251.40476,34.09668 L 251.40476,35.65137 L 252.89011,35.65137 z M 252.97604,38.47949 C 253.11959,38.47949 253.25631,38.46582 253.38717,38.4375 C 253.51803,38.40918 253.63326,38.3623 253.73385,38.29785 C 253.83346,38.23242 253.91256,38.14355 253.97213,38.03125 C 254.0317,37.91992 254.061,37.77637 254.061,37.60254 C 254.061,37.26074 253.96432,37.0166 253.77096,36.87012 C 253.5776,36.72461 253.32174,36.65137 253.00436,36.65137 L 251.40475,36.65137 L 251.40475,38.47949 L 252.97604,38.47949 z" id="path267" style="fill:#ffffff"/>
|
||||||
|
|
||||||
|
<path d="M 255.78854,32.95605 L 257.43209,32.95605 L 258.99264,35.58789 L 260.54342,32.95605 L 262.17721,32.95605 L 259.70358,37.0625 L 259.70358,39.62012 L 258.23483,39.62012 L 258.23483,37.02539 L 255.78854,32.95605 z" id="path269" style="fill:#ffffff"/>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g id="g5908_1_" transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||||
|
|
||||||
|
<path id="path5906_1_" cx="296.35416" ry="22.939548" cy="264.3577" type="arc" rx="22.939548" d="M 186.90065,-141.46002 C 186.90623,-132.77923 179.87279,-125.73852 171.19257,-125.73291 C 162.51235,-125.72736 155.47051,-132.76025 155.46547,-141.44098 C 155.46547,-141.44714 155.46547,-141.45331 155.46547,-141.46002 C 155.46043,-150.14081 162.49333,-157.18152 171.17355,-157.18658 C 179.8549,-157.19213 186.89561,-150.15924 186.90065,-141.47845 C 186.90065,-141.4729 186.90065,-141.46619 186.90065,-141.46002 z" style="fill:#ffffff"/>
|
||||||
|
|
||||||
|
<g id="g5706_1_" transform="translate(-289.6157,99.0653)">
|
||||||
|
<path id="path5708_1_" d="M 473.57574,-253.32751 C 477.06115,-249.8421 478.80413,-245.5736 478.80413,-240.52532 C 478.80413,-235.47594 477.09136,-231.25329 473.66582,-227.85741 C 470.03051,-224.28081 465.734,-222.49309 460.77635,-222.49309 C 455.87858,-222.49309 451.65648,-224.26628 448.11122,-227.81261 C 444.56541,-231.35845 442.79277,-235.59563 442.79277,-240.52532 C 442.79277,-245.45391 444.56541,-249.7213 448.11122,-253.32751 C 451.56642,-256.81402 455.7885,-258.557 460.77635,-258.557 C 465.82465,-258.55701 470.09039,-256.81403 473.57574,-253.32751 z M 450.45776,-250.98267 C 447.51104,-248.00629 446.03823,-244.51978 446.03823,-240.52033 C 446.03823,-236.52198 447.49651,-233.06507 450.41247,-230.14966 C 453.32897,-227.23316 456.80096,-225.77545 460.82952,-225.77545 C 464.85808,-225.77545 468.35967,-227.24768 471.33605,-230.19385 C 474.16198,-232.9303 475.57549,-236.37091 475.57549,-240.52033 C 475.57549,-244.63837 474.13903,-248.13379 471.26781,-251.00501 C 468.39714,-253.87568 464.9179,-255.31159 460.82952,-255.31159 C 456.74112,-255.31158 453.28314,-253.86841 450.45776,-250.98267 z M 458.21225,-242.27948 C 457.76196,-243.26117 457.08795,-243.75232 456.18903,-243.75232 C 454.59986,-243.75232 453.80558,-242.68225 453.80558,-240.54321 C 453.80558,-238.40368 454.59986,-237.33471 456.18903,-237.33471 C 457.23841,-237.33471 457.98795,-237.85546 458.43769,-238.89922 L 460.64045,-237.72625 C 459.59052,-235.86077 458.01536,-234.92779 455.91496,-234.92779 C 454.29506,-234.92779 452.99733,-235.42449 452.0229,-236.4168 C 451.0468,-237.41021 450.56016,-238.77953 450.56016,-240.52532 C 450.56016,-242.24035 451.06245,-243.60186 452.06764,-244.61034 C 453.07283,-245.61888 454.32466,-246.12291 455.82545,-246.12291 C 458.04557,-246.12291 459.63526,-245.24803 460.59626,-243.50005 L 458.21225,-242.27948 z M 468.57562,-242.27948 C 468.12475,-243.26117 467.46417,-243.75232 466.5932,-243.75232 C 464.97217,-243.75232 464.16107,-242.68225 464.16107,-240.54321 C 464.16107,-238.40368 464.97217,-237.33471 466.5932,-237.33471 C 467.64429,-237.33471 468.38037,-237.85546 468.80048,-238.89922 L 471.05249,-237.72625 C 470.00421,-235.86077 468.43127,-234.92779 466.33478,-234.92779 C 464.7171,-234.92779 463.42218,-235.42449 462.44831,-236.4168 C 461.47614,-237.41021 460.98896,-238.77953 460.98896,-240.52532 C 460.98896,-242.24035 461.48341,-243.60186 462.47181,-244.61034 C 463.45966,-245.61888 464.71711,-246.12291 466.24531,-246.12291 C 468.4615,-246.12291 470.04896,-245.24803 471.0066,-243.50005 L 468.57562,-242.27948 z"/>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<g id="g275">
|
||||||
|
<circle cx="255.55124" cy="15.31348" r="10.80664" id="circle277" sodipodi:cx="255.55124" sodipodi:cy="15.31348" sodipodi:rx="10.80664" sodipodi:ry="10.80664" style="fill:#ffffff"/>
|
||||||
|
|
||||||
|
<g id="g279">
|
||||||
|
<path d="M 258.67819,12.18701 C 258.67819,11.77051 258.3403,11.4331 257.92526,11.4331 L 253.15182,11.4331 C 252.73678,11.4331 252.39889,11.7705 252.39889,12.18701 L 252.39889,16.95996 L 253.72994,16.95996 L 253.72994,22.61182 L 257.34713,22.61182 L 257.34713,16.95996 L 258.67818,16.95996 L 258.67818,12.18701 L 258.67819,12.18701 z" id="path281"/>
|
||||||
|
|
||||||
|
<circle cx="255.53854" cy="9.1723604" r="1.63281" id="circle283" sodipodi:cx="255.53854" sodipodi:cy="9.1723604" sodipodi:rx="1.63281" sodipodi:ry="1.63281"/>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<path clip-rule="evenodd" d="M 255.5239,3.40723 C 252.29148,3.40723 249.55515,4.53516 247.31589,6.79102 C 245.01804,9.12452 243.8696,11.88672 243.8696,15.07569 C 243.8696,18.26466 245.01804,21.00733 247.31589,23.30225 C 249.61374,25.59668 252.35007,26.74414 255.5239,26.74414 C 258.73679,26.74414 261.52195,25.58789 263.87742,23.27295 C 266.09715,21.07568 267.2075,18.34326 267.2075,15.07568 C 267.2075,11.8081 266.07762,9.04687 263.8198,6.79101 C 261.56003,4.53516 258.79538,3.40723 255.5239,3.40723 z M 255.55319,5.50684 C 258.20163,5.50684 260.45065,6.44092 262.30026,8.30811 C 264.1694,10.15528 265.10397,12.41114 265.10397,15.07569 C 265.10397,17.75928 264.18893,19.98633 262.35885,21.75587 C 260.43014,23.66212 258.16256,24.61476 255.55319,24.61476 C 252.94284,24.61476 250.69381,23.67189 248.80612,21.78517 C 246.91647,19.89845 245.97311,17.66212 245.97311,15.0757 C 245.97311,12.48879 246.92721,10.23341 248.83541,8.30812 C 250.6655,6.44092 252.90475,5.50684 255.55319,5.50684 z" id="path285" style="fill-rule:evenodd"/>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 9.6 KiB |
639
hackerhotel2024/artwork/outro.svg
Normal file
|
@ -0,0 +1,639 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
viewBox="0 0 1920 1080"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||||
|
sodipodi:docname="outro.svg"
|
||||||
|
enable-background="new"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath18">
|
||||||
|
<path
|
||||||
|
d="m 312.117,871.087 c -6.264,-1.72 -10.84,-10.647 -14.167,-15.645 l 0,0 c -4.194,-6.302 -7.979,-12.897 -11.534,-19.58 l 0,0 c -6.794,-12.771 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.658,-134.44 c -34.506,-10.769 -67.49,-29.469 -99.699,-48.874 l 0,0 c 12.812,-37.59 55.526,-58.834 95.24,-58.766 l 0,0 c 0.024,0 0.047,0 0.071,0 l 0,0 c -6.665,-0.282 -13.34,-0.125 -19.96,0.504 l 0,0 c 17.08,-29.328 37.542,-57.811 69.853,-68.2 l 0,0 c 26.039,-8.372 54.524,-0.76 79.568,10.242 l 0,0 c 16.073,7.061 37.811,23.424 50.174,37.459 l 0,0 c -5.443,-6.931 -9.356,-11.85 -9.378,-14.226 l 0,0 c -0.036,-4.022 11.889,-7.249 15.319,-7.836 l 0,0 c 4.537,-0.776 55.479,-8.821 65.762,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.162 l 0,0 c 9.775,1.619 19.405,4.609 27.984,9.637 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.648 -9.272,-36.305 l 0,0 c -0.171,-0.666 -0.311,-1.344 -0.413,-2.024 l 0,0 c -3.39,-22.815 -3.156,-46.468 -3.991,-69.493 l 0,0 c -0.901,-24.858 -1.418,-49.754 -2.83,-74.59 l 0,0 c -0.791,-13.917 -3.767,-27.11 -7.947,-40.362 l 0,0 c -1.785,-5.66 -3.752,-11.282 -5.94,-16.816 l 0,0 c 2.853,8.361 4.713,17.016 5.261,25.851 l 0,0 c 0.555,8.93 -0.352,17.967 -2.745,26.592 l 0,0 c -2.662,9.599 -7.206,18.729 -13.686,26.328 l 0,0 c -1.536,1.801 -2.531,3.044 -3.792,5.045 l 0,0 c -1.313,2.081 -3.691,4.003 -5.535,5.683 l 0,0 c -4.28,3.901 -8.981,7.314 -13.802,10.512 l 0,0 c -8.952,5.937 -18.089,11.527 -28.039,15.555 l 0,0 c -22.597,9.151 -48.915,13.05 -72.999,8.126 l 0,0 c -49.265,-10.074 -94.2,-46.844 -113.089,-93.79 l 0,0 c -7.565,-18.805 -8.616,-45.719 -6.222,-65.756 l 0,0 c 7.2,-60.243 65.422,-100.088 125.514,-108.448 l 0,0 c 24.824,-3.455 52.18,-1.693 76.294,4.869 l 0,0 c 50.617,13.775 89.298,54.937 112.844,99.669 l 0,0 c 2.794,5.307 14.736,24.552 14.675,26.909 l 0,0 c 0.267,-10.318 3.457,-20.545 9.106,-29.184 l 0,0 16.227,92.559 c 1.621,-9.021 7.294,-17.234 15.157,-21.945 l 0,0 0.204,60.905 c 1.41,-9.085 6.602,-14.523 14.491,-19.244 l 0,0 c -4.166,27.38 -4.717,52.34 -2.482,79.945 l 0,0 c 7.063,-4.324 13.65,-8.62 20.658,-10.281 l 0,0 c -3.651,26.792 -12.97,49.694 -16.621,76.487 l 0,0 c 10.534,-8.562 10.319,-10.84 19.664,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.882,-0.923 c -10.728,25.86 -25.45,41.841 -43.486,63.254 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.489 l 0,0 c -14.416,20.027 -33.431,26.496 -56.345,35.655 l 0,0 c 14.572,6.667 21.146,13.146 30.811,25.412 l 0,0 c -25.908,4.436 -43.613,6.974 -69.672,10.409 l 0,0 c 9.984,6.221 25.959,11.735 32.646,23.966 l 0,0 c -23.093,-0.068 -51.514,-1.99 -74.606,-2.058 l 0,0 c 3.118,9.15 16.024,22.056 15.344,33.286 l 0,0 -67.289,-24.136 c -2.029,7.646 4.971,10.282 1.623,31.588 l 0,0 -54.542,-23.538 c 0,6.9 9.282,21.518 5.236,31.248 l 0,0 c -1.052,2.53 -27.624,-18.934 -36.917,-20.788 l 0,0 c 0,0 19.327,52.162 14.75,52.15 l 0,0 c -15.455,-0.042 -33.75,-18.848 -49.058,-21.738 l 0,0 c -3.6,5.947 -6.717,12.18 -9.698,18.456 l 0,0 c -5.957,12.543 -11.32,25.358 -17.137,37.966 l 0,0 c -2.809,6.088 -5.71,12.138 -8.882,18.045 l 0,0 c -2.044,3.808 -3.89,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.531 -9.801,2.531 l 0,0 c -1.401,0 -2.751,-0.155 -3.948,-0.484 m 41.469,-271.97 c -2.238,-1.885 -4.527,-3.722 -6.865,-5.509 l 0,0 c 2.327,1.793 4.616,3.631 6.865,5.509 m 85.349,-45.569 c 0,0 0,0 0,0 M 383.533,241.747 c -16.443,19.302 -23.431,46.211 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.037 39.804,56.683 l 0,0 c 20.808,11.645 47.481,12.699 68.622,1.67 l 0,0 c 21.142,-11.029 35.713,-34.183 35.364,-58.026 l 0,0 c -0.349,-23.843 -16.558,-46.24 -39.055,-54.146 l 0,0 c -13.248,-4.655 -27.77,-4.347 -39.5,3.375 l 0,0 c -11.729,7.722 -19.3,22.583 -15.553,36.117 l 0,0 c 3.746,13.535 19.143,23.26 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.83 14.374,-7.338 l 0,0 c 6.351,-3.339 14.186,-5.411 20.409,0.204 l 0,0 c 2.348,2.119 3.893,5.052 4.395,8.174 l 0,0 c 1.65,10.257 -5.836,19.545 -14.699,22.812 l 0,0 c -6.84,2.521 -14.529,2.26 -21.749,1.25 l 0,0 c -23.7,-3.318 -46.176,-17.837 -57.931,-38.681 l 0,0 c -11.755,-20.845 -11.322,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.479,-17.733 32.216,-21.387 l 0,0 c -16.77,4.192 -32.281,13.594 -43.507,26.771 m 146.601,21.02 c 0.24,0.346 0.478,0.693 0.716,1.042 l 0,0 c -2.094,-3.187 -4.311,-6.295 -6.662,-9.313 l 0,0 c -5.252,-6.741 -11.254,-13.003 -17.851,-18.524 l 0,0 c 9.038,7.807 17.014,17.001 23.797,26.795"
|
||||||
|
id="path20-4"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath28">
|
||||||
|
<path
|
||||||
|
d="m 314.284,874.024 c -6.264,-1.721 -10.84,-10.648 -14.166,-15.645 l 0,0 c -4.194,-6.302 -7.981,-12.897 -11.535,-19.58 l 0,0 c -6.794,-12.772 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.657,-134.44 c -34.506,-10.769 -67.491,-29.47 -99.701,-48.874 l 0,0 c 12.813,-37.59 55.528,-58.835 95.241,-58.767 l 0,0 c 0.017,0 0.031,0 0.048,0 l 0,0 c -6.659,-0.281 -13.323,-0.124 -19.938,0.505 l 0,0 c 17.081,-29.328 37.544,-57.812 69.854,-68.2 l 0,0 c 26.039,-8.373 54.524,-0.761 79.568,10.242 l 0,0 c 16.072,7.06 37.807,23.42 50.171,37.455 l 0,0 c -5.441,-6.928 -9.354,-11.847 -9.375,-14.223 l 0,0 c -0.036,-4.022 11.889,-7.249 15.32,-7.836 l 0,0 c 4.536,-0.776 55.478,-8.82 65.761,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.161 l 0,0 c 9.774,1.618 19.404,4.608 27.984,9.636 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.647 -9.272,-36.304 l 0,0 c -0.171,-0.666 -0.312,-1.345 -0.413,-2.025 l 0,0 c -3.39,-22.814 -3.157,-46.467 -3.991,-69.492 l 0,0 c -0.902,-24.859 -1.418,-49.754 -2.83,-74.591 l 0,0 c -0.791,-13.916 -3.768,-27.109 -7.947,-40.362 l 0,0 c -1.785,-5.661 -3.753,-11.284 -5.942,-16.82 l 0,0 c 2.854,8.362 4.714,17.02 5.263,25.856 l 0,0 c 0.554,8.929 -0.353,17.967 -2.745,26.592 l 0,0 c -2.662,9.598 -7.206,18.729 -13.686,26.327 l 0,0 c -1.536,1.801 -3.494,3.382 -4.757,5.383 l 0,0 c -1.312,2.081 -2.726,3.665 -4.57,5.345 l 0,0 c -4.28,3.901 -8.981,7.315 -13.802,10.512 l 0,0 c -8.952,5.938 -18.598,10.791 -28.547,14.819 l 0,0 c -22.597,9.149 -47.586,13.078 -71.67,8.153 l 0,0 c -49.265,-10.074 -95.021,-46.134 -113.91,-93.081 l 0,0 c -7.566,-18.804 -8.616,-45.718 -6.222,-65.755 l 0,0 c 7.2,-60.244 65.422,-100.089 125.514,-108.45 l 0,0 c 24.823,-3.453 52.179,-1.692 76.293,4.87 l 0,0 c 50.618,13.775 89.298,54.937 112.845,99.669 l 0,0 c 2.794,5.306 14.736,24.552 14.675,26.91 l 0,0 c 0.266,-10.318 3.457,-20.545 9.105,-29.185 l 0,0 16.228,92.559 c 1.622,-9.021 7.294,-17.234 15.156,-21.944 l 0,0 0.204,60.905 c 1.411,-9.085 6.603,-14.524 14.491,-19.245 l 0,0 c -4.165,27.381 -4.717,52.34 -2.481,79.945 l 0,0 c 7.063,-4.324 13.65,-8.619 20.657,-10.281 l 0,0 c -3.651,26.793 -12.969,49.695 -16.621,76.488 l 0,0 c 10.535,-8.562 10.321,-10.841 19.665,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.881,-0.924 c -10.726,25.861 -25.449,41.842 -43.485,63.255 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.488 l 0,0 c -14.416,20.028 -33.431,26.496 -56.345,35.655 l 0,0 c 14.571,6.668 21.146,13.147 30.811,25.413 l 0,0 c -25.908,4.436 -43.613,6.973 -69.673,10.409 l 0,0 c 9.985,6.22 25.961,11.735 32.648,23.966 l 0,0 c -23.094,-0.069 -51.515,-1.991 -74.608,-2.06 l 0,0 c 3.119,9.152 16.025,22.058 15.345,33.287 l 0,0 -67.289,-24.135 c -2.03,7.644 4.971,10.282 1.624,31.588 l 0,0 -54.543,-23.538 c 0,6.899 9.282,21.517 5.235,31.248 l 0,0 c -1.052,2.53 -27.623,-18.935 -36.917,-20.789 l 0,0 c 0,0 19.328,52.162 14.751,52.15 l 0,0 c -15.456,-0.043 -33.751,-18.848 -49.059,-21.737 l 0,0 c -3.6,5.946 -6.717,12.18 -9.697,18.454 l 0,0 c -5.958,12.545 -11.32,25.36 -17.137,37.968 l 0,0 c -2.808,6.086 -5.71,12.137 -8.882,18.045 l 0,0 c -2.044,3.808 -3.889,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.53 -9.801,2.53 l 0,0 c -1.401,0 -2.752,-0.154 -3.948,-0.483 m 41.469,-271.971 c -2.231,-1.88 -4.511,-3.71 -6.842,-5.492 l 0,0 c 2.319,1.787 4.601,3.62 6.842,5.492 m 85.349,-45.569 c 0,0 0,0 0,0 M 385.7,244.684 c -16.443,19.301 -23.431,46.21 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.036 39.804,56.681 l 0,0 c 20.807,11.646 47.481,12.699 68.623,1.672 l 0,0 c 21.141,-11.029 35.712,-34.184 35.362,-58.026 l 0,0 C 510.325,292.31 494.456,269.141 471.96,261.234 l 0,0 c -13.249,-4.656 -28.749,-3.925 -40.478,3.797 l 0,0 c -11.73,7.722 -18.663,22.934 -14.915,36.468 l 0,0 c 3.747,13.534 19.144,23.259 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.831 14.374,-7.339 l 0,0 c 6.352,-3.338 14.186,-5.411 20.41,0.205 l 0,0 c 2.347,2.118 3.891,5.052 4.393,8.173 l 0,0 c 1.651,10.257 -5.876,18.554 -14.739,21.821 l 0,0 c -6.84,2.522 -14.381,2.425 -21.601,1.414 l 0,0 c -23.699,-3.317 -46.283,-17.011 -58.038,-37.854 l 0,0 c -11.755,-20.844 -11.323,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.481,-17.733 32.218,-21.388 l 0,0 c -16.769,4.192 -32.283,13.595 -43.509,26.773 m 146.6,21.019 c 0.248,0.358 0.494,0.716 0.739,1.075 l 0,0 c -2.1,-3.197 -4.324,-6.317 -6.684,-9.346 l 0,0 c -5.241,-6.727 -11.231,-12.977 -17.813,-18.49 l 0,0 c 9.023,7.8 16.985,16.98 23.758,26.761"
|
||||||
|
id="path30"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1428">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1430"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1436">
|
||||||
|
<path
|
||||||
|
d="m 153.069,874.507 547.722,0 0,-721.1 -547.722,0 0,721.1 z"
|
||||||
|
id="path1438"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,239.82324,731.99097)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1468">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1470" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1472" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1480">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1482"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,324.3374,727.64069)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1516">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1518" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1520" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1528">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1530"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1560">
|
||||||
|
<path
|
||||||
|
d="m 529.474,574.673 c 6.87,-7.702 13.741,-15.405 20.611,-23.107 l 0,0 c 2.925,-3.279 6.035,-7.149 6.026,-11.402 l 0,0 c -10e-4,-0.461 -0.038,-0.925 -0.116,-1.394 l 0,0 c -0.679,-4.076 -4.235,-6.974 -7.641,-9.312 l 0,0 c -8.134,-5.582 -16.812,-10.954 -24.245,-17.441 l 0,0 c -3.348,-2.922 -15.688,-9.847 -17.856,-11.768 l 0,0 c -10.514,-9.322 -29.698,-8.23 -43.695,-6.992 l 0,0 c -2.978,0.263 -6.376,0.501 -8.544,-1.558 l 0,0 c -1.461,-1.388 -1.959,-3.483 -2.345,-5.461 l 0,0 c -0.541,-2.777 -0.961,-5.706 -0.964,-8.569 l 0,0 c -0.005,-3.924 0.773,-7.721 3.093,-10.826 l 0,0 c 5.5,-7.361 17.621,-6.775 24.515,-0.701 l 0,0 c 3.855,3.397 7.098,8.39 12.216,8.854 l 0,0 c 5.187,0.469 9.462,-4.158 11.606,-8.906 l 0,0 c 2.145,-4.748 3.149,-10.106 6.358,-14.211 l 0,0 c 6.392,-8.178 21.134,-7.2 26.389,1.752 l 0,0 c 1.293,2.202 1.885,4.672 1.889,7.167 l 0,0 c 0.013,7.643 -5.488,15.526 -13.22,16.729 l 0,0 c -0.999,1.438 -1.44,3.117 -1.442,4.842 l 0,0 c -0.002,2.689 1.063,5.487 2.742,7.64 l 0,0 c 2.755,3.534 6.807,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.214 l 0,0 c 2.132,2.238 4.348,4.93 4.35,7.937 l 0,0 c 0,0.269 -0.017,0.54 -0.054,0.814 l 0,0 c -0.28,2.082 -1.645,3.833 -2.959,5.471 l 0,0 c -9.167,11.424 -18.333,22.849 -27.5,34.273 l 0,0 -23.071,-6.074 z"
|
||||||
|
id="path1562"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1646">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1648"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1658">
|
||||||
|
<path
|
||||||
|
d="m 444.813,571.047 c 6.832,-7.66 13.665,-15.32 20.499,-22.979 l 0,0 c 3.241,-3.634 6.709,-7.994 5.908,-12.797 l 0,0 c -0.056,-0.338 -0.132,-0.668 -0.226,-0.99 l 0,0 c -0.987,-3.65 -4.29,-6.315 -7.463,-8.492 l 0,0 c -8.135,-5.582 -16.812,-10.954 -24.246,-17.441 l 0,0 c -3.348,-2.922 -15.687,-9.846 -17.855,-11.769 l 0,0 c -10.514,-9.321 -29.699,-8.229 -43.695,-6.992 l 0,0 c -2.979,0.264 -6.375,0.503 -8.543,-1.557 l 0,0 c -0.945,-0.898 -1.487,-2.091 -1.857,-3.358 l 0,0 c -0.178,-0.638 -0.315,-1.291 -0.44,-1.933 l 0,0 c -1.283,-6.581 -1.885,-14.024 2.129,-19.396 l 0,0 c 5.499,-7.36 17.621,-6.774 24.514,-0.7 l 0,0 c 3.856,3.397 7.099,8.391 12.216,8.854 l 0,0 c 5.189,0.47 9.464,-4.158 11.607,-8.906 l 0,0 c 2.144,-4.747 3.15,-10.106 6.357,-14.211 l 0,0 c 6.393,-8.177 21.135,-7.199 26.39,1.752 l 0,0 c 0.57,0.971 1.003,1.993 1.311,3.046 l 0,0 c 2.398,8.633 -3.607,19.267 -12.691,20.68 l 0,0 c -1.621,2.332 -1.772,5.302 -0.964,8.064 l 0,0 c 0.46,1.658 1.268,3.248 2.313,4.588 l 0,0 c 2.754,3.534 6.806,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.215 l 0,0 c 1.669,1.751 3.39,3.782 4.06,6.024 l 0,0 c 0.225,0.825 0.306,1.678 0.187,2.556 l 0,0 c -0.279,2.082 -1.644,3.832 -2.959,5.47 l 0,0 c -9.166,11.425 -18.334,22.85 -27.5,34.274 l 0,0 -22.909,-6.031 z"
|
||||||
|
id="path1660"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.23022283"
|
||||||
|
inkscape:cx="601.59106"
|
||||||
|
inkscape:cy="1322.6316"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer3"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="1870"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="79.389313,583.96947"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide5258"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="752.5,175"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5684"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="622.14288,33.487991"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5686"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="512,936"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5806"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1852.7369,1139.6332"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide5827"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Background">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="rect3797"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
x="0"
|
||||||
|
y="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Text"
|
||||||
|
style="display:inline">
|
||||||
|
<g
|
||||||
|
id="all"
|
||||||
|
inkscape:label="#all">
|
||||||
|
<g
|
||||||
|
id="g3984"
|
||||||
|
transform="translate(-3.663589,-7.2407)">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 212.06547,284.45341 h -17.60391 v -35.20783 h -52.81173 v 35.20783 h -17.60392 v -83.6319 h 17.60392 v 30.82016 h 52.81173 v -30.82016 h 17.60391 z m 0,0"
|
||||||
|
id="path11" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 229.66938,200.82151 h 88.01954 v 83.6319 H 300.08501 V 249.24558 H 247.2733 v 35.20783 h -17.60392 v -83.6319 m 17.60392,30.82016 h 52.81171 V 218.43876 H 247.2733 Z m 0,0"
|
||||||
|
id="path13" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 352.89674,218.43876 v 48.41073 h 70.42902 v 17.60392 h -88.03293 v -83.6319 h 88.03293 v 17.61725 z m 0,0"
|
||||||
|
id="path15" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 499.90275,240.88376 29.04658,43.56965 H 508.0379 l -23.43189,-35.20783 h -26.07243 v 35.20783 h -17.60391 v -83.61856 h 17.60391 v 30.79351 h 27.05932 l 22.445,-30.79351 h 20.91143 z m 0,0"
|
||||||
|
id="path17" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 564.15715,249.24558 v 17.60391 h 70.41565 v 17.60392 h -88.01956 v -83.61856 h 88.01956 v 17.60391 h -70.41565 v 13.20291 h 70.41565 v 17.60391 z m 0,0"
|
||||||
|
id="path19" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="M 740.19602,249.24558 H 722.5921 l 17.60392,35.20783 h -20.89783 l -17.60391,-35.20783 h -31.91366 v 35.20783 h -17.60391 v -83.61856 h 88.01931 v 48.41073 m -70.4154,-17.60391 h 52.81148 v -13.20291 h -52.81148 z m 0,0"
|
||||||
|
id="path21" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 145.70405,191.07266 c 0,-3.04065 2.46724,-5.49452 5.50789,-5.49452 3.02733,0 5.49457,2.45387 5.49457,5.49452 0,3.0407 -2.46724,5.50788 -5.49457,5.50788 -3.04065,0 -5.50789,-2.46718 -5.50789,-5.50788"
|
||||||
|
id="path23" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 103.65469,269.93019 c 0,-3.04067 2.46724,-5.50788 5.49458,-5.50788 3.04065,0 5.50788,2.46721 5.50788,5.50788 0,3.04068 -2.46723,5.49455 -5.50788,5.49455 -3.02734,0 -5.49458,-2.45387 -5.49458,-5.49455"
|
||||||
|
id="path25" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 155.18615,271.75726 c 0,-3.04068 2.45387,-5.49455 5.49457,-5.49455 3.04065,0 5.50788,2.45387 5.50788,5.49455 0,3.04068 -2.46723,5.50791 -5.50788,5.50791 -3.0407,0 -5.49457,-2.46723 -5.49457,-5.50791"
|
||||||
|
id="path27" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 205.61069,302.93754 c 0,-3.0407 2.46721,-5.50789 5.50791,-5.50789 3.02731,0 5.49455,2.46719 5.49455,5.50789 0,3.04065 -2.46724,5.49452 -5.49455,5.49452 -3.0407,0 -5.50791,-2.45387 -5.50791,-5.49452"
|
||||||
|
id="path29" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 269.79831,268.08981 c 0,-3.0407 2.45387,-5.49457 5.49452,-5.49457 3.04071,0 5.50789,2.45387 5.50789,5.49457 0,3.04065 -2.46718,5.50788 -5.50789,5.50788 -3.04065,0 -5.49452,-2.46723 -5.49452,-5.50788"
|
||||||
|
id="path31" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 196.4353,172.73527 c 0,-3.0407 2.46723,-5.49457 5.50794,-5.49457 3.04065,0 5.50788,2.45387 5.50788,5.49457 0,3.04065 -2.46723,5.49454 -5.50788,5.49454 -3.04071,0 -5.50794,-2.45389 -5.50794,-5.49454"
|
||||||
|
id="path33" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 304.63268,172.73527 c 0,-3.0407 2.46724,-5.49457 5.50789,-5.49457 3.0407,0 5.49457,2.45387 5.49457,5.49457 0,3.04065 -2.45387,5.49454 -5.49457,5.49454 -3.04065,0 -5.50789,-2.45389 -5.50789,-5.49454"
|
||||||
|
id="path35" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 744.75716,262.90194 c 0,-3.04065 2.46711,-5.50788 5.49447,-5.50788 3.04067,0 5.50804,2.46723 5.50804,5.50788 0,3.02736 -2.46737,5.49457 -5.50804,5.49457 -3.02736,0 -5.49447,-2.46721 -5.49447,-5.49457"
|
||||||
|
id="path37" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 321.14302,295.60256 c 0,-3.0407 2.46721,-5.50789 5.49455,-5.50789 3.0407,0 5.50789,2.46719 5.50789,5.50789 0,3.04065 -2.46719,5.49454 -5.50789,5.49454 -3.02734,0 -5.49455,-2.45389 -5.49455,-5.49454"
|
||||||
|
id="path39" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 532.02995,295.90929 c 0,-3.04068 2.46711,-5.50789 5.50778,-5.50789 3.04068,0 5.49473,2.46721 5.49473,5.50789 0,3.04068 -2.45405,5.49457 -5.49473,5.49457 -3.04067,0 -5.50778,-2.45389 -5.50778,-5.49457"
|
||||||
|
id="path41" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 466.0152,306.91175 c 0,-3.0407 2.4539,-5.50789 5.50789,-5.50789 3.02736,0 5.49457,2.46719 5.49457,5.50789 0,3.04065 -2.46721,5.49452 -5.49457,5.49452 -3.05399,0 -5.50789,-2.45387 -5.50789,-5.49452"
|
||||||
|
id="path43" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 468.76249,205.74262 c 0,-3.04071 2.46724,-5.49458 5.50789,-5.49458 3.02736,0 5.49457,2.45387 5.49457,5.49458 0,3.04065 -2.46721,5.49452 -5.49457,5.49452 -3.04065,0 -5.50789,-2.45387 -5.50789,-5.49452"
|
||||||
|
id="path45" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 590.70949,189.53898 c 0,-3.02734 2.46736,-5.49452 5.50804,-5.49452 3.04067,0 5.50778,2.45387 5.50778,5.49452 0,3.0407 -2.46711,5.50788 -5.50778,5.50788 -3.04068,0 -5.50804,-2.46718 -5.50804,-5.50788"
|
||||||
|
id="path47" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 559.54275,173.042 c 0,-3.04068 2.4538,-5.50789 5.49447,-5.50789 3.04068,0 5.50778,2.46721 5.50778,5.50789 0,3.04067 -2.4671,5.49457 -5.50778,5.49457 -3.04067,0 -5.49447,-2.4539 -5.49447,-5.49457"
|
||||||
|
id="path49" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 711.74989,184.04446 c 0,-3.0407 2.45379,-5.49457 5.49447,-5.49457 3.04067,0 5.50778,2.45387 5.50778,5.49457 0,3.04065 -2.46711,5.49452 -5.50778,5.49452 -3.04068,0 -5.49447,-2.45387 -5.49447,-5.49452"
|
||||||
|
id="path51" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 390.82517,247.49856 c 0,-3.0407 2.46721,-5.50791 5.50791,-5.50791 3.02731,0 5.49455,2.46721 5.49455,5.50791 0,3.02731 -2.46724,5.49454 -5.49455,5.49454 -3.0407,0 -5.50791,-2.46723 -5.50791,-5.49454"
|
||||||
|
id="path53" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 365.1528,187.40518 c 0,-3.04065 2.46721,-5.49455 5.50789,-5.49455 3.02733,0 5.49457,2.4539 5.49457,5.49455 0,3.0407 -2.46724,5.49457 -5.49457,5.49457 -3.04068,0 -5.50789,-2.45387 -5.50789,-5.49457"
|
||||||
|
id="path55" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 83.663589,242.41739 c 0,-3.04065 2.467211,-5.49452 5.507912,-5.49452 3.02731,0 5.494546,2.45387 5.494546,5.49452 0,3.0407 -2.467236,5.50794 -5.494546,5.50794 -3.040701,0 -5.507912,-2.46724 -5.507912,-5.50794"
|
||||||
|
id="path57" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 151.89208,190.91262 135.47512,173.042 h -25.21895 l -19.257626,16.80371 v 20.79131 l 18.337416,18.4841 v 40.19561"
|
||||||
|
id="path59" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 89.171476,241.80393 v 44.00978 l 13.749744,13.76306 h 47.67726 l 10.08224,-13.89642 v -14.53658"
|
||||||
|
id="path61" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 211.11857,303.24424 h 38.5019 l 13.74972,-13.14957 v -10.22896 l 9.48212,-9.93552"
|
||||||
|
id="path63" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 201.94321,173.042 h 18.33741 l 14.36318,7.33495 h 42.48944 l 7.80175,7.33496 h 85.7257"
|
||||||
|
id="path65" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 396.33306,248.23203 h 22.00489 l 11.90933,-13.76306 V 192.29963 L 410.2295,173.042 H 310.14059"
|
||||||
|
id="path67" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 328.47798,295.90929 h 93.8342 l 6.72149,11.00246 h 42.48945"
|
||||||
|
id="path69" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 537.53773,295.90929 h 104.52986 l 10.08224,11.00246 h 28.41975 l 10.24228,-11.00246 h 61.02681 l 11.06908,-5.96131 0.18692,-14.89665 -11.61602,-11.26919"
|
||||||
|
id="path71" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 474.27038,205.12913 v -23.83196 l 12.68283,-8.25517 h 23.07177 l 22.00497,16.51034 h 60.52007"
|
||||||
|
id="path73" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.29086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 568.70472,173.042 h 42.18256 l 10.389,11.00246 h 95.96808"
|
||||||
|
id="path75" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 624.10366,435.47364 h -17.67049 v -35.35452 h -53.05192 v 35.35452 h -17.67048 v -83.97867 h 17.67048 v 30.9402 h 53.05192 v -30.9402 h 17.67049 z m 0,0"
|
||||||
|
id="path77" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 730.19392,435.47364 h -88.4062 v -83.97867 h 88.4062 z m -70.7224,-17.67059 h 53.03834 V 369.1789 h -53.03834 z m 0,0"
|
||||||
|
id="path79" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 836.27087,369.1789 h -35.35455 v 66.29474 H 783.23227 V 369.1789 h -35.36786 v -17.68393 h 88.40646 z m 0,0"
|
||||||
|
id="path81" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 871.62541,400.11912 v 17.68393 h 70.72241 v 17.67059 h -88.39315 v -83.97867 h 88.39315 v 17.68393 h -70.72241 v 13.25627 h 70.72241 v 17.68395 z m 0,0"
|
||||||
|
id="path83" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 960.03162,435.47364 v -83.97867 h 17.68406 v 66.30808 h 70.72242 v 17.67059 z m 0,0"
|
||||||
|
id="path85" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 557.10202,342.01287 c 0,-3.05401 2.48068,-5.53454 5.52135,-5.53454 3.05399,0 5.53442,2.48053 5.53442,5.53454 0,3.04065 -2.48043,5.52123 -5.53442,5.52123 -3.04067,0 -5.52135,-2.48058 -5.52135,-5.52123"
|
||||||
|
id="path87" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 610.51395,327.27626 c 0,-3.05402 2.46736,-5.5212 5.52136,-5.5212 3.05399,0 5.52109,2.46718 5.52109,5.5212 0,3.05399 -2.4671,5.52123 -5.52109,5.52123 -3.054,0 -5.52136,-2.46724 -5.52136,-5.52123"
|
||||||
|
id="path89" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 811.26538,338.33203 c 0,-3.05399 2.4671,-5.53454 5.5211,-5.53454 3.05399,0 5.52109,2.48055 5.52109,5.53454 0,3.0407 -2.4671,5.52125 -5.52109,5.52125 -3.054,0 -5.5211,-2.48055 -5.5211,-5.52125"
|
||||||
|
id="path91" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 859.14264,327.27626 c 0,-3.05402 2.48042,-5.5212 5.5211,-5.5212 3.05399,0 5.52135,2.46718 5.52135,5.5212 0,3.05399 -2.46736,5.52123 -5.52135,5.52123 -3.04068,0 -5.5211,-2.46724 -5.5211,-5.52123"
|
||||||
|
id="path93" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 1015.684,377.00732 c 0,-3.05401 2.4805,-5.53456 5.5211,-5.53456 3.054,0 5.5347,2.48055 5.5347,5.53456 0,3.04065 -2.4673,5.52123 -5.5347,5.52123 -3.0406,0 -5.5211,-2.48058 -5.5211,-5.52123"
|
||||||
|
id="path95" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 513.21238,420.89706 c 0,-3.05399 2.46721,-5.52122 5.52123,-5.52122 3.05401,0 5.53449,2.46723 5.53449,5.52122 0,3.05402 -2.48048,5.52126 -5.53449,5.52126 -3.05402,0 -5.52123,-2.46724 -5.52123,-5.52126"
|
||||||
|
id="path97" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 588.72248,422.73747 c 0,-3.05401 2.48043,-5.52122 5.52136,-5.52122 3.05399,0 5.5211,2.46721 5.5211,5.52122 0,3.05402 -2.46711,5.52123 -5.5211,5.52123 -3.04093,0 -5.52136,-2.46721 -5.52136,-5.52123"
|
||||||
|
id="path99" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 611.74098,454.35784 c 0,-3.05402 2.48042,-5.53454 5.52109,-5.53454 3.05399,0 5.52136,2.48052 5.52136,5.53454 0,3.04065 -2.46737,5.52122 -5.52136,5.52122 -3.04067,0 -5.52109,-2.48057 -5.52109,-5.52122"
|
||||||
|
id="path101" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 709.34935,446.98286 c 0,-3.05402 2.48043,-5.5212 5.5211,-5.5212 3.05399,0 5.53467,2.46718 5.53467,5.5212 0,3.05399 -2.48068,5.53457 -5.53467,5.53457 -3.04067,0 -5.5211,-2.48058 -5.5211,-5.53457"
|
||||||
|
id="path103" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 492.95454,393.26427 c 0,-3.0407 2.46721,-5.52125 5.5212,-5.52125 3.05404,0 5.52125,2.48055 5.52125,5.52125 0,3.05399 -2.46721,5.53455 -5.52125,5.53455 -3.05399,0 -5.5212,-2.48056 -5.5212,-5.53455"
|
||||||
|
id="path105" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.3011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 561.47649,341.54611 544.97952,323.59544 H 519.6538 l -19.33762,16.87041 v 20.88464 l 18.41743,18.56413 v 40.36898"
|
||||||
|
id="path107" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.3011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 498.47577,392.65079 v 44.20983 l 13.81639,13.80306 h 71.81592 l 10.1355,-13.94978 v -14.58991"
|
||||||
|
id="path109" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 985.61068,461.71947 c 0,3.05402 -2.48068,5.52123 -5.53467,5.52123 -3.04068,0 -5.5211,-2.46721 -5.5211,-5.52123 0,-3.05401 2.48042,-5.52122 5.5211,-5.52122 3.05399,0 5.53467,2.46721 5.53467,5.52122"
|
||||||
|
id="path111" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 1011.3897,446.98286 c 0,3.05399 -2.4807,5.53457 -5.5211,5.53457 -3.0542,0 -5.5213,-2.48058 -5.5213,-5.53457 0,-3.05402 2.4671,-5.5212 5.5213,-5.5212 3.0404,0 5.5211,2.46718 5.5211,5.5212"
|
||||||
|
id="path113" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 1050.0651,338.33203 c 0,3.0407 -2.4807,5.52125 -5.5214,5.52125 -3.054,0 -5.5211,-2.48055 -5.5211,-5.52125 0,-3.05399 2.4671,-5.53454 5.5211,-5.53454 3.0407,0 5.5214,2.48055 5.5214,5.53454"
|
||||||
|
id="path115" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 687.25113,461.71947 c 0,3.05402 -2.48068,5.52123 -5.52135,5.52123 -3.05399,0 -5.53442,-2.46721 -5.53442,-5.52123 0,-3.05401 2.48043,-5.52122 5.53442,-5.52122 3.04067,0 5.52135,2.46721 5.52135,5.52122"
|
||||||
|
id="path117" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 770.12267,385.90264 c 0,3.05399 -2.46711,5.52122 -5.5211,5.52122 -3.05399,0 -5.52136,-2.46723 -5.52136,-5.52122 0,-3.05402 2.46737,-5.52125 5.52136,-5.52125 3.05399,0 5.5211,2.46723 5.5211,5.52125"
|
||||||
|
id="path119" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.41408"
|
||||||
|
d="m 804.19693,454.05111 c 0,3.04067 -2.46711,5.5212 -5.5211,5.5212 -3.05399,0 -5.52136,-2.48053 -5.52136,-5.5212 0,-3.05405 2.46737,-5.53457 5.52136,-5.53457 3.05399,0 5.5211,2.48052 5.5211,5.53457"
|
||||||
|
id="path121" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.3011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 980.07601,461.71947 h -34.98096 l -8.89541,-7.36163 h -42.67598 l -7.82843,-5.5346 h -36.38159 l -9.81543,11.0558 h -18.4174 l -7.6684,-5.82796 -11.6027,-0.61343"
|
||||||
|
id="path123" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.3011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 762.76103,387.90306 -9.82874,7.44165 0.31981,20.13783 9.50893,8.69523 -0.22789,24.21873 -6.37454,13.32297 h -74.42985"
|
||||||
|
id="path125" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.3011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 615.42179,327.27626 h 38.67509 l 12.89631,11.04245 H 818.0135"
|
||||||
|
id="path127" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.3011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1005.8686,446.98286 h 46.0367 l 8.2953,-13.34963 v -77.81728 l -15.9368,-17.76397"
|
||||||
|
id="path129" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.3011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 1022.0186,377.71414 988.07779,343.85328 H 922.98351 L 906.60637,327.27626 H 867.74436"
|
||||||
|
id="path131" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:2.3011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 617.26207,454.35784 h 34.99453 l 13.50956,-7.37498 h 47.26401"
|
||||||
|
id="path133" />
|
||||||
|
</g>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:39.0202px;line-height:0%;font-family:'Open Sans Pro';-inkscape-font-specification:'Open Sans Pro';letter-spacing:0px;word-spacing:0px;fill:#eeee23;fill-opacity:1;stroke:none;stroke-width:3.25169px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="1213.1715"
|
||||||
|
y="382.26883"
|
||||||
|
id="text5802"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan5804"
|
||||||
|
x="1213.1715"
|
||||||
|
y="382.26883"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:227.618px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold';fill:#eeee23;fill-opacity:1;stroke-width:3.25169px">2024</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.3333px;line-height:0%;font-family:'Open Sans Pro';-inkscape-font-specification:'Open Sans Pro';letter-spacing:0px;word-spacing:0px;display:inline;fill:#eeee23;fill-opacity:1;stroke:none;stroke-width:3.25169px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="543.95203"
|
||||||
|
y="558.56561"
|
||||||
|
id="text5802-7"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan5804-5"
|
||||||
|
x="543.95203"
|
||||||
|
y="558.56561"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:85.3333px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold';fill:#eeee23;fill-opacity:1;stroke-width:3.25169px">was brought to you by</tspan></text>
|
||||||
|
<rect
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="line"
|
||||||
|
width="1325.7142"
|
||||||
|
height="3"
|
||||||
|
x="297.5"
|
||||||
|
y="888.88116" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#eeee23;fill-opacity:1;stroke:none"
|
||||||
|
x="991.40881"
|
||||||
|
y="967.91754"
|
||||||
|
id="text"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3895"
|
||||||
|
x="991.40881"
|
||||||
|
y="967.91754"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:45px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#eeee23;fill-opacity:1">More Recordings available on media.ccc.de</tspan></text>
|
||||||
|
<g
|
||||||
|
id="g3899"
|
||||||
|
transform="matrix(0.53175479,0,0,0.53175479,785.99,614.11912)"
|
||||||
|
style="fill:#eeee23;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:#eeee23;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 v -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 h -15.194 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 h 10.973"
|
||||||
|
style="fill:#eeee23;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:#eeee23;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 v -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:#eeee23;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:#eeee23;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:#eeee23;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:8.35942px;line-height:0%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#eeee23;fill-opacity:1;stroke:none;stroke-width:0.696618"
|
||||||
|
x="866.38"
|
||||||
|
y="789.8587"
|
||||||
|
id="text3926"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3928"
|
||||||
|
x="866.38"
|
||||||
|
y="789.8587"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:27.8647px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;text-anchor:middle;fill:#eeee23;fill-opacity:1;stroke-width:0.696618">www.ccc.de</tspan></text>
|
||||||
|
<g
|
||||||
|
transform="matrix(1.8929006,0,0,1.892704,-258.28838,964.90644)"
|
||||||
|
id="g260"
|
||||||
|
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by.png"
|
||||||
|
inkscape:export-xdpi="300.23013"
|
||||||
|
inkscape:export-ydpi="300.23013">
|
||||||
|
<path
|
||||||
|
id="path3817_1_"
|
||||||
|
nodetypes="ccccccc"
|
||||||
|
d="m 181.96579,0.51074 114.06396,0.20264 c 1.59375,0 3.01758,-0.23633 3.01758,3.18066 l -0.13965,37.56689 H 179.08737 V 3.75439 c 0,-1.68505 0.16309,-3.24365 2.87842,-3.24365 z"
|
||||||
|
style="fill:#aab2ab" />
|
||||||
|
<path
|
||||||
|
d="m 297.29636,0 h -116.229 c -1.24658,0 -2.26123,1.01416 -2.26123,2.26074 v 39.49658 c 0,0.28174 0.229,0.51025 0.51074,0.51025 h 119.73047 c 0.28174,0 0.51074,-0.22852 0.51074,-0.51025 V 2.26074 C 299.55807,1.01416 298.54343,0 297.29636,0 Z M 181.06735,1.02148 h 116.229 c 0.68408,0 1.24023,0.55566 1.24023,1.23926 0,0 0,15.94824 0,27.44971 h -83.34424 c -3.04492,5.50586 -8.91113,9.24414 -15.64355,9.24414 -6.73535,0 -12.6001,-3.73486 -15.64355,-9.24414 h -4.07764 c 0,-11.50146 0,-27.44971 0,-27.44971 1e-5,-0.68359 0.55616,-1.23926 1.23975,-1.23926 z"
|
||||||
|
id="path263" />
|
||||||
|
<g
|
||||||
|
enable-background="new "
|
||||||
|
id="g265">
|
||||||
|
<path
|
||||||
|
d="m 253.07761,32.95605 c 0.31738,0 0.60742,0.02832 0.87012,0.08398 0.26172,0.05566 0.48535,0.14746 0.67285,0.27539 0.18652,0.12695 0.33203,0.29688 0.43457,0.50781 0.10254,0.21191 0.1543,0.47266 0.1543,0.78418 0,0.33594 -0.0762,0.61523 -0.22949,0.83887 -0.15234,0.22461 -0.37891,0.40723 -0.67773,0.55078 0.41211,0.11816 0.71973,0.3252 0.92285,0.62109 0.20312,0.29589 0.30469,0.65234 0.30469,1.06934 0,0.33594 -0.0654,0.62695 -0.19629,0.87305 -0.13086,0.24512 -0.30762,0.44629 -0.52832,0.60156 -0.22168,0.15625 -0.47461,0.27148 -0.75781,0.3457 -0.28418,0.0752 -0.5752,0.1123 -0.875,0.1123 H 249.936 v -6.66406 h 3.14161 z m -0.1875,2.69532 c 0.26172,0 0.47656,-0.0625 0.64551,-0.18652 0.16797,-0.12402 0.25195,-0.3252 0.25195,-0.60449 0,-0.15527 -0.0283,-0.2832 -0.084,-0.38184 -0.0566,-0.09961 -0.13086,-0.17676 -0.22461,-0.2334 -0.0937,-0.05566 -0.20117,-0.09473 -0.32227,-0.11621 -0.1211,-0.02148 -0.24805,-0.03223 -0.37793,-0.03223 h -1.37402 v 1.55469 z m 0.0859,2.82812 c 0.14355,0 0.28027,-0.01367 0.41113,-0.04199 0.13086,-0.02832 0.24609,-0.0752 0.34668,-0.13965 0.0996,-0.06543 0.17871,-0.1543 0.23828,-0.2666 0.0596,-0.11133 0.0889,-0.25488 0.0889,-0.42871 0,-0.3418 -0.0967,-0.58594 -0.29004,-0.73242 -0.19336,-0.14551 -0.44922,-0.21875 -0.7666,-0.21875 h -1.59961 v 1.82812 z"
|
||||||
|
id="path267"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
d="m 255.78854,32.95605 h 1.64355 l 1.56055,2.63184 1.55078,-2.63184 h 1.63379 l -2.47363,4.10645 v 2.55762 h -1.46875 v -2.59473 z"
|
||||||
|
id="path269"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g5908_1_"
|
||||||
|
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||||
|
<path
|
||||||
|
id="path5906_1_"
|
||||||
|
cx="296.35416"
|
||||||
|
ry="22.939548"
|
||||||
|
cy="264.3577"
|
||||||
|
type="arc"
|
||||||
|
rx="22.939548"
|
||||||
|
d="m 186.90065,-141.46002 c 0.006,8.68079 -7.02786,15.7215 -15.70808,15.72711 -8.68022,0.006 -15.72206,-7.02734 -15.7271,-15.70807 0,-0.006 0,-0.0123 0,-0.019 -0.005,-8.68079 7.02786,-15.7215 15.70808,-15.72656 8.68135,-0.006 15.72206,7.02734 15.7271,15.70813 0,0.006 0,0.0123 0,0.0184 z"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<g
|
||||||
|
id="g5706_1_"
|
||||||
|
transform="translate(-289.6157,99.0653)">
|
||||||
|
<path
|
||||||
|
id="path5708_1_"
|
||||||
|
d="m 473.57574,-253.32751 c 3.48541,3.48541 5.22839,7.75391 5.22839,12.80219 0,5.04938 -1.71277,9.27203 -5.13831,12.66791 -3.63531,3.5766 -7.93182,5.36432 -12.88947,5.36432 -4.89777,0 -9.11987,-1.77319 -12.66513,-5.31952 -3.54581,-3.54584 -5.31845,-7.78302 -5.31845,-12.71271 0,-4.92859 1.77264,-9.19598 5.31845,-12.80219 3.4552,-3.48651 7.67728,-5.22949 12.66513,-5.22949 5.0483,-10e-6 9.31404,1.74297 12.79939,5.22949 z m -23.11798,2.34484 c -2.94672,2.97638 -4.41953,6.46289 -4.41953,10.46234 0,3.99835 1.45828,7.45526 4.37424,10.37067 2.9165,2.9165 6.38849,4.37421 10.41705,4.37421 4.02856,0 7.53015,-1.47223 10.50653,-4.4184 2.82593,-2.73645 4.23944,-6.17706 4.23944,-10.32648 0,-4.11804 -1.43646,-7.61346 -4.30768,-10.48468 -2.87067,-2.87067 -6.34991,-4.30658 -10.43829,-4.30658 -4.0884,1e-5 -7.54638,1.44318 -10.37176,4.32892 z m 7.75449,8.70319 c -0.45029,-0.98169 -1.1243,-1.47284 -2.02322,-1.47284 -1.58917,0 -2.38345,1.07007 -2.38345,3.20911 0,2.13953 0.79428,3.2085 2.38345,3.2085 1.04938,0 1.79892,-0.52075 2.24866,-1.56451 l 2.20276,1.17297 c -1.04993,1.86548 -2.62509,2.79846 -4.72549,2.79846 -1.6199,0 -2.91763,-0.4967 -3.89206,-1.48901 -0.9761,-0.99341 -1.46274,-2.36273 -1.46274,-4.10852 0,-1.71503 0.50229,-3.07654 1.50748,-4.08502 1.00519,-1.00854 2.25702,-1.51257 3.75781,-1.51257 2.22012,0 3.80981,0.87488 4.77081,2.62286 z m 10.36337,0 c -0.45087,-0.98169 -1.11145,-1.47284 -1.98242,-1.47284 -1.62103,0 -2.43213,1.07007 -2.43213,3.20911 0,2.13953 0.8111,3.2085 2.43213,3.2085 1.05109,0 1.78717,-0.52075 2.20728,-1.56451 l 2.25201,1.17297 c -1.04828,1.86548 -2.62122,2.79846 -4.71771,2.79846 -1.61768,0 -2.9126,-0.4967 -3.88647,-1.48901 -0.97217,-0.99341 -1.45935,-2.36273 -1.45935,-4.10852 0,-1.71503 0.49445,-3.07654 1.48285,-4.08502 0.98785,-1.00854 2.2453,-1.51257 3.7735,-1.51257 2.21619,0 3.80365,0.87488 4.76129,2.62286 z" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g275">
|
||||||
|
<circle
|
||||||
|
cx="255.55124"
|
||||||
|
cy="15.31348"
|
||||||
|
r="10.80664"
|
||||||
|
id="circle277"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<g
|
||||||
|
id="g279">
|
||||||
|
<path
|
||||||
|
d="m 258.67819,12.18701 c 0,-0.4165 -0.33789,-0.75391 -0.75293,-0.75391 h -4.77344 c -0.41504,0 -0.75293,0.3374 -0.75293,0.75391 v 4.77295 h 1.33105 v 5.65186 h 3.61719 v -5.65186 h 1.33105 v -4.77295 z"
|
||||||
|
id="path281" />
|
||||||
|
<circle
|
||||||
|
cx="255.53854"
|
||||||
|
cy="9.1723604"
|
||||||
|
r="1.63281"
|
||||||
|
id="circle283" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
clip-rule="evenodd"
|
||||||
|
d="m 255.5239,3.40723 c -3.23242,0 -5.96875,1.12793 -8.20801,3.38379 -2.29785,2.3335 -3.44629,5.0957 -3.44629,8.28467 0,3.18897 1.14844,5.93164 3.44629,8.22656 2.29785,2.29443 5.03418,3.44189 8.20801,3.44189 3.21289,0 5.99805,-1.15625 8.35352,-3.47119 2.21973,-2.19727 3.33008,-4.92969 3.33008,-8.19727 0,-3.26758 -1.12988,-6.02881 -3.3877,-8.28467 -2.25977,-2.25585 -5.02442,-3.38378 -8.2959,-3.38378 z m 0.0293,2.09961 c 2.64844,0 4.89746,0.93408 6.74707,2.80127 1.86914,1.84717 2.80371,4.10303 2.80371,6.76758 0,2.68359 -0.91504,4.91064 -2.74512,6.68018 -1.92871,1.90625 -4.19629,2.85889 -6.80566,2.85889 -2.61035,0 -4.85938,-0.94287 -6.74707,-2.82959 -1.88965,-1.88672 -2.83301,-4.12305 -2.83301,-6.70947 0,-2.58691 0.9541,-4.84229 2.8623,-6.76758 1.83009,-1.8672 4.06934,-2.80128 6.71778,-2.80128 z"
|
||||||
|
id="path285"
|
||||||
|
style="fill-rule:evenodd" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="FadeOutLayer"
|
||||||
|
style="display:inline">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;fill-opacity:1;opacity:0"
|
||||||
|
id="fadeout"
|
||||||
|
width="1932.7112"
|
||||||
|
height="1092.9814"
|
||||||
|
x="-4.4430141"
|
||||||
|
y="-1.8739687"
|
||||||
|
inkscape:label="#fadeout" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 53 KiB |
963
hackerhotel2024/artwork/pause.svg
Normal file
|
@ -0,0 +1,963 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
viewBox="0 0 1920 1080"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||||
|
sodipodi:docname="pause.svg"
|
||||||
|
enable-background="new"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath18">
|
||||||
|
<path
|
||||||
|
d="m 312.117,871.087 c -6.264,-1.72 -10.84,-10.647 -14.167,-15.645 l 0,0 c -4.194,-6.302 -7.979,-12.897 -11.534,-19.58 l 0,0 c -6.794,-12.771 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.658,-134.44 c -34.506,-10.769 -67.49,-29.469 -99.699,-48.874 l 0,0 c 12.812,-37.59 55.526,-58.834 95.24,-58.766 l 0,0 c 0.024,0 0.047,0 0.071,0 l 0,0 c -6.665,-0.282 -13.34,-0.125 -19.96,0.504 l 0,0 c 17.08,-29.328 37.542,-57.811 69.853,-68.2 l 0,0 c 26.039,-8.372 54.524,-0.76 79.568,10.242 l 0,0 c 16.073,7.061 37.811,23.424 50.174,37.459 l 0,0 c -5.443,-6.931 -9.356,-11.85 -9.378,-14.226 l 0,0 c -0.036,-4.022 11.889,-7.249 15.319,-7.836 l 0,0 c 4.537,-0.776 55.479,-8.821 65.762,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.162 l 0,0 c 9.775,1.619 19.405,4.609 27.984,9.637 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.648 -9.272,-36.305 l 0,0 c -0.171,-0.666 -0.311,-1.344 -0.413,-2.024 l 0,0 c -3.39,-22.815 -3.156,-46.468 -3.991,-69.493 l 0,0 c -0.901,-24.858 -1.418,-49.754 -2.83,-74.59 l 0,0 c -0.791,-13.917 -3.767,-27.11 -7.947,-40.362 l 0,0 c -1.785,-5.66 -3.752,-11.282 -5.94,-16.816 l 0,0 c 2.853,8.361 4.713,17.016 5.261,25.851 l 0,0 c 0.555,8.93 -0.352,17.967 -2.745,26.592 l 0,0 c -2.662,9.599 -7.206,18.729 -13.686,26.328 l 0,0 c -1.536,1.801 -2.531,3.044 -3.792,5.045 l 0,0 c -1.313,2.081 -3.691,4.003 -5.535,5.683 l 0,0 c -4.28,3.901 -8.981,7.314 -13.802,10.512 l 0,0 c -8.952,5.937 -18.089,11.527 -28.039,15.555 l 0,0 c -22.597,9.151 -48.915,13.05 -72.999,8.126 l 0,0 c -49.265,-10.074 -94.2,-46.844 -113.089,-93.79 l 0,0 c -7.565,-18.805 -8.616,-45.719 -6.222,-65.756 l 0,0 c 7.2,-60.243 65.422,-100.088 125.514,-108.448 l 0,0 c 24.824,-3.455 52.18,-1.693 76.294,4.869 l 0,0 c 50.617,13.775 89.298,54.937 112.844,99.669 l 0,0 c 2.794,5.307 14.736,24.552 14.675,26.909 l 0,0 c 0.267,-10.318 3.457,-20.545 9.106,-29.184 l 0,0 16.227,92.559 c 1.621,-9.021 7.294,-17.234 15.157,-21.945 l 0,0 0.204,60.905 c 1.41,-9.085 6.602,-14.523 14.491,-19.244 l 0,0 c -4.166,27.38 -4.717,52.34 -2.482,79.945 l 0,0 c 7.063,-4.324 13.65,-8.62 20.658,-10.281 l 0,0 c -3.651,26.792 -12.97,49.694 -16.621,76.487 l 0,0 c 10.534,-8.562 10.319,-10.84 19.664,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.882,-0.923 c -10.728,25.86 -25.45,41.841 -43.486,63.254 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.489 l 0,0 c -14.416,20.027 -33.431,26.496 -56.345,35.655 l 0,0 c 14.572,6.667 21.146,13.146 30.811,25.412 l 0,0 c -25.908,4.436 -43.613,6.974 -69.672,10.409 l 0,0 c 9.984,6.221 25.959,11.735 32.646,23.966 l 0,0 c -23.093,-0.068 -51.514,-1.99 -74.606,-2.058 l 0,0 c 3.118,9.15 16.024,22.056 15.344,33.286 l 0,0 -67.289,-24.136 c -2.029,7.646 4.971,10.282 1.623,31.588 l 0,0 -54.542,-23.538 c 0,6.9 9.282,21.518 5.236,31.248 l 0,0 c -1.052,2.53 -27.624,-18.934 -36.917,-20.788 l 0,0 c 0,0 19.327,52.162 14.75,52.15 l 0,0 c -15.455,-0.042 -33.75,-18.848 -49.058,-21.738 l 0,0 c -3.6,5.947 -6.717,12.18 -9.698,18.456 l 0,0 c -5.957,12.543 -11.32,25.358 -17.137,37.966 l 0,0 c -2.809,6.088 -5.71,12.138 -8.882,18.045 l 0,0 c -2.044,3.808 -3.89,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.531 -9.801,2.531 l 0,0 c -1.401,0 -2.751,-0.155 -3.948,-0.484 m 41.469,-271.97 c -2.238,-1.885 -4.527,-3.722 -6.865,-5.509 l 0,0 c 2.327,1.793 4.616,3.631 6.865,5.509 m 85.349,-45.569 c 0,0 0,0 0,0 M 383.533,241.747 c -16.443,19.302 -23.431,46.211 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.037 39.804,56.683 l 0,0 c 20.808,11.645 47.481,12.699 68.622,1.67 l 0,0 c 21.142,-11.029 35.713,-34.183 35.364,-58.026 l 0,0 c -0.349,-23.843 -16.558,-46.24 -39.055,-54.146 l 0,0 c -13.248,-4.655 -27.77,-4.347 -39.5,3.375 l 0,0 c -11.729,7.722 -19.3,22.583 -15.553,36.117 l 0,0 c 3.746,13.535 19.143,23.26 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.83 14.374,-7.338 l 0,0 c 6.351,-3.339 14.186,-5.411 20.409,0.204 l 0,0 c 2.348,2.119 3.893,5.052 4.395,8.174 l 0,0 c 1.65,10.257 -5.836,19.545 -14.699,22.812 l 0,0 c -6.84,2.521 -14.529,2.26 -21.749,1.25 l 0,0 c -23.7,-3.318 -46.176,-17.837 -57.931,-38.681 l 0,0 c -11.755,-20.845 -11.322,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.479,-17.733 32.216,-21.387 l 0,0 c -16.77,4.192 -32.281,13.594 -43.507,26.771 m 146.601,21.02 c 0.24,0.346 0.478,0.693 0.716,1.042 l 0,0 c -2.094,-3.187 -4.311,-6.295 -6.662,-9.313 l 0,0 c -5.252,-6.741 -11.254,-13.003 -17.851,-18.524 l 0,0 c 9.038,7.807 17.014,17.001 23.797,26.795"
|
||||||
|
id="path20-4"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath28">
|
||||||
|
<path
|
||||||
|
d="m 314.284,874.024 c -6.264,-1.721 -10.84,-10.648 -14.166,-15.645 l 0,0 c -4.194,-6.302 -7.981,-12.897 -11.535,-19.58 l 0,0 c -6.794,-12.772 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.657,-134.44 c -34.506,-10.769 -67.491,-29.47 -99.701,-48.874 l 0,0 c 12.813,-37.59 55.528,-58.835 95.241,-58.767 l 0,0 c 0.017,0 0.031,0 0.048,0 l 0,0 c -6.659,-0.281 -13.323,-0.124 -19.938,0.505 l 0,0 c 17.081,-29.328 37.544,-57.812 69.854,-68.2 l 0,0 c 26.039,-8.373 54.524,-0.761 79.568,10.242 l 0,0 c 16.072,7.06 37.807,23.42 50.171,37.455 l 0,0 c -5.441,-6.928 -9.354,-11.847 -9.375,-14.223 l 0,0 c -0.036,-4.022 11.889,-7.249 15.32,-7.836 l 0,0 c 4.536,-0.776 55.478,-8.82 65.761,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.161 l 0,0 c 9.774,1.618 19.404,4.608 27.984,9.636 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.647 -9.272,-36.304 l 0,0 c -0.171,-0.666 -0.312,-1.345 -0.413,-2.025 l 0,0 c -3.39,-22.814 -3.157,-46.467 -3.991,-69.492 l 0,0 c -0.902,-24.859 -1.418,-49.754 -2.83,-74.591 l 0,0 c -0.791,-13.916 -3.768,-27.109 -7.947,-40.362 l 0,0 c -1.785,-5.661 -3.753,-11.284 -5.942,-16.82 l 0,0 c 2.854,8.362 4.714,17.02 5.263,25.856 l 0,0 c 0.554,8.929 -0.353,17.967 -2.745,26.592 l 0,0 c -2.662,9.598 -7.206,18.729 -13.686,26.327 l 0,0 c -1.536,1.801 -3.494,3.382 -4.757,5.383 l 0,0 c -1.312,2.081 -2.726,3.665 -4.57,5.345 l 0,0 c -4.28,3.901 -8.981,7.315 -13.802,10.512 l 0,0 c -8.952,5.938 -18.598,10.791 -28.547,14.819 l 0,0 c -22.597,9.149 -47.586,13.078 -71.67,8.153 l 0,0 c -49.265,-10.074 -95.021,-46.134 -113.91,-93.081 l 0,0 c -7.566,-18.804 -8.616,-45.718 -6.222,-65.755 l 0,0 c 7.2,-60.244 65.422,-100.089 125.514,-108.45 l 0,0 c 24.823,-3.453 52.179,-1.692 76.293,4.87 l 0,0 c 50.618,13.775 89.298,54.937 112.845,99.669 l 0,0 c 2.794,5.306 14.736,24.552 14.675,26.91 l 0,0 c 0.266,-10.318 3.457,-20.545 9.105,-29.185 l 0,0 16.228,92.559 c 1.622,-9.021 7.294,-17.234 15.156,-21.944 l 0,0 0.204,60.905 c 1.411,-9.085 6.603,-14.524 14.491,-19.245 l 0,0 c -4.165,27.381 -4.717,52.34 -2.481,79.945 l 0,0 c 7.063,-4.324 13.65,-8.619 20.657,-10.281 l 0,0 c -3.651,26.793 -12.969,49.695 -16.621,76.488 l 0,0 c 10.535,-8.562 10.321,-10.841 19.665,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.881,-0.924 c -10.726,25.861 -25.449,41.842 -43.485,63.255 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.488 l 0,0 c -14.416,20.028 -33.431,26.496 -56.345,35.655 l 0,0 c 14.571,6.668 21.146,13.147 30.811,25.413 l 0,0 c -25.908,4.436 -43.613,6.973 -69.673,10.409 l 0,0 c 9.985,6.22 25.961,11.735 32.648,23.966 l 0,0 c -23.094,-0.069 -51.515,-1.991 -74.608,-2.06 l 0,0 c 3.119,9.152 16.025,22.058 15.345,33.287 l 0,0 -67.289,-24.135 c -2.03,7.644 4.971,10.282 1.624,31.588 l 0,0 -54.543,-23.538 c 0,6.899 9.282,21.517 5.235,31.248 l 0,0 c -1.052,2.53 -27.623,-18.935 -36.917,-20.789 l 0,0 c 0,0 19.328,52.162 14.751,52.15 l 0,0 c -15.456,-0.043 -33.751,-18.848 -49.059,-21.737 l 0,0 c -3.6,5.946 -6.717,12.18 -9.697,18.454 l 0,0 c -5.958,12.545 -11.32,25.36 -17.137,37.968 l 0,0 c -2.808,6.086 -5.71,12.137 -8.882,18.045 l 0,0 c -2.044,3.808 -3.889,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.53 -9.801,2.53 l 0,0 c -1.401,0 -2.752,-0.154 -3.948,-0.483 m 41.469,-271.971 c -2.231,-1.88 -4.511,-3.71 -6.842,-5.492 l 0,0 c 2.319,1.787 4.601,3.62 6.842,5.492 m 85.349,-45.569 c 0,0 0,0 0,0 M 385.7,244.684 c -16.443,19.301 -23.431,46.21 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.036 39.804,56.681 l 0,0 c 20.807,11.646 47.481,12.699 68.623,1.672 l 0,0 c 21.141,-11.029 35.712,-34.184 35.362,-58.026 l 0,0 C 510.325,292.31 494.456,269.141 471.96,261.234 l 0,0 c -13.249,-4.656 -28.749,-3.925 -40.478,3.797 l 0,0 c -11.73,7.722 -18.663,22.934 -14.915,36.468 l 0,0 c 3.747,13.534 19.144,23.259 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.831 14.374,-7.339 l 0,0 c 6.352,-3.338 14.186,-5.411 20.41,0.205 l 0,0 c 2.347,2.118 3.891,5.052 4.393,8.173 l 0,0 c 1.651,10.257 -5.876,18.554 -14.739,21.821 l 0,0 c -6.84,2.522 -14.381,2.425 -21.601,1.414 l 0,0 c -23.699,-3.317 -46.283,-17.011 -58.038,-37.854 l 0,0 c -11.755,-20.844 -11.323,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.481,-17.733 32.218,-21.388 l 0,0 c -16.769,4.192 -32.283,13.595 -43.509,26.773 m 146.6,21.019 c 0.248,0.358 0.494,0.716 0.739,1.075 l 0,0 c -2.1,-3.197 -4.324,-6.317 -6.684,-9.346 l 0,0 c -5.241,-6.727 -11.231,-12.977 -17.813,-18.49 l 0,0 c 9.023,7.8 16.985,16.98 23.758,26.761"
|
||||||
|
id="path30"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1428">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1430"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1436">
|
||||||
|
<path
|
||||||
|
d="m 153.069,874.507 547.722,0 0,-721.1 -547.722,0 0,721.1 z"
|
||||||
|
id="path1438"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,239.82324,731.99097)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1468">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1470" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1472" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1480">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1482"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,324.3374,727.64069)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1516">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1518" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1520" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1528">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1530"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1560">
|
||||||
|
<path
|
||||||
|
d="m 529.474,574.673 c 6.87,-7.702 13.741,-15.405 20.611,-23.107 l 0,0 c 2.925,-3.279 6.035,-7.149 6.026,-11.402 l 0,0 c -10e-4,-0.461 -0.038,-0.925 -0.116,-1.394 l 0,0 c -0.679,-4.076 -4.235,-6.974 -7.641,-9.312 l 0,0 c -8.134,-5.582 -16.812,-10.954 -24.245,-17.441 l 0,0 c -3.348,-2.922 -15.688,-9.847 -17.856,-11.768 l 0,0 c -10.514,-9.322 -29.698,-8.23 -43.695,-6.992 l 0,0 c -2.978,0.263 -6.376,0.501 -8.544,-1.558 l 0,0 c -1.461,-1.388 -1.959,-3.483 -2.345,-5.461 l 0,0 c -0.541,-2.777 -0.961,-5.706 -0.964,-8.569 l 0,0 c -0.005,-3.924 0.773,-7.721 3.093,-10.826 l 0,0 c 5.5,-7.361 17.621,-6.775 24.515,-0.701 l 0,0 c 3.855,3.397 7.098,8.39 12.216,8.854 l 0,0 c 5.187,0.469 9.462,-4.158 11.606,-8.906 l 0,0 c 2.145,-4.748 3.149,-10.106 6.358,-14.211 l 0,0 c 6.392,-8.178 21.134,-7.2 26.389,1.752 l 0,0 c 1.293,2.202 1.885,4.672 1.889,7.167 l 0,0 c 0.013,7.643 -5.488,15.526 -13.22,16.729 l 0,0 c -0.999,1.438 -1.44,3.117 -1.442,4.842 l 0,0 c -0.002,2.689 1.063,5.487 2.742,7.64 l 0,0 c 2.755,3.534 6.807,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.214 l 0,0 c 2.132,2.238 4.348,4.93 4.35,7.937 l 0,0 c 0,0.269 -0.017,0.54 -0.054,0.814 l 0,0 c -0.28,2.082 -1.645,3.833 -2.959,5.471 l 0,0 c -9.167,11.424 -18.333,22.849 -27.5,34.273 l 0,0 -23.071,-6.074 z"
|
||||||
|
id="path1562"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1646">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1648"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1658">
|
||||||
|
<path
|
||||||
|
d="m 444.813,571.047 c 6.832,-7.66 13.665,-15.32 20.499,-22.979 l 0,0 c 3.241,-3.634 6.709,-7.994 5.908,-12.797 l 0,0 c -0.056,-0.338 -0.132,-0.668 -0.226,-0.99 l 0,0 c -0.987,-3.65 -4.29,-6.315 -7.463,-8.492 l 0,0 c -8.135,-5.582 -16.812,-10.954 -24.246,-17.441 l 0,0 c -3.348,-2.922 -15.687,-9.846 -17.855,-11.769 l 0,0 c -10.514,-9.321 -29.699,-8.229 -43.695,-6.992 l 0,0 c -2.979,0.264 -6.375,0.503 -8.543,-1.557 l 0,0 c -0.945,-0.898 -1.487,-2.091 -1.857,-3.358 l 0,0 c -0.178,-0.638 -0.315,-1.291 -0.44,-1.933 l 0,0 c -1.283,-6.581 -1.885,-14.024 2.129,-19.396 l 0,0 c 5.499,-7.36 17.621,-6.774 24.514,-0.7 l 0,0 c 3.856,3.397 7.099,8.391 12.216,8.854 l 0,0 c 5.189,0.47 9.464,-4.158 11.607,-8.906 l 0,0 c 2.144,-4.747 3.15,-10.106 6.357,-14.211 l 0,0 c 6.393,-8.177 21.135,-7.199 26.39,1.752 l 0,0 c 0.57,0.971 1.003,1.993 1.311,3.046 l 0,0 c 2.398,8.633 -3.607,19.267 -12.691,20.68 l 0,0 c -1.621,2.332 -1.772,5.302 -0.964,8.064 l 0,0 c 0.46,1.658 1.268,3.248 2.313,4.588 l 0,0 c 2.754,3.534 6.806,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.215 l 0,0 c 1.669,1.751 3.39,3.782 4.06,6.024 l 0,0 c 0.225,0.825 0.306,1.678 0.187,2.556 l 0,0 c -0.279,2.082 -1.644,3.832 -2.959,5.47 l 0,0 c -9.166,11.425 -18.334,22.85 -27.5,34.274 l 0,0 -22.909,-6.031 z"
|
||||||
|
id="path1660"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.39748257"
|
||||||
|
inkscape:cx="959.79052"
|
||||||
|
inkscape:cy="539.64631"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="1870"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
inkscape:pagecheckerboard="0">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="79.389313,583.96947"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide5258"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="752.5,175"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5684"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="622.14288,33.487991"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5686"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="512,936"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide5806"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1852.7369,1139.6332"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide5827"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Background">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="rect3797"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
x="0"
|
||||||
|
y="0" />
|
||||||
|
<g
|
||||||
|
id="g13155"
|
||||||
|
transform="matrix(0.85352299,0,0,0.85352299,819.38453,-420.0124)">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 878.31395,588.31178 h -6.875 v -13.75 h -20.625 v 13.75 h -6.875 v -32.66145 h 6.875 v 12.03645 h 20.625 v -12.03645 h 6.875 z m 0,0"
|
||||||
|
id="path11" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 885.18895,555.65033 h 34.37499 v 32.66145 h -6.875 v -13.75 h -20.62499 v 13.75 h -6.875 v -32.66145 m 6.875,12.03645 h 20.62499 v -5.15624 h -20.62499 z m 0,0"
|
||||||
|
id="path13" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 933.31394,562.53054 v 18.90624 h 27.50522 v 6.875 h -34.38022 v -32.66145 h 34.38022 v 6.88021 z m 0,0"
|
||||||
|
id="path15" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 990.7254,571.29617 11.3438,17.01561 h -8.16671 l -9.15105,-13.75 h -10.18228 v 13.75 h -6.875 v -32.65624 h 6.875 v 12.02604 h 10.5677 l 8.76563,-12.02604 h 8.16671 z m 0,0"
|
||||||
|
id="path17" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1015.8192,574.56178 v 6.875 h 27.5 v 6.875 h -34.375 v -32.65624 h 34.375 v 6.875 h -27.5 v 5.15624 h 27.5 v 6.875 z m 0,0"
|
||||||
|
id="path19" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1084.5691,574.56178 h -6.875 l 6.875,13.75 h -8.1614 l -6.875,-13.75 h -12.4635 v 13.75 h -6.875 v -32.65624 h 34.3749 v 18.90624 m -27.4999,-6.875 h 20.6249 v -5.15624 h -20.6249 z m 0,0"
|
||||||
|
id="path21" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 852.39728,551.84303 c 0,-1.18749 0.96355,-2.14582 2.15104,-2.14582 1.18229,0 2.14584,0.95833 2.14584,2.14582 0,1.18751 -0.96355,2.15104 -2.14584,2.15104 -1.18749,0 -2.15104,-0.96353 -2.15104,-2.15104"
|
||||||
|
id="path23" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 835.9754,582.63991 c 0,-1.1875 0.96355,-2.15104 2.14584,-2.15104 1.18749,0 2.15104,0.96354 2.15104,2.15104 0,1.1875 -0.96355,2.14583 -2.15104,2.14583 -1.18229,0 -2.14584,-0.95833 -2.14584,-2.14583"
|
||||||
|
id="path25" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 856.1004,583.35345 c 0,-1.1875 0.95833,-2.14583 2.14584,-2.14583 1.18749,0 2.15104,0.95833 2.15104,2.14583 0,1.1875 -0.96355,2.15105 -2.15104,2.15105 -1.18751,0 -2.14584,-0.96355 -2.14584,-2.15105"
|
||||||
|
id="path27" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 875.79311,595.53054 c 0,-1.18751 0.96354,-2.15104 2.15105,-2.15104 1.18228,0 2.14583,0.96353 2.14583,2.15104 0,1.18749 -0.96355,2.14582 -2.14583,2.14582 -1.18751,0 -2.15105,-0.95833 -2.15105,-2.14582"
|
||||||
|
id="path29" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 900.86083,581.92117 c 0,-1.18751 0.95833,-2.14584 2.14582,-2.14584 1.18751,0 2.15104,0.95833 2.15104,2.14584 0,1.18749 -0.96353,2.15104 -2.15104,2.15104 -1.18749,0 -2.14582,-0.96355 -2.14582,-2.15104"
|
||||||
|
id="path31" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 872.20977,544.68158 c 0,-1.18751 0.96355,-2.14584 2.15106,-2.14584 1.18749,0 2.15104,0.95833 2.15104,2.14584 0,1.18749 -0.96355,2.14583 -2.15104,2.14583 -1.18751,0 -2.15106,-0.95834 -2.15106,-2.14583"
|
||||||
|
id="path33" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 914.46498,544.68158 c 0,-1.18751 0.96355,-2.14584 2.15104,-2.14584 1.18751,0 2.14584,0.95833 2.14584,2.14584 0,1.18749 -0.95833,2.14583 -2.14584,2.14583 -1.18749,0 -2.15104,-0.95834 -2.15104,-2.14583"
|
||||||
|
id="path35" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1086.3504,579.89511 c 0,-1.18749 0.9635,-2.15104 2.1458,-2.15104 1.1875,0 2.1511,0.96355 2.1511,2.15104 0,1.1823 -0.9636,2.14584 -2.1511,2.14584 -1.1823,0 -2.1458,-0.96354 -2.1458,-2.14584"
|
||||||
|
id="path37" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 920.9129,592.66595 c 0,-1.18751 0.96354,-2.15104 2.14583,-2.15104 1.18751,0 2.15104,0.96353 2.15104,2.15104 0,1.18749 -0.96353,2.14583 -2.15104,2.14583 -1.18229,0 -2.14583,-0.95834 -2.14583,-2.14583"
|
||||||
|
id="path39" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1003.2723,592.78574 c 0,-1.1875 0.9635,-2.15104 2.151,-2.15104 1.1875,0 2.1459,0.96354 2.1459,2.15104 0,1.1875 -0.9584,2.14584 -2.1459,2.14584 -1.1875,0 -2.151,-0.95834 -2.151,-2.14584"
|
||||||
|
id="path41" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 977.49102,597.08262 c 0,-1.18751 0.95834,-2.15104 2.15104,-2.15104 1.1823,0 2.14584,0.96353 2.14584,2.15104 0,1.18749 -0.96354,2.14582 -2.14584,2.14582 -1.1927,0 -2.15104,-0.95833 -2.15104,-2.14582"
|
||||||
|
id="path43" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 978.56394,557.57221 c 0,-1.18751 0.96355,-2.14584 2.15104,-2.14584 1.1823,0 2.14584,0.95833 2.14584,2.14584 0,1.18749 -0.96354,2.14582 -2.14584,2.14582 -1.18749,0 -2.15104,-0.95833 -2.15104,-2.14582"
|
||||||
|
id="path45" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1026.1889,551.24407 c 0,-1.18229 0.9636,-2.14582 2.1511,-2.14582 1.1875,0 2.151,0.95833 2.151,2.14582 0,1.18751 -0.9635,2.15104 -2.151,2.15104 -1.1875,0 -2.1511,-0.96353 -2.1511,-2.15104"
|
||||||
|
id="path47" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1014.0171,544.80137 c 0,-1.1875 0.9583,-2.15104 2.1458,-2.15104 1.1875,0 2.151,0.96354 2.151,2.15104 0,1.1875 -0.9635,2.14584 -2.151,2.14584 -1.1875,0 -2.1458,-0.95834 -2.1458,-2.14584"
|
||||||
|
id="path49" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1073.4598,549.09825 c 0,-1.18751 0.9583,-2.14584 2.1458,-2.14584 1.1875,0 2.151,0.95833 2.151,2.14584 0,1.18749 -0.9635,2.14582 -2.151,2.14582 -1.1875,0 -2.1458,-0.95833 -2.1458,-2.14582"
|
||||||
|
id="path51" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 948.12644,573.8795 c 0,-1.18751 0.96354,-2.15105 2.15105,-2.15105 1.18228,0 2.14583,0.96354 2.14583,2.15105 0,1.18228 -0.96355,2.14583 -2.14583,2.14583 -1.18751,0 -2.15105,-0.96355 -2.15105,-2.14583"
|
||||||
|
id="path53" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 938.1004,550.41074 c 0,-1.18749 0.96354,-2.14583 2.15104,-2.14583 1.18229,0 2.14584,0.95834 2.14584,2.14583 0,1.18751 -0.96355,2.14584 -2.14584,2.14584 -1.1875,0 -2.15104,-0.95833 -2.15104,-2.14584"
|
||||||
|
id="path55" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 828.16811,571.89511 c 0,-1.18749 0.96354,-2.14582 2.15105,-2.14582 1.18228,0 2.14583,0.95833 2.14583,2.14582 0,1.18751 -0.96355,2.15106 -2.14583,2.15106 -1.18751,0 -2.15105,-0.96355 -2.15105,-2.15106"
|
||||||
|
id="path57" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 854.81394,551.78053 -6.41145,-6.97916 h -9.84896 l -7.52084,6.56249 v 8.1198 l 7.16146,7.21875 v 15.69792"
|
||||||
|
id="path59" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 830.31915,571.65553 v 17.1875 l 5.3698,5.375 h 18.61979 l 3.9375,-5.42708 v -5.67709"
|
||||||
|
id="path61" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 877.94415,595.65032 h 15.03646 l 5.36979,-5.13541 v -3.9948 l 3.70313,-3.8802"
|
||||||
|
id="path63" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 874.36082,544.80137 h 7.16146 l 5.60937,2.86458 h 16.59375 l 3.04688,2.86458 h 33.47916"
|
||||||
|
id="path65" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 950.27748,574.16595 h 8.59375 l 4.65105,-5.375 v -16.46874 l -7.81771,-7.52084 h -39.08854"
|
||||||
|
id="path67" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 923.77748,592.78574 h 36.64584 l 2.625,4.29688 h 16.59375"
|
||||||
|
id="path69" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1005.4233,592.78574 h 40.8229 l 3.9375,4.29688 h 11.099 l 4,-4.29688 h 23.8333 l 4.3229,-2.32812 0.073,-5.81771 -4.5365,-4.40105"
|
||||||
|
id="path71" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 980.71498,557.33262 v -9.30729 l 4.95313,-3.22396 h 9.01041 l 8.59378,6.44792 h 23.6354"
|
||||||
|
id="path73" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.894667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1017.5952,544.80137 h 16.4739 l 4.0573,4.29688 h 37.4792"
|
||||||
|
id="path75" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1039.2306,647.29095 h -6.901 v -13.80729 h -20.7188 v 13.80729 h -6.901 v -32.79688 h 6.901 v 12.08333 h 20.7188 v -12.08333 h 6.901 z m 0,0"
|
||||||
|
id="path77" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1080.6629,647.29095 h -34.526 v -32.79688 h 34.526 z m -27.6198,-6.90104 h 20.7135 v -18.98959 h -20.7135 z m 0,0"
|
||||||
|
id="path79" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1122.09,621.40032 h -13.8073 v 25.89063 h -6.9063 v -25.89063 h -13.8125 v -6.90625 h 34.5261 z m 0,0"
|
||||||
|
id="path81" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1135.8973,633.48366 v 6.90625 h 27.6198 v 6.90104 h -34.5209 v -32.79688 h 34.5209 v 6.90625 h -27.6198 v 5.17708 h 27.6198 v 6.90626 z m 0,0"
|
||||||
|
id="path83" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1170.4233,647.29095 v -32.79688 h 6.9063 v 25.89584 h 27.6198 v 6.90104 z m 0,0"
|
||||||
|
id="path85" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1013.0639,610.79095 c 0,-1.19271 0.9688,-2.16145 2.1563,-2.16145 1.1927,0 2.1614,0.96874 2.1614,2.16145 0,1.18749 -0.9687,2.15625 -2.1614,2.15625 -1.1875,0 -2.1563,-0.96876 -2.1563,-2.15625"
|
||||||
|
id="path87" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1033.9233,605.03574 c 0,-1.19271 0.9636,-2.15624 2.1563,-2.15624 1.1927,0 2.1562,0.96353 2.1562,2.15624 0,1.1927 -0.9635,2.15625 -2.1562,2.15625 -1.1927,0 -2.1563,-0.96355 -2.1563,-2.15625"
|
||||||
|
id="path89" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1112.3244,609.35344 c 0,-1.1927 0.9635,-2.16145 2.1562,-2.16145 1.1927,0 2.1562,0.96875 2.1562,2.16145 0,1.18751 -0.9635,2.15626 -2.1562,2.15626 -1.1927,0 -2.1562,-0.96875 -2.1562,-2.15626"
|
||||||
|
id="path91" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1131.0223,605.03574 c 0,-1.19271 0.9687,-2.15624 2.1562,-2.15624 1.1927,0 2.1563,0.96353 2.1563,2.15624 0,1.1927 -0.9636,2.15625 -2.1563,2.15625 -1.1875,0 -2.1562,-0.96355 -2.1562,-2.15625"
|
||||||
|
id="path93" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1192.1577,624.45762 c 0,-1.19271 0.9687,-2.16146 2.1562,-2.16146 1.1927,0 2.1615,0.96875 2.1615,2.16146 0,1.18749 -0.9636,2.15625 -2.1615,2.15625 -1.1875,0 -2.1562,-0.96876 -2.1562,-2.15625"
|
||||||
|
id="path95" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 995.92332,641.59824 c 0,-1.1927 0.96354,-2.15625 2.15625,-2.15625 1.19271,0 2.16143,0.96355 2.16143,2.15625 0,1.19271 -0.96872,2.15626 -2.16143,2.15626 -1.19271,0 -2.15625,-0.96355 -2.15625,-2.15626"
|
||||||
|
id="path97" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1025.4129,642.31699 c 0,-1.19271 0.9687,-2.15625 2.1563,-2.15625 1.1927,0 2.1562,0.96354 2.1562,2.15625 0,1.19271 -0.9635,2.15625 -2.1562,2.15625 -1.1876,0 -2.1563,-0.96354 -2.1563,-2.15625"
|
||||||
|
id="path99" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1034.4025,654.66595 c 0,-1.19271 0.9687,-2.16145 2.1562,-2.16145 1.1927,0 2.1563,0.96874 2.1563,2.16145 0,1.18749 -0.9636,2.15625 -2.1563,2.15625 -1.1875,0 -2.1562,-0.96876 -2.1562,-2.15625"
|
||||||
|
id="path101" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1072.5223,651.78574 c 0,-1.19271 0.9687,-2.15624 2.1562,-2.15624 1.1927,0 2.1615,0.96353 2.1615,2.15624 0,1.1927 -0.9688,2.16146 -2.1615,2.16146 -1.1875,0 -2.1562,-0.96876 -2.1562,-2.16146"
|
||||||
|
id="path103" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 988.01186,630.80658 c 0,-1.18751 0.96354,-2.15626 2.15624,-2.15626 1.19272,0 2.15626,0.96875 2.15626,2.15626 0,1.1927 -0.96354,2.16145 -2.15626,2.16145 -1.1927,0 -2.15624,-0.96875 -2.15624,-2.16145"
|
||||||
|
id="path105" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1014.7723,610.60866 -6.4427,-7.01042 h -9.89066 l -7.55208,6.58854 v 8.15625 l 7.19271,7.25 v 15.76563"
|
||||||
|
id="path107" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 990.16811,630.56699 v 17.26563 l 5.39583,5.39062 h 28.04686 l 3.9583,-5.44792 v -5.69792"
|
||||||
|
id="path109" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1180.4129,657.54095 c 0,1.19271 -0.9688,2.15625 -2.1615,2.15625 -1.1875,0 -2.1562,-0.96354 -2.1562,-2.15625 0,-1.19271 0.9687,-2.15625 2.1562,-2.15625 1.1927,0 2.1615,0.96354 2.1615,2.15625"
|
||||||
|
id="path111" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1190.4806,651.78574 c 0,1.1927 -0.9688,2.16146 -2.1562,2.16146 -1.1928,0 -2.1563,-0.96876 -2.1563,-2.16146 0,-1.19271 0.9635,-2.15624 2.1563,-2.15624 1.1874,0 2.1562,0.96353 2.1562,2.15624"
|
||||||
|
id="path113" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1205.5848,609.35344 c 0,1.18751 -0.9688,2.15626 -2.1563,2.15626 -1.1927,0 -2.1562,-0.96875 -2.1562,-2.15626 0,-1.1927 0.9635,-2.16145 2.1562,-2.16145 1.1875,0 2.1563,0.96875 2.1563,2.16145"
|
||||||
|
id="path115" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1063.8921,657.54095 c 0,1.19271 -0.9688,2.15625 -2.1563,2.15625 -1.1927,0 -2.1614,-0.96354 -2.1614,-2.15625 0,-1.19271 0.9687,-2.15625 2.1614,-2.15625 1.1875,0 2.1563,0.96354 2.1563,2.15625"
|
||||||
|
id="path117" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1096.2566,627.93158 c 0,1.1927 -0.9635,2.15625 -2.1562,2.15625 -1.1927,0 -2.1563,-0.96355 -2.1563,-2.15625 0,-1.19271 0.9636,-2.15626 2.1563,-2.15626 1.1927,0 2.1562,0.96355 2.1562,2.15626"
|
||||||
|
id="path119" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33333"
|
||||||
|
d="m 1109.5639,654.54616 c 0,1.1875 -0.9635,2.15624 -2.1562,2.15624 -1.1927,0 -2.1563,-0.96874 -2.1563,-2.15624 0,-1.19272 0.9636,-2.16146 2.1563,-2.16146 1.1927,0 2.1562,0.96874 2.1562,2.16146"
|
||||||
|
id="path121" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 1178.2514,657.54095 H 1164.59 l -3.474,-2.875 h -16.6666 l -3.0573,-2.16147 h -14.2084 l -3.8333,4.31771 h -7.1927 l -2.9948,-2.27604 -4.5313,-0.23957"
|
||||||
|
id="path123" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1093.3816,628.71282 -3.8385,2.90625 0.1249,7.86459 3.7136,3.39582 -0.089,9.45834 -2.4895,5.20313 h -29.0677"
|
||||||
|
id="path125" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1035.84,605.03574 h 15.1041 l 5.0365,4.3125 h 58.9792"
|
||||||
|
id="path127" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1188.3244,651.78574 h 17.9791 l 3.2396,-5.21354 v -30.39062 l -6.2239,-6.93751"
|
||||||
|
id="path129" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1194.6316,624.73366 -13.2552,-13.22396 h -25.4218 l -6.3959,-6.47396 h -15.1771"
|
||||||
|
id="path131" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.898667;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1036.5587,654.66595 h 13.6667 l 5.276,-2.88021 h 18.4584"
|
||||||
|
id="path133" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="logohacker"
|
||||||
|
inkscape:label="#logohacker">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 359.50319,485.35448 h -29.33986 v -58.67971 h -88.01955 v 58.67971 h -29.33986 v -139.3865 h 29.33986 v 51.36694 h 88.01955 v -51.36694 h 29.33986 z m 0,0"
|
||||||
|
id="path11-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 388.84304,345.96798 h 146.69922 v 139.3865 h -29.33985 v -58.67971 h -88.01952 v 58.67971 h -29.33985 v -139.3865 m 29.33985,51.36694 h 88.01952 v -22.00485 h -88.01952 z m 0,0"
|
||||||
|
id="path13-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 594.22197,375.33007 v 80.68455 h 117.38169 v 29.33986 H 564.88212 v -139.3865 h 146.72154 v 29.36209 z m 0,0"
|
||||||
|
id="path15-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 839.23198,412.7384 48.41097,72.61608 h -34.85238 l -39.05315,-58.67971 h -43.45405 v 58.67971 H 740.94351 V 345.99022 h 29.33986 v 51.32251 h 45.09887 l 37.40833,-51.32251 h 34.85238 z m 0,0"
|
||||||
|
id="path17-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 946.32266,426.67477 v 29.33985 h 117.35944 v 29.33986 H 916.9828 V 345.99022 h 146.6993 v 29.33985 H 946.32266 v 22.00485 h 117.35944 v 29.33985 z m 0,0"
|
||||||
|
id="path19-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1239.7208,426.67477 h -29.3399 l 29.3399,58.67971 h -34.8298 l -29.3398,-58.67971 h -53.1894 v 58.67971 h -29.3399 V 345.99022 h 146.6989 v 80.68455 m -117.359,-29.33985 h 88.0191 v -22.00485 h -88.0191 z m 0,0"
|
||||||
|
id="path21-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 248.90082,329.71989 c 0,-5.06775 4.11206,-9.15753 9.17981,-9.15753 5.04556,0 9.15762,4.08978 9.15762,9.15753 0,5.06784 -4.11206,9.17981 -9.15762,9.17981 -5.06775,0 -9.17981,-4.11197 -9.17981,-9.17981"
|
||||||
|
id="path23-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 178.81856,461.14912 c 0,-5.06779 4.11206,-9.17981 9.15762,-9.17981 5.06775,0 9.17981,4.11202 9.17981,9.17981 0,5.06779 -4.11206,9.15758 -9.17981,9.15758 -5.04556,0 -9.15762,-4.08979 -9.15762,-9.15758"
|
||||||
|
id="path25-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 264.70431,464.19423 c 0,-5.06779 4.08978,-9.15757 9.15762,-9.15757 5.06775,0 9.17981,4.08978 9.17981,9.15757 0,5.0678 -4.11206,9.17986 -9.17981,9.17986 -5.06784,0 -9.15762,-4.11206 -9.15762,-9.17986"
|
||||||
|
id="path27-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 348.74521,516.16137 c 0,-5.06784 4.11202,-9.17982 9.17986,-9.17982 5.04551,0 9.15757,4.11198 9.15757,9.17982 0,5.06775 -4.11206,9.15753 -9.15757,9.15753 -5.06784,0 -9.17986,-4.08978 -9.17986,-9.15753"
|
||||||
|
id="path29-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 455.72459,458.08181 c 0,-5.06783 4.08978,-9.15762 9.15753,-9.15762 5.06784,0 9.17982,4.08979 9.17982,9.15762 0,5.06775 -4.11198,9.17981 -9.17982,9.17981 -5.06775,0 -9.15753,-4.11206 -9.15753,-9.17981"
|
||||||
|
id="path31-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 333.4529,299.15758 c 0,-5.06783 4.11206,-9.15762 9.17989,-9.15762 5.06775,0 9.17981,4.08979 9.17981,9.15762 0,5.06775 -4.11206,9.15758 -9.17981,9.15758 -5.06783,0 -9.17989,-4.08983 -9.17989,-9.15758"
|
||||||
|
id="path33-0" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 513.78187,299.15758 c 0,-5.06783 4.11206,-9.15762 9.17981,-9.15762 5.06783,0 9.15762,4.08979 9.15762,9.15762 0,5.06775 -4.08979,9.15758 -9.15762,9.15758 -5.06775,0 -9.17981,-4.08983 -9.17981,-9.15758"
|
||||||
|
id="path35-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1247.3227,449.43537 c 0,-5.06775 4.1118,-9.17981 9.1574,-9.17981 5.0678,0 9.1801,4.11206 9.1801,9.17981 0,5.0456 -4.1123,9.15762 -9.1801,9.15762 -5.0456,0 -9.1574,-4.11202 -9.1574,-9.15762"
|
||||||
|
id="path37-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 541.29911,503.9364 c 0,-5.06784 4.11201,-9.17981 9.15757,-9.17981 5.06784,0 9.17981,4.11197 9.17981,9.17981 0,5.06775 -4.11197,9.15757 -9.17981,9.15757 -5.04556,0 -9.15757,-4.08982 -9.15757,-9.15757"
|
||||||
|
id="path39-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 892.77732,504.44762 c 0,-5.0678 4.11184,-9.17981 9.17964,-9.17981 5.06779,0 9.15787,4.11201 9.15787,9.17981 0,5.06779 -4.09008,9.15761 -9.15787,9.15761 -5.0678,0 -9.17964,-4.08982 -9.17964,-9.15761"
|
||||||
|
id="path41-0" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 782.75274,522.78505 c 0,-5.06784 4.08983,-9.17982 9.17981,-9.17982 5.0456,0 9.15762,4.11198 9.15762,9.17982 0,5.06775 -4.11202,9.15753 -9.15762,9.15753 -5.08998,0 -9.17981,-4.08978 -9.17981,-9.15753"
|
||||||
|
id="path43-62" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 787.33155,354.16983 c 0,-5.06784 4.11206,-9.15762 9.17981,-9.15762 5.0456,0 9.15762,4.08978 9.15762,9.15762 0,5.06775 -4.11202,9.15753 -9.15762,9.15753 -5.06775,0 -9.17981,-4.08978 -9.17981,-9.15753"
|
||||||
|
id="path45-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 990.57654,327.16376 c 0,-5.04556 4.11228,-9.15753 9.18007,-9.15753 5.06779,0 9.17959,4.08978 9.17959,9.15753 0,5.06784 -4.1118,9.17981 -9.17959,9.17981 -5.06779,0 -9.18007,-4.11197 -9.18007,-9.17981"
|
||||||
|
id="path47-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 938.63199,299.6688 c 0,-5.06779 4.08965,-9.17981 9.15744,-9.17981 5.0678,0 9.17964,4.11202 9.17964,9.17981 0,5.06779 -4.11184,9.15762 -9.17964,9.15762 -5.06779,0 -9.15744,-4.08983 -9.15744,-9.15762"
|
||||||
|
id="path49-8" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1192.3105,318.00623 c 0,-5.06784 4.0897,-9.15762 9.1575,-9.15762 5.0678,0 9.1796,4.08978 9.1796,9.15762 0,5.06775 -4.1118,9.15753 -9.1796,9.15753 -5.0678,0 -9.1575,-4.08978 -9.1575,-9.15753"
|
||||||
|
id="path51-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 657.43602,423.76306 c 0,-5.06783 4.11201,-9.17985 9.17985,-9.17985 5.04552,0 9.15758,4.11202 9.15758,9.17985 0,5.04552 -4.11206,9.15758 -9.15758,9.15758 -5.06784,0 -9.17985,-4.11206 -9.17985,-9.15758"
|
||||||
|
id="path53-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 614.64874,323.60743 c 0,-5.06775 4.11202,-9.15758 9.17981,-9.15758 5.04556,0 9.15762,4.08983 9.15762,9.15758 0,5.06784 -4.11206,9.15762 -9.15762,9.15762 -5.06779,0 -9.17981,-4.08978 -9.17981,-9.15762"
|
||||||
|
id="path55-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 145.50005,415.29445 c 0,-5.06775 4.11202,-9.15753 9.17985,-9.15753 5.04552,0 9.15758,4.08978 9.15758,9.15753 0,5.06784 -4.11206,9.1799 -9.15758,9.1799 -5.06783,0 -9.17985,-4.11206 -9.17985,-9.1799"
|
||||||
|
id="path57-0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 259.21419,329.45317 -27.3616,-29.78437 h -42.03157 l -32.09605,28.00618 v 34.65218 l 30.56236,30.80685 v 66.99267"
|
||||||
|
id="path59-2" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 154.67986,414.27201 v 73.34964 l 22.91624,22.93843 h 79.46209 l 16.80374,-23.16069 v -24.22763"
|
||||||
|
id="path61-3" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 357.92502,516.67254 h 64.16983 l 22.91619,-21.91595 v -17.04827 l 15.80354,-16.5592"
|
||||||
|
id="path63-7" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 342.63275,299.6688 h 30.56235 l 23.93864,12.22492 h 70.81573 l 13.00291,12.22493 h 142.87617"
|
||||||
|
id="path65-59" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 666.61583,424.98552 h 36.67481 l 19.84889,-22.93843 V 331.76485 L 689.77656,299.6688 H 522.96172"
|
||||||
|
id="path67-2" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 553.52403,504.44762 h 156.39034 l 11.20249,18.33743 h 70.81573"
|
||||||
|
id="path69-2" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 901.95696,504.44762 h 174.21644 l 16.8037,18.33743 h 47.3663 l 17.0704,-18.33743 h 101.7114 l 18.4485,-9.93552 0.3115,-24.82775 -19.36,-18.78199"
|
||||||
|
id="path71-8" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 796.51136,353.14735 v -39.71993 l 21.13805,-13.75862 h 38.45296 l 36.67495,27.51724 H 993.6441"
|
||||||
|
id="path73-9" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.81809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 953.90194,299.6688 h 70.30426 l 17.315,18.33743 h 159.9468"
|
||||||
|
id="path75-7" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="logohotel">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1046.2335,737.05487 h -29.4508 v -58.9242 h -88.41988 v 58.9242 H 898.91201 V 597.09041 h 29.45081 v 51.567 h 88.41988 v -51.567 h 29.4508 z m 0,0"
|
||||||
|
id="path77-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="M 1223.0506,737.05487 H 1075.7069 V 597.09041 h 147.3437 z m -117.8707,-29.45098 h 88.3973 v -81.04026 h -88.3973 z m 0,0"
|
||||||
|
id="path79-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1399.8455,626.56363 h -58.9242 v 110.49124 h -29.4735 V 626.56363 h -58.9464 v -29.47322 h 147.3441 z m 0,0"
|
||||||
|
id="path81-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1458.7698,678.13067 v 29.47322 h 117.8706 v 29.45098 H 1429.3185 V 597.09041 h 147.3219 v 29.47322 h -117.8706 v 22.09378 h 117.8706 v 29.47326 z m 0,0"
|
||||||
|
id="path83-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="M 1606.1134,737.05487 V 597.09041 h 29.4735 v 110.51348 h 117.8706 v 29.45098 z m 0,0"
|
||||||
|
id="path85-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 934.5641,581.28692 c 0,-5.09003 4.13446,-9.22424 9.20225,-9.22424 5.08999,0 9.22403,4.13421 9.22403,9.22424 0,5.06775 -4.13404,9.20204 -9.22403,9.20204 -5.06779,0 -9.20225,-4.13429 -9.20225,-9.20204"
|
||||||
|
id="path87-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1023.584,556.7259 c 0,-5.09003 4.1123,-9.202 9.2022,-9.202 5.09,0 9.2019,4.11197 9.2019,9.202 0,5.08998 -4.1119,9.20204 -9.2019,9.20204 -5.0899,0 -9.2022,-4.11206 -9.2022,-9.20204"
|
||||||
|
id="path89-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1358.1697,575.15218 c 0,-5.08998 4.1118,-9.22424 9.2018,-9.22424 5.09,0 9.2019,4.13426 9.2019,9.22424 0,5.06784 -4.1119,9.20209 -9.2019,9.20209 -5.09,0 -9.2018,-4.13425 -9.2018,-9.20209"
|
||||||
|
id="path91-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1437.9651,556.7259 c 0,-5.09003 4.1341,-9.202 9.2019,-9.202 5.0899,0 9.2022,4.11197 9.2022,9.202 0,5.08998 -4.1123,9.20204 -9.2022,9.20204 -5.0678,0 -9.2019,-4.11206 -9.2019,-9.20204"
|
||||||
|
id="path93-4" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1698.8675,639.61101 c 0,-5.09003 4.134,-9.22428 9.2018,-9.22428 5.09,0 9.2245,4.13425 9.2245,9.22428 0,5.06775 -4.1123,9.20204 -9.2245,9.20204 -5.0678,0 -9.2018,-4.13429 -9.2018,-9.20204"
|
||||||
|
id="path95-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 861.4147,712.76057 c 0,-5.08998 4.11202,-9.20204 9.20204,-9.20204 5.09003,0 9.22416,4.11206 9.22416,9.20204 0,5.09003 -4.13413,9.20209 -9.22416,9.20209 -5.09002,0 -9.20204,-4.11206 -9.20204,-9.20209"
|
||||||
|
id="path97-8" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 987.26487,715.82792 c 0,-5.09003 4.13404,-9.20204 9.20226,-9.20204 5.08997,0 9.20187,4.11201 9.20187,9.20204 0,5.09003 -4.1119,9.20205 -9.20187,9.20205 -5.06822,0 -9.20226,-4.11202 -9.20226,-9.20205"
|
||||||
|
id="path99-4" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1025.629,768.52853 c 0,-5.09003 4.1341,-9.22424 9.2019,-9.22424 5.0899,0 9.2022,4.13421 9.2022,9.22424 0,5.06775 -4.1123,9.20204 -9.2022,9.20204 -5.0678,0 -9.2019,-4.13429 -9.2019,-9.20204"
|
||||||
|
id="path101-50" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1188.3097,756.2369 c 0,-5.09003 4.134,-9.202 9.2018,-9.202 5.09,0 9.2244,4.11197 9.2244,9.202 0,5.08999 -4.1344,9.22428 -9.2244,9.22428 -5.0678,0 -9.2018,-4.13429 -9.2018,-9.22428"
|
||||||
|
id="path103-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 827.65163,666.70592 c 0,-5.06783 4.11202,-9.20208 9.20201,-9.20208 5.09007,0 9.20208,4.13425 9.20208,9.20208 0,5.08999 -4.11201,9.22424 -9.20208,9.22424 -5.08999,0 -9.20201,-4.13425 -9.20201,-9.22424"
|
||||||
|
id="path105-6" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.83516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 941.85489,580.50898 914.35993,550.5912 H 872.1504 l -32.22937,28.11736 v 34.80773 l 30.69571,30.94021 v 67.28164"
|
||||||
|
id="path107-1" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.83516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 836.85368,665.68345 v 73.68306 L 859.881,762.3716 h 119.6932 l 16.8925,-23.24963 v -24.31653"
|
||||||
|
id="path109-0" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1648.7452,780.79792 c 0,5.09003 -4.1345,9.20205 -9.2245,9.20205 -5.0677,0 -9.2018,-4.11202 -9.2018,-9.20205 0,-5.09003 4.1341,-9.20204 9.2018,-9.20204 5.09,0 9.2245,4.11201 9.2245,9.20204"
|
||||||
|
id="path111-63" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1691.7103,756.2369 c 0,5.08999 -4.1345,9.22428 -9.2019,9.22428 -5.0904,0 -9.2022,-4.13429 -9.2022,-9.22428 0,-5.09003 4.1118,-9.202 9.2022,-9.202 5.0674,0 9.2019,4.11197 9.2019,9.202"
|
||||||
|
id="path113-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1756.1692,575.15218 c 0,5.06784 -4.1345,9.20209 -9.2023,9.20209 -5.09,0 -9.2018,-4.13425 -9.2018,-9.20209 0,-5.08998 4.1118,-9.22424 9.2018,-9.22424 5.0678,0 9.2023,4.13426 9.2023,9.22424"
|
||||||
|
id="path115-0" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1151.4793,780.79792 c 0,5.09003 -4.1345,9.20205 -9.2023,9.20205 -5.09,0 -9.224,-4.11202 -9.224,-9.20205 0,-5.09003 4.134,-9.20204 9.224,-9.20204 5.0678,0 9.2023,4.11201 9.2023,9.20204"
|
||||||
|
id="path117-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1289.5985,654.43653 c 0,5.08998 -4.1118,9.20204 -9.2018,9.20204 -5.09,0 -9.2023,-4.11206 -9.2023,-9.20204 0,-5.09003 4.1123,-9.20209 9.2023,-9.20209 5.09,0 9.2018,4.11206 9.2018,9.20209"
|
||||||
|
id="path119-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.69014"
|
||||||
|
d="m 1346.3889,768.01731 c 0,5.06779 -4.1118,9.202 -9.2018,9.202 -5.09,0 -9.2022,-4.13421 -9.2022,-9.202 0,-5.09007 4.1122,-9.22428 9.2022,-9.22428 5.09,0 9.2018,4.13421 9.2018,9.22428"
|
||||||
|
id="path121-55" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.83516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1639.5207,780.79792 h -58.3015 l -14.8257,-12.26939 h -71.1267 l -13.0474,-9.22432 h -60.6359 l -16.3591,18.42632 h -30.6957 l -12.7806,-9.71326 -19.3379,-1.02239"
|
||||||
|
id="path123-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.83516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1277.3291,657.77056 -16.3812,12.40276 0.533,33.56304 15.8482,14.49205 -0.3798,40.36456 -10.6242,22.20495 h -124.0498"
|
||||||
|
id="path125-7" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.83516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1031.7637,556.7259 h 64.4585 l 21.4938,18.40409 h 251.7006"
|
||||||
|
id="path127-6" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.83516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1682.5084,756.2369 h 76.7279 l 13.8254,-22.24938 V 604.29205 l -26.5612,-29.60662"
|
||||||
|
id="path129-5" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.83516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1709.4251,640.78904 -56.5681,-56.43477 h -108.4904 l -27.2952,-27.62837 h -64.7701"
|
||||||
|
id="path131-6" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:3.83516;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 1034.8309,768.52853 h 58.3242 l 22.5159,-12.29163 h 78.7734"
|
||||||
|
id="path133-9" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Text"
|
||||||
|
style="display:inline">
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Open Sans Pro';-inkscape-font-specification:'Open Sans Pro';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="79.389313"
|
||||||
|
y="141.33333"
|
||||||
|
id="text5802"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan5804"
|
||||||
|
x="79.389313"
|
||||||
|
y="141.33333"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:70px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold'">BREAK</tspan></text>
|
||||||
|
<g
|
||||||
|
id="g20765"
|
||||||
|
transform="matrix(2.4640207,0,0,2.4640207,-2141.334,-2613.2162)">
|
||||||
|
<g
|
||||||
|
id="g20922"
|
||||||
|
transform="translate(-106.05972,-17.424097)">
|
||||||
|
<g
|
||||||
|
id="g1906"
|
||||||
|
transform="matrix(1.3333333,0,0,1.3333333,1326.3341,1294.8908)">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -66.867182,120.36719 c 0,-0.89062 0.72266,-1.60937 1.61328,-1.60937 0.88672,0 1.60938,0.71875 1.60938,1.60937 0,0.89063 -0.72266,1.61328 -1.60938,1.61328 -0.89062,0 -1.61328,-0.72265 -1.61328,-1.61328"
|
||||||
|
id="path23-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -79.183592,143.46485 c 0,-0.89063 0.72266,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72265 1.61328,1.61328 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.88672,0 -1.60938,-0.71875 -1.60938,-1.60937"
|
||||||
|
id="path25-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -64.089842,144 c 0,-0.89062 0.71875,-1.60937 1.60938,-1.60937 0.89062,0 1.61328,0.71875 1.61328,1.60937 0,0.89063 -0.72266,1.61329 -1.61328,1.61329 -0.89063,0 -1.60938,-0.72266 -1.60938,-1.61329"
|
||||||
|
id="path27-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -49.320312,153.13282 c 0,-0.89063 0.72266,-1.61328 1.61329,-1.61328 0.88671,0 1.60937,0.72265 1.60937,1.61328 0,0.89062 -0.72266,1.60937 -1.60937,1.60937 -0.89063,0 -1.61329,-0.71875 -1.61329,-1.60937"
|
||||||
|
id="path29-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -30.519522,142.92579 c 0,-0.89063 0.71875,-1.60938 1.60937,-1.60938 0.89063,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72265,1.61328 -1.61328,1.61328 -0.89062,0 -1.60937,-0.72266 -1.60937,-1.61328"
|
||||||
|
id="path31-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -52.007812,114.9961 c 0,-0.89063 0.72266,-1.60938 1.61329,-1.60938 0.89062,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.89063,0 -1.61329,-0.71875 -1.61329,-1.60937"
|
||||||
|
id="path33-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -20.316402,114.9961 c 0,-0.89063 0.72266,-1.60938 1.61328,-1.60938 0.89063,0 1.60938,0.71875 1.60938,1.60938 0,0.89062 -0.71875,1.60937 -1.60938,1.60937 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path35-8" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 108.59766,141.40625 c 0,-0.89062 0.72266,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72266 1.61328,1.61328 0,0.88672 -0.72266,1.60938 -1.61328,1.60938 -0.88672,0 -1.60938,-0.72266 -1.60938,-1.60938"
|
||||||
|
id="path37-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -15.480462,150.98438 c 0,-0.89063 0.72265,-1.61328 1.60937,-1.61328 0.89063,0 1.61328,0.72265 1.61328,1.61328 0,0.89062 -0.72265,1.60937 -1.61328,1.60937 -0.88672,0 -1.60937,-0.71875 -1.60937,-1.60937"
|
||||||
|
id="path39-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 46.289068,151.07422 c 0,-0.89062 0.72266,-1.61328 1.61328,-1.61328 0.89063,0 1.60938,0.72266 1.60938,1.61328 0,0.89063 -0.71875,1.60938 -1.60938,1.60938 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60938"
|
||||||
|
id="path41-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 26.953128,154.29688 c 0,-0.89063 0.71875,-1.61328 1.61328,-1.61328 0.88672,0 1.60938,0.72265 1.60938,1.61328 0,0.89062 -0.72266,1.60937 -1.60938,1.60937 -0.89453,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path43-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 27.757818,124.66407 c 0,-0.89063 0.72266,-1.60938 1.61328,-1.60938 0.88672,0 1.60938,0.71875 1.60938,1.60938 0,0.89062 -0.72266,1.60937 -1.60938,1.60937 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60937"
|
||||||
|
id="path45-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 63.476568,119.91797 c 0,-0.88672 0.72266,-1.60937 1.61328,-1.60937 0.89063,0 1.61328,0.71875 1.61328,1.60937 0,0.89063 -0.72265,1.61328 -1.61328,1.61328 -0.89062,0 -1.61328,-0.72265 -1.61328,-1.61328"
|
||||||
|
id="path47-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 54.347658,115.08594 c 0,-0.89062 0.71875,-1.61328 1.60938,-1.61328 0.89062,0 1.61328,0.72266 1.61328,1.61328 0,0.89063 -0.72266,1.60938 -1.61328,1.60938 -0.89063,0 -1.60938,-0.71875 -1.60938,-1.60938"
|
||||||
|
id="path49-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 98.929688,118.3086 c 0,-0.89063 0.71875,-1.60938 1.609382,-1.60938 0.89062,0 1.61328,0.71875 1.61328,1.60938 0,0.89062 -0.72266,1.60937 -1.61328,1.60937 -0.890632,0 -1.609382,-0.71875 -1.609382,-1.60937"
|
||||||
|
id="path51-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 4.929688,136.89454 c 0,-0.89063 0.72266,-1.61329 1.61329,-1.61329 0.88671,0 1.60937,0.72266 1.60937,1.61329 0,0.88671 -0.72266,1.60937 -1.60937,1.60937 -0.89063,0 -1.61329,-0.72266 -1.61329,-1.60937"
|
||||||
|
id="path53-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -2.589842,119.29297 c 0,-0.89062 0.72266,-1.60937 1.61328,-1.60937 0.88672,0 1.60938,0.71875 1.60938,1.60937 0,0.89063 -0.72266,1.60938 -1.60938,1.60938 -0.89062,0 -1.61328,-0.71875 -1.61328,-1.60938"
|
||||||
|
id="path55-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m -85.039062,135.40625 c 0,-0.89062 0.72266,-1.60937 1.61329,-1.60937 0.88671,0 1.60937,0.71875 1.60937,1.60937 0,0.89063 -0.72266,1.61329 -1.60937,1.61329 -0.89063,0 -1.61329,-0.72266 -1.61329,-1.61329"
|
||||||
|
id="path57-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -65.054683,120.32031 -4.808594,-5.23437 h -7.386719 l -5.640625,4.92187 v 6.08985 l 5.371094,5.41406 v 11.77344"
|
||||||
|
id="path59-7" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -83.425777,135.22656 v 12.89063 l 4.027344,4.03125 h 13.964844 l 2.953125,-4.07031 v -4.25782"
|
||||||
|
id="path61-8" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -47.707027,153.22266 h 11.277344 l 4.027344,-3.85156 v -2.9961 l 2.777343,-2.91015"
|
||||||
|
id="path63-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -50.394527,115.08594 h 5.371094 l 4.207031,2.14844 h 12.445313 l 2.285156,2.14843 h 25.109375"
|
||||||
|
id="path65-5" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 6.542973,137.10938 h 6.445313 l 3.488281,-4.03125 v -12.35156 l -5.863281,-5.64063 h -29.316407"
|
||||||
|
id="path67-0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m -13.332027,151.07422 h 27.484375 l 1.96875,3.22266 h 12.445313"
|
||||||
|
id="path69-3" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 47.902348,151.07422 h 30.617188 l 2.953125,3.22266 h 8.324218 l 3,-3.22266 h 17.875001 l 3.24219,-1.74609 0.0547,-4.36328 -3.40235,-3.30079"
|
||||||
|
id="path71-6" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 29.371098,124.48438 v -6.98047 l 3.714844,-2.41797 h 6.757812 l 6.445313,4.83594 h 17.726562"
|
||||||
|
id="path73-1" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.671;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 57.031254,115.08594 h 12.355469 l 3.042969,3.22266 h 28.109378"
|
||||||
|
id="path75-0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g1877"
|
||||||
|
transform="matrix(1.3333333,0,0,1.3333333,1440.3341,1234.547)">
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 53.632818,164.57813 c 0,-0.89453 0.72656,-1.62109 1.61719,-1.62109 0.89453,0 1.62109,0.72656 1.62109,1.62109 0,0.89062 -0.72656,1.61719 -1.62109,1.61719 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.61719"
|
||||||
|
id="path87-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 69.277348,160.26172 c 0,-0.89453 0.72266,-1.61718 1.61719,-1.61718 0.89453,0 1.61719,0.72265 1.61719,1.61718 0,0.89453 -0.72266,1.61719 -1.61719,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path89-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 128.07813,163.5 c 0,-0.89453 0.72266,-1.62109 1.61719,-1.62109 0.89453,0 1.61718,0.72656 1.61718,1.62109 0,0.89063 -0.72265,1.61719 -1.61718,1.61719 -0.89453,0 -1.61719,-0.72656 -1.61719,-1.61719"
|
||||||
|
id="path91-2" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 142.10157,160.26172 c 0,-0.89453 0.72656,-1.61718 1.61718,-1.61718 0.89454,0 1.61719,0.72265 1.61719,1.61718 0,0.89453 -0.72265,1.61719 -1.61719,1.61719 -0.89062,0 -1.61718,-0.72266 -1.61718,-1.61719"
|
||||||
|
id="path93-0" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 187.95313,174.82813 c 0,-0.89453 0.72656,-1.62109 1.61719,-1.62109 0.89453,0 1.62109,0.72656 1.62109,1.62109 0,0.89062 -0.72266,1.61719 -1.62109,1.61719 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.61719"
|
||||||
|
id="path95-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 40.777348,187.6836 c 0,-0.89453 0.72266,-1.61719 1.61719,-1.61719 0.89453,0 1.62109,0.72266 1.62109,1.61719 0,0.89453 -0.72656,1.61719 -1.62109,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path97-1" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 62.894538,188.22266 c 0,-0.89453 0.72656,-1.61719 1.61719,-1.61719 0.89453,0 1.61718,0.72266 1.61718,1.61719 0,0.89453 -0.72265,1.61719 -1.61718,1.61719 -0.89063,0 -1.61719,-0.72266 -1.61719,-1.61719"
|
||||||
|
id="path99-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 69.636728,197.48438 c 0,-0.89453 0.72656,-1.62109 1.61718,-1.62109 0.89453,0 1.61719,0.72656 1.61719,1.62109 0,0.89062 -0.72266,1.61719 -1.61719,1.61719 -0.89062,0 -1.61718,-0.72657 -1.61718,-1.61719"
|
||||||
|
id="path101-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 98.226568,195.32422 c 0,-0.89453 0.72656,-1.61718 1.61719,-1.61718 0.894532,0 1.621092,0.72265 1.621092,1.61718 0,0.89453 -0.72656,1.6211 -1.621092,1.6211 -0.89063,0 -1.61719,-0.72657 -1.61719,-1.6211"
|
||||||
|
id="path103-4" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 34.843758,179.58985 c 0,-0.89063 0.72265,-1.61719 1.61718,-1.61719 0.89454,0 1.61719,0.72656 1.61719,1.61719 0,0.89453 -0.72265,1.62109 -1.61719,1.62109 -0.89453,0 -1.61718,-0.72656 -1.61718,-1.62109"
|
||||||
|
id="path105-7" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 54.914067,164.44141 -4.832031,-5.25781 h -7.417969 l -5.664063,4.9414 v 6.11719 l 5.394532,5.4375 v 11.82422"
|
||||||
|
id="path107-6" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 36.460942,179.41016 v 12.94922 l 4.046875,4.04297 h 21.035156 l 2.96875,-4.08594 v -4.27344"
|
||||||
|
id="path109-5" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 179.14454,199.64063 c 0,0.89453 -0.72657,1.61719 -1.6211,1.61719 -0.89062,0 -1.61719,-0.72266 -1.61719,-1.61719 0,-0.89453 0.72657,-1.61719 1.61719,-1.61719 0.89453,0 1.6211,0.72266 1.6211,1.61719"
|
||||||
|
id="path111-6" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 186.69532,195.32422 c 0,0.89453 -0.72657,1.6211 -1.61719,1.6211 -0.89453,0 -1.61719,-0.72657 -1.61719,-1.6211 0,-0.89453 0.72266,-1.61718 1.61719,-1.61718 0.89062,0 1.61719,0.72265 1.61719,1.61718"
|
||||||
|
id="path113-9" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 198.02344,163.5 c 0,0.89063 -0.72656,1.61719 -1.61719,1.61719 -0.89453,0 -1.61718,-0.72656 -1.61718,-1.61719 0,-0.89453 0.72265,-1.62109 1.61718,-1.62109 0.89063,0 1.61719,0.72656 1.61719,1.62109"
|
||||||
|
id="path115-3" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 91.753908,199.64063 c 0,0.89453 -0.72656,1.61719 -1.61719,1.61719 -0.89453,0 -1.62109,-0.72266 -1.62109,-1.61719 0,-0.89453 0.72656,-1.61719 1.62109,-1.61719 0.89063,0 1.61719,0.72266 1.61719,1.61719"
|
||||||
|
id="path117-7" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 116.02735,177.4336 c 0,0.89453 -0.72266,1.61719 -1.61719,1.61719 -0.89453,0 -1.61719,-0.72266 -1.61719,-1.61719 0,-0.89453 0.72266,-1.61719 1.61719,-1.61719 0.89453,0 1.61719,0.72266 1.61719,1.61719"
|
||||||
|
id="path119-4" />
|
||||||
|
<path
|
||||||
|
style="fill:#eeee23;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 126.00782,197.39454 c 0,0.89062 -0.72266,1.61718 -1.61719,1.61718 -0.89453,0 -1.61719,-0.72656 -1.61719,-1.61718 0,-0.89454 0.72266,-1.6211 1.61719,-1.6211 0.89453,0 1.61719,0.72656 1.61719,1.6211"
|
||||||
|
id="path121-5" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 177.52344,199.64063 h -10.24609 l -2.60547,-2.15625 h -12.5 l -2.29297,-1.6211 h -10.65625 l -2.875,3.23828 h -5.39453 l -2.24609,-1.70703 -3.39844,-0.17968"
|
||||||
|
id="path123-2" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 113.8711,178.01953 -2.87891,2.17969 0.0937,5.89844 2.78516,2.54687 -0.0664,7.09375 -1.86718,3.90235 H 90.136725"
|
||||||
|
id="path125-5" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 70.714848,160.26172 h 11.328125 l 3.777344,3.23438 h 44.234373"
|
||||||
|
id="path127-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 185.07813,195.32422 h 13.48438 l 2.42968,-3.91015 V 168.6211 l -4.66796,-5.20313"
|
||||||
|
id="path129-7" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="m 189.8086,175.03516 -9.94141,-9.91797 h -19.0664 l -4.79688,-4.85547 H 144.6211"
|
||||||
|
id="path131-4" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#eeee23;stroke-width:0.674;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
|
||||||
|
d="M 71.253911,197.48438 H 81.50391 l 3.957032,-2.16016 h 13.84375"
|
||||||
|
id="path133-4" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="FadeOutLayer"
|
||||||
|
style="display:inline">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;fill-opacity:1;opacity:0"
|
||||||
|
id="fadeout"
|
||||||
|
width="1932.7112"
|
||||||
|
height="1092.9814"
|
||||||
|
x="-4.4430141"
|
||||||
|
y="-1.8739687"
|
||||||
|
inkscape:label="#fadeout" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 73 KiB |
953
hackerhotel2024/artwork/sponsors.svg
Normal file
After Width: | Height: | Size: 486 KiB |
BIN
hackerhotel2024/intromusic.mp3
Normal file
BIN
hackerhotel2024/outromusic.mp3
Normal file
149
osc21/__init__.py
Normal file
|
@ -0,0 +1,149 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
from renderlib import *
|
||||||
|
from easing import *
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'https://events.opensuse.org/conferences/oSVC21/schedule.xml'
|
||||||
|
|
||||||
|
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):
|
||||||
|
# 3 Sekunde Text Fadein
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 4 Sekunden stehen lassen
|
||||||
|
frames = 4*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield ()
|
||||||
|
|
||||||
|
# 1 Sekunde Fade to black layer
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('fadeout', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def pauseFrames(parameters):
|
||||||
|
frames = 15*fps
|
||||||
|
colors = ['#21A4D4', '#73BA25', '#6DA741', '#35B9AB', '#00A489', '#173F4F']
|
||||||
|
for i in range(0, len(colors)):
|
||||||
|
z = 0
|
||||||
|
for z in range(0,round(frames/4)):
|
||||||
|
yield (
|
||||||
|
('pausetext', 'attr', 'opacity', '1.0'),
|
||||||
|
('sponsors', 'attr', 'opacity', '0.0'),
|
||||||
|
('pause_bg_alt', 'style', 'fill', "%s" % colors[i]),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.0, 1, round(frames/4))),
|
||||||
|
)
|
||||||
|
for z in range(0,round(frames/4)):
|
||||||
|
yield (
|
||||||
|
('pausetext', 'attr', 'opacity', '1.0'),
|
||||||
|
('sponsors', 'attr', 'opacity', '0.0'),
|
||||||
|
('pause_bg_alt', 'style', 'fill', "%s" % colors[i]),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '%.4f' % easeLinear(z, 1.0, -1, round(frames/4))),
|
||||||
|
)
|
||||||
|
z=0
|
||||||
|
for z in range(0,round(frames/2)):
|
||||||
|
yield (
|
||||||
|
('pausetext', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.9, -1, round(frames/2))),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '0.0'),
|
||||||
|
('sponsors', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.0, 1, round(frames/2))),
|
||||||
|
)
|
||||||
|
for z in range(0,round(frames/2)):
|
||||||
|
yield (
|
||||||
|
('pausetext', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.0, 1, round(frames/2))),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '0.0'),
|
||||||
|
('sponsors', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.9, -1, round(frames/2))),
|
||||||
|
)
|
||||||
|
|
||||||
|
def outroFrames(p):
|
||||||
|
# 5 Sekunden stehen bleiben
|
||||||
|
frames = 5*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield []
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
# render(
|
||||||
|
# 'intro.svg',
|
||||||
|
# '../intro.ts',
|
||||||
|
# introFrames,
|
||||||
|
# {
|
||||||
|
# '$ID': 4711,
|
||||||
|
# '$TITLE': "Long Long Long title is LONG",
|
||||||
|
# '$SUBTITLE': 'Long Long Long Long subtitle is LONGER',
|
||||||
|
# '$SPEAKER': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||||
|
# }
|
||||||
|
# )
|
||||||
|
|
||||||
|
render(
|
||||||
|
'pause.svg',
|
||||||
|
'../pause.ts',
|
||||||
|
pauseFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
# render(
|
||||||
|
# 'infobeamer.svg',
|
||||||
|
# '../infobeamer.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 ('Stage 1', 'Stage 2'):
|
||||||
|
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'],
|
||||||
|
'$SUBTITLE': 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
|
||||||
|
))
|
BIN
osc21/artwork/hexagons.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
osc21/artwork/infobeamer.png
Normal file
After Width: | Height: | Size: 36 KiB |
239
osc21/artwork/infobeamer.svg
Normal file
|
@ -0,0 +1,239 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<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"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:docname="infobeamer.svg"
|
||||||
|
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="1920px"
|
||||||
|
height="1080px"
|
||||||
|
viewBox="0 0 1920 1080"
|
||||||
|
enable-background="new 0 0 1920 1080"
|
||||||
|
xml:space="preserve"
|
||||||
|
inkscape:export-filename="/home/thorsten/git/voc/intro-outro-generator/osc21/artwork/infobeamer.png"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96"><metadata
|
||||||
|
id="metadata943"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs941"><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath18"><path
|
||||||
|
d="m 312.117,871.087 c -6.264,-1.72 -10.84,-10.647 -14.167,-15.645 l 0,0 c -4.194,-6.302 -7.979,-12.897 -11.534,-19.58 l 0,0 c -6.794,-12.771 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.658,-134.44 c -34.506,-10.769 -67.49,-29.469 -99.699,-48.874 l 0,0 c 12.812,-37.59 55.526,-58.834 95.24,-58.766 l 0,0 c 0.024,0 0.047,0 0.071,0 l 0,0 c -6.665,-0.282 -13.34,-0.125 -19.96,0.504 l 0,0 c 17.08,-29.328 37.542,-57.811 69.853,-68.2 l 0,0 c 26.039,-8.372 54.524,-0.76 79.568,10.242 l 0,0 c 16.073,7.061 37.811,23.424 50.174,37.459 l 0,0 c -5.443,-6.931 -9.356,-11.85 -9.378,-14.226 l 0,0 c -0.036,-4.022 11.889,-7.249 15.319,-7.836 l 0,0 c 4.537,-0.776 55.479,-8.821 65.762,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.162 l 0,0 c 9.775,1.619 19.405,4.609 27.984,9.637 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.648 -9.272,-36.305 l 0,0 c -0.171,-0.666 -0.311,-1.344 -0.413,-2.024 l 0,0 c -3.39,-22.815 -3.156,-46.468 -3.991,-69.493 l 0,0 c -0.901,-24.858 -1.418,-49.754 -2.83,-74.59 l 0,0 c -0.791,-13.917 -3.767,-27.11 -7.947,-40.362 l 0,0 c -1.785,-5.66 -3.752,-11.282 -5.94,-16.816 l 0,0 c 2.853,8.361 4.713,17.016 5.261,25.851 l 0,0 c 0.555,8.93 -0.352,17.967 -2.745,26.592 l 0,0 c -2.662,9.599 -7.206,18.729 -13.686,26.328 l 0,0 c -1.536,1.801 -2.531,3.044 -3.792,5.045 l 0,0 c -1.313,2.081 -3.691,4.003 -5.535,5.683 l 0,0 c -4.28,3.901 -8.981,7.314 -13.802,10.512 l 0,0 c -8.952,5.937 -18.089,11.527 -28.039,15.555 l 0,0 c -22.597,9.151 -48.915,13.05 -72.999,8.126 l 0,0 c -49.265,-10.074 -94.2,-46.844 -113.089,-93.79 l 0,0 c -7.565,-18.805 -8.616,-45.719 -6.222,-65.756 l 0,0 c 7.2,-60.243 65.422,-100.088 125.514,-108.448 l 0,0 c 24.824,-3.455 52.18,-1.693 76.294,4.869 l 0,0 c 50.617,13.775 89.298,54.937 112.844,99.669 l 0,0 c 2.794,5.307 14.736,24.552 14.675,26.909 l 0,0 c 0.267,-10.318 3.457,-20.545 9.106,-29.184 l 0,0 16.227,92.559 c 1.621,-9.021 7.294,-17.234 15.157,-21.945 l 0,0 0.204,60.905 c 1.41,-9.085 6.602,-14.523 14.491,-19.244 l 0,0 c -4.166,27.38 -4.717,52.34 -2.482,79.945 l 0,0 c 7.063,-4.324 13.65,-8.62 20.658,-10.281 l 0,0 c -3.651,26.792 -12.97,49.694 -16.621,76.487 l 0,0 c 10.534,-8.562 10.319,-10.84 19.664,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.882,-0.923 c -10.728,25.86 -25.45,41.841 -43.486,63.254 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.489 l 0,0 c -14.416,20.027 -33.431,26.496 -56.345,35.655 l 0,0 c 14.572,6.667 21.146,13.146 30.811,25.412 l 0,0 c -25.908,4.436 -43.613,6.974 -69.672,10.409 l 0,0 c 9.984,6.221 25.959,11.735 32.646,23.966 l 0,0 c -23.093,-0.068 -51.514,-1.99 -74.606,-2.058 l 0,0 c 3.118,9.15 16.024,22.056 15.344,33.286 l 0,0 -67.289,-24.136 c -2.029,7.646 4.971,10.282 1.623,31.588 l 0,0 -54.542,-23.538 c 0,6.9 9.282,21.518 5.236,31.248 l 0,0 c -1.052,2.53 -27.624,-18.934 -36.917,-20.788 l 0,0 c 0,0 19.327,52.162 14.75,52.15 l 0,0 c -15.455,-0.042 -33.75,-18.848 -49.058,-21.738 l 0,0 c -3.6,5.947 -6.717,12.18 -9.698,18.456 l 0,0 c -5.957,12.543 -11.32,25.358 -17.137,37.966 l 0,0 c -2.809,6.088 -5.71,12.138 -8.882,18.045 l 0,0 c -2.044,3.808 -3.89,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.531 -9.801,2.531 l 0,0 c -1.401,0 -2.751,-0.155 -3.948,-0.484 m 41.469,-271.97 c -2.238,-1.885 -4.527,-3.722 -6.865,-5.509 l 0,0 c 2.327,1.793 4.616,3.631 6.865,5.509 m 85.349,-45.569 c 0,0 0,0 0,0 M 383.533,241.747 c -16.443,19.302 -23.431,46.211 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.037 39.804,56.683 l 0,0 c 20.808,11.645 47.481,12.699 68.622,1.67 l 0,0 c 21.142,-11.029 35.713,-34.183 35.364,-58.026 l 0,0 c -0.349,-23.843 -16.558,-46.24 -39.055,-54.146 l 0,0 c -13.248,-4.655 -27.77,-4.347 -39.5,3.375 l 0,0 c -11.729,7.722 -19.3,22.583 -15.553,36.117 l 0,0 c 3.746,13.535 19.143,23.26 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.83 14.374,-7.338 l 0,0 c 6.351,-3.339 14.186,-5.411 20.409,0.204 l 0,0 c 2.348,2.119 3.893,5.052 4.395,8.174 l 0,0 c 1.65,10.257 -5.836,19.545 -14.699,22.812 l 0,0 c -6.84,2.521 -14.529,2.26 -21.749,1.25 l 0,0 c -23.7,-3.318 -46.176,-17.837 -57.931,-38.681 l 0,0 c -11.755,-20.845 -11.322,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.479,-17.733 32.216,-21.387 l 0,0 c -16.77,4.192 -32.281,13.594 -43.507,26.771 m 146.601,21.02 c 0.24,0.346 0.478,0.693 0.716,1.042 l 0,0 c -2.094,-3.187 -4.311,-6.295 -6.662,-9.313 l 0,0 c -5.252,-6.741 -11.254,-13.003 -17.851,-18.524 l 0,0 c 9.038,7.807 17.014,17.001 23.797,26.795"
|
||||||
|
id="path20"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath28"><path
|
||||||
|
d="m 314.284,874.024 c -6.264,-1.721 -10.84,-10.648 -14.166,-15.645 l 0,0 c -4.194,-6.302 -7.981,-12.897 -11.535,-19.58 l 0,0 c -6.794,-12.772 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.657,-134.44 c -34.506,-10.769 -67.491,-29.47 -99.701,-48.874 l 0,0 c 12.813,-37.59 55.528,-58.835 95.241,-58.767 l 0,0 c 0.017,0 0.031,0 0.048,0 l 0,0 c -6.659,-0.281 -13.323,-0.124 -19.938,0.505 l 0,0 c 17.081,-29.328 37.544,-57.812 69.854,-68.2 l 0,0 c 26.039,-8.373 54.524,-0.761 79.568,10.242 l 0,0 c 16.072,7.06 37.807,23.42 50.171,37.455 l 0,0 c -5.441,-6.928 -9.354,-11.847 -9.375,-14.223 l 0,0 c -0.036,-4.022 11.889,-7.249 15.32,-7.836 l 0,0 c 4.536,-0.776 55.478,-8.82 65.761,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.161 l 0,0 c 9.774,1.618 19.404,4.608 27.984,9.636 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.647 -9.272,-36.304 l 0,0 c -0.171,-0.666 -0.312,-1.345 -0.413,-2.025 l 0,0 c -3.39,-22.814 -3.157,-46.467 -3.991,-69.492 l 0,0 c -0.902,-24.859 -1.418,-49.754 -2.83,-74.591 l 0,0 c -0.791,-13.916 -3.768,-27.109 -7.947,-40.362 l 0,0 c -1.785,-5.661 -3.753,-11.284 -5.942,-16.82 l 0,0 c 2.854,8.362 4.714,17.02 5.263,25.856 l 0,0 c 0.554,8.929 -0.353,17.967 -2.745,26.592 l 0,0 c -2.662,9.598 -7.206,18.729 -13.686,26.327 l 0,0 c -1.536,1.801 -3.494,3.382 -4.757,5.383 l 0,0 c -1.312,2.081 -2.726,3.665 -4.57,5.345 l 0,0 c -4.28,3.901 -8.981,7.315 -13.802,10.512 l 0,0 c -8.952,5.938 -18.598,10.791 -28.547,14.819 l 0,0 c -22.597,9.149 -47.586,13.078 -71.67,8.153 l 0,0 c -49.265,-10.074 -95.021,-46.134 -113.91,-93.081 l 0,0 c -7.566,-18.804 -8.616,-45.718 -6.222,-65.755 l 0,0 c 7.2,-60.244 65.422,-100.089 125.514,-108.45 l 0,0 c 24.823,-3.453 52.179,-1.692 76.293,4.87 l 0,0 c 50.618,13.775 89.298,54.937 112.845,99.669 l 0,0 c 2.794,5.306 14.736,24.552 14.675,26.91 l 0,0 c 0.266,-10.318 3.457,-20.545 9.105,-29.185 l 0,0 16.228,92.559 c 1.622,-9.021 7.294,-17.234 15.156,-21.944 l 0,0 0.204,60.905 c 1.411,-9.085 6.603,-14.524 14.491,-19.245 l 0,0 c -4.165,27.381 -4.717,52.34 -2.481,79.945 l 0,0 c 7.063,-4.324 13.65,-8.619 20.657,-10.281 l 0,0 c -3.651,26.793 -12.969,49.695 -16.621,76.488 l 0,0 c 10.535,-8.562 10.321,-10.841 19.665,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.881,-0.924 c -10.726,25.861 -25.449,41.842 -43.485,63.255 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.488 l 0,0 c -14.416,20.028 -33.431,26.496 -56.345,35.655 l 0,0 c 14.571,6.668 21.146,13.147 30.811,25.413 l 0,0 c -25.908,4.436 -43.613,6.973 -69.673,10.409 l 0,0 c 9.985,6.22 25.961,11.735 32.648,23.966 l 0,0 c -23.094,-0.069 -51.515,-1.991 -74.608,-2.06 l 0,0 c 3.119,9.152 16.025,22.058 15.345,33.287 l 0,0 -67.289,-24.135 c -2.03,7.644 4.971,10.282 1.624,31.588 l 0,0 -54.543,-23.538 c 0,6.899 9.282,21.517 5.235,31.248 l 0,0 c -1.052,2.53 -27.623,-18.935 -36.917,-20.789 l 0,0 c 0,0 19.328,52.162 14.751,52.15 l 0,0 c -15.456,-0.043 -33.751,-18.848 -49.059,-21.737 l 0,0 c -3.6,5.946 -6.717,12.18 -9.697,18.454 l 0,0 c -5.958,12.545 -11.32,25.36 -17.137,37.968 l 0,0 c -2.808,6.086 -5.71,12.137 -8.882,18.045 l 0,0 c -2.044,3.808 -3.889,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.53 -9.801,2.53 l 0,0 c -1.401,0 -2.752,-0.154 -3.948,-0.483 m 41.469,-271.971 c -2.231,-1.88 -4.511,-3.71 -6.842,-5.492 l 0,0 c 2.319,1.787 4.601,3.62 6.842,5.492 m 85.349,-45.569 c 0,0 0,0 0,0 M 385.7,244.684 c -16.443,19.301 -23.431,46.21 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.036 39.804,56.681 l 0,0 c 20.807,11.646 47.481,12.699 68.623,1.672 l 0,0 c 21.141,-11.029 35.712,-34.184 35.362,-58.026 l 0,0 C 510.325,292.31 494.456,269.141 471.96,261.234 l 0,0 c -13.249,-4.656 -28.749,-3.925 -40.478,3.797 l 0,0 c -11.73,7.722 -18.663,22.934 -14.915,36.468 l 0,0 c 3.747,13.534 19.144,23.259 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.831 14.374,-7.339 l 0,0 c 6.352,-3.338 14.186,-5.411 20.41,0.205 l 0,0 c 2.347,2.118 3.891,5.052 4.393,8.173 l 0,0 c 1.651,10.257 -5.876,18.554 -14.739,21.821 l 0,0 c -6.84,2.522 -14.381,2.425 -21.601,1.414 l 0,0 c -23.699,-3.317 -46.283,-17.011 -58.038,-37.854 l 0,0 c -11.755,-20.844 -11.323,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.481,-17.733 32.218,-21.388 l 0,0 c -16.769,4.192 -32.283,13.595 -43.509,26.773 m 146.6,21.019 c 0.248,0.358 0.494,0.716 0.739,1.075 l 0,0 c -2.1,-3.197 -4.324,-6.317 -6.684,-9.346 l 0,0 c -5.241,-6.727 -11.231,-12.977 -17.813,-18.49 l 0,0 c 9.023,7.8 16.985,16.98 23.758,26.761"
|
||||||
|
id="path30"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1428"><path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1430"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1436"><path
|
||||||
|
d="m 153.069,874.507 547.722,0 0,-721.1 -547.722,0 0,721.1 z"
|
||||||
|
id="path1438"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,239.82324,731.99097)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1468"><stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1470" /><stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1472" /></radialGradient><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1480"><path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1482"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,324.3374,727.64069)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1516"><stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1518" /><stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1520" /></radialGradient><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1528"><path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1530"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1560"><path
|
||||||
|
d="m 529.474,574.673 c 6.87,-7.702 13.741,-15.405 20.611,-23.107 l 0,0 c 2.925,-3.279 6.035,-7.149 6.026,-11.402 l 0,0 c -10e-4,-0.461 -0.038,-0.925 -0.116,-1.394 l 0,0 c -0.679,-4.076 -4.235,-6.974 -7.641,-9.312 l 0,0 c -8.134,-5.582 -16.812,-10.954 -24.245,-17.441 l 0,0 c -3.348,-2.922 -15.688,-9.847 -17.856,-11.768 l 0,0 c -10.514,-9.322 -29.698,-8.23 -43.695,-6.992 l 0,0 c -2.978,0.263 -6.376,0.501 -8.544,-1.558 l 0,0 c -1.461,-1.388 -1.959,-3.483 -2.345,-5.461 l 0,0 c -0.541,-2.777 -0.961,-5.706 -0.964,-8.569 l 0,0 c -0.005,-3.924 0.773,-7.721 3.093,-10.826 l 0,0 c 5.5,-7.361 17.621,-6.775 24.515,-0.701 l 0,0 c 3.855,3.397 7.098,8.39 12.216,8.854 l 0,0 c 5.187,0.469 9.462,-4.158 11.606,-8.906 l 0,0 c 2.145,-4.748 3.149,-10.106 6.358,-14.211 l 0,0 c 6.392,-8.178 21.134,-7.2 26.389,1.752 l 0,0 c 1.293,2.202 1.885,4.672 1.889,7.167 l 0,0 c 0.013,7.643 -5.488,15.526 -13.22,16.729 l 0,0 c -0.999,1.438 -1.44,3.117 -1.442,4.842 l 0,0 c -0.002,2.689 1.063,5.487 2.742,7.64 l 0,0 c 2.755,3.534 6.807,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.214 l 0,0 c 2.132,2.238 4.348,4.93 4.35,7.937 l 0,0 c 0,0.269 -0.017,0.54 -0.054,0.814 l 0,0 c -0.28,2.082 -1.645,3.833 -2.959,5.471 l 0,0 c -9.167,11.424 -18.333,22.849 -27.5,34.273 l 0,0 -23.071,-6.074 z"
|
||||||
|
id="path1562"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1646"><path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1648"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1658"><path
|
||||||
|
d="m 444.813,571.047 c 6.832,-7.66 13.665,-15.32 20.499,-22.979 l 0,0 c 3.241,-3.634 6.709,-7.994 5.908,-12.797 l 0,0 c -0.056,-0.338 -0.132,-0.668 -0.226,-0.99 l 0,0 c -0.987,-3.65 -4.29,-6.315 -7.463,-8.492 l 0,0 c -8.135,-5.582 -16.812,-10.954 -24.246,-17.441 l 0,0 c -3.348,-2.922 -15.687,-9.846 -17.855,-11.769 l 0,0 c -10.514,-9.321 -29.699,-8.229 -43.695,-6.992 l 0,0 c -2.979,0.264 -6.375,0.503 -8.543,-1.557 l 0,0 c -0.945,-0.898 -1.487,-2.091 -1.857,-3.358 l 0,0 c -0.178,-0.638 -0.315,-1.291 -0.44,-1.933 l 0,0 c -1.283,-6.581 -1.885,-14.024 2.129,-19.396 l 0,0 c 5.499,-7.36 17.621,-6.774 24.514,-0.7 l 0,0 c 3.856,3.397 7.099,8.391 12.216,8.854 l 0,0 c 5.189,0.47 9.464,-4.158 11.607,-8.906 l 0,0 c 2.144,-4.747 3.15,-10.106 6.357,-14.211 l 0,0 c 6.393,-8.177 21.135,-7.199 26.39,1.752 l 0,0 c 0.57,0.971 1.003,1.993 1.311,3.046 l 0,0 c 2.398,8.633 -3.607,19.267 -12.691,20.68 l 0,0 c -1.621,2.332 -1.772,5.302 -0.964,8.064 l 0,0 c 0.46,1.658 1.268,3.248 2.313,4.588 l 0,0 c 2.754,3.534 6.806,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.215 l 0,0 c 1.669,1.751 3.39,3.782 4.06,6.024 l 0,0 c 0.225,0.825 0.306,1.678 0.187,2.556 l 0,0 c -0.279,2.082 -1.644,3.832 -2.959,5.47 l 0,0 c -9.166,11.425 -18.334,22.85 -27.5,34.274 l 0,0 -22.909,-6.031 z"
|
||||||
|
id="path1660"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
||||||
|
units="px"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
inkscape:zoom="0.35"
|
||||||
|
id="base"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:cx="506.98007"
|
||||||
|
inkscape:cy="548.89927"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1868"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="52"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"><sodipodi:guide
|
||||||
|
position="991.42857,1077.1429"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide8407"
|
||||||
|
inkscape:locked="false" /><sodipodi:guide
|
||||||
|
position="880.85303,551.5433"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide8409"
|
||||||
|
inkscape:locked="false"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" /><sodipodi:guide
|
||||||
|
position="960,1143.4927"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide8411"
|
||||||
|
inkscape:locked="false"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" /><sodipodi:guide
|
||||||
|
position="1874.1345,936.72488"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide1596"
|
||||||
|
inkscape:locked="false" /></sodipodi:namedview><g
|
||||||
|
id="layer2"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Background"
|
||||||
|
style="display:inline"><rect
|
||||||
|
id="pause_bg"
|
||||||
|
x="1.1444092e-05"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
y="3.0517578e-05"
|
||||||
|
style="display:inline;fill:#173f4f;fill-opacity:1" /><text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Open Sans Pro';-inkscape-font-specification:'Open Sans Pro';letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="1143.0011"
|
||||||
|
y="215.696"
|
||||||
|
id="text5802"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="1143.0011"
|
||||||
|
y="215.696"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:70px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold'"
|
||||||
|
id="tspan1594">Virtual Conference 2021</tspan></text>
|
||||||
|
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pause"
|
||||||
|
transform="translate(-1.1161189,4.0875198e-6)"><text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91700482px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="645.31598"
|
||||||
|
y="593.3819"
|
||||||
|
id="text8405"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan8403"
|
||||||
|
x="645.31598"
|
||||||
|
y="596.49908"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:268.98806763px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Ultra-Light';fill:#ffffff;fill-opacity:1;stroke-width:0.91700482px" /></text>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<g
|
||||||
|
id="g5758"
|
||||||
|
transform="matrix(0.51253329,0,0,0.51253329,1586.7258,-164.41202)"
|
||||||
|
style="fill:#ffffff"><path
|
||||||
|
d="m 523.71,442.05 c -3.3113,-0.11926 -6.4507,1.0506 -8.8499,3.3008 -2.3993,2.2502 -3.8147,5.2984 -3.9147,8.5992 -0.2297,6.8208 5.1108,12.559 11.916,12.81 3.3095,0.1 6.4647,-1.0698 8.878,-3.32 2.4098,-2.2607 3.7953,-5.3107 3.9006,-8.5992 0.2297,-6.819 -5.109,-12.549 -11.93,-12.791 z m 2.0205,13.512 c -3.0307,0 -5.4791,-1.6398 -5.4791,-3.6498 0,-2.0292 2.4484,-3.6603 5.4791,-3.6603 3.0306,0 5.486,1.6311 5.486,3.6603 0,2.0099 -2.4571,3.6498 -5.486,3.6498 z m 28.798,14.729 c 0.0887,-0.0692 0.29521,-0.25105 0.2683,-0.41918 -0.68471,-4.2787 -7.0592,-25.029 -11.884,-30.019 -1.3294,-1.3592 -2.394,-2.6992 -4.5495,-3.9602 -17.454,-10.171 -58.863,-16.309 -60.803,-16.59 0,0 -0.19473,-0.0406 -0.3297,0.0912 -0.1048,0.10237 -0.1246,0.29991 -0.1246,0.29991 0,0 -0.1596,8.5799 -0.1841,9.5392 -4.2286,-1.4206 -34.972,-11.351 -63.791,-12.351 -24.44,-0.85939 -60.033,-4.0198 -107.2,24.98 l -1.3943,0.86815 c -22.19,13.841 -37.51,30.91 -45.518,50.739 -2.5116,6.2402 -5.8895,20.32 -2.5414,33.569 1.4417,5.7912 4.1304,11.611 7.7556,16.819 8.194,11.77 21.944,19.58 36.749,20.899 20.904,1.8696 36.733,-7.5188 42.363,-25.099 3.8708,-12.13 0,-29.928 -14.839,-39.008 -12.07,-7.3908 -25.049,-5.7106 -32.578,-0.7296 -6.5313,4.3303 -10.23,11.06 -10.165,18.451 0.1508,13.11 11.444,20.078 19.564,20.099 2.3589,0 4.7284,-0.41041 7.3995,-1.2803 0.9506,-0.28939 1.845,-0.64893 2.8307,-1.2593 l 0.3087,-0.18065 0.1947,-0.12978 -0.065,0.0386 c 1.8503,-1.261 2.964,-3.3113 2.964,-5.5106 0,-0.59981 -0.084,-1.2084 -0.2561,-1.8205 -0.9593,-3.32 -4.239,-5.3282 -7.638,-4.7091 l -0.4595,0.10874 -0.6209,0.18942 -0.9015,0.31043 c -1.8696,0.45951 -3.2692,0.49985 -3.5691,0.51038 -0.9506,-0.0614 -5.6246,-1.461 -5.6246,-6.5805 v -0.0702 c 0,-1.8801 0.7542,-3.199 1.1698,-3.9199 1.454,-2.28 5.4352,-4.5179 10.814,-4.0497 7.0593,0.61034 12.149,4.2303 15.52,11.06 3.1289,6.349 2.3098,14.159 -2.1099,19.88 -4.3899,5.6685 -12.205,8.0783 -22.598,6.9593 -10.481,-1.1593 -19.34,-7.1908 -24.303,-16.579 -4.8565,-9.1779 -5.1213,-20.059 -0.6858,-28.418 10.609,-20.029 30.649,-19.82 41.637,-17.921 16.26,2.8202 34.758,17.819 41.319,35.139 1.0593,2.7606 1.5995,4.9494 2.0713,6.9505 l 0.7085,2.9903 18.37,8.9692 c 0.39458,0.19266 0.52796,0.25778 0.6858,0.14034 0.18941,-0.14093 0.081,-0.52966 0.081,-0.52966 -0.114,-0.4104 -0.3806,-0.78924 -0.805,-5.9298 -0.3491,-4.5618 -1.0594,-17.051 5.2282,-23.24 2.4414,-2.4186 6.1613,-4.5776 9.099,-5.2686 12.04,-2.9412 26.159,-0.912 39.507,14.539 6.9102,7.98 10.279,11.619 11.97,13.249 0,0 0.38494,0.36349 0.5893,0.53142 0.22331,0.1835 0.36878,0.33789 0.6945,0.51914 0.55786,0.31042 22.954,10.621 22.954,10.621 0,0 0.26534,0.13182 0.4612,-0.11049 0.19362,-0.23953 0.01,-0.4788 0.01,-0.4788 -0.1491,-0.17013 -14.199,-18.328 -11.698,-33.279 1.9696,-11.909 11.447,-10.83 24.558,-9.3498 4.2794,0.49984 9.1516,1.0593 14.196,1.1716 14.084,0.0895 29.254,-2.5115 38.604,-6.6015 6.049,-2.629 9.9093,-4.3794 12.328,-6.5787 0.8699,-0.72084 1.3207,-1.8907 1.7907,-3.1499 l 0.3297,-0.83133 c 0.3911,-1.0207 0.9664,-3.171 1.219,-4.3496 0.1017,-0.51914 0.2208,-1.0274 -0.2087,-1.3592 -0.39265,-0.30337 -1.2944,0.24027 -1.2944,0.24027 -4.1058,2.4712 -14.369,7.1505 -23.965,7.3504 -11.914,0.24028 -36.054,-12.061 -38.555,-13.36 -1.6739,-3.9857 -3.3458,-7.9724 -5.0438,-11.948 17.27,11.379 31.594,17.668 42.559,18.638 12.207,1.0874 21.723,-5.5724 25.853,-8.3433 0.54064,-0.35944 1.0799,-0.76184 1.5756,-1.1486 z m -48.992,-16.369 c 0.1753,-4.7302 2.1554,-9.1201 5.6141,-12.34 3.4603,-3.2306 7.9747,-4.9003 12.708,-4.7494 9.7602,0.34902 17.43,8.5886 17.095,18.338 -0.1841,4.7302 -2.1642,9.1201 -5.6141,12.33 -3.4603,3.2499 -7.9642,4.9196 -12.719,4.76 -9.7497,-0.35954 -17.411,-8.5799 -17.084,-18.338 z"
|
||||||
|
id="Geeko"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" /><path
|
||||||
|
id="path5761"
|
||||||
|
d="m 376.84,556.36 c -7.7836,0 -12.065,6.5805 -12.065,11.13 v 5.8403 c 0,6.6997 5.4738,10.851 10.55,10.851 h 17.819 c 2.2449,0 2.7149,1.4697 2.7149,2.7097 v 3.769 c 0,0.39988 -0.081,4.0198 -2.7149,4.0198 h -24.303 c -2.4151,0 -4.1602,1.6802 -4.1602,3.9795 v 1.0418 c 0,2.2905 1.7451,3.9602 4.1602,3.9602 h 25.624 c 6.698,0 11.02,-4.66 11.02,-11.879 v -6.3016 c 0,-6.7786 -4.8705,-9.8093 -9.7058,-9.8093 h -17.533 c -2.6395,0 -3.8356,-1.9801 -3.8356,-3.3797 v -3.4796 c 0,-2.1906 1.4644,-3.4604 4.0251,-3.4604 h 19.408 c 2.38,0 4.1707,-1.71 4.1707,-3.9707 v -1.04 c 0,-2.2695 -1.8205,-3.9813 -4.2513,-3.9813 h -20.922 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5763"
|
||||||
|
d="m 449.7,556.36 c -2.301,0 -4.1548,1.8696 -4.1548,4.1707 v 29.838 c 0,2.3905 -1.9503,4.311 -4.311,4.311 h -13.545 c -2.3694,0 -4.3092,-1.9205 -4.3092,-4.311 v -29.838 c 0,-2.3011 -1.8696,-4.1707 -4.1689,-4.1707 h -1.3101 c -2.3344,0 -4.1707,1.8416 -4.1707,4.1707 v 30.968 c 0,7.2101 5.6737,12.44 13.489,12.44 h 14.485 c 7.8047,0 13.475,-5.2282 13.475,-12.44 v -30.968 c 0,-2.3291 -1.8293,-4.1707 -4.1602,-4.1707 h -1.3189 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5765"
|
||||||
|
d="m 475.63,556.36 c -7.7801,0 -12.074,6.5805 -12.074,11.13 v 5.8403 c 0,6.6997 5.4843,10.851 10.564,10.851 h 17.814 c 2.2485,0 2.7203,1.4697 2.7203,2.7097 v 3.769 c 0,0.39988 -0.081,4.0198 -2.7203,4.0198 H 467.62 c -2.4045,0 -4.1601,1.6802 -4.1601,3.9795 v 1.0418 c 0,2.2905 1.7556,3.9602 4.1601,3.9602 h 25.633 c 6.6998,0 11.041,-4.66 11.041,-11.879 v -6.3016 c 0,-6.7786 -4.8845,-9.8093 -9.7199,-9.8093 h -17.533 c -2.6466,0 -3.8392,-1.9801 -3.8392,-3.3797 v -3.4796 c 0,-2.1906 1.4645,-3.4604 4.0251,-3.4604 h 19.419 c 2.3747,0 4.1584,-1.71 4.1584,-3.9707 v -1.04 c 0,-2.2695 -1.8188,-3.9813 -4.2601,-3.9813 h -20.913 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5767"
|
||||||
|
d="m 516.6,556.36 c -2.3098,0 -4.0549,1.7118 -4.0549,3.9813 v 39.358 c 0,2.259 1.7047,3.9602 3.9637,3.9602 h 31.364 c 2.4151,0 4.1602,-1.6697 4.1602,-3.9602 v -1.0418 c 0,-2.2993 -1.7451,-3.9795 -4.1602,-3.9795 h -25.687 v -10.02 h 18.822 c 2.4098,0 4.1602,-1.6907 4.1602,-3.9813 v -1.04 c 0,-2.3011 -1.7504,-3.9707 -4.1602,-3.9707 h -18.822 v -10.32 h 24.382 c 2.4063,0 4.1601,-1.6591 4.1601,-3.9707 v -1.04 c 0,-2.3011 -1.7538,-3.9813 -4.1601,-3.9813 h -29.968 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><g
|
||||||
|
id="g5769"
|
||||||
|
transform="matrix(1.7539,0,0,1.7539,-611.6,-134.13)"
|
||||||
|
style="fill:#ffffff"><path
|
||||||
|
id="path5771"
|
||||||
|
d="m 491.25,404.37 c -2.241,0 -4.065,1.744 -4.065,3.894 v 8.461 c 0,2.184 1.765,3.963 3.929,3.963 h 5.473 c 2.164,0 3.929,-1.779 3.929,-3.963 v -8.461 c 0,-2.149 -1.825,-3.894 -4.065,-3.894 z m -1.184,12.019 v -7.726 c 0,-0.906 0.744,-1.647 1.654,-1.647 h 4.264 c 0.89,0 1.648,0.758 1.648,1.647 v 7.726 c 0,0.912 -0.738,1.653 -1.648,1.653 h -4.296 c -0.912,0 -1.622,-0.725 -1.622,-1.653 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5773"
|
||||||
|
d="m 512.91,404.27 c -1.578,0 -2.768,0.564 -3.723,1.026 -0.582,0.279 -1.086,0.52 -1.477,0.52 -0.177,0 -0.328,-0.08 -0.408,-0.211 l -0.364,-0.696 c -0.091,-0.183 -0.456,-0.541 -0.907,-0.541 h -0.541 c -0.52,0 -0.936,0.467 -0.936,1.037 v 21.461 c 0,0.673 0.531,1.203 1.203,1.203 h 0.468 c 0.667,0 1.209,-0.536 1.209,-1.203 v -7.121 c 0,-0.211 0.137,-0.439 0.276,-0.439 0.391,0 0.895,0.229 1.477,0.496 0.955,0.439 2.145,0.98 3.723,0.98 h 0.505 c 2.794,0 4.532,-1.597 4.532,-4.162 v -8.192 c 0,-2.526 -1.775,-4.157 -4.532,-4.157 h -0.505 z m -5.475,11.952 v -7.39 c 0,-1.021 0.798,-1.818 1.818,-1.818 h 3.997 c 1.021,0 1.818,0.798 1.818,1.818 v 7.39 c 0,1.003 -0.818,1.818 -1.818,1.818 h -3.997 c -1.001,0 -1.818,-0.815 -1.818,-1.818 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5775"
|
||||||
|
d="m 526.04,404.37 c -2.241,0 -4.06,1.744 -4.06,3.894 v 8.398 c 0,2.178 1.768,4.025 3.854,4.025 h 5.647 c 0.698,0 1.203,-0.484 1.203,-1.141 v -0.37 c 0,-0.661 -0.505,-1.135 -1.203,-1.135 h -4.639 c -1.3,0 -1.986,-0.639 -1.986,-1.854 v -2.457 h 8.369 c 1.346,0 2.142,-0.821 2.142,-2.212 v -3.256 c 0,-2.149 -1.822,-3.894 -4.054,-3.894 h -5.273 z m -1.183,4.265 c 0,-0.907 0.713,-1.619 1.621,-1.619 h 4.396 c 0.906,0 1.613,0.712 1.613,1.619 v 2.622 h -7.631 c 10e-4,-0.342 10e-4,-2.622 10e-4,-2.622 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5777"
|
||||||
|
d="m 547,404.27 c -1.573,0 -2.76,0.564 -3.718,1.021 -0.596,0.28 -1.105,0.525 -1.521,0.525 -0.183,0 -0.257,-0.023 -0.399,-0.269 l -0.331,-0.604 c -0.19,-0.382 -0.513,-0.575 -0.949,-0.575 h -0.465 c -0.562,0 -0.972,0.438 -0.972,1.037 v 14.077 c 0,0.667 0.527,1.203 1.206,1.203 h 0.465 c 0.667,0 1.211,-0.542 1.211,-1.203 v -10.65 c 0,-0.998 0.815,-1.818 1.813,-1.818 h 3.999 c 1.001,0 1.816,0.82 1.816,1.818 v 10.65 c 0,0.667 0.53,1.203 1.203,1.203 h 0.47 c 0.667,0 1.209,-0.542 1.209,-1.203 v -11.055 c 0,-2.526 -1.776,-4.157 -4.535,-4.157 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /></g><g
|
||||||
|
id="g5779"
|
||||||
|
transform="matrix(1.7539,0,0,1.7539,-611.6,-134.13)"
|
||||||
|
style="fill:#ffffff"><path
|
||||||
|
id="path5781"
|
||||||
|
d="m 667.46,415.23 c 1.218,0 2.188,0.99 2.188,2.229 0,1.257 -0.971,2.237 -2.198,2.237 -1.218,0 -2.208,-0.98 -2.208,-2.237 0,-1.238 0.99,-2.229 2.208,-2.229 z m -0.01,0.346 c -0.98,0 -1.782,0.842 -1.782,1.882 0,1.06 0.802,1.891 1.792,1.891 0.99,0.011 1.782,-0.831 1.782,-1.881 0,-1.05 -0.792,-1.892 -1.782,-1.892 z m -0.416,3.179 h -0.396 v -2.485 c 0.208,-0.03 0.406,-0.06 0.703,-0.06 0.377,0 0.624,0.079 0.772,0.188 0.149,0.108 0.229,0.276 0.229,0.515 0,0.326 -0.218,0.524 -0.485,0.604 v 0.021 c 0.218,0.039 0.366,0.237 0.416,0.604 0.06,0.387 0.118,0.535 0.158,0.614 h -0.416 c -0.06,-0.079 -0.119,-0.307 -0.168,-0.634 -0.06,-0.316 -0.218,-0.436 -0.535,-0.436 h -0.277 v 1.069 z m 0,-1.377 h 0.287 c 0.327,0 0.604,-0.118 0.604,-0.426 0,-0.218 -0.158,-0.436 -0.604,-0.436 -0.129,0 -0.218,0.01 -0.287,0.021 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /></g></g></g><g
|
||||||
|
id="layer3"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Text" />
|
||||||
|
|
||||||
|
</svg>
|
After Width: | Height: | Size: 28 KiB |
341
osc21/artwork/intro.svg
Normal file
After Width: | Height: | Size: 69 KiB |
377
osc21/artwork/logo_osc-video.svg
Normal file
|
@ -0,0 +1,377 @@
|
||||||
|
<?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="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="logo_osc-video.svg"
|
||||||
|
inkscape:export-filename="/home/tbro/git/voc/intro-outro-generator/osc17/artwork/logo_osc-video_preview.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.49497474"
|
||||||
|
inkscape:cx="545.03463"
|
||||||
|
inkscape:cy="432.91305"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="1596"
|
||||||
|
inkscape:window-height="850"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="26"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="21.429,710"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide6027"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="-50,340"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide6053"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="960,1056.6196"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide6055"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="0,1030"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide4785"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1440,1040"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4787"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="50,941.42857"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4821"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="560,50"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide4823"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="480,1333.4014"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4825"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Background">
|
||||||
|
<rect
|
||||||
|
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#0d2c40;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:23.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||||
|
id="background"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
x="0"
|
||||||
|
y="0" />
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="credits"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
transform="translate(0,38)"><flowRegion
|
||||||
|
id="flowRegion6144"><rect
|
||||||
|
id="rect6146"
|
||||||
|
width="960"
|
||||||
|
height="67.14286"
|
||||||
|
x="480"
|
||||||
|
y="864.28571" /></flowRegion><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:25px;font-family:'Arial MT';-inkscape-font-specification:'Arial MT Bold';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||||
|
id="flowPara6152">recording by: younameit</flowPara><flowPara
|
||||||
|
id="flowPara6150"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:25px;font-family:'Arial MT';-inkscape-font-specification:'Arial MT Bold';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1">postprocessing by: eventuallyhere</flowPara></flowRoot> <flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="susetext"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
transform="translate(-559.54527,38.644881)"><flowRegion
|
||||||
|
id="flowRegion4763"><rect
|
||||||
|
id="rect4765"
|
||||||
|
width="867.14294"
|
||||||
|
height="707.39093"
|
||||||
|
x="1078.5714"
|
||||||
|
y="418.57144"
|
||||||
|
ry="0" /></flowRegion><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:62.5px;font-family:'Arial MT';-inkscape-font-specification:'Arial MT Bold';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||||
|
id="flowPara4771">openSUSE conference 2017</flowPara><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:62.5px;font-family:'Arial MT';-inkscape-font-specification:'Arial MT Bold';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||||
|
id="flowPara4811">Z-Bau, Nuremberg</flowPara></flowRoot> <g
|
||||||
|
id="g4523">
|
||||||
|
<path
|
||||||
|
d="m 1076.6039,267.93595 c -2.4905,0 -4.5161,-1.36532 -4.5161,-3.02254 0,-1.67048 2.0256,-3.02254 4.5161,-3.02254 2.5038,0 4.5339,1.35206 4.5339,3.02254 0,1.65722 -2.0301,3.02254 -4.5339,3.02254 z m -1.6767,-11.15842 c -2.7231,-0.11629 -5.2985,0.86398 -7.2882,2.72402 -1.996,1.85272 -3.1566,4.37184 -3.2416,7.10479 -0.179,5.62202 4.2208,10.36335 9.8455,10.56115 2.7321,0.0865 5.321,-0.88184 7.3168,-2.72402 1.997,-1.8779 3.1418,-4.39703 3.2403,-7.10845 0.174,-5.63828 -4.2418,-10.36427 -9.8728,-10.55749"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path18-4"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="translate(5.0000007,-5.0000008)"
|
||||||
|
id="g4515">
|
||||||
|
<g
|
||||||
|
id="g388-6"
|
||||||
|
transform="matrix(8.7050385,0,0,-8.7062511,845,310.01306)"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none">
|
||||||
|
<path
|
||||||
|
d="m 0,0 c 0,-7.93 -6.434,-14.356 -14.359,-14.356 -7.93,0 -14.36,6.426 -14.36,14.356 0,7.931 6.43,14.359 14.36,14.359 C -6.434,14.359 0,7.931 0,0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path390-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g1576-8"
|
||||||
|
transform="matrix(8.7050385,0,0,-8.7062511,678.438,260.50651)"
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none">
|
||||||
|
<path
|
||||||
|
d="m 0,0 9.463,-5.536 c 0.078,-0.046 0.086,-0.121 0.086,-0.151 0,-0.03 -0.008,-0.104 -0.086,-0.15 L 0,-11.373 0,0 Z m -0.186,-12.163 c 0.085,0 0.17,0.021 0.245,0.065 l 9.735,5.696 c 0.257,0.15 0.411,0.417 0.411,0.715 0,0.298 -0.154,0.565 -0.411,0.716 L 0.061,0.724 C -0.088,0.813 -0.266,0.817 -0.415,0.732 -0.563,0.648 -0.655,0.489 -0.655,0.316 l 0,-12.004 c -0.001,-0.174 0.085,-0.329 0.23,-0.412 0.072,-0.042 0.155,-0.063 0.239,-0.063"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path1578-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(1.2481116,0,0,1.2481116,698.98448,-54.506575)"
|
||||||
|
id="g4501">
|
||||||
|
<path
|
||||||
|
d="m 421.88287,213.597 c -3.3113,-0.11926 -6.4507,1.05056 -8.8499,3.30076 -2.3993,2.2502 -3.8147,5.2984 -3.9147,8.59916 -0.2297,6.82075 5.1108,12.55937 11.9158,12.81017 3.3095,0.1 6.4647,-1.06985 8.878,-3.32005 2.4098,-2.26072 3.7953,-5.31068 3.9006,-8.59916 0.2297,-6.819 -5.109,-12.54885 -11.9298,-12.79088 z m 2.0205,13.51171 c -3.0307,0 -5.4791,-1.63985 -5.4791,-3.64977 0,-2.02922 2.4484,-3.6603 5.4791,-3.6603 3.0306,0 5.486,1.63108 5.486,3.6603 0,2.00992 -2.4571,3.64977 -5.486,3.64977 z m 27.15319,15.79875 c 0.805,-0.53142 1.3961,-0.97164 1.6451,-1.06985 l 0.2683,-0.41918 c -0.6805,-4.27941 -7.05919,-25.02929 -11.88409,-30.01901 -1.3294,-1.35924 -2.394,-2.69919 -4.5495,-3.96021 -17.4544,-10.17062 -58.863,-16.30912 -60.8027,-16.58974 l -0.3297,0.0912 -0.1246,0.29991 c 0,0 -0.1596,8.57987 -0.1841,9.53923 -4.2286,-1.42062 -34.9719,-11.35096 -63.7913,-12.35066 -24.44,-0.85939 -60.0328,-4.01984 -107.1958,24.98019 l -1.3943,0.86815 c -22.1898,13.84145 -37.5097,30.90998 -45.5178,50.73909 -2.5116,6.24022 -5.8895,20.32019 -2.5414,33.56882 1.4417,5.79123 4.1304,11.61053 7.7556,16.81949 8.194,11.77013 21.9442,19.58006 36.7486,20.89896 20.9042,1.86961 36.7327,-7.51879 42.3626,-25.09945 3.8708,-12.12968 0,-29.92781 -14.8394,-39.00753 -12.07,-7.39075 -25.0486,-5.71056 -32.5779,-0.7296 -6.5313,4.33027 -10.2302,11.05982 -10.1653,18.45056 0.1508,13.11009 11.4439,20.07816 19.5643,20.09921 2.3589,0 4.7284,-0.41041 7.3995,-1.28032 0.9506,-0.28939 1.845,-0.64893 2.8307,-1.25927 l 0.3087,-0.18065 0.1947,-0.12978 -0.065,0.0386 c 1.8503,-1.26102 2.964,-3.31128 2.964,-5.51062 0,-0.59981 -0.084,-1.2084 -0.2561,-1.8205 -0.9593,-3.32005 -4.239,-5.32822 -7.638,-4.70911 l -0.4595,0.10874 -0.6209,0.18942 -0.9015,0.31043 c -1.8696,0.45951 -3.2692,0.49985 -3.5691,0.51038 -0.9506,-0.0614 -5.6246,-1.46097 -5.6246,-6.58048 l 0,-0.0702 c 0,-1.88013 0.7542,-3.19903 1.1698,-3.91986 1.454,-2.28002 5.4352,-4.51794 10.8143,-4.04966 7.0593,0.61034 12.149,4.23031 15.5199,11.05982 3.1289,6.34896 2.3098,14.15888 -2.1099,19.87997 -4.3899,5.66846 -12.2051,8.07826 -22.5985,6.9593 -10.481,-1.1593 -19.3397,-7.19081 -24.3031,-16.57921 -4.8565,-9.17793 -5.1213,-20.05885 -0.6858,-28.41774 10.6091,-20.02905 30.6486,-19.82034 41.6366,-17.92091 16.26,2.8202 34.7579,17.81919 41.3191,35.13852 1.0593,2.76057 1.5995,4.94938 2.0713,6.95053 l 0.7085,2.99033 18.3699,8.96923 0.2403,0.18064 0.4455,-0.0403 0.081,-0.52966 c -0.114,-0.4104 -0.3806,-0.78924 -0.805,-5.92979 -0.3491,-4.56178 -1.0594,-17.05099 5.2282,-23.24035 2.4414,-2.41857 6.1613,-4.57757 9.099,-5.26859 12.0402,-2.94122 26.1588,-0.912 39.5074,14.53947 6.9102,7.98005 10.2794,11.6193 11.9701,13.24863 l 0.5893,0.53142 0.6945,0.51914 c 0.5542,0.30167 22.9545,10.62136 22.9545,10.62136 l 0.4612,-0.11049 0.01,-0.4788 c -0.1491,-0.17013 -14.1992,-18.32781 -11.6982,-33.27943 1.9696,-11.90869 11.4474,-10.83007 24.5575,-9.34981 4.2794,0.49984 9.1516,1.05932 14.1957,1.17157 14.0835,0.0895 29.2544,-2.51152 38.6042,-6.60152 6.049,-2.62903 9.9093,-4.37938 12.32779,-6.57871 0.8699,-0.72084 1.3207,-1.89066 1.7907,-3.14993 l 0.3297,-0.83133 c 0.3911,-1.02074 0.9664,-3.17097 1.219,-4.34957 0.1017,-0.51914 0.1613,-1.06809 -0.2087,-1.35923 l -1.2944,0.24027 c -4.10579,2.47119 -14.36929,7.15048 -23.96469,7.35042 -11.9139,0.24028 -35.8979,-11.9806 -38.3989,-13.28021 l -0.2403,-0.27886 c -0.5893,-1.43992 -4.19,-9.94963 -4.9599,-11.74909 17.2702,11.37903 31.594,17.66836 42.5591,18.63824 12.2068,1.08739 21.7215,-5.57376 25.78519,-8.42202 z m -47.34709,-17.4386 c 0.1753,-4.73016 2.1554,-9.12006 5.6141,-12.34014 3.4603,-3.23061 7.9747,-4.90028 12.7084,-4.74945 9.7602,0.34902 17.4298,8.58864 17.0948,18.33833 -0.1841,4.73016 -2.1642,9.12006 -5.6141,12.32962 -3.4603,3.2499 -7.9642,4.91957 -12.7189,4.75997 -9.7497,-0.35954 -17.4106,-8.57987 -17.0843,-18.33833 z"
|
||||||
|
id="Geeko"
|
||||||
|
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 275.00437,327.90287 c -7.7836,0 -12.0648,6.58047 -12.0648,11.12998 l 0,5.84034 c 0,6.69974 5.4738,10.85112 10.5495,10.85112 l 17.8192,0 c 2.2449,0 2.7149,1.46973 2.7149,2.70971 l 0,3.76903 c 0,0.39988 -0.081,4.01984 -2.7149,4.01984 l -24.3032,0 c -2.4151,0 -4.1602,1.6802 -4.1602,3.97951 l 0,1.04179 c 0,2.29054 1.7451,3.96021 4.1602,3.96021 l 25.6238,0 c 6.698,0 11.0195,-4.66 11.0195,-11.87888 l 0,-6.30161 c 0,-6.77865 -4.8705,-9.80932 -9.7058,-9.80932 l -17.5334,0 c -2.6395,0 -3.8356,-1.9801 -3.8356,-3.37968 l 0,-3.47965 c 0,-2.19057 1.4644,-3.46036 4.0251,-3.46036 l 19.4081,0 c 2.38,0 4.1707,-1.71001 4.1707,-3.97074 l 0,-1.04003 c 0,-2.26949 -1.8205,-3.98126 -4.2513,-3.98126 l -20.9218,0 z"
|
||||||
|
id="path7"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 347.86657,327.90287 c -2.301,0 -4.1548,1.86961 -4.1548,4.17067 l 0,29.83837 c 0,2.39051 -1.9503,4.31098 -4.311,4.31098 l -13.5451,0 c -2.3694,0 -4.3092,-1.92047 -4.3092,-4.31098 l 0,-29.83837 c 0,-2.30106 -1.8696,-4.17067 -4.1689,-4.17067 l -1.3101,0 c -2.3344,0 -4.1707,1.84155 -4.1707,4.17067 l 0,30.96786 c 0,7.2101 5.6737,12.44011 13.4889,12.44011 l 14.4851,0 c 7.8047,0 13.4749,-5.22825 13.4749,-12.44011 l 0,-30.96786 c 0,-2.32912 -1.8293,-4.17067 -4.1602,-4.17067 l -1.3189,0 z"
|
||||||
|
id="path9"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 373.79917,327.90287 c -7.7801,0 -12.0736,6.58047 -12.0736,11.12998 l 0,5.84034 c 0,6.69974 5.4843,10.85112 10.5635,10.85112 l 17.8139,0 c 2.2485,0 2.7203,1.46973 2.7203,2.70971 l 0,3.76903 c 0,0.39988 -0.081,4.01984 -2.7203,4.01984 l -24.3137,0 c -2.4045,0 -4.1601,1.6802 -4.1601,3.97951 l 0,1.04179 c 0,2.29054 1.7556,3.96021 4.1601,3.96021 l 25.6326,0 c 6.6998,0 11.0406,-4.66 11.0406,-11.87888 l 0,-6.30161 c 0,-6.77865 -4.8845,-9.80932 -9.7199,-9.80932 l -17.5333,0 c -2.6466,0 -3.8392,-1.9801 -3.8392,-3.37968 l 0,-3.47965 c 0,-2.19057 1.4645,-3.46036 4.0251,-3.46036 l 19.4187,0 c 2.3747,0 4.1584,-1.71001 4.1584,-3.97074 l 0,-1.04003 c 0,-2.26949 -1.8188,-3.98126 -4.2601,-3.98126 l -20.913,0 z"
|
||||||
|
id="path11"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 414.76397,327.90287 c -2.3098,0 -4.0549,1.71177 -4.0549,3.98126 l 0,39.3583 c 0,2.25897 1.7047,3.96021 3.9637,3.96021 l 31.3642,0 c 2.41509,0 4.16019,-1.66967 4.16019,-3.96021 l 0,-1.04179 c 0,-2.2993 -1.7451,-3.9795 -4.16019,-3.9795 0,0 -24.5329,0 -25.6869,0 0,-1.02074 0,-9.01132 0,-10.01978 1.1435,0 18.8223,0 18.8223,0 2.4098,0 4.1602,-1.69072 4.1602,-3.98126 l 0,-1.04004 c 0,-2.30106 -1.7504,-3.97073 -4.1602,-3.97073 0,0 -17.6788,0 -18.8223,0 0,-1.02951 0,-9.29018 0,-10.3197 1.1435,0 24.3821,0 24.3821,0 2.4063,0 4.16009,-1.65914 4.16009,-3.97073 l 0,-1.04003 c 0,-2.30107 -1.75379,-3.98126 -4.16009,-3.98126 l -29.9682,0 z"
|
||||||
|
id="path13"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g15"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
transform="matrix(1.7538571,0,0,1.7538571,-713.43442,-362.5819)">
|
||||||
|
<path
|
||||||
|
d="m 491.254,404.369 c -2.241,0 -4.065,1.744 -4.065,3.894 l 0,8.461 c 0,2.184 1.765,3.963 3.929,3.963 l 5.473,0 c 2.164,0 3.929,-1.779 3.929,-3.963 l 0,-8.461 c 0,-2.149 -1.825,-3.894 -4.065,-3.894 l -5.201,0 z m -1.184,12.019 0,-7.726 c 0,-0.906 0.744,-1.647 1.654,-1.647 l 4.264,0 c 0.89,0 1.648,0.758 1.648,1.647 l 0,7.726 c 0,0.912 -0.738,1.653 -1.648,1.653 l -4.296,0 c -0.912,0 -1.622,-0.725 -1.622,-1.653 z"
|
||||||
|
id="path17"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 512.91,404.271 c -1.578,0 -2.768,0.564 -3.723,1.026 -0.582,0.279 -1.086,0.52 -1.477,0.52 -0.177,0 -0.328,-0.08 -0.408,-0.211 l -0.364,-0.696 c -0.091,-0.183 -0.456,-0.541 -0.907,-0.541 l -0.541,0 c -0.52,0 -0.936,0.467 -0.936,1.037 l 0,21.461 c 0,0.673 0.531,1.203 1.203,1.203 l 0.468,0 c 0.667,0 1.209,-0.536 1.209,-1.203 l 0,-7.121 c 0,-0.211 0.137,-0.439 0.276,-0.439 0.391,0 0.895,0.229 1.477,0.496 0.955,0.439 2.145,0.98 3.723,0.98 l 0.505,0 c 2.794,0 4.532,-1.597 4.532,-4.162 l 0,-8.192 c 0,-2.526 -1.775,-4.157 -4.532,-4.157 l -0.505,0 z m -5.475,11.952 0,-7.39 c 0,-1.021 0.798,-1.818 1.818,-1.818 l 3.997,0 c 1.021,0 1.818,0.798 1.818,1.818 l 0,7.39 c 0,1.003 -0.818,1.818 -1.818,1.818 l -3.997,0 c -1.001,0 -1.818,-0.815 -1.818,-1.818 z"
|
||||||
|
id="path19"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 526.044,404.369 c -2.241,0 -4.06,1.744 -4.06,3.894 l 0,8.398 c 0,2.178 1.768,4.025 3.854,4.025 l 5.647,0 c 0.698,0 1.203,-0.484 1.203,-1.141 l 0,-0.37 c 0,-0.661 -0.505,-1.135 -1.203,-1.135 l -4.639,0 c -1.3,0 -1.986,-0.639 -1.986,-1.854 0,0 0,-2.115 0,-2.457 0.379,0 8.369,0 8.369,0 1.346,0 2.142,-0.821 2.142,-2.212 l 0,-3.256 c 0,-2.149 -1.822,-3.894 -4.054,-3.894 l -5.273,0 z m -1.183,4.265 c 0,-0.907 0.713,-1.619 1.621,-1.619 l 4.396,0 c 0.906,0 1.613,0.712 1.613,1.619 0,0 0,2.28 0,2.622 -0.364,0 -7.258,0 -7.631,0 10e-4,-0.342 10e-4,-2.622 10e-4,-2.622 z"
|
||||||
|
id="path21"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 546.997,404.271 c -1.573,0 -2.76,0.564 -3.718,1.021 -0.596,0.28 -1.105,0.525 -1.521,0.525 -0.183,0 -0.257,-0.023 -0.399,-0.269 l -0.331,-0.604 c -0.19,-0.382 -0.513,-0.575 -0.949,-0.575 l -0.465,0 c -0.562,0 -0.972,0.438 -0.972,1.037 l 0,14.077 c 0,0.667 0.527,1.203 1.206,1.203 l 0.465,0 c 0.667,0 1.211,-0.542 1.211,-1.203 l 0,-10.65 c 0,-0.998 0.815,-1.818 1.813,-1.818 l 3.999,0 c 1.001,0 1.816,0.82 1.816,1.818 l 0,10.65 c 0,0.667 0.53,1.203 1.203,1.203 l 0.47,0 c 0.667,0 1.209,-0.542 1.209,-1.203 l 0,-11.055 c 0,-2.526 -1.776,-4.157 -4.535,-4.157 l -0.502,0 z"
|
||||||
|
id="path23"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g25"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
transform="matrix(1.7538571,0,0,1.7538571,-713.43442,-362.5819)">
|
||||||
|
<path
|
||||||
|
d="m 667.456,415.229 c 1.218,0 2.188,0.99 2.188,2.229 0,1.257 -0.971,2.237 -2.198,2.237 -1.218,0 -2.208,-0.98 -2.208,-2.237 0,-1.238 0.99,-2.229 2.208,-2.229 l 0.01,0 z m -0.01,0.346 c -0.98,0 -1.782,0.842 -1.782,1.882 0,1.06 0.802,1.891 1.792,1.891 0.99,0.011 1.782,-0.831 1.782,-1.881 0,-1.05 -0.792,-1.892 -1.782,-1.892 l -0.01,0 z m -0.416,3.179 -0.396,0 0,-2.485 c 0.208,-0.03 0.406,-0.06 0.703,-0.06 0.377,0 0.624,0.079 0.772,0.188 0.149,0.108 0.229,0.276 0.229,0.515 0,0.326 -0.218,0.524 -0.485,0.604 l 0,0.021 c 0.218,0.039 0.366,0.237 0.416,0.604 0.06,0.387 0.118,0.535 0.158,0.614 l -0.416,0 c -0.06,-0.079 -0.119,-0.307 -0.168,-0.634 -0.06,-0.316 -0.218,-0.436 -0.535,-0.436 l -0.277,0 0,1.069 z m 0,-1.377 0.287,0 c 0.327,0 0.604,-0.118 0.604,-0.426 0,-0.218 -0.158,-0.436 -0.604,-0.436 -0.129,0 -0.218,0.01 -0.287,0.021 l 0,0.841 z"
|
||||||
|
id="path27"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:label="Icons"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer-icons"
|
||||||
|
transform="translate(0,27.637839)"
|
||||||
|
style="display:none"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<g
|
||||||
|
id="eat"
|
||||||
|
inkscape:label="#g5170">
|
||||||
|
<g
|
||||||
|
transform="matrix(1,0,0,-1,960.005,512.34716)"
|
||||||
|
id="eat-inner">
|
||||||
|
<g
|
||||||
|
id="g12"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m -257.918,69.037 c 0,19.059 14.072,38.346 40.969,38.346 l 258.72,-0.004 c 5.373,19.998 23.656,34.338 45.991,34.338 l 157.858,-0.002 c 6.787,0 12.288,-5.502 12.288,-12.287 0,-6.785 -5.501,-12.289 -12.288,-12.289 l -157.864,0.004 c -15.114,0 -23.023,-11.09 -23.023,-22.05 l -0.002,-12.29 -281.674,0.005 c -12.099,0 -16.391,-7.419 -16.391,-13.771 -0.001,-6.352 4.292,-13.775 16.391,-13.775 l 281.68,-0.005 0,-12.285 c 0,-11.681 11.353,-21.087 20.754,-21.087 l 160.128,-0.002 c 6.787,0 12.289,-5.502 12.289,-12.289 0,-6.784 -5.502,-12.287 -12.289,-12.287 L 85.49,-2.69 c -17.998,0 -37.725,13.216 -43.592,33.372 l -258.842,0.004 c -26.903,0.007 -40.974,19.294 -40.974,38.351 z"
|
||||||
|
id="path14"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m -256.946,-103.484 c 0,18.684 14.065,38.551 40.129,38.551 l 153.709,-0.003 0,27.818 264.646,-0.003 c 36.996,-0.002 56.352,-26.321 56.352,-52.316 -0.002,-25.992 -19.358,-52.311 -56.354,-52.31 l -418.354,0.006 c -26.345,0 -40.13,19.243 -40.128,38.257 z m 218.413,41.793 -10e-4,-27.822 -178.28,0.004 c -11.479,0 -15.55,-7.526 -15.55,-13.975 0,-6.621 4.08,-13.682 15.55,-13.682 l 418.35,-0.006 c 21.953,-0.001 31.783,13.932 31.783,27.734 0,13.808 -9.83,27.742 -31.781,27.742 l -240.071,0.005 z"
|
||||||
|
id="path18"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 78.087,90.25 c 0,6.787 5.502,12.285 12.285,12.285 l 155.248,-0.002 c 6.787,0 12.288,-5.499 12.287,-12.285 0,-6.787 -5.5,-12.289 -12.289,-12.289 L 90.371,77.962 c -6.782,0 -12.284,5.501 -12.284,12.288 z"
|
||||||
|
id="path20"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 78.087,48.113 c 0,6.783 5.502,12.287 12.284,12.287 l 155.247,-0.004 c 6.789,0 12.289,-5.502 12.289,-12.286 0,-6.787 -5.502,-12.288 -12.289,-12.288 L 90.371,35.824 c -6.782,0 -12.286,5.502 -12.284,12.289 z"
|
||||||
|
id="path22-2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="code"
|
||||||
|
inkscape:label="#g5164">
|
||||||
|
<g
|
||||||
|
style="font-size:medium;font-family:ProstoSans-Bold;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
transform="translate(717.25155,401.37325)"
|
||||||
|
id="code-inner">
|
||||||
|
<path
|
||||||
|
id="path4138"
|
||||||
|
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
d="m 316.67032,64.180481 0,-23.896593 168.32655,61.054482 0,21.79579 -168.32655,61.05448 0,-23.89659 135.23896,-47.92448 -135.23896,-48.187089 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path4136"
|
||||||
|
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
d="m 265.59465,0.50000127 22.32099,0 -68.27598,220.97782873 -22.32099,0 68.27598,-220.97782873 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path4134"
|
||||||
|
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
d="m 168.82658,64.180481 -135.501558,48.187089 135.501558,47.92448 0,23.89659 -168.32654699,-61.05448 0,-21.79579 168.32654699,-61.054482 0,23.896593 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="sleep"
|
||||||
|
inkscape:label="#g5158">
|
||||||
|
<g
|
||||||
|
transform="translate(392.14286,238.57143)"
|
||||||
|
id="sleep-inner">
|
||||||
|
<path
|
||||||
|
d="m 363.61614,205.17623 c 0,-10.968 8.891,-19.858 19.858,-19.858 10.967,0 19.858,8.891 19.858,19.858 0,10.967 -8.891,19.858 -19.858,19.858 -10.967,0 -19.858,-8.89 -19.858,-19.858 z"
|
||||||
|
id="path12"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:37.36399841;stroke-linecap:round;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<line
|
||||||
|
x1="452.92215"
|
||||||
|
y1="241.75023"
|
||||||
|
x2="770.66412"
|
||||||
|
y2="241.75023"
|
||||||
|
id="line10"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:50;stroke-linecap:round;stroke-opacity:1" />
|
||||||
|
<polyline
|
||||||
|
points=" 264.811,-132.373 264.811,-42.348 -264.759,-42.348 -264.759,-132.373 -264.759,132.41 "
|
||||||
|
id="polyline8"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:37.36399841;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||||
|
transform="matrix(1,0,0,-1,567.83114,273.80923)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="repeat"
|
||||||
|
inkscape:label="#g5149">
|
||||||
|
<g
|
||||||
|
id="repeat-inner">
|
||||||
|
<path
|
||||||
|
d="m 1087.366,384.80213 -353.43398,0 c -31.336,0 -56.692,25.357 -56.692,56.693 l 0,141.73303 c 0,31.336 25.357,56.693 56.693,56.693"
|
||||||
|
id="path12-3"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g14"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
transform="matrix(1,0,0,-1,960.01198,512.19516)">
|
||||||
|
<polygon
|
||||||
|
points="112.765,176.973 199.117,127.119 112.765,77.256 "
|
||||||
|
id="polygon16"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 832.63502,639.92216 353.43398,0 c 31.336,0 56.691,-25.357 56.691,-56.693 l 0,-141.73203 c 0,-31.336 -25.357,-56.693 -56.693,-56.693"
|
||||||
|
id="path22"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-opacity:1"
|
||||||
|
sodipodi:nodetypes="csccc" />
|
||||||
|
<g
|
||||||
|
id="g24"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
transform="matrix(1,0,0,-1,960.01198,512.19516)">
|
||||||
|
<polygon
|
||||||
|
points="-112.787,-177.307 -199.14,-127.453 -112.787,-77.59 "
|
||||||
|
id="polygon26"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Text"
|
||||||
|
style="display:inline;" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 26 KiB |
BIN
osc21/artwork/logo_osc-video_preview.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
osc21/artwork/logos/Admin_logo_Transparent_1659x588.png
Normal file
After Width: | Height: | Size: 218 KiB |
BIN
osc21/artwork/logos/Datto-blue-CMYK.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
osc21/artwork/logos/LMI_Logo_Transparent.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
osc21/artwork/logos/SUSE_Logo-vert_L_Green-pos_sRGB.png
Normal file
After Width: | Height: | Size: 274 KiB |
BIN
osc21/artwork/logos/alma.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
osc21/artwork/logos/fedora.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
osc21/artwork/logos/osc21.png
Normal file
After Width: | Height: | Size: 110 KiB |
BIN
osc21/artwork/logos/shells.png
Normal file
After Width: | Height: | Size: 221 KiB |
19
osc21/artwork/official-logo-monochrome.svg
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg version="1.1" viewBox="0 0 340 220.3" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g transform="translate(-232.86 -406.35)">
|
||||||
|
<path id="Geeko" d="m523.71 442.05c-3.3113-.11926-6.4507 1.0506-8.8499 3.3008-2.3993 2.2502-3.8147 5.2984-3.9147 8.5992-.2297 6.8208 5.1108 12.559 11.916 12.81 3.3095.1 6.4647-1.0698 8.878-3.32 2.4098-2.2607 3.7953-5.3107 3.9006-8.5992.2297-6.819-5.109-12.549-11.93-12.791zm2.0205 13.512c-3.0307 0-5.4791-1.6398-5.4791-3.6498 0-2.0292 2.4484-3.6603 5.4791-3.6603 3.0306 0 5.486 1.6311 5.486 3.6603 0 2.0099-2.4571 3.6498-5.486 3.6498zm28.798 14.729c.0887-.0692.29521-.25105.2683-.41918-.68471-4.2787-7.0592-25.029-11.884-30.019-1.3294-1.3592-2.394-2.6992-4.5495-3.9602-17.454-10.171-58.863-16.309-60.803-16.59 0 0-.19473-.0406-.3297.0912-.1048.10237-.1246.29991-.1246.29991s-.1596 8.5799-.1841 9.5392c-4.2286-1.4206-34.972-11.351-63.791-12.351-24.44-.85939-60.033-4.0198-107.2 24.98l-1.3943.86815c-22.19 13.841-37.51 30.91-45.518 50.739-2.5116 6.2402-5.8895 20.32-2.5414 33.569 1.4417 5.7912 4.1304 11.611 7.7556 16.819 8.194 11.77 21.944 19.58 36.749 20.899 20.904 1.8696 36.733-7.5188 42.363-25.099 3.8708-12.13 0-29.928-14.839-39.008-12.07-7.3908-25.049-5.7106-32.578-.7296-6.5313 4.3303-10.23 11.06-10.165 18.451.1508 13.11 11.444 20.078 19.564 20.099 2.3589 0 4.7284-.41041 7.3995-1.2803.9506-.28939 1.845-.64893 2.8307-1.2593l.3087-.18065.1947-.12978-.065.0386c1.8503-1.261 2.964-3.3113 2.964-5.5106 0-.59981-.084-1.2084-.2561-1.8205-.9593-3.32-4.239-5.3282-7.638-4.7091l-.4595.10874-.6209.18942-.9015.31043c-1.8696.45951-3.2692.49985-3.5691.51038-.9506-.0614-5.6246-1.461-5.6246-6.5805v-.0702c0-1.8801.7542-3.199 1.1698-3.9199 1.454-2.28 5.4352-4.5179 10.814-4.0497 7.0593.61034 12.149 4.2303 15.52 11.06 3.1289 6.349 2.3098 14.159-2.1099 19.88-4.3899 5.6685-12.205 8.0783-22.598 6.9593-10.481-1.1593-19.34-7.1908-24.303-16.579-4.8565-9.1779-5.1213-20.059-.6858-28.418 10.609-20.029 30.649-19.82 41.637-17.921 16.26 2.8202 34.758 17.819 41.319 35.139 1.0593 2.7606 1.5995 4.9494 2.0713 6.9505l.7085 2.9903 18.37 8.9692c.39458.19266.52796.25778.6858.14034.18941-.14093.081-.52966.081-.52966-.114-.4104-.3806-.78924-.805-5.9298-.3491-4.5618-1.0594-17.051 5.2282-23.24 2.4414-2.4186 6.1613-4.5776 9.099-5.2686 12.04-2.9412 26.159-.912 39.507 14.539 6.9102 7.98 10.279 11.619 11.97 13.249 0 0 .38494.36349.5893.53142.22331.1835.36878.33789.6945.51914.55786.31042 22.954 10.621 22.954 10.621s.26534.13182.4612-.11049c.19362-.23953.01-.4788.01-.4788-.1491-.17013-14.199-18.328-11.698-33.279 1.9696-11.909 11.447-10.83 24.558-9.3498 4.2794.49984 9.1516 1.0593 14.196 1.1716 14.084.0895 29.254-2.5115 38.604-6.6015 6.049-2.629 9.9093-4.3794 12.328-6.5787.8699-.72084 1.3207-1.8907 1.7907-3.1499l.3297-.83133c.3911-1.0207.9664-3.171 1.219-4.3496.1017-.51914.2208-1.0274-.2087-1.3592-.39265-.30337-1.2944.24027-1.2944.24027-4.1058 2.4712-14.369 7.1505-23.965 7.3504-11.914.24028-36.054-12.061-38.555-13.36-1.6739-3.9857-3.3458-7.9724-5.0438-11.948 17.27 11.379 31.594 17.668 42.559 18.638 12.207 1.0874 21.723-5.5724 25.853-8.3433.54064-.35944 1.0799-.76184 1.5756-1.1486zm-48.992-16.369c.1753-4.7302 2.1554-9.1201 5.6141-12.34 3.4603-3.2306 7.9747-4.9003 12.708-4.7494 9.7602.34902 17.43 8.5886 17.095 18.338-.1841 4.7302-2.1642 9.1201-5.6141 12.33-3.4603 3.2499-7.9642 4.9196-12.719 4.76-9.7497-.35954-17.411-8.5799-17.084-18.338z" clip-rule="evenodd" fill-rule="evenodd"/>
|
||||||
|
<path d="m376.84 556.36c-7.7836 0-12.065 6.5805-12.065 11.13v5.8403c0 6.6997 5.4738 10.851 10.55 10.851h17.819c2.2449 0 2.7149 1.4697 2.7149 2.7097v3.769c0 .39988-.081 4.0198-2.7149 4.0198h-24.303c-2.4151 0-4.1602 1.6802-4.1602 3.9795v1.0418c0 2.2905 1.7451 3.9602 4.1602 3.9602h25.624c6.698 0 11.02-4.66 11.02-11.879v-6.3016c0-6.7786-4.8705-9.8093-9.7058-9.8093h-17.533c-2.6395 0-3.8356-1.9801-3.8356-3.3797v-3.4796c0-2.1906 1.4644-3.4604 4.0251-3.4604h19.408c2.38 0 4.1707-1.71 4.1707-3.9707v-1.04c0-2.2695-1.8205-3.9813-4.2513-3.9813h-20.922z"/>
|
||||||
|
<path d="m449.7 556.36c-2.301 0-4.1548 1.8696-4.1548 4.1707v29.838c0 2.3905-1.9503 4.311-4.311 4.311h-13.545c-2.3694 0-4.3092-1.9205-4.3092-4.311v-29.838c0-2.3011-1.8696-4.1707-4.1689-4.1707h-1.3101c-2.3344 0-4.1707 1.8416-4.1707 4.1707v30.968c0 7.2101 5.6737 12.44 13.489 12.44h14.485c7.8047 0 13.475-5.2282 13.475-12.44v-30.968c0-2.3291-1.8293-4.1707-4.1602-4.1707h-1.3189z"/>
|
||||||
|
<path d="m475.63 556.36c-7.7801 0-12.074 6.5805-12.074 11.13v5.8403c0 6.6997 5.4843 10.851 10.564 10.851h17.814c2.2485 0 2.7203 1.4697 2.7203 2.7097v3.769c0 .39988-.081 4.0198-2.7203 4.0198h-24.314c-2.4045 0-4.1601 1.6802-4.1601 3.9795v1.0418c0 2.2905 1.7556 3.9602 4.1601 3.9602h25.633c6.6998 0 11.041-4.66 11.041-11.879v-6.3016c0-6.7786-4.8845-9.8093-9.7199-9.8093h-17.533c-2.6466 0-3.8392-1.9801-3.8392-3.3797v-3.4796c0-2.1906 1.4645-3.4604 4.0251-3.4604h19.419c2.3747 0 4.1584-1.71 4.1584-3.9707v-1.04c0-2.2695-1.8188-3.9813-4.2601-3.9813h-20.913z"/>
|
||||||
|
<path d="m516.6 556.36c-2.3098 0-4.0549 1.7118-4.0549 3.9813v39.358c0 2.259 1.7047 3.9602 3.9637 3.9602h31.364c2.4151 0 4.1602-1.6697 4.1602-3.9602v-1.0418c0-2.2993-1.7451-3.9795-4.1602-3.9795h-25.687v-10.02h18.822c2.4098 0 4.1602-1.6907 4.1602-3.9813v-1.04c0-2.3011-1.7504-3.9707-4.1602-3.9707h-18.822v-10.32h24.382c2.4063 0 4.1601-1.6591 4.1601-3.9707v-1.04c0-2.3011-1.7538-3.9813-4.1601-3.9813h-29.968z"/>
|
||||||
|
<g transform="matrix(1.7539 0 0 1.7539 -611.6 -134.13)">
|
||||||
|
<path d="m491.25 404.37c-2.241 0-4.065 1.744-4.065 3.894v8.461c0 2.184 1.765 3.963 3.929 3.963h5.473c2.164 0 3.929-1.779 3.929-3.963v-8.461c0-2.149-1.825-3.894-4.065-3.894h-5.201zm-1.184 12.019v-7.726c0-.906.744-1.647 1.654-1.647h4.264c.89 0 1.648.758 1.648 1.647v7.726c0 .912-.738 1.653-1.648 1.653h-4.296c-.912 0-1.622-.725-1.622-1.653z"/>
|
||||||
|
<path d="m512.91 404.27c-1.578 0-2.768.564-3.723 1.026-.582.279-1.086.52-1.477.52-.177 0-.328-.08-.408-.211l-.364-.696c-.091-.183-.456-.541-.907-.541h-.541c-.52 0-.936.467-.936 1.037v21.461c0 .673.531 1.203 1.203 1.203h.468c.667 0 1.209-.536 1.209-1.203v-7.121c0-.211.137-.439.276-.439.391 0 .895.229 1.477.496.955.439 2.145.98 3.723.98h.505c2.794 0 4.532-1.597 4.532-4.162v-8.192c0-2.526-1.775-4.157-4.532-4.157h-.505zm-5.475 11.952v-7.39c0-1.021.798-1.818 1.818-1.818h3.997c1.021 0 1.818.798 1.818 1.818v7.39c0 1.003-.818 1.818-1.818 1.818h-3.997c-1.001 0-1.818-.815-1.818-1.818z"/>
|
||||||
|
<path d="m526.04 404.37c-2.241 0-4.06 1.744-4.06 3.894v8.398c0 2.178 1.768 4.025 3.854 4.025h5.647c.698 0 1.203-.484 1.203-1.141v-.37c0-.661-.505-1.135-1.203-1.135h-4.639c-1.3 0-1.986-.639-1.986-1.854v-2.457h8.369c1.346 0 2.142-.821 2.142-2.212v-3.256c0-2.149-1.822-3.894-4.054-3.894h-5.273zm-1.183 4.265c0-.907.713-1.619 1.621-1.619h4.396c.906 0 1.613.712 1.613 1.619v2.622h-7.631c.001-.342.001-2.622.001-2.622z"/>
|
||||||
|
<path d="m547 404.27c-1.573 0-2.76.564-3.718 1.021-.596.28-1.105.525-1.521.525-.183 0-.257-.023-.399-.269l-.331-.604c-.19-.382-.513-.575-.949-.575h-.465c-.562 0-.972.438-.972 1.037v14.077c0 .667.527 1.203 1.206 1.203h.465c.667 0 1.211-.542 1.211-1.203v-10.65c0-.998.815-1.818 1.813-1.818h3.999c1.001 0 1.816.82 1.816 1.818v10.65c0 .667.53 1.203 1.203 1.203h.47c.667 0 1.209-.542 1.209-1.203v-11.055c0-2.526-1.776-4.157-4.535-4.157h-.502z"/>
|
||||||
|
</g>
|
||||||
|
<g transform="matrix(1.7539 0 0 1.7539 -611.6 -134.13)">
|
||||||
|
<path d="m667.46 415.23c1.218 0 2.188.99 2.188 2.229 0 1.257-.971 2.237-2.198 2.237-1.218 0-2.208-.98-2.208-2.237 0-1.238.99-2.229 2.208-2.229h.01zm-.01.346c-.98 0-1.782.842-1.782 1.882 0 1.06.802 1.891 1.792 1.891.99.011 1.782-.831 1.782-1.881s-.792-1.892-1.782-1.892h-.01zm-.416 3.179h-.396v-2.485c.208-.03.406-.06.703-.06.377 0 .624.079.772.188.149.108.229.276.229.515 0 .326-.218.524-.485.604v.021c.218.039.366.237.416.604.06.387.118.535.158.614h-.416c-.06-.079-.119-.307-.168-.634-.06-.316-.218-.436-.535-.436h-.277v1.069zm0-1.377h.287c.327 0 .604-.118.604-.426 0-.218-.158-.436-.604-.436-.129 0-.218.01-.287.021v.841z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.7 KiB |
732
osc21/artwork/outro.svg
Normal file
|
@ -0,0 +1,732 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||||
|
sodipodi:docname="outro.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3807">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3809" />
|
||||||
|
<stop
|
||||||
|
id="stop3815"
|
||||||
|
offset="0.2"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3811" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3807"
|
||||||
|
id="linearGradient3813"
|
||||||
|
x1="650"
|
||||||
|
y1="595.07648"
|
||||||
|
x2="1230"
|
||||||
|
y2="595.07648"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,0.99744172,-74.949237,-22.857439)" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3807"
|
||||||
|
id="linearGradient3819"
|
||||||
|
x1="575.05078"
|
||||||
|
y1="570.69666"
|
||||||
|
x2="1155.0508"
|
||||||
|
y2="570.69666"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
spreadMethod="reflect" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3807-2"
|
||||||
|
id="linearGradient3819-8"
|
||||||
|
x1="575.05078"
|
||||||
|
y1="570.69666"
|
||||||
|
x2="1155.0508"
|
||||||
|
y2="570.69666"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
spreadMethod="reflect" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3807-2">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3809-5" />
|
||||||
|
<stop
|
||||||
|
id="stop3815-1"
|
||||||
|
offset="0.2"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3811-1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
gradientTransform="matrix(2.3933139,0,0,1,-1291.5105,359.35582)"
|
||||||
|
y2="570.69666"
|
||||||
|
x2="1155.0508"
|
||||||
|
y1="570.69666"
|
||||||
|
x1="575.05078"
|
||||||
|
spreadMethod="reflect"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4017-1"
|
||||||
|
xlink:href="#linearGradient3807-2-2"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3807-2-2">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3809-5-5" />
|
||||||
|
<stop
|
||||||
|
id="stop3815-1-7"
|
||||||
|
offset="0.2"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3811-1-0" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="570.69666"
|
||||||
|
x2="1155.0508"
|
||||||
|
y1="570.69666"
|
||||||
|
x1="575.05078"
|
||||||
|
spreadMethod="reflect"
|
||||||
|
gradientTransform="matrix(2.3933139,0,0,1,-842.013,2.87365)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4510"
|
||||||
|
xlink:href="#linearGradient3807-2-2"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<filter
|
||||||
|
id="filter4858"
|
||||||
|
inkscape:label="Drop Shadow"
|
||||||
|
width="1.2"
|
||||||
|
color-interpolation-filters="sRGB">
|
||||||
|
<feFlood
|
||||||
|
id="feFlood4860"
|
||||||
|
flood-opacity="0.29666666666666669"
|
||||||
|
flood-color="rgb(255,255,255)"
|
||||||
|
result="flood" />
|
||||||
|
<feComposite
|
||||||
|
id="feComposite4862"
|
||||||
|
in2="SourceGraphic"
|
||||||
|
in="flood"
|
||||||
|
operator="in"
|
||||||
|
result="composite1" />
|
||||||
|
<feGaussianBlur
|
||||||
|
id="feGaussianBlur4864"
|
||||||
|
stdDeviation="2"
|
||||||
|
result="blur" />
|
||||||
|
<feOffset
|
||||||
|
id="feOffset4866"
|
||||||
|
dx="2"
|
||||||
|
dy="2.2000000000000002"
|
||||||
|
result="offset" />
|
||||||
|
<feComposite
|
||||||
|
id="feComposite4868"
|
||||||
|
in2="offset"
|
||||||
|
in="SourceGraphic"
|
||||||
|
operator="over"
|
||||||
|
result="composite2"
|
||||||
|
dy="0" />
|
||||||
|
</filter>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath18">
|
||||||
|
<path
|
||||||
|
d="m 312.117,871.087 c -6.264,-1.72 -10.84,-10.647 -14.167,-15.645 l 0,0 c -4.194,-6.302 -7.979,-12.897 -11.534,-19.58 l 0,0 c -6.794,-12.771 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.658,-134.44 c -34.506,-10.769 -67.49,-29.469 -99.699,-48.874 l 0,0 c 12.812,-37.59 55.526,-58.834 95.24,-58.766 l 0,0 c 0.024,0 0.047,0 0.071,0 l 0,0 c -6.665,-0.282 -13.34,-0.125 -19.96,0.504 l 0,0 c 17.08,-29.328 37.542,-57.811 69.853,-68.2 l 0,0 c 26.039,-8.372 54.524,-0.76 79.568,10.242 l 0,0 c 16.073,7.061 37.811,23.424 50.174,37.459 l 0,0 c -5.443,-6.931 -9.356,-11.85 -9.378,-14.226 l 0,0 c -0.036,-4.022 11.889,-7.249 15.319,-7.836 l 0,0 c 4.537,-0.776 55.479,-8.821 65.762,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.162 l 0,0 c 9.775,1.619 19.405,4.609 27.984,9.637 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.648 -9.272,-36.305 l 0,0 c -0.171,-0.666 -0.311,-1.344 -0.413,-2.024 l 0,0 c -3.39,-22.815 -3.156,-46.468 -3.991,-69.493 l 0,0 c -0.901,-24.858 -1.418,-49.754 -2.83,-74.59 l 0,0 c -0.791,-13.917 -3.767,-27.11 -7.947,-40.362 l 0,0 c -1.785,-5.66 -3.752,-11.282 -5.94,-16.816 l 0,0 c 2.853,8.361 4.713,17.016 5.261,25.851 l 0,0 c 0.555,8.93 -0.352,17.967 -2.745,26.592 l 0,0 c -2.662,9.599 -7.206,18.729 -13.686,26.328 l 0,0 c -1.536,1.801 -2.531,3.044 -3.792,5.045 l 0,0 c -1.313,2.081 -3.691,4.003 -5.535,5.683 l 0,0 c -4.28,3.901 -8.981,7.314 -13.802,10.512 l 0,0 c -8.952,5.937 -18.089,11.527 -28.039,15.555 l 0,0 c -22.597,9.151 -48.915,13.05 -72.999,8.126 l 0,0 c -49.265,-10.074 -94.2,-46.844 -113.089,-93.79 l 0,0 c -7.565,-18.805 -8.616,-45.719 -6.222,-65.756 l 0,0 c 7.2,-60.243 65.422,-100.088 125.514,-108.448 l 0,0 c 24.824,-3.455 52.18,-1.693 76.294,4.869 l 0,0 c 50.617,13.775 89.298,54.937 112.844,99.669 l 0,0 c 2.794,5.307 14.736,24.552 14.675,26.909 l 0,0 c 0.267,-10.318 3.457,-20.545 9.106,-29.184 l 0,0 16.227,92.559 c 1.621,-9.021 7.294,-17.234 15.157,-21.945 l 0,0 0.204,60.905 c 1.41,-9.085 6.602,-14.523 14.491,-19.244 l 0,0 c -4.166,27.38 -4.717,52.34 -2.482,79.945 l 0,0 c 7.063,-4.324 13.65,-8.62 20.658,-10.281 l 0,0 c -3.651,26.792 -12.97,49.694 -16.621,76.487 l 0,0 c 10.534,-8.562 10.319,-10.84 19.664,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.882,-0.923 c -10.728,25.86 -25.45,41.841 -43.486,63.254 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.489 l 0,0 c -14.416,20.027 -33.431,26.496 -56.345,35.655 l 0,0 c 14.572,6.667 21.146,13.146 30.811,25.412 l 0,0 c -25.908,4.436 -43.613,6.974 -69.672,10.409 l 0,0 c 9.984,6.221 25.959,11.735 32.646,23.966 l 0,0 c -23.093,-0.068 -51.514,-1.99 -74.606,-2.058 l 0,0 c 3.118,9.15 16.024,22.056 15.344,33.286 l 0,0 -67.289,-24.136 c -2.029,7.646 4.971,10.282 1.623,31.588 l 0,0 -54.542,-23.538 c 0,6.9 9.282,21.518 5.236,31.248 l 0,0 c -1.052,2.53 -27.624,-18.934 -36.917,-20.788 l 0,0 c 0,0 19.327,52.162 14.75,52.15 l 0,0 c -15.455,-0.042 -33.75,-18.848 -49.058,-21.738 l 0,0 c -3.6,5.947 -6.717,12.18 -9.698,18.456 l 0,0 c -5.957,12.543 -11.32,25.358 -17.137,37.966 l 0,0 c -2.809,6.088 -5.71,12.138 -8.882,18.045 l 0,0 c -2.044,3.808 -3.89,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.531 -9.801,2.531 l 0,0 c -1.401,0 -2.751,-0.155 -3.948,-0.484 m 41.469,-271.97 c -2.238,-1.885 -4.527,-3.722 -6.865,-5.509 l 0,0 c 2.327,1.793 4.616,3.631 6.865,5.509 m 85.349,-45.569 c 0,0 0,0 0,0 M 383.533,241.747 c -16.443,19.302 -23.431,46.211 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.037 39.804,56.683 l 0,0 c 20.808,11.645 47.481,12.699 68.622,1.67 l 0,0 c 21.142,-11.029 35.713,-34.183 35.364,-58.026 l 0,0 c -0.349,-23.843 -16.558,-46.24 -39.055,-54.146 l 0,0 c -13.248,-4.655 -27.77,-4.347 -39.5,3.375 l 0,0 c -11.729,7.722 -19.3,22.583 -15.553,36.117 l 0,0 c 3.746,13.535 19.143,23.26 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.83 14.374,-7.338 l 0,0 c 6.351,-3.339 14.186,-5.411 20.409,0.204 l 0,0 c 2.348,2.119 3.893,5.052 4.395,8.174 l 0,0 c 1.65,10.257 -5.836,19.545 -14.699,22.812 l 0,0 c -6.84,2.521 -14.529,2.26 -21.749,1.25 l 0,0 c -23.7,-3.318 -46.176,-17.837 -57.931,-38.681 l 0,0 c -11.755,-20.845 -11.322,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.479,-17.733 32.216,-21.387 l 0,0 c -16.77,4.192 -32.281,13.594 -43.507,26.771 m 146.601,21.02 c 0.24,0.346 0.478,0.693 0.716,1.042 l 0,0 c -2.094,-3.187 -4.311,-6.295 -6.662,-9.313 l 0,0 c -5.252,-6.741 -11.254,-13.003 -17.851,-18.524 l 0,0 c 9.038,7.807 17.014,17.001 23.797,26.795"
|
||||||
|
id="path20"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath28">
|
||||||
|
<path
|
||||||
|
d="m 314.284,874.024 c -6.264,-1.721 -10.84,-10.648 -14.166,-15.645 l 0,0 c -4.194,-6.302 -7.981,-12.897 -11.535,-19.58 l 0,0 c -6.794,-12.772 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.657,-134.44 c -34.506,-10.769 -67.491,-29.47 -99.701,-48.874 l 0,0 c 12.813,-37.59 55.528,-58.835 95.241,-58.767 l 0,0 c 0.017,0 0.031,0 0.048,0 l 0,0 c -6.659,-0.281 -13.323,-0.124 -19.938,0.505 l 0,0 c 17.081,-29.328 37.544,-57.812 69.854,-68.2 l 0,0 c 26.039,-8.373 54.524,-0.761 79.568,10.242 l 0,0 c 16.072,7.06 37.807,23.42 50.171,37.455 l 0,0 c -5.441,-6.928 -9.354,-11.847 -9.375,-14.223 l 0,0 c -0.036,-4.022 11.889,-7.249 15.32,-7.836 l 0,0 c 4.536,-0.776 55.478,-8.82 65.761,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.161 l 0,0 c 9.774,1.618 19.404,4.608 27.984,9.636 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.647 -9.272,-36.304 l 0,0 c -0.171,-0.666 -0.312,-1.345 -0.413,-2.025 l 0,0 c -3.39,-22.814 -3.157,-46.467 -3.991,-69.492 l 0,0 c -0.902,-24.859 -1.418,-49.754 -2.83,-74.591 l 0,0 c -0.791,-13.916 -3.768,-27.109 -7.947,-40.362 l 0,0 c -1.785,-5.661 -3.753,-11.284 -5.942,-16.82 l 0,0 c 2.854,8.362 4.714,17.02 5.263,25.856 l 0,0 c 0.554,8.929 -0.353,17.967 -2.745,26.592 l 0,0 c -2.662,9.598 -7.206,18.729 -13.686,26.327 l 0,0 c -1.536,1.801 -3.494,3.382 -4.757,5.383 l 0,0 c -1.312,2.081 -2.726,3.665 -4.57,5.345 l 0,0 c -4.28,3.901 -8.981,7.315 -13.802,10.512 l 0,0 c -8.952,5.938 -18.598,10.791 -28.547,14.819 l 0,0 c -22.597,9.149 -47.586,13.078 -71.67,8.153 l 0,0 c -49.265,-10.074 -95.021,-46.134 -113.91,-93.081 l 0,0 c -7.566,-18.804 -8.616,-45.718 -6.222,-65.755 l 0,0 c 7.2,-60.244 65.422,-100.089 125.514,-108.45 l 0,0 c 24.823,-3.453 52.179,-1.692 76.293,4.87 l 0,0 c 50.618,13.775 89.298,54.937 112.845,99.669 l 0,0 c 2.794,5.306 14.736,24.552 14.675,26.91 l 0,0 c 0.266,-10.318 3.457,-20.545 9.105,-29.185 l 0,0 16.228,92.559 c 1.622,-9.021 7.294,-17.234 15.156,-21.944 l 0,0 0.204,60.905 c 1.411,-9.085 6.603,-14.524 14.491,-19.245 l 0,0 c -4.165,27.381 -4.717,52.34 -2.481,79.945 l 0,0 c 7.063,-4.324 13.65,-8.619 20.657,-10.281 l 0,0 c -3.651,26.793 -12.969,49.695 -16.621,76.488 l 0,0 c 10.535,-8.562 10.321,-10.841 19.665,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.881,-0.924 c -10.726,25.861 -25.449,41.842 -43.485,63.255 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.488 l 0,0 c -14.416,20.028 -33.431,26.496 -56.345,35.655 l 0,0 c 14.571,6.668 21.146,13.147 30.811,25.413 l 0,0 c -25.908,4.436 -43.613,6.973 -69.673,10.409 l 0,0 c 9.985,6.22 25.961,11.735 32.648,23.966 l 0,0 c -23.094,-0.069 -51.515,-1.991 -74.608,-2.06 l 0,0 c 3.119,9.152 16.025,22.058 15.345,33.287 l 0,0 -67.289,-24.135 c -2.03,7.644 4.971,10.282 1.624,31.588 l 0,0 -54.543,-23.538 c 0,6.899 9.282,21.517 5.235,31.248 l 0,0 c -1.052,2.53 -27.623,-18.935 -36.917,-20.789 l 0,0 c 0,0 19.328,52.162 14.751,52.15 l 0,0 c -15.456,-0.043 -33.751,-18.848 -49.059,-21.737 l 0,0 c -3.6,5.946 -6.717,12.18 -9.697,18.454 l 0,0 c -5.958,12.545 -11.32,25.36 -17.137,37.968 l 0,0 c -2.808,6.086 -5.71,12.137 -8.882,18.045 l 0,0 c -2.044,3.808 -3.889,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.53 -9.801,2.53 l 0,0 c -1.401,0 -2.752,-0.154 -3.948,-0.483 m 41.469,-271.971 c -2.231,-1.88 -4.511,-3.71 -6.842,-5.492 l 0,0 c 2.319,1.787 4.601,3.62 6.842,5.492 m 85.349,-45.569 c 0,0 0,0 0,0 M 385.7,244.684 c -16.443,19.301 -23.431,46.21 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.036 39.804,56.681 l 0,0 c 20.807,11.646 47.481,12.699 68.623,1.672 l 0,0 c 21.141,-11.029 35.712,-34.184 35.362,-58.026 l 0,0 C 510.325,292.31 494.456,269.141 471.96,261.234 l 0,0 c -13.249,-4.656 -28.749,-3.925 -40.478,3.797 l 0,0 c -11.73,7.722 -18.663,22.934 -14.915,36.468 l 0,0 c 3.747,13.534 19.144,23.259 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.831 14.374,-7.339 l 0,0 c 6.352,-3.338 14.186,-5.411 20.41,0.205 l 0,0 c 2.347,2.118 3.891,5.052 4.393,8.173 l 0,0 c 1.651,10.257 -5.876,18.554 -14.739,21.821 l 0,0 c -6.84,2.522 -14.381,2.425 -21.601,1.414 l 0,0 c -23.699,-3.317 -46.283,-17.011 -58.038,-37.854 l 0,0 c -11.755,-20.844 -11.323,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.481,-17.733 32.218,-21.388 l 0,0 c -16.769,4.192 -32.283,13.595 -43.509,26.773 m 146.6,21.019 c 0.248,0.358 0.494,0.716 0.739,1.075 l 0,0 c -2.1,-3.197 -4.324,-6.317 -6.684,-9.346 l 0,0 c -5.241,-6.727 -11.231,-12.977 -17.813,-18.49 l 0,0 c 9.023,7.8 16.985,16.98 23.758,26.761"
|
||||||
|
id="path30"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1428">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1430"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1436">
|
||||||
|
<path
|
||||||
|
d="m 153.069,874.507 547.722,0 0,-721.1 -547.722,0 0,721.1 z"
|
||||||
|
id="path1438"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,239.82324,731.99097)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1468">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1470" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1472" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1480">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1482"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,324.3374,727.64069)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1516">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1518" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1520" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1528">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1530"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1560">
|
||||||
|
<path
|
||||||
|
d="m 529.474,574.673 c 6.87,-7.702 13.741,-15.405 20.611,-23.107 l 0,0 c 2.925,-3.279 6.035,-7.149 6.026,-11.402 l 0,0 c -10e-4,-0.461 -0.038,-0.925 -0.116,-1.394 l 0,0 c -0.679,-4.076 -4.235,-6.974 -7.641,-9.312 l 0,0 c -8.134,-5.582 -16.812,-10.954 -24.245,-17.441 l 0,0 c -3.348,-2.922 -15.688,-9.847 -17.856,-11.768 l 0,0 c -10.514,-9.322 -29.698,-8.23 -43.695,-6.992 l 0,0 c -2.978,0.263 -6.376,0.501 -8.544,-1.558 l 0,0 c -1.461,-1.388 -1.959,-3.483 -2.345,-5.461 l 0,0 c -0.541,-2.777 -0.961,-5.706 -0.964,-8.569 l 0,0 c -0.005,-3.924 0.773,-7.721 3.093,-10.826 l 0,0 c 5.5,-7.361 17.621,-6.775 24.515,-0.701 l 0,0 c 3.855,3.397 7.098,8.39 12.216,8.854 l 0,0 c 5.187,0.469 9.462,-4.158 11.606,-8.906 l 0,0 c 2.145,-4.748 3.149,-10.106 6.358,-14.211 l 0,0 c 6.392,-8.178 21.134,-7.2 26.389,1.752 l 0,0 c 1.293,2.202 1.885,4.672 1.889,7.167 l 0,0 c 0.013,7.643 -5.488,15.526 -13.22,16.729 l 0,0 c -0.999,1.438 -1.44,3.117 -1.442,4.842 l 0,0 c -0.002,2.689 1.063,5.487 2.742,7.64 l 0,0 c 2.755,3.534 6.807,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.214 l 0,0 c 2.132,2.238 4.348,4.93 4.35,7.937 l 0,0 c 0,0.269 -0.017,0.54 -0.054,0.814 l 0,0 c -0.28,2.082 -1.645,3.833 -2.959,5.471 l 0,0 c -9.167,11.424 -18.333,22.849 -27.5,34.273 l 0,0 -23.071,-6.074 z"
|
||||||
|
id="path1562"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1646">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1648"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1658">
|
||||||
|
<path
|
||||||
|
d="m 444.813,571.047 c 6.832,-7.66 13.665,-15.32 20.499,-22.979 l 0,0 c 3.241,-3.634 6.709,-7.994 5.908,-12.797 l 0,0 c -0.056,-0.338 -0.132,-0.668 -0.226,-0.99 l 0,0 c -0.987,-3.65 -4.29,-6.315 -7.463,-8.492 l 0,0 c -8.135,-5.582 -16.812,-10.954 -24.246,-17.441 l 0,0 c -3.348,-2.922 -15.687,-9.846 -17.855,-11.769 l 0,0 c -10.514,-9.321 -29.699,-8.229 -43.695,-6.992 l 0,0 c -2.979,0.264 -6.375,0.503 -8.543,-1.557 l 0,0 c -0.945,-0.898 -1.487,-2.091 -1.857,-3.358 l 0,0 c -0.178,-0.638 -0.315,-1.291 -0.44,-1.933 l 0,0 c -1.283,-6.581 -1.885,-14.024 2.129,-19.396 l 0,0 c 5.499,-7.36 17.621,-6.774 24.514,-0.7 l 0,0 c 3.856,3.397 7.099,8.391 12.216,8.854 l 0,0 c 5.189,0.47 9.464,-4.158 11.607,-8.906 l 0,0 c 2.144,-4.747 3.15,-10.106 6.357,-14.211 l 0,0 c 6.393,-8.177 21.135,-7.199 26.39,1.752 l 0,0 c 0.57,0.971 1.003,1.993 1.311,3.046 l 0,0 c 2.398,8.633 -3.607,19.267 -12.691,20.68 l 0,0 c -1.621,2.332 -1.772,5.302 -0.964,8.064 l 0,0 c 0.46,1.658 1.268,3.248 2.313,4.588 l 0,0 c 2.754,3.534 6.806,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.215 l 0,0 c 1.669,1.751 3.39,3.782 4.06,6.024 l 0,0 c 0.225,0.825 0.306,1.678 0.187,2.556 l 0,0 c -0.279,2.082 -1.644,3.832 -2.959,5.47 l 0,0 c -9.166,11.425 -18.334,22.85 -27.5,34.274 l 0,0 -22.909,-6.031 z"
|
||||||
|
id="path1660"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
inkscape:cx="999.71011"
|
||||||
|
inkscape:cy="516.21653"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1868"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="52"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"
|
||||||
|
inkscape:snap-bbox-midpoints="true"
|
||||||
|
inkscape:object-paths="false"
|
||||||
|
inkscape:snap-to-guides="true">
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,0"
|
||||||
|
id="guide3017"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,1080"
|
||||||
|
id="guide3019"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="0,0"
|
||||||
|
id="guide3021"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1920,1337.442"
|
||||||
|
id="guide3023"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,25"
|
||||||
|
id="guide3025"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,1048"
|
||||||
|
id="guide3027"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="32,0"
|
||||||
|
id="guide3029"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1888,0"
|
||||||
|
id="guide3031"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="960,1080"
|
||||||
|
id="guide3819"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="801.03138,410.45881"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide6270"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,27.63782)">
|
||||||
|
<rect
|
||||||
|
style="fill:#6da741;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="rect3797"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
x="0"
|
||||||
|
y="-27.637817" />
|
||||||
|
<g
|
||||||
|
id="ccbysa"
|
||||||
|
inkscape:label="#ccbysa"
|
||||||
|
transform="matrix(1.81654,0,0,1.81654,31.999998,951.0675)">
|
||||||
|
<g
|
||||||
|
inkscape:export-ydpi="300.23013"
|
||||||
|
inkscape:export-xdpi="300.23013"
|
||||||
|
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
|
||||||
|
id="g287"
|
||||||
|
transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)">
|
||||||
|
<path
|
||||||
|
style="fill:#aab2ab"
|
||||||
|
d="m 182.23532,75.39014 114.06396,0.20312 c 1.59375,0 3.01758,-0.23682 3.01758,3.18018 l -0.13965,37.56689 -119.82031,0 0,-37.70654 c 0,-1.68457 0.16309,-3.24365 2.87842,-3.24365 z"
|
||||||
|
nodetypes="ccccccc"
|
||||||
|
id="path3817_2_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)"
|
||||||
|
id="g5908_2_">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
d="m 187.20944,-55.6792 c 0.006,8.68024 -7.02786,15.72095 -15.7081,15.72708 -8.68021,0.005 -15.72205,-7.02786 -15.72708,-15.70804 0,-0.0067 0,-0.01233 0,-0.01904 -0.005,-8.68134 7.02783,-15.72205 15.70807,-15.72711 8.68134,-0.0056 15.72208,7.02789 15.72711,15.70807 0,0.0056 0,0.01233 0,0.01904 z"
|
||||||
|
rx="22.939548"
|
||||||
|
type="arc"
|
||||||
|
cy="264.3577"
|
||||||
|
ry="22.939548"
|
||||||
|
cx="296.35416"
|
||||||
|
id="path5906_2_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="translate(-289.6157,99.0653)"
|
||||||
|
id="g5706_2_">
|
||||||
|
<path
|
||||||
|
d="m 473.88455,-167.54724 c 3.48541,3.48596 5.22839,7.75391 5.22839,12.80273 0,5.04938 -1.7128,9.27148 -5.13834,12.66736 -3.63531,3.5766 -7.93179,5.36432 -12.88947,5.36432 -4.89777,0 -9.11987,-1.77261 -12.6651,-5.31955 -3.54584,-3.54581 -5.31845,-7.78299 -5.31845,-12.71213 0,-4.92859 1.77261,-9.19598 5.31845,-12.80273 3.4552,-3.48651 7.67725,-5.22894 12.6651,-5.22894 5.04829,0 9.31401,1.74243 12.79942,5.22894 z m -23.11798,2.34485 c -2.94675,2.97638 -4.41956,6.46289 -4.41956,10.46234 0,3.99835 1.45828,7.4552 4.37424,10.37067 2.91653,2.9165 6.38849,4.37476 10.41705,4.37476 4.02853,0 7.53018,-1.47281 10.50656,-4.41901 2.8259,-2.73584 4.23941,-6.17706 4.23941,-10.32642 0,-4.11804 -1.43646,-7.61292 -4.30768,-10.48474 -2.87064,-2.87067 -6.34988,-4.30652 -10.43829,-4.30652 -4.08837,0 -7.54638,1.44318 -10.37173,4.32892 z m 7.75449,8.70312 c -0.45032,-0.98163 -1.12433,-1.47223 -2.02325,-1.47223 -1.58914,0 -2.38342,1.06952 -2.38342,3.2085 0,2.13959 0.79428,3.20911 2.38342,3.20911 1.04938,0 1.79895,-0.5213 2.24866,-1.56512 l 2.20276,1.17303 c -1.04993,1.86548 -2.62506,2.79901 -4.72549,2.79901 -1.6199,0 -2.91763,-0.4967 -3.89206,-1.48956 -0.97607,-0.99341 -1.46274,-2.36273 -1.46274,-4.10797 0,-1.71558 0.50229,-3.07709 1.50748,-4.08563 1.00519,-1.00793 2.25705,-1.51251 3.75781,-1.51251 2.22012,0 3.80984,0.87488 4.77081,2.62286 l -2.38398,1.22051 z m 10.36334,0 c -0.45087,-0.98163 -1.11148,-1.47223 -1.98239,-1.47223 -1.62106,0 -2.43213,1.06952 -2.43213,3.2085 0,2.13959 0.81107,3.20911 2.43213,3.20911 1.05103,0 1.78717,-0.5213 2.20724,-1.56512 l 2.25201,1.17303 c -1.04825,1.86548 -2.62119,2.79901 -4.71768,2.79901 -1.61771,0 -2.91263,-0.4967 -3.88647,-1.48956 -0.97217,-0.99341 -1.45938,-2.36273 -1.45938,-4.10797 0,-1.71558 0.49448,-3.07709 1.48288,-4.08563 0.98782,-1.00793 2.24527,-1.51251 3.77347,-1.51251 2.21619,0 3.80368,0.87488 4.76132,2.62286 l -2.431,1.22051 z"
|
||||||
|
id="path5708_2_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
id="path294"
|
||||||
|
d="m 297.29639,74.91064 -116.22951,0 c -1.24658,0 -2.26074,1.01465 -2.26074,2.26123 l 0,39.49561 c 0,0.28174 0.22852,0.51074 0.51025,0.51074 l 119.73,0 c 0.28174,0 0.51074,-0.229 0.51074,-0.51074 l 0,-39.4956 c 0,-1.24659 -1.01416,-2.26124 -2.26074,-2.26124 z m -116.22951,1.02149 116.22951,0 c 0.68359,0 1.23926,0.55615 1.23926,1.23975 0,0 0,15.91943 0,27.41846 l -83.07375,0 c -3.04492,5.50537 -8.91113,9.24365 -15.64355,9.24365 -6.73535,0 -12.6001,-3.73486 -15.64355,-9.24365 l -4.34814,0 c 0,-11.49902 0,-27.41846 0,-27.41846 -2e-5,-0.6836 0.55663,-1.23975 1.24022,-1.23975 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g296"
|
||||||
|
enable-background="new ">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path298"
|
||||||
|
d="m 265.60986,112.8833 c 0.0801,0.15576 0.1875,0.28174 0.32129,0.37842 0.13379,0.0962 0.29004,0.16797 0.46973,0.21436 0.18066,0.0469 0.36719,0.0703 0.55957,0.0703 0.12988,0 0.26953,-0.0107 0.41895,-0.0327 0.14844,-0.0215 0.28809,-0.064 0.41895,-0.12598 0.12988,-0.062 0.23926,-0.14795 0.3252,-0.25684 0.0879,-0.10889 0.13086,-0.24707 0.13086,-0.41553 0,-0.18018 -0.0576,-0.32617 -0.17285,-0.43848 -0.11426,-0.1123 -0.26562,-0.20508 -0.45215,-0.28027 -0.18555,-0.0742 -0.39746,-0.13965 -0.63281,-0.1958 -0.23633,-0.0562 -0.47559,-0.11816 -0.71777,-0.18701 -0.24902,-0.062 -0.49121,-0.13818 -0.72754,-0.22852 -0.23535,-0.0898 -0.44727,-0.20703 -0.63379,-0.3501 -0.18652,-0.14307 -0.33691,-0.32178 -0.45215,-0.53662 -0.11426,-0.21484 -0.17188,-0.47461 -0.17188,-0.7793 0,-0.34277 0.0732,-0.63965 0.21875,-0.8916 0.14648,-0.25195 0.33789,-0.46191 0.57422,-0.63037 0.23535,-0.16797 0.50293,-0.29248 0.80176,-0.37354 0.29785,-0.0806 0.59668,-0.12109 0.89453,-0.12109 0.34863,0 0.68262,0.0391 1.00293,0.11719 0.31934,0.0776 0.60449,0.2041 0.85254,0.37842 0.24902,0.17432 0.44629,0.39697 0.59277,0.66797 0.14551,0.271 0.21875,0.59961 0.21875,0.98535 l -1.42188,0 c -0.0127,-0.19922 -0.0547,-0.36426 -0.125,-0.49463 -0.0713,-0.13086 -0.16602,-0.2334 -0.2832,-0.30859 -0.11816,-0.0742 -0.25293,-0.12744 -0.4043,-0.1582 -0.15234,-0.0312 -0.31738,-0.0469 -0.49707,-0.0469 -0.11719,0 -0.23535,0.0127 -0.35254,0.0371 -0.11816,0.0254 -0.22461,0.0688 -0.32031,0.13086 -0.0967,0.0625 -0.17578,0.14014 -0.2373,0.2334 -0.0615,0.0937 -0.0928,0.21191 -0.0928,0.35498 0,0.13086 0.0244,0.23682 0.0742,0.31738 0.0498,0.0811 0.14844,0.15576 0.29395,0.22412 0.14551,0.0684 0.34766,0.13721 0.60547,0.20557 0.25781,0.0684 0.59473,0.15576 1.01172,0.26123 0.12402,0.0249 0.2959,0.0703 0.5166,0.13574 0.2207,0.0654 0.43945,0.16943 0.65723,0.3125 0.21777,0.14355 0.40527,0.33496 0.56445,0.57422 0.1582,0.23975 0.2373,0.54639 0.2373,0.91992 0,0.30518 -0.0596,0.58838 -0.17773,0.84961 -0.11816,0.26172 -0.29395,0.4873 -0.52734,0.67676 -0.2334,0.19043 -0.52246,0.33789 -0.86719,0.44385 -0.3457,0.10596 -0.74609,0.15869 -1.19922,0.15869 -0.36719,0 -0.72363,-0.0454 -1.06934,-0.13574 -0.34473,-0.0903 -0.65039,-0.23242 -0.91504,-0.42578 -0.26367,-0.19336 -0.47363,-0.43994 -0.62988,-0.73877 -0.15527,-0.29932 -0.22949,-0.65381 -0.22363,-1.06494 l 1.42188,0 c -3e-5,0.22412 0.04,0.41406 0.12106,0.56933 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path300"
|
||||||
|
d="m 273.8667,107.8667 2.49316,6.66406 -1.52246,0 -0.50391,-1.48438 -2.49316,0 -0.52246,1.48438 -1.47461,0 2.52051,-6.66406 1.50293,0 z m 0.084,4.08594 -0.83984,-2.44336 -0.0186,0 -0.86914,2.44336 1.72753,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g302"
|
||||||
|
enable-background="new ">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path304"
|
||||||
|
d="m 239.17821,107.8667 c 0.31738,0 0.60742,0.0283 0.86914,0.084 0.26172,0.0561 0.48633,0.14795 0.67383,0.27539 0.18652,0.12744 0.33203,0.29688 0.43457,0.5083 0.10254,0.21142 0.1543,0.47266 0.1543,0.78369 0,0.33594 -0.0762,0.61523 -0.22949,0.83936 -0.15234,0.22412 -0.37891,0.40723 -0.67773,0.55029 0.41211,0.11816 0.71973,0.3252 0.92285,0.62109 0.20312,0.29589 0.30469,0.65234 0.30469,1.06934 0,0.33594 -0.0654,0.62695 -0.19629,0.87305 -0.13086,0.24561 -0.30762,0.44629 -0.52832,0.60205 -0.22168,0.15576 -0.47461,0.271 -0.75781,0.34521 -0.28418,0.0752 -0.5752,0.1123 -0.875,0.1123 l -3.23633,0 0,-6.66406 3.14159,0 0,1e-5 z m -0.1875,2.69531 c 0.26172,0 0.47656,-0.062 0.64551,-0.18604 0.16797,-0.12451 0.25195,-0.32568 0.25195,-0.60498 0,-0.15527 -0.0283,-0.28271 -0.084,-0.38184 -0.0566,-0.0996 -0.13086,-0.17676 -0.22461,-0.23291 -0.0937,-0.0557 -0.20117,-0.0947 -0.32227,-0.11621 -0.12207,-0.022 -0.24805,-0.0327 -0.37891,-0.0327 l -1.37305,0 0,1.55469 1.48536,0 z m 0.0859,2.82813 c 0.14355,0 0.28027,-0.0137 0.41113,-0.042 0.13086,-0.0278 0.24707,-0.0747 0.34668,-0.13965 0.0996,-0.0654 0.17871,-0.1543 0.23828,-0.26611 0.0596,-0.11181 0.0889,-0.25488 0.0889,-0.4292 0,-0.3418 -0.0967,-0.58594 -0.29004,-0.73193 -0.19336,-0.14599 -0.44922,-0.21924 -0.7666,-0.21924 l -1.59961,0 0,1.82812 1.57129,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path306"
|
||||||
|
d="m 241.88914,107.8667 1.64355,0 1.56055,2.63184 1.55078,-2.63184 1.63379,0 -2.47363,4.10645 0,2.55762 -1.46875,0 0,-2.59473 -2.44629,-4.06934 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)"
|
||||||
|
id="g6316_1_">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
d="m -175.0083,-139.1153 c 0.006,9.4118 -7.61725,17.04779 -17.02982,17.05481 -9.41101,0.007 -17.047,-7.61725 -17.05481,-17.02979 0,-0.008 0,-0.0172 0,-0.025 -0.006,-9.41254 7.6188,-17.047 17.02982,-17.05481 9.41257,-0.007 17.04855,7.61804 17.05481,17.02985 0,0.009 0,0.0164 0,0.025 z"
|
||||||
|
rx="29.209877"
|
||||||
|
type="arc"
|
||||||
|
cy="252.08646"
|
||||||
|
ry="29.209877"
|
||||||
|
cx="475.97119"
|
||||||
|
id="path6318_1_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="translate(-23.9521,-89.72962)"
|
||||||
|
id="g6320_1_">
|
||||||
|
<path
|
||||||
|
d="m -168.2204,-68.05536 c -5.17194,0 -9.54852,1.80469 -13.13135,5.41333 -3.67661,3.73444 -5.51413,8.1532 -5.51413,13.25635 0,5.10315 1.83752,9.49152 5.51413,13.1626 3.67502,3.67194 8.05316,5.50787 13.13135,5.50787 5.14066,0 9.59537,-1.85156 13.36728,-5.55475 3.55005,-3.51562 5.3266,-7.88831 5.3266,-13.11572 0,-5.22662 -1.8078,-9.64697 -5.42191,-13.25635 -3.61407,-3.60864 -8.03756,-5.41333 -13.27197,-5.41333 z m 0.0469,3.36017 c 4.23752,0 7.836,1.49298 10.79697,4.48053 2.98907,2.9563 4.48441,6.56567 4.48441,10.82898 0,4.29382 -1.46252,7.85712 -4.39224,10.68915 -3.08438,3.04926 -6.71411,4.57349 -10.88913,4.57349 -4.17505,0 -7.7735,-1.5094 -10.79541,-4.52661 -3.02188,-3.01953 -4.53284,-6.59692 -4.53284,-10.73602 0,-4.13831 1.52658,-7.74847 4.57971,-10.82898 2.92815,-2.98756 6.51098,-4.48054 10.74853,-4.48054 z"
|
||||||
|
id="path6322_1_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m -176.49548,-52.02087 c 0.74377,-4.69769 4.05161,-7.20862 8.1954,-7.20862 5.96097,0 9.59225,4.32501 9.59225,10.09229 0,5.62738 -3.86411,9.99927 -9.686,9.99927 -4.00473,0 -7.58914,-2.46484 -8.24228,-7.30084 l 4.70319,0 c 0.14062,2.51099 1.77032,3.39459 4.09845,3.39459 2.65317,0 4.37817,-2.4649 4.37817,-6.23291 0,-3.95233 -1.49063,-6.04535 -4.28598,-6.04535 -2.04846,0 -3.8172,0.74457 -4.19064,3.30157 l 1.36874,-0.007 -3.70316,3.7016 -3.7016,-3.7016 1.47346,0.007 z"
|
||||||
|
id="path6324_1_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g313">
|
||||||
|
<circle
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="circle315"
|
||||||
|
r="10.8064"
|
||||||
|
cy="90.224609"
|
||||||
|
cx="242.56226" />
|
||||||
|
<g
|
||||||
|
id="g317">
|
||||||
|
<path
|
||||||
|
id="path319"
|
||||||
|
d="m 245.68994,87.09766 c 0,-0.4165 -0.33789,-0.75342 -0.75391,-0.75342 l -4.77246,0 c -0.41602,0 -0.75391,0.33691 -0.75391,0.75342 l 0,4.77295 1.33105,0 0,5.65234 3.61719,0 0,-5.65234 1.33203,0 0,-4.77295 1e-5,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<circle
|
||||||
|
id="circle321"
|
||||||
|
r="1.63232"
|
||||||
|
cy="84.083008"
|
||||||
|
cx="242.5498" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
style="clip-rule:evenodd;fill-rule:evenodd"
|
||||||
|
id="path323"
|
||||||
|
d="m 242.53467,78.31836 c -3.23145,0 -5.96826,1.12744 -8.20752,3.38379 -2.29785,2.33301 -3.44629,5.09521 -3.44629,8.28418 0,3.18897 1.14844,5.93213 3.44629,8.22705 2.29785,2.29443 5.03418,3.44189 8.20752,3.44189 3.21289,0 5.99805,-1.15674 8.35352,-3.47168 2.2207,-2.19678 3.33008,-4.92969 3.33008,-8.19727 0,-3.26758 -1.12891,-6.02881 -3.3877,-8.28418 -2.25879,-2.25634 -5.02442,-3.38378 -8.2959,-3.38378 z m 0.0293,2.09961 c 2.64844,0 4.89746,0.93359 6.74707,2.80078 1.87012,1.84717 2.80469,4.10352 2.80469,6.76758 0,2.68359 -0.91504,4.91113 -2.74609,6.68066 -1.92773,1.90576 -4.19629,2.8584 -6.80566,2.8584 -2.60937,0 -4.8584,-0.94287 -6.74658,-2.82959 -1.88965,-1.88623 -2.8335,-4.12256 -2.8335,-6.70947 0,-2.58643 0.9541,-4.84229 2.8623,-6.76758 1.83057,-1.86719 4.07031,-2.80078 6.71777,-2.80078 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="line"
|
||||||
|
width="1325.7142"
|
||||||
|
height="3"
|
||||||
|
x="295.14285"
|
||||||
|
y="763.93365" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||||
|
x="989.0517"
|
||||||
|
y="842.97003"
|
||||||
|
id="text"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3895"
|
||||||
|
x="989.0517"
|
||||||
|
y="842.97003"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:45px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1">More Recordings available on media.ccc.de</tspan></text>
|
||||||
|
<g
|
||||||
|
id="g10921"
|
||||||
|
transform="matrix(0.64941813,0,0,0.64941813,-14.539683,262.95618)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31813714;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 521.39144,236.24008 0,318.11746 10.90768,0 c 0.5987,-1.54888 2.07347,-2.65098 3.8384,-2.65098 l 23.52743,0 c 1.76493,0 3.23968,1.1021 3.8384,2.65098 l 10.90767,0 212.07831,0 10.90767,0 c 0.5987,-1.54888 2.07347,-2.65098 3.8384,-2.65098 l 23.52743,0 c 1.76492,0 3.2397,1.1021 3.8384,2.65098 l 10.90767,0 0,-318.11746 -10.60391,0 0,1.16007 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-1.16007 -10.60391,0 -212.07831,0 -10.60391,0 0,1.16007 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-1.16007 z m 14.74608,29.16077 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14188 l 0,15.57504 c 0,2.29468 -1.8474,4.14188 -4.14216,4.14188 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14188 l 0,-15.57504 c 0,-2.29468 1.8474,-4.14188 4.14216,-4.14188 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14188 l 0,15.57504 c 0,2.29468 -1.8474,4.14188 -4.14216,4.14188 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14188 l 0,-15.57504 c 0,-2.29468 1.84741,-4.14188 4.14216,-4.14188 z m -265.09788,47.71761 23.52743,0 c 2.29476,0 4.14216,1.84721 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29468 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.84721 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29468 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29476,0 4.14216,1.84721 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29468 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.84721 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29468 1.84741,-4.14189 4.14216,-4.14189 z"
|
||||||
|
id="rect817-2"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#061c2a;fill-opacity:1;stroke:none;stroke-width:1.49999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 521.39144,230.93812 0,318.11746 10.90768,0 c 0.5987,-1.54958 2.07347,-2.65098 3.8384,-2.65098 l 23.52743,0 c 1.76493,0 3.23968,1.1014 3.8384,2.65098 l 10.90767,0 212.07831,0 10.90767,0 c 0.5987,-1.54817 2.07347,-2.65098 3.8384,-2.65098 l 23.52743,0 c 1.76492,0 3.2397,1.10281 3.8384,2.65098 l 10.90767,0 0,-318.11746 -10.60391,0 0,1.16007 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-1.16007 -10.60391,0 -212.07831,0 -10.60391,0 0,1.16007 c 0,2.29469 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-1.16007 z m 14.74608,29.16077 23.52743,0 c 2.29475,0 4.14216,1.8465 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29539 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8465 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29539 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14188 l 0,15.57504 c 0,2.29468 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57504 c 0,-2.29468 1.8474,-4.14188 4.14216,-4.14188 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14188 l 0,15.57504 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57504 c 0,-2.29468 1.84741,-4.14188 4.14216,-4.14188 z"
|
||||||
|
id="rect1349"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-9-4-0"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15286"
|
||||||
|
x="585.01544"
|
||||||
|
y="482.78079"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-9-3"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15286"
|
||||||
|
x="585.01544"
|
||||||
|
y="323.72119"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-6"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15285"
|
||||||
|
x="585.01544"
|
||||||
|
y="164.66418"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15285"
|
||||||
|
x="585.01544"
|
||||||
|
y="159.36223"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#73ba25;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-9"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15286"
|
||||||
|
x="585.01544"
|
||||||
|
y="318.41922"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-9-4"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15286"
|
||||||
|
x="585.01544"
|
||||||
|
y="477.47882"
|
||||||
|
ry="0" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.14482522;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 680.45017,505.75626 a 45.9503,45.9503 0 0 0 -45.9503,45.9503 45.9503,45.9503 0 0 0 45.9503,45.9503 45.9503,45.9503 0 0 0 45.9503,-45.9503 45.9503,45.9503 0 0 0 -45.9503,-45.9503 z m -13.25489,24.74247 37.1137,21.20783 -37.1137,21.20783 z"
|
||||||
|
id="path1671"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path819"
|
||||||
|
d="m 680.47646,339.68976 c -16.32415,0 -31.72807,7.55847 -41.76281,20.42738 6.47048,1.72702 11.05018,3.21299 12.42175,3.6732 0.0212,-0.83771 0.16104,-8.36366 0.16104,-8.36366 0,0 0.017,-0.17674 0.11028,-0.2545 0.11778,-0.12725 0.28956,-0.12725 0.28956,-0.12725 1.70184,0.2545 38.02695,5.62786 53.33818,14.54433 1.89087,1.10281 2.8242,2.28197 3.99039,3.47314 4.23247,4.37518 9.82505,22.56796 10.42571,26.31892 0.0247,0.14845 -0.15863,0.31812 -0.23639,0.36053 l -0.002,0 c -0.43477,0.33933 -0.90844,0.68572 -1.38267,0.99677 -3.62299,2.43042 -11.96947,8.26893 -22.67786,7.31529 -9.61885,-0.84832 -22.18571,-6.36447 -37.33552,-16.34134 1.48955,3.48515 2.95717,6.98232 4.42558,10.47667 2.19395,1.13956 23.37008,11.92304 33.82145,11.71308 8.41791,-0.17673 17.42101,-4.27903 21.02275,-6.44506 0,0 0.79148,-0.47364 1.13596,-0.21208 0.37672,0.28984 0.27726,0.74298 0.1833,1.18976 -0.21674,1.02929 -0.72605,2.91678 -1.06916,3.81317 l -0.28956,0.73167 c -0.41228,1.10139 -0.80802,2.12927 -1.57114,2.76197 -2.12175,1.92779 -5.50824,3.46111 -10.81463,5.76782 -8.20212,3.58483 -21.50933,5.86608 -33.86428,5.7862 -4.42512,-0.12724 -8.70028,-0.59382 -12.45431,-1.02858 -7.70409,-0.86952 -13.97253,-1.57433 -17.79483,1.18976 10.05468,11.54837 24.61281,18.18925 39.92953,18.2147 29.29858,0 53.04955,-23.73863 53.04861,-53.02099 -6.2e-4,-29.28165 -23.75113,-53.01816 -53.04861,-53.01816 z m 11.83238,30.76408 c -4.15222,-0.14139 -8.11156,1.33044 -11.14704,4.1638 -3.0341,2.82276 -4.77038,6.67198 -4.92416,10.81812 -0.2868,8.55523 6.43389,15.76378 14.98664,16.07977 4.17107,0.13432 8.12182,-1.32407 11.1573,-4.1737 3.02637,-2.81498 4.76266,-6.66421 4.92416,-10.81034 0.2938,-8.54887 -6.43494,-15.77226 -14.9969,-16.07765 z m -0.13022,4.57453 c 5.98361,0.21207 10.66832,5.23692 10.46681,11.2147 -0.0923,2.88285 -1.30929,5.55504 -3.42324,7.53797 -2.11703,1.97233 -4.88397,2.99878 -7.78718,2.91113 -5.96973,-0.23329 -10.65462,-5.24894 -10.45311,-11.22955 0.088,-2.89487 1.3288,-5.56706 3.43353,-7.53938 2.10467,-1.97445 4.8584,-2.99879 7.76319,-2.89487 z m 1.7733,5.43768 c -2.65862,0 -4.80593,1.42941 -4.80593,3.20875 0,1.76237 2.14731,3.20026 4.80593,3.20026 2.65705,0 4.8128,-1.4393 4.8128,-3.20026 0,-1.77934 -2.15426,-3.20875 -4.8128,-3.20875 z"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23640315;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 680.44906,180.72364 c -29.27979,0 -53.01797,23.73792 -53.01797,53.02099 a 53.021201,53.021201 0 0 0 3.46499,18.79225 c 0.77673,-2.03383 1.66777,-4.01888 2.79075,-5.88305 0.57176,-0.95435 1.20067,-1.86982 1.62031,-2.89062 0.42076,-1.02858 0.61488,-2.18158 0.29344,-3.23985 -0.18345,-0.60796 -0.52864,-1.14523 -0.90186,-1.64997 -0.37432,-0.50899 -0.78427,-0.98617 -1.12515,-1.51636 -0.8673,-1.34458 -1.26539,-3.00091 -1.03993,-4.58514 0.2265,-1.58493 1.08093,-3.08432 2.36897,-4.03585 1.1478,-0.84831 2.59766,-1.23005 4.03026,-1.17562 a 7.184562,7.184562 0 0 1 1.41318,0.20501 c 1.85115,0.44537 3.4844,1.60756 4.69585,3.07372 1.50165,1.82388 2.38407,4.13058 2.59982,6.48112 0.21794,2.35194 -0.21569,4.74772 -1.12407,6.92647 -1.62894,3.90437 -4.70556,7.05726 -6.39922,10.93405 -1.38298,3.16704 -1.77995,6.69956 -1.59118,10.15149 0.0255,0.31811 0.0693,0.63623 0.0976,0.96495 a 53.021201,53.021201 0 0 0 14.80171,13.00676 72.093737,72.093737 0 0 1 -0.52638,-8.63088 c 0.007,-2.29539 0.12407,-4.58513 0.3452,-6.85012 -1.39484,-0.96496 -2.66131,-2.08261 -3.55992,-3.50919 -1.59874,-2.54282 -1.90079,-5.76076 -1.24274,-8.69168 0.65807,-2.93092 2.21146,-5.60099 4.07773,-7.95435 3.07879,-3.8775 7.10042,-7.01555 11.59454,-9.09392 -0.12951,-0.17673 -0.25888,-0.36053 -0.36675,-0.50899 -1.65482,-2.67854 -2.63218,-5.76499 -2.86951,-8.90516 -0.2417,-3.17552 0.25887,-6.35599 0.46925,-9.53292 0.151,-2.21622 0.1597,-4.43315 0.28907,-6.65078 0.151,-2.56403 0.46381,-5.13088 1.18339,-7.59664 0.26107,-0.89073 0.58032,-1.7857 1.08739,-2.56686 a 5.728232,5.728232 0 0 1 2.43046,-2.10806 c 1.11868,-0.44536 2.09065,-0.54433 3.17157,-0.36053 0.90398,0.19087 1.74004,0.6433 2.47252,1.20743 0.73358,0.56554 1.36681,1.24419 1.96552,1.949 a 29.84398,29.84398 0 0 1 4.24384,6.60978 14.604295,14.604295 0 0 1 4.46609,0 29.798672,29.798672 0 0 1 4.246,-6.61049 c 0.59764,-0.71046 1.23303,-1.38628 1.96551,-1.95041 0.73358,-0.56554 1.56852,-1.01797 2.47361,-1.20531 a 5.1856141,5.1856141 0 0 1 3.1899,0.36053 5.7347047,5.7347047 0 0 1 2.43045,2.11442 c 0.50694,0.77409 0.82636,1.66765 1.0874,2.56191 0.71842,2.46506 1.03134,5.03262 1.18232,7.59452 0.12951,2.21834 0.14018,4.44163 0.29118,6.65573 0.21038,3.17834 0.71524,6.35386 0.4747,9.52868 a 19.854634,19.854634 0 0 1 -2.87814,8.90728 c -0.12951,0.19794 -0.28694,0.38882 -0.42069,0.59382 1.00758,1.13462 2.44555,2.09887 3.6721,2.51101 a 7.9979494,7.9979494 0 0 0 4.28701,0.16966 6.7498206,6.7498206 0 0 0 2.18341,-0.92254 5.124125,5.124125 0 0 0 1.62354,-1.70935 c 0.48545,-0.84831 0.67964,-1.83306 0.78755,-2.81004 0.27507,-2.48979 0,-5.00504 -0.20501,-7.50121 -0.14018,-1.62027 -0.25343,-3.26883 0.10993,-4.85447 0.24601,-1.07311 0.72711,-2.1229 1.53186,-2.87224 a 4.5221749,4.5221749 0 0 1 1.90077,-1.03919 5.3657674,5.3657674 0 0 1 2.16832,-0.11311 c 1.55342,0.23329 3.00759,1.11554 3.87491,2.42194 0.49302,0.74227 0.79287,1.59977 0.97303,2.47354 0.17906,0.86952 0.24495,1.76378 0.29344,2.6531 0.16825,3.11048 0.16182,6.2245 0.0753,9.33922 -0.0721,2.71884 -0.2265,5.51262 -1.31394,8.00454 -1.39807,3.19814 -4.21365,5.58614 -7.25467,7.30115 a 28.838573,28.838573 0 0 1 -6.48985,2.65381 c 1.9709,6.29165 2.9968,13.25348 2.9968,20.31356 a 71.971834,71.971834 0 0 1 -0.55013,8.69309 53.019049,53.019049 0 0 0 26.10606,-45.60885 c -0.003,-29.28377 -23.74137,-53.02099 -53.02116,-53.02099 z m -14.82868,65.35758 0,6.06544 a 7.6883448,7.6883448 0 0 1 4.43048,1.48101 7.1068911,7.1068911 0 0 1 2.27404,2.78389 c 0.49619,1.10563 0.67957,2.35477 0.47463,3.54877 a 6.1057992,6.1057992 0 0 1 -1.35708,2.89629 6.734718,6.734718 0 0 1 -2.59982,1.87265 7.1090487,7.1090487 0 0 1 -3.22227,0.50192 l 0,15.25903 31.74369,-17.21228 -31.74477,-17.19531 z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.15259878"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:220.47531128px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.77969539"
|
||||||
|
x="987.96375"
|
||||||
|
y="383.42517"
|
||||||
|
id="text1624"><tspan
|
||||||
|
id="tspan1622"
|
||||||
|
x="987.96375"
|
||||||
|
y="383.42517"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-family:'Open Sans Condensed';-inkscape-font-specification:'Open Sans Condensed, Bold Condensed';fill:#ffffff;fill-opacity:1;stroke-width:0.77969539">Video</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:252.85043335px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.89418781"
|
||||||
|
x="980.6311"
|
||||||
|
y="580.48383"
|
||||||
|
id="text1628"><tspan
|
||||||
|
id="tspan1626"
|
||||||
|
x="980.6311"
|
||||||
|
y="580.48383"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';fill:#ffffff;fill-opacity:1;stroke-width:0.89418781">Team</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g5758"
|
||||||
|
transform="matrix(0.51253329,0,0,0.51253329,1599.4973,-209.0269)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
d="m 523.71,442.05 c -3.3113,-0.11926 -6.4507,1.0506 -8.8499,3.3008 -2.3993,2.2502 -3.8147,5.2984 -3.9147,8.5992 -0.2297,6.8208 5.1108,12.559 11.916,12.81 3.3095,0.1 6.4647,-1.0698 8.878,-3.32 2.4098,-2.2607 3.7953,-5.3107 3.9006,-8.5992 0.2297,-6.819 -5.109,-12.549 -11.93,-12.791 z m 2.0205,13.512 c -3.0307,0 -5.4791,-1.6398 -5.4791,-3.6498 0,-2.0292 2.4484,-3.6603 5.4791,-3.6603 3.0306,0 5.486,1.6311 5.486,3.6603 0,2.0099 -2.4571,3.6498 -5.486,3.6498 z m 28.798,14.729 c 0.0887,-0.0692 0.29521,-0.25105 0.2683,-0.41918 -0.68471,-4.2787 -7.0592,-25.029 -11.884,-30.019 -1.3294,-1.3592 -2.394,-2.6992 -4.5495,-3.9602 -17.454,-10.171 -58.863,-16.309 -60.803,-16.59 0,0 -0.19473,-0.0406 -0.3297,0.0912 -0.1048,0.10237 -0.1246,0.29991 -0.1246,0.29991 0,0 -0.1596,8.5799 -0.1841,9.5392 -4.2286,-1.4206 -34.972,-11.351 -63.791,-12.351 -24.44,-0.85939 -60.033,-4.0198 -107.2,24.98 l -1.3943,0.86815 c -22.19,13.841 -37.51,30.91 -45.518,50.739 -2.5116,6.2402 -5.8895,20.32 -2.5414,33.569 1.4417,5.7912 4.1304,11.611 7.7556,16.819 8.194,11.77 21.944,19.58 36.749,20.899 20.904,1.8696 36.733,-7.5188 42.363,-25.099 3.8708,-12.13 0,-29.928 -14.839,-39.008 -12.07,-7.3908 -25.049,-5.7106 -32.578,-0.7296 -6.5313,4.3303 -10.23,11.06 -10.165,18.451 0.1508,13.11 11.444,20.078 19.564,20.099 2.3589,0 4.7284,-0.41041 7.3995,-1.2803 0.9506,-0.28939 1.845,-0.64893 2.8307,-1.2593 l 0.3087,-0.18065 0.1947,-0.12978 -0.065,0.0386 c 1.8503,-1.261 2.964,-3.3113 2.964,-5.5106 0,-0.59981 -0.084,-1.2084 -0.2561,-1.8205 -0.9593,-3.32 -4.239,-5.3282 -7.638,-4.7091 l -0.4595,0.10874 -0.6209,0.18942 -0.9015,0.31043 c -1.8696,0.45951 -3.2692,0.49985 -3.5691,0.51038 -0.9506,-0.0614 -5.6246,-1.461 -5.6246,-6.5805 l 0,-0.0702 c 0,-1.8801 0.7542,-3.199 1.1698,-3.9199 1.454,-2.28 5.4352,-4.5179 10.814,-4.0497 7.0593,0.61034 12.149,4.2303 15.52,11.06 3.1289,6.349 2.3098,14.159 -2.1099,19.88 -4.3899,5.6685 -12.205,8.0783 -22.598,6.9593 -10.481,-1.1593 -19.34,-7.1908 -24.303,-16.579 -4.8565,-9.1779 -5.1213,-20.059 -0.6858,-28.418 10.609,-20.029 30.649,-19.82 41.637,-17.921 16.26,2.8202 34.758,17.819 41.319,35.139 1.0593,2.7606 1.5995,4.9494 2.0713,6.9505 l 0.7085,2.9903 18.37,8.9692 c 0.39458,0.19266 0.52796,0.25778 0.6858,0.14034 0.18941,-0.14093 0.081,-0.52966 0.081,-0.52966 -0.114,-0.4104 -0.3806,-0.78924 -0.805,-5.9298 -0.3491,-4.5618 -1.0594,-17.051 5.2282,-23.24 2.4414,-2.4186 6.1613,-4.5776 9.099,-5.2686 12.04,-2.9412 26.159,-0.912 39.507,14.539 6.9102,7.98 10.279,11.619 11.97,13.249 0,0 0.38494,0.36349 0.5893,0.53142 0.22331,0.1835 0.36878,0.33789 0.6945,0.51914 0.55786,0.31042 22.954,10.621 22.954,10.621 0,0 0.26534,0.13182 0.4612,-0.11049 0.19362,-0.23953 0.01,-0.4788 0.01,-0.4788 -0.1491,-0.17013 -14.199,-18.328 -11.698,-33.279 1.9696,-11.909 11.447,-10.83 24.558,-9.3498 4.2794,0.49984 9.1516,1.0593 14.196,1.1716 14.084,0.0895 29.254,-2.5115 38.604,-6.6015 6.049,-2.629 9.9093,-4.3794 12.328,-6.5787 0.8699,-0.72084 1.3207,-1.8907 1.7907,-3.1499 l 0.3297,-0.83133 c 0.3911,-1.0207 0.9664,-3.171 1.219,-4.3496 0.1017,-0.51914 0.2208,-1.0274 -0.2087,-1.3592 -0.39265,-0.30337 -1.2944,0.24027 -1.2944,0.24027 -4.1058,2.4712 -14.369,7.1505 -23.965,7.3504 -11.914,0.24028 -36.054,-12.061 -38.555,-13.36 -1.6739,-3.9857 -3.3458,-7.9724 -5.0438,-11.948 17.27,11.379 31.594,17.668 42.559,18.638 12.207,1.0874 21.723,-5.5724 25.853,-8.3433 0.54064,-0.35944 1.0799,-0.76184 1.5756,-1.1486 z m -48.992,-16.369 c 0.1753,-4.7302 2.1554,-9.1201 5.6141,-12.34 3.4603,-3.2306 7.9747,-4.9003 12.708,-4.7494 9.7602,0.34902 17.43,8.5886 17.095,18.338 -0.1841,4.7302 -2.1642,9.1201 -5.6141,12.33 -3.4603,3.2499 -7.9642,4.9196 -12.719,4.76 -9.7497,-0.35954 -17.411,-8.5799 -17.084,-18.338 z"
|
||||||
|
id="Geeko"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" />
|
||||||
|
<path
|
||||||
|
id="path5761"
|
||||||
|
d="m 376.84,556.36 c -7.7836,0 -12.065,6.5805 -12.065,11.13 l 0,5.8403 c 0,6.6997 5.4738,10.851 10.55,10.851 l 17.819,0 c 2.2449,0 2.7149,1.4697 2.7149,2.7097 l 0,3.769 c 0,0.39988 -0.081,4.0198 -2.7149,4.0198 l -24.303,0 c -2.4151,0 -4.1602,1.6802 -4.1602,3.9795 l 0,1.0418 c 0,2.2905 1.7451,3.9602 4.1602,3.9602 l 25.624,0 c 6.698,0 11.02,-4.66 11.02,-11.879 l 0,-6.3016 c 0,-6.7786 -4.8705,-9.8093 -9.7058,-9.8093 l -17.533,0 c -2.6395,0 -3.8356,-1.9801 -3.8356,-3.3797 l 0,-3.4796 c 0,-2.1906 1.4644,-3.4604 4.0251,-3.4604 l 19.408,0 c 2.38,0 4.1707,-1.71 4.1707,-3.9707 l 0,-1.04 c 0,-2.2695 -1.8205,-3.9813 -4.2513,-3.9813 l -20.922,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5763"
|
||||||
|
d="m 449.7,556.36 c -2.301,0 -4.1548,1.8696 -4.1548,4.1707 l 0,29.838 c 0,2.3905 -1.9503,4.311 -4.311,4.311 l -13.545,0 c -2.3694,0 -4.3092,-1.9205 -4.3092,-4.311 l 0,-29.838 c 0,-2.3011 -1.8696,-4.1707 -4.1689,-4.1707 l -1.3101,0 c -2.3344,0 -4.1707,1.8416 -4.1707,4.1707 l 0,30.968 c 0,7.2101 5.6737,12.44 13.489,12.44 l 14.485,0 c 7.8047,0 13.475,-5.2282 13.475,-12.44 l 0,-30.968 c 0,-2.3291 -1.8293,-4.1707 -4.1602,-4.1707 l -1.3189,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5765"
|
||||||
|
d="m 475.63,556.36 c -7.7801,0 -12.074,6.5805 -12.074,11.13 l 0,5.8403 c 0,6.6997 5.4843,10.851 10.564,10.851 l 17.814,0 c 2.2485,0 2.7203,1.4697 2.7203,2.7097 l 0,3.769 c 0,0.39988 -0.081,4.0198 -2.7203,4.0198 l -24.314,0 c -2.4045,0 -4.1601,1.6802 -4.1601,3.9795 l 0,1.0418 c 0,2.2905 1.7556,3.9602 4.1601,3.9602 l 25.633,0 c 6.6998,0 11.041,-4.66 11.041,-11.879 l 0,-6.3016 c 0,-6.7786 -4.8845,-9.8093 -9.7199,-9.8093 l -17.533,0 c -2.6466,0 -3.8392,-1.9801 -3.8392,-3.3797 l 0,-3.4796 c 0,-2.1906 1.4645,-3.4604 4.0251,-3.4604 l 19.419,0 c 2.3747,0 4.1584,-1.71 4.1584,-3.9707 l 0,-1.04 c 0,-2.2695 -1.8188,-3.9813 -4.2601,-3.9813 l -20.913,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5767"
|
||||||
|
d="m 516.6,556.36 c -2.3098,0 -4.0549,1.7118 -4.0549,3.9813 l 0,39.358 c 0,2.259 1.7047,3.9602 3.9637,3.9602 l 31.364,0 c 2.4151,0 4.1602,-1.6697 4.1602,-3.9602 l 0,-1.0418 c 0,-2.2993 -1.7451,-3.9795 -4.1602,-3.9795 l -25.687,0 0,-10.02 18.822,0 c 2.4098,0 4.1602,-1.6907 4.1602,-3.9813 l 0,-1.04 c 0,-2.3011 -1.7504,-3.9707 -4.1602,-3.9707 l -18.822,0 0,-10.32 24.382,0 c 2.4063,0 4.1601,-1.6591 4.1601,-3.9707 l 0,-1.04 c 0,-2.3011 -1.7538,-3.9813 -4.1601,-3.9813 l -29.968,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<g
|
||||||
|
id="g5769"
|
||||||
|
transform="matrix(1.7539,0,0,1.7539,-611.6,-134.13)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
id="path5771"
|
||||||
|
d="m 491.25,404.37 c -2.241,0 -4.065,1.744 -4.065,3.894 l 0,8.461 c 0,2.184 1.765,3.963 3.929,3.963 l 5.473,0 c 2.164,0 3.929,-1.779 3.929,-3.963 l 0,-8.461 c 0,-2.149 -1.825,-3.894 -4.065,-3.894 l -5.201,0 z m -1.184,12.019 0,-7.726 c 0,-0.906 0.744,-1.647 1.654,-1.647 l 4.264,0 c 0.89,0 1.648,0.758 1.648,1.647 l 0,7.726 c 0,0.912 -0.738,1.653 -1.648,1.653 l -4.296,0 c -0.912,0 -1.622,-0.725 -1.622,-1.653 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5773"
|
||||||
|
d="m 512.91,404.27 c -1.578,0 -2.768,0.564 -3.723,1.026 -0.582,0.279 -1.086,0.52 -1.477,0.52 -0.177,0 -0.328,-0.08 -0.408,-0.211 l -0.364,-0.696 c -0.091,-0.183 -0.456,-0.541 -0.907,-0.541 l -0.541,0 c -0.52,0 -0.936,0.467 -0.936,1.037 l 0,21.461 c 0,0.673 0.531,1.203 1.203,1.203 l 0.468,0 c 0.667,0 1.209,-0.536 1.209,-1.203 l 0,-7.121 c 0,-0.211 0.137,-0.439 0.276,-0.439 0.391,0 0.895,0.229 1.477,0.496 0.955,0.439 2.145,0.98 3.723,0.98 l 0.505,0 c 2.794,0 4.532,-1.597 4.532,-4.162 l 0,-8.192 c 0,-2.526 -1.775,-4.157 -4.532,-4.157 l -0.505,0 z m -5.475,11.952 0,-7.39 c 0,-1.021 0.798,-1.818 1.818,-1.818 l 3.997,0 c 1.021,0 1.818,0.798 1.818,1.818 l 0,7.39 c 0,1.003 -0.818,1.818 -1.818,1.818 l -3.997,0 c -1.001,0 -1.818,-0.815 -1.818,-1.818 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5775"
|
||||||
|
d="m 526.04,404.37 c -2.241,0 -4.06,1.744 -4.06,3.894 l 0,8.398 c 0,2.178 1.768,4.025 3.854,4.025 l 5.647,0 c 0.698,0 1.203,-0.484 1.203,-1.141 l 0,-0.37 c 0,-0.661 -0.505,-1.135 -1.203,-1.135 l -4.639,0 c -1.3,0 -1.986,-0.639 -1.986,-1.854 l 0,-2.457 8.369,0 c 1.346,0 2.142,-0.821 2.142,-2.212 l 0,-3.256 c 0,-2.149 -1.822,-3.894 -4.054,-3.894 l -5.273,0 z m -1.183,4.265 c 0,-0.907 0.713,-1.619 1.621,-1.619 l 4.396,0 c 0.906,0 1.613,0.712 1.613,1.619 l 0,2.622 -7.631,0 c 10e-4,-0.342 10e-4,-2.622 10e-4,-2.622 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5777"
|
||||||
|
d="m 547,404.27 c -1.573,0 -2.76,0.564 -3.718,1.021 -0.596,0.28 -1.105,0.525 -1.521,0.525 -0.183,0 -0.257,-0.023 -0.399,-0.269 l -0.331,-0.604 c -0.19,-0.382 -0.513,-0.575 -0.949,-0.575 l -0.465,0 c -0.562,0 -0.972,0.438 -0.972,1.037 l 0,14.077 c 0,0.667 0.527,1.203 1.206,1.203 l 0.465,0 c 0.667,0 1.211,-0.542 1.211,-1.203 l 0,-10.65 c 0,-0.998 0.815,-1.818 1.813,-1.818 l 3.999,0 c 1.001,0 1.816,0.82 1.816,1.818 l 0,10.65 c 0,0.667 0.53,1.203 1.203,1.203 l 0.47,0 c 0.667,0 1.209,-0.542 1.209,-1.203 l 0,-11.055 c 0,-2.526 -1.776,-4.157 -4.535,-4.157 l -0.502,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g5779"
|
||||||
|
transform="matrix(1.7539,0,0,1.7539,-611.6,-134.13)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
id="path5781"
|
||||||
|
d="m 667.46,415.23 c 1.218,0 2.188,0.99 2.188,2.229 0,1.257 -0.971,2.237 -2.198,2.237 -1.218,0 -2.208,-0.98 -2.208,-2.237 0,-1.238 0.99,-2.229 2.208,-2.229 l 0.01,0 z m -0.01,0.346 c -0.98,0 -1.782,0.842 -1.782,1.882 0,1.06 0.802,1.891 1.792,1.891 0.99,0.011 1.782,-0.831 1.782,-1.881 0,-1.05 -0.792,-1.892 -1.782,-1.892 l -0.01,0 z m -0.416,3.179 -0.396,0 0,-2.485 c 0.208,-0.03 0.406,-0.06 0.703,-0.06 0.377,0 0.624,0.079 0.772,0.188 0.149,0.108 0.229,0.276 0.229,0.515 0,0.326 -0.218,0.524 -0.485,0.604 l 0,0.021 c 0.218,0.039 0.366,0.237 0.416,0.604 0.06,0.387 0.118,0.535 0.158,0.614 l -0.416,0 c -0.06,-0.079 -0.119,-0.307 -0.168,-0.634 -0.06,-0.316 -0.218,-0.436 -0.535,-0.436 l -0.277,0 0,1.069 z m 0,-1.377 0.287,0 c 0.327,0 0.604,-0.118 0.604,-0.426 0,-0.218 -0.158,-0.436 -0.604,-0.436 -0.129,0 -0.218,0.01 -0.287,0.021 l 0,0.841 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Open Sans Pro';-inkscape-font-specification:'Open Sans Pro';letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="957.59033"
|
||||||
|
y="204.7789"
|
||||||
|
id="text5802"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan5804"
|
||||||
|
x="957.59033"
|
||||||
|
y="204.7789"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:70px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;text-anchor:middle">openSUSE Virtual Conference 2021</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="957.59033"
|
||||||
|
y="292.2789"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:70px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;text-anchor:middle"
|
||||||
|
id="tspan11035">was brought to you by:</tspan></text>
|
||||||
|
<g
|
||||||
|
id="g3899"
|
||||||
|
transform="matrix(0.76333759,0,0,0.76333759,1080.3691,388.43453)"
|
||||||
|
style="fill:#ffffff;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:#ffffff;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:#ffffff;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:#ffffff;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:#ffffff;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:#ffffff;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:#ffffff;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;line-height:0%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="1195.7698"
|
||||||
|
y="640.70959"
|
||||||
|
id="text3926"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3928"
|
||||||
|
x="1195.7698"
|
||||||
|
y="640.70959"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1">www.ccc.de</tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 70 KiB |
17538
osc21/artwork/pause.svg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
osc21/artwork/video-team.png
Normal file
After Width: | Height: | Size: 21 KiB |
143
osc21/artwork/video-team.svg
Normal file
|
@ -0,0 +1,143 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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"
|
||||||
|
id="svg8"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 180 82.000005"
|
||||||
|
height="82"
|
||||||
|
width="180"
|
||||||
|
sodipodi:docname="video-team.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2019-03-11)">
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="713"
|
||||||
|
id="namedview25"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="3.8183766"
|
||||||
|
inkscape:cx="45.430183"
|
||||||
|
inkscape:cy="54.914672"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer1" />
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<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
|
||||||
|
transform="translate(0,-1040.5197)"
|
||||||
|
id="layer1">
|
||||||
|
<path
|
||||||
|
id="rect817-2"
|
||||||
|
d="m 18,1059.3947 v 45 h 1.542969 c 0.08469,-0.2191 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.249663,0 0.458277,0.1559 0.542969,0.375 H 25.5 h 30 1.542969 c 0.08469,-0.2191 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.24966,0 0.458278,0.1559 0.542969,0.375 H 63 v -45 h -1.5 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1060.1447 57,1059.8834 57,1059.5588 v -0.1641 H 55.5 25.5 24 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -0.1641 z m 2.085938,4.125 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1066.8947 57,1066.6334 57,1066.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1073.6447 57,1073.3834 57,1073.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1080.3947 57,1080.1334 57,1079.8088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1087.1447 57,1086.8834 57,1086.5588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1093.8947 57,1093.6334 57,1093.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1100.6447 57,1100.3834 57,1100.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z"
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31813714;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="rect1349"
|
||||||
|
d="m 18,1058.6447 v 45 h 1.542969 c 0.08469,-0.2192 0.293308,-0.375 0.542969,-0.375 h 3.328124 c 0.249663,0 0.458277,0.1558 0.542969,0.375 H 25.5 h 30 1.542969 c 0.08469,-0.219 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.24966,0 0.458278,0.156 0.542969,0.375 H 63 v -45 h -1.5 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1059.3947 57,1059.1334 57,1058.8088 v -0.1641 H 55.5 25.5 24 v 0.1641 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -0.1641 z m 2.085938,4.125 h 3.328124 c 0.324609,0 0.585938,0.2612 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3247 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2612 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1066.1447 57,1065.8834 57,1065.5588 v -2.2032 c 0,-0.3247 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1072.8947 57,1072.6334 57,1072.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1079.6447 57,1079.3834 57,1079.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1086.3947 57,1086.1334 57,1085.8088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1093.1447 57,1092.8834 57,1092.5588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1099.8947 57,1099.6334 57,1099.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z"
|
||||||
|
style="opacity:1;fill:#061c2a;fill-opacity:1;stroke:none;stroke-width:1.49999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1094.2697"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.25"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-9-4-0"
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1071.7695"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.25"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-9-3"
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1049.2698"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.249998"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-6"
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1048.5198"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.249998"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059"
|
||||||
|
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1071.0195"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.25"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-9"
|
||||||
|
style="opacity:1;fill:#73ba25;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1093.5197"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.25"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-9-4"
|
||||||
|
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="path1671"
|
||||||
|
d="m 40.5,1097.5197 a 6.5,6.5 0 0 0 -6.5,6.5 6.5,6.5 0 0 0 6.5,6.5 6.5,6.5 0 0 0 6.5,-6.5 6.5,6.5 0 0 0 -6.5,-6.5 z m -1.875,3.5 5.25,3 -5.25,3 z"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.14482522;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23640315;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 40.503718,1074.0284 c -2.309168,0 -4.488163,1.0692 -5.907649,2.8896 0.915295,0.2443 1.563127,0.4545 1.757146,0.5196 0.003,-0.1185 0.02278,-1.1831 0.02278,-1.1831 0,0 0.0024,-0.025 0.0156,-0.036 0.01666,-0.018 0.04096,-0.018 0.04096,-0.018 0.240737,0.036 5.379185,0.7961 7.545069,2.0574 0.267477,0.156 0.399503,0.3228 0.564469,0.4913 0.598714,0.6189 1.389824,3.1924 1.474792,3.723 0.0035,0.021 -0.02244,0.045 -0.03344,0.051 h -2.49e-4 c -0.0615,0.048 -0.128505,0.097 -0.195588,0.141 -0.512498,0.3438 -1.693168,1.1697 -3.207946,1.0348 -1.360655,-0.12 -3.138328,-0.9003 -5.281378,-2.3116 0.210708,0.493 0.418313,0.9877 0.62603,1.482 0.310351,0.1612 3.305866,1.6866 4.784288,1.6569 1.190774,-0.025 2.464326,-0.6053 2.973818,-0.9117 0,0 0.111961,-0.067 0.16069,-0.03 0.05329,0.041 0.03922,0.1051 0.02593,0.1683 -0.03066,0.1456 -0.102705,0.4126 -0.151241,0.5394 l -0.04096,0.1035 c -0.05832,0.1558 -0.1143,0.3012 -0.222249,0.3907 -0.300137,0.2727 -0.779181,0.4896 -1.529807,0.8159 -1.16025,0.5071 -3.04265,0.8298 -4.790346,0.8185 -0.625965,-0.018 -1.230718,-0.084 -1.761752,-0.1455 -1.089799,-0.123 -1.976515,-0.2227 -2.517206,0.1683 1.422306,1.6336 3.481658,2.573 5.648319,2.5766 4.144494,0 7.50424,-3.358 7.504106,-7.5002 -8.7e-5,-4.1421 -3.359768,-7.4998 -7.504106,-7.4998 z m 1.673775,4.3518 c -0.587361,-0.02 -1.147438,0.1882 -1.576829,0.589 -0.429194,0.3993 -0.674804,0.9438 -0.696557,1.5303 -0.04057,1.2102 0.910119,2.2299 2.119968,2.2746 0.590028,0.019 1.14889,-0.1873 1.57828,-0.5904 0.428101,-0.3982 0.673713,-0.9427 0.696558,-1.5292 0.04156,-1.2093 -0.910269,-2.2311 -2.12142,-2.2743 z m -0.01842,0.6471 c 0.846425,0.03 1.50911,0.7408 1.480606,1.5864 -0.01305,0.4078 -0.185209,0.7858 -0.484242,1.0663 -0.29947,0.279 -0.690873,0.4242 -1.101553,0.4118 -0.844462,-0.033 -1.507172,-0.7425 -1.478668,-1.5885 0.01245,-0.4095 0.187969,-0.7875 0.485698,-1.0665 0.297721,-0.2793 0.687256,-0.4242 1.098159,-0.4095 z m 0.250846,0.7692 c -0.376081,0 -0.679833,0.2022 -0.679833,0.4539 0,0.2493 0.303752,0.4527 0.679833,0.4527 0.375859,0 0.680805,-0.2036 0.680805,-0.4527 0,-0.2517 -0.304735,-0.4539 -0.680805,-0.4539 z"
|
||||||
|
id="path819" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.15259878"
|
||||||
|
id="path2"
|
||||||
|
d="m 40.499843,1051.5415 c -4.141837,0 -7.499774,3.3579 -7.499774,7.5002 a 7.5002298,7.5002298 0 0 0 0.490148,2.6583 c 0.109875,-0.2877 0.235918,-0.5685 0.394772,-0.8322 0.08088,-0.135 0.169843,-0.2645 0.229204,-0.4089 0.05952,-0.1455 0.08698,-0.3086 0.04151,-0.4583 -0.02595,-0.086 -0.07478,-0.162 -0.127575,-0.2334 -0.05295,-0.072 -0.11094,-0.1395 -0.159161,-0.2145 -0.122685,-0.1902 -0.178998,-0.4245 -0.147105,-0.6486 0.03204,-0.2242 0.152905,-0.4363 0.335108,-0.5709 0.162365,-0.12 0.367458,-0.174 0.570109,-0.1663 a 1.0163079,1.0163079 0 0 1 0.199904,0.029 c 0.261859,0.063 0.492894,0.2274 0.664262,0.4348 0.212419,0.258 0.337244,0.5843 0.367763,0.9168 0.03083,0.3327 -0.03051,0.6716 -0.159007,0.9798 -0.230425,0.5523 -0.665636,0.9983 -0.905216,1.5467 -0.195632,0.448 -0.251787,0.9477 -0.225084,1.436 0.0036,0.045 0.0098,0.09 0.0138,0.1365 a 7.5002298,7.5002298 0 0 0 2.093808,1.8399 10.198177,10.198177 0 0 1 -0.07446,-1.2209 c 10e-4,-0.3247 0.01755,-0.6486 0.04883,-0.969 -0.19731,-0.1365 -0.376461,-0.2946 -0.503576,-0.4964 -0.226153,-0.3597 -0.26888,-0.8149 -0.175795,-1.2295 0.09309,-0.4146 0.312828,-0.7923 0.576825,-1.1252 0.435517,-0.5485 1.004405,-0.9924 1.640131,-1.2864 -0.01832,-0.025 -0.03662,-0.051 -0.05188,-0.072 -0.234086,-0.3789 -0.372341,-0.8155 -0.405913,-1.2597 -0.03419,-0.4492 0.03662,-0.8991 0.06638,-1.3485 0.02136,-0.3135 0.02259,-0.6271 0.04089,-0.9408 0.02136,-0.3627 0.06561,-0.7258 0.1674,-1.0746 0.03693,-0.126 0.08209,-0.2526 0.153819,-0.3631 a 0.81029957,0.81029957 0 0 1 0.343805,-0.2982 c 0.158246,-0.063 0.295738,-0.077 0.448642,-0.051 0.127875,0.027 0.246141,0.091 0.349756,0.1708 0.10377,0.08 0.193344,0.176 0.278036,0.2757 a 4.2216454,4.2216454 0 0 1 0.600322,0.935 2.0658824,2.0658824 0 0 1 0.63176,0 4.2152362,4.2152362 0 0 1 0.600628,-0.9351 c 0.08454,-0.1005 0.174421,-0.1961 0.278036,-0.2759 0.10377,-0.08 0.221878,-0.144 0.349909,-0.1705 a 0.73354237,0.73354237 0 0 1 0.451235,0.051 0.81121518,0.81121518 0 0 1 0.343804,0.2991 c 0.07171,0.1095 0.116895,0.2359 0.15382,0.3624 0.101626,0.3487 0.145891,0.7119 0.167248,1.0743 0.01832,0.3138 0.01983,0.6283 0.04119,0.9415 0.02976,0.4496 0.101175,0.8988 0.06715,1.3479 a 2.8085806,2.8085806 0 0 1 -0.407134,1.26 c -0.01832,0.028 -0.04059,0.055 -0.05951,0.084 0.14253,0.1605 0.345941,0.2969 0.519446,0.3552 a 1.1313674,1.1313674 0 0 0 0.606427,0.024 0.95481061,0.95481061 0 0 0 0.30886,-0.1305 0.72484429,0.72484429 0 0 0 0.229661,-0.2418 c 0.06867,-0.12 0.09614,-0.2593 0.111405,-0.3975 0.03891,-0.3522 0,-0.708 -0.029,-1.0611 -0.01983,-0.2292 -0.03585,-0.4624 0.01555,-0.6867 0.0348,-0.1518 0.102855,-0.3003 0.216692,-0.4063 a 0.63969412,0.63969412 0 0 1 0.268878,-0.147 0.75902635,0.75902635 0 0 1 0.306724,-0.016 c 0.219743,0.033 0.425446,0.1578 0.548135,0.3426 0.06974,0.105 0.112156,0.2263 0.137641,0.3499 0.02533,0.123 0.03465,0.2495 0.04151,0.3753 0.0238,0.44 0.02289,0.8805 0.01065,1.3211 -0.0102,0.3846 -0.03204,0.7798 -0.185866,1.1323 -0.197767,0.4524 -0.596051,0.7902 -1.026226,1.0328 a 4.0794233,4.0794233 0 0 1 -0.918035,0.3754 c 0.278798,0.89 0.423919,1.8748 0.423919,2.8735 a 10.180933,10.180933 0 0 1 -0.07782,1.2297 7.4999253,7.4999253 0 0 0 3.69289,-6.4517 c -4.59e-4,-4.1424 -3.358388,-7.5002 -7.500225,-7.5002 z m -2.097624,9.2453 v 0.858 a 1.0875716,1.0875716 0 0 1 0.626723,0.2095 1.0053208,1.0053208 0 0 1 0.321679,0.3938 c 0.07019,0.1564 0.09613,0.3331 0.06714,0.502 a 0.86370916,0.86370916 0 0 1 -0.191969,0.4097 0.95267424,0.95267424 0 0 1 -0.367763,0.2649 1.005626,1.005626 0 0 1 -0.455813,0.071 v 2.1585 l 4.490373,-2.4348 -4.490526,-2.4324 z" />
|
||||||
|
<text
|
||||||
|
id="text1624"
|
||||||
|
y="1080.2151"
|
||||||
|
x="84"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:31.18781662px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.77969539"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Open Sans Condensed';-inkscape-font-specification:'Open Sans Condensed, ';stroke-width:0.77969539"
|
||||||
|
y="1080.2151"
|
||||||
|
x="84"
|
||||||
|
id="tspan1622">Video</tspan></text>
|
||||||
|
<text
|
||||||
|
id="text1628"
|
||||||
|
y="1108.0905"
|
||||||
|
x="82.962746"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:35.76750946px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.89418781"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';stroke-width:0.89418781"
|
||||||
|
y="1108.0905"
|
||||||
|
x="82.962746"
|
||||||
|
id="tspan1626">Team</tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
BIN
osc21/artwork/zbau.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
319
osc21/artwork/zbau.svg
Normal file
After Width: | Height: | Size: 7.2 MiB |
BIN
osc21/intromusic.flac
Normal file
BIN
osc21/intromusic.mp3
Normal file
BIN
osc21/outromusic.mp3
Normal file
149
osc22/__init__.py
Normal file
|
@ -0,0 +1,149 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
from renderlib import *
|
||||||
|
from easing import *
|
||||||
|
|
||||||
|
# URL to Schedule-XML
|
||||||
|
scheduleUrl = 'https://events.opensuse.org/conferences/oSC22/schedule.xml'
|
||||||
|
|
||||||
|
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):
|
||||||
|
# 3 Sekunde Text Fadein
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
# 4 Sekunden stehen lassen
|
||||||
|
frames = 4*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield ()
|
||||||
|
|
||||||
|
# 1 Sekunde Fade to black layer
|
||||||
|
frames = 1*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield (
|
||||||
|
('fadeout', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||||
|
)
|
||||||
|
|
||||||
|
def pauseFrames(parameters):
|
||||||
|
frames = 15*fps
|
||||||
|
colors = ['#21A4D4', '#73BA25', '#6DA741', '#35B9AB', '#00A489', '#173F4F']
|
||||||
|
for i in range(0, len(colors)):
|
||||||
|
z = 0
|
||||||
|
for z in range(0,round(frames/4)):
|
||||||
|
yield (
|
||||||
|
('pausetext', 'attr', 'opacity', '1.0'),
|
||||||
|
('sponsors', 'attr', 'opacity', '0.0'),
|
||||||
|
('pause_bg_alt', 'style', 'fill', "%s" % colors[i]),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.0, 1, round(frames/4))),
|
||||||
|
)
|
||||||
|
for z in range(0,round(frames/4)):
|
||||||
|
yield (
|
||||||
|
('pausetext', 'attr', 'opacity', '1.0'),
|
||||||
|
('sponsors', 'attr', 'opacity', '0.0'),
|
||||||
|
('pause_bg_alt', 'style', 'fill', "%s" % colors[i]),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '%.4f' % easeLinear(z, 1.0, -1, round(frames/4))),
|
||||||
|
)
|
||||||
|
z=0
|
||||||
|
for z in range(0,round(frames/2)):
|
||||||
|
yield (
|
||||||
|
('pausetext', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.9, -1, round(frames/2))),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '0.0'),
|
||||||
|
('sponsors', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.0, 1, round(frames/2))),
|
||||||
|
)
|
||||||
|
for z in range(0,round(frames/2)):
|
||||||
|
yield (
|
||||||
|
('pausetext', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.0, 1, round(frames/2))),
|
||||||
|
('pause_bg_alt', 'attr', 'opacity', '0.0'),
|
||||||
|
('sponsors', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.9, -1, round(frames/2))),
|
||||||
|
)
|
||||||
|
|
||||||
|
def outroFrames(p):
|
||||||
|
# 5 Sekunden stehen bleiben
|
||||||
|
frames = 5*fps
|
||||||
|
for i in range(0, frames):
|
||||||
|
yield []
|
||||||
|
|
||||||
|
def debug():
|
||||||
|
# render(
|
||||||
|
# 'intro.svg',
|
||||||
|
# '../intro.ts',
|
||||||
|
# introFrames,
|
||||||
|
# {
|
||||||
|
# '$ID': 4711,
|
||||||
|
# '$TITLE': "Long Long Long title is LONG",
|
||||||
|
# '$SUBTITLE': 'Long Long Long Long subtitle is LONGER',
|
||||||
|
# '$SPEAKER': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||||
|
# }
|
||||||
|
# )
|
||||||
|
|
||||||
|
render(
|
||||||
|
'pause.svg',
|
||||||
|
'../pause.ts',
|
||||||
|
pauseFrames
|
||||||
|
)
|
||||||
|
|
||||||
|
# render(
|
||||||
|
# 'infobeamer.svg',
|
||||||
|
# '../infobeamer.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 ('Saal ', 'Seminarraum 1'):
|
||||||
|
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'],
|
||||||
|
'$SUBTITLE': 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
|
||||||
|
))
|
934
osc22/artwork/_break.svg
Normal file
After Width: | Height: | Size: 464 KiB |
BIN
osc22/artwork/hexagons.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
osc22/artwork/infobeamer.png
Normal file
After Width: | Height: | Size: 44 KiB |
243
osc22/artwork/infobeamer.svg
Normal file
|
@ -0,0 +1,243 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<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"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:docname="infobeamer.svg"
|
||||||
|
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="1920px"
|
||||||
|
height="1080px"
|
||||||
|
viewBox="0 0 1920 1080"
|
||||||
|
enable-background="new 0 0 1920 1080"
|
||||||
|
xml:space="preserve"
|
||||||
|
inkscape:export-filename="/home/thorsten/git/voc/intro-outro-generator/osc22/artwork/infobeamer.png"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96"><metadata
|
||||||
|
id="metadata943"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs941"><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath18"><path
|
||||||
|
d="m 312.117,871.087 c -6.264,-1.72 -10.84,-10.647 -14.167,-15.645 l 0,0 c -4.194,-6.302 -7.979,-12.897 -11.534,-19.58 l 0,0 c -6.794,-12.771 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.658,-134.44 c -34.506,-10.769 -67.49,-29.469 -99.699,-48.874 l 0,0 c 12.812,-37.59 55.526,-58.834 95.24,-58.766 l 0,0 c 0.024,0 0.047,0 0.071,0 l 0,0 c -6.665,-0.282 -13.34,-0.125 -19.96,0.504 l 0,0 c 17.08,-29.328 37.542,-57.811 69.853,-68.2 l 0,0 c 26.039,-8.372 54.524,-0.76 79.568,10.242 l 0,0 c 16.073,7.061 37.811,23.424 50.174,37.459 l 0,0 c -5.443,-6.931 -9.356,-11.85 -9.378,-14.226 l 0,0 c -0.036,-4.022 11.889,-7.249 15.319,-7.836 l 0,0 c 4.537,-0.776 55.479,-8.821 65.762,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.162 l 0,0 c 9.775,1.619 19.405,4.609 27.984,9.637 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.648 -9.272,-36.305 l 0,0 c -0.171,-0.666 -0.311,-1.344 -0.413,-2.024 l 0,0 c -3.39,-22.815 -3.156,-46.468 -3.991,-69.493 l 0,0 c -0.901,-24.858 -1.418,-49.754 -2.83,-74.59 l 0,0 c -0.791,-13.917 -3.767,-27.11 -7.947,-40.362 l 0,0 c -1.785,-5.66 -3.752,-11.282 -5.94,-16.816 l 0,0 c 2.853,8.361 4.713,17.016 5.261,25.851 l 0,0 c 0.555,8.93 -0.352,17.967 -2.745,26.592 l 0,0 c -2.662,9.599 -7.206,18.729 -13.686,26.328 l 0,0 c -1.536,1.801 -2.531,3.044 -3.792,5.045 l 0,0 c -1.313,2.081 -3.691,4.003 -5.535,5.683 l 0,0 c -4.28,3.901 -8.981,7.314 -13.802,10.512 l 0,0 c -8.952,5.937 -18.089,11.527 -28.039,15.555 l 0,0 c -22.597,9.151 -48.915,13.05 -72.999,8.126 l 0,0 c -49.265,-10.074 -94.2,-46.844 -113.089,-93.79 l 0,0 c -7.565,-18.805 -8.616,-45.719 -6.222,-65.756 l 0,0 c 7.2,-60.243 65.422,-100.088 125.514,-108.448 l 0,0 c 24.824,-3.455 52.18,-1.693 76.294,4.869 l 0,0 c 50.617,13.775 89.298,54.937 112.844,99.669 l 0,0 c 2.794,5.307 14.736,24.552 14.675,26.909 l 0,0 c 0.267,-10.318 3.457,-20.545 9.106,-29.184 l 0,0 16.227,92.559 c 1.621,-9.021 7.294,-17.234 15.157,-21.945 l 0,0 0.204,60.905 c 1.41,-9.085 6.602,-14.523 14.491,-19.244 l 0,0 c -4.166,27.38 -4.717,52.34 -2.482,79.945 l 0,0 c 7.063,-4.324 13.65,-8.62 20.658,-10.281 l 0,0 c -3.651,26.792 -12.97,49.694 -16.621,76.487 l 0,0 c 10.534,-8.562 10.319,-10.84 19.664,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.882,-0.923 c -10.728,25.86 -25.45,41.841 -43.486,63.254 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.489 l 0,0 c -14.416,20.027 -33.431,26.496 -56.345,35.655 l 0,0 c 14.572,6.667 21.146,13.146 30.811,25.412 l 0,0 c -25.908,4.436 -43.613,6.974 -69.672,10.409 l 0,0 c 9.984,6.221 25.959,11.735 32.646,23.966 l 0,0 c -23.093,-0.068 -51.514,-1.99 -74.606,-2.058 l 0,0 c 3.118,9.15 16.024,22.056 15.344,33.286 l 0,0 -67.289,-24.136 c -2.029,7.646 4.971,10.282 1.623,31.588 l 0,0 -54.542,-23.538 c 0,6.9 9.282,21.518 5.236,31.248 l 0,0 c -1.052,2.53 -27.624,-18.934 -36.917,-20.788 l 0,0 c 0,0 19.327,52.162 14.75,52.15 l 0,0 c -15.455,-0.042 -33.75,-18.848 -49.058,-21.738 l 0,0 c -3.6,5.947 -6.717,12.18 -9.698,18.456 l 0,0 c -5.957,12.543 -11.32,25.358 -17.137,37.966 l 0,0 c -2.809,6.088 -5.71,12.138 -8.882,18.045 l 0,0 c -2.044,3.808 -3.89,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.531 -9.801,2.531 l 0,0 c -1.401,0 -2.751,-0.155 -3.948,-0.484 m 41.469,-271.97 c -2.238,-1.885 -4.527,-3.722 -6.865,-5.509 l 0,0 c 2.327,1.793 4.616,3.631 6.865,5.509 m 85.349,-45.569 c 0,0 0,0 0,0 M 383.533,241.747 c -16.443,19.302 -23.431,46.211 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.037 39.804,56.683 l 0,0 c 20.808,11.645 47.481,12.699 68.622,1.67 l 0,0 c 21.142,-11.029 35.713,-34.183 35.364,-58.026 l 0,0 c -0.349,-23.843 -16.558,-46.24 -39.055,-54.146 l 0,0 c -13.248,-4.655 -27.77,-4.347 -39.5,3.375 l 0,0 c -11.729,7.722 -19.3,22.583 -15.553,36.117 l 0,0 c 3.746,13.535 19.143,23.26 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.83 14.374,-7.338 l 0,0 c 6.351,-3.339 14.186,-5.411 20.409,0.204 l 0,0 c 2.348,2.119 3.893,5.052 4.395,8.174 l 0,0 c 1.65,10.257 -5.836,19.545 -14.699,22.812 l 0,0 c -6.84,2.521 -14.529,2.26 -21.749,1.25 l 0,0 c -23.7,-3.318 -46.176,-17.837 -57.931,-38.681 l 0,0 c -11.755,-20.845 -11.322,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.479,-17.733 32.216,-21.387 l 0,0 c -16.77,4.192 -32.281,13.594 -43.507,26.771 m 146.601,21.02 c 0.24,0.346 0.478,0.693 0.716,1.042 l 0,0 c -2.094,-3.187 -4.311,-6.295 -6.662,-9.313 l 0,0 c -5.252,-6.741 -11.254,-13.003 -17.851,-18.524 l 0,0 c 9.038,7.807 17.014,17.001 23.797,26.795"
|
||||||
|
id="path20"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath28"><path
|
||||||
|
d="m 314.284,874.024 c -6.264,-1.721 -10.84,-10.648 -14.166,-15.645 l 0,0 c -4.194,-6.302 -7.981,-12.897 -11.535,-19.58 l 0,0 c -6.794,-12.772 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.657,-134.44 c -34.506,-10.769 -67.491,-29.47 -99.701,-48.874 l 0,0 c 12.813,-37.59 55.528,-58.835 95.241,-58.767 l 0,0 c 0.017,0 0.031,0 0.048,0 l 0,0 c -6.659,-0.281 -13.323,-0.124 -19.938,0.505 l 0,0 c 17.081,-29.328 37.544,-57.812 69.854,-68.2 l 0,0 c 26.039,-8.373 54.524,-0.761 79.568,10.242 l 0,0 c 16.072,7.06 37.807,23.42 50.171,37.455 l 0,0 c -5.441,-6.928 -9.354,-11.847 -9.375,-14.223 l 0,0 c -0.036,-4.022 11.889,-7.249 15.32,-7.836 l 0,0 c 4.536,-0.776 55.478,-8.82 65.761,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.161 l 0,0 c 9.774,1.618 19.404,4.608 27.984,9.636 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.647 -9.272,-36.304 l 0,0 c -0.171,-0.666 -0.312,-1.345 -0.413,-2.025 l 0,0 c -3.39,-22.814 -3.157,-46.467 -3.991,-69.492 l 0,0 c -0.902,-24.859 -1.418,-49.754 -2.83,-74.591 l 0,0 c -0.791,-13.916 -3.768,-27.109 -7.947,-40.362 l 0,0 c -1.785,-5.661 -3.753,-11.284 -5.942,-16.82 l 0,0 c 2.854,8.362 4.714,17.02 5.263,25.856 l 0,0 c 0.554,8.929 -0.353,17.967 -2.745,26.592 l 0,0 c -2.662,9.598 -7.206,18.729 -13.686,26.327 l 0,0 c -1.536,1.801 -3.494,3.382 -4.757,5.383 l 0,0 c -1.312,2.081 -2.726,3.665 -4.57,5.345 l 0,0 c -4.28,3.901 -8.981,7.315 -13.802,10.512 l 0,0 c -8.952,5.938 -18.598,10.791 -28.547,14.819 l 0,0 c -22.597,9.149 -47.586,13.078 -71.67,8.153 l 0,0 c -49.265,-10.074 -95.021,-46.134 -113.91,-93.081 l 0,0 c -7.566,-18.804 -8.616,-45.718 -6.222,-65.755 l 0,0 c 7.2,-60.244 65.422,-100.089 125.514,-108.45 l 0,0 c 24.823,-3.453 52.179,-1.692 76.293,4.87 l 0,0 c 50.618,13.775 89.298,54.937 112.845,99.669 l 0,0 c 2.794,5.306 14.736,24.552 14.675,26.91 l 0,0 c 0.266,-10.318 3.457,-20.545 9.105,-29.185 l 0,0 16.228,92.559 c 1.622,-9.021 7.294,-17.234 15.156,-21.944 l 0,0 0.204,60.905 c 1.411,-9.085 6.603,-14.524 14.491,-19.245 l 0,0 c -4.165,27.381 -4.717,52.34 -2.481,79.945 l 0,0 c 7.063,-4.324 13.65,-8.619 20.657,-10.281 l 0,0 c -3.651,26.793 -12.969,49.695 -16.621,76.488 l 0,0 c 10.535,-8.562 10.321,-10.841 19.665,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.881,-0.924 c -10.726,25.861 -25.449,41.842 -43.485,63.255 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.488 l 0,0 c -14.416,20.028 -33.431,26.496 -56.345,35.655 l 0,0 c 14.571,6.668 21.146,13.147 30.811,25.413 l 0,0 c -25.908,4.436 -43.613,6.973 -69.673,10.409 l 0,0 c 9.985,6.22 25.961,11.735 32.648,23.966 l 0,0 c -23.094,-0.069 -51.515,-1.991 -74.608,-2.06 l 0,0 c 3.119,9.152 16.025,22.058 15.345,33.287 l 0,0 -67.289,-24.135 c -2.03,7.644 4.971,10.282 1.624,31.588 l 0,0 -54.543,-23.538 c 0,6.899 9.282,21.517 5.235,31.248 l 0,0 c -1.052,2.53 -27.623,-18.935 -36.917,-20.789 l 0,0 c 0,0 19.328,52.162 14.751,52.15 l 0,0 c -15.456,-0.043 -33.751,-18.848 -49.059,-21.737 l 0,0 c -3.6,5.946 -6.717,12.18 -9.697,18.454 l 0,0 c -5.958,12.545 -11.32,25.36 -17.137,37.968 l 0,0 c -2.808,6.086 -5.71,12.137 -8.882,18.045 l 0,0 c -2.044,3.808 -3.889,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.53 -9.801,2.53 l 0,0 c -1.401,0 -2.752,-0.154 -3.948,-0.483 m 41.469,-271.971 c -2.231,-1.88 -4.511,-3.71 -6.842,-5.492 l 0,0 c 2.319,1.787 4.601,3.62 6.842,5.492 m 85.349,-45.569 c 0,0 0,0 0,0 M 385.7,244.684 c -16.443,19.301 -23.431,46.21 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.036 39.804,56.681 l 0,0 c 20.807,11.646 47.481,12.699 68.623,1.672 l 0,0 c 21.141,-11.029 35.712,-34.184 35.362,-58.026 l 0,0 C 510.325,292.31 494.456,269.141 471.96,261.234 l 0,0 c -13.249,-4.656 -28.749,-3.925 -40.478,3.797 l 0,0 c -11.73,7.722 -18.663,22.934 -14.915,36.468 l 0,0 c 3.747,13.534 19.144,23.259 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.831 14.374,-7.339 l 0,0 c 6.352,-3.338 14.186,-5.411 20.41,0.205 l 0,0 c 2.347,2.118 3.891,5.052 4.393,8.173 l 0,0 c 1.651,10.257 -5.876,18.554 -14.739,21.821 l 0,0 c -6.84,2.522 -14.381,2.425 -21.601,1.414 l 0,0 c -23.699,-3.317 -46.283,-17.011 -58.038,-37.854 l 0,0 c -11.755,-20.844 -11.323,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.481,-17.733 32.218,-21.388 l 0,0 c -16.769,4.192 -32.283,13.595 -43.509,26.773 m 146.6,21.019 c 0.248,0.358 0.494,0.716 0.739,1.075 l 0,0 c -2.1,-3.197 -4.324,-6.317 -6.684,-9.346 l 0,0 c -5.241,-6.727 -11.231,-12.977 -17.813,-18.49 l 0,0 c 9.023,7.8 16.985,16.98 23.758,26.761"
|
||||||
|
id="path30"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1428"><path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1430"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1436"><path
|
||||||
|
d="m 153.069,874.507 547.722,0 0,-721.1 -547.722,0 0,721.1 z"
|
||||||
|
id="path1438"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,239.82324,731.99097)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1468"><stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1470" /><stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1472" /></radialGradient><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1480"><path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1482"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,324.3374,727.64069)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1516"><stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1518" /><stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1520" /></radialGradient><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1528"><path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1530"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1560"><path
|
||||||
|
d="m 529.474,574.673 c 6.87,-7.702 13.741,-15.405 20.611,-23.107 l 0,0 c 2.925,-3.279 6.035,-7.149 6.026,-11.402 l 0,0 c -10e-4,-0.461 -0.038,-0.925 -0.116,-1.394 l 0,0 c -0.679,-4.076 -4.235,-6.974 -7.641,-9.312 l 0,0 c -8.134,-5.582 -16.812,-10.954 -24.245,-17.441 l 0,0 c -3.348,-2.922 -15.688,-9.847 -17.856,-11.768 l 0,0 c -10.514,-9.322 -29.698,-8.23 -43.695,-6.992 l 0,0 c -2.978,0.263 -6.376,0.501 -8.544,-1.558 l 0,0 c -1.461,-1.388 -1.959,-3.483 -2.345,-5.461 l 0,0 c -0.541,-2.777 -0.961,-5.706 -0.964,-8.569 l 0,0 c -0.005,-3.924 0.773,-7.721 3.093,-10.826 l 0,0 c 5.5,-7.361 17.621,-6.775 24.515,-0.701 l 0,0 c 3.855,3.397 7.098,8.39 12.216,8.854 l 0,0 c 5.187,0.469 9.462,-4.158 11.606,-8.906 l 0,0 c 2.145,-4.748 3.149,-10.106 6.358,-14.211 l 0,0 c 6.392,-8.178 21.134,-7.2 26.389,1.752 l 0,0 c 1.293,2.202 1.885,4.672 1.889,7.167 l 0,0 c 0.013,7.643 -5.488,15.526 -13.22,16.729 l 0,0 c -0.999,1.438 -1.44,3.117 -1.442,4.842 l 0,0 c -0.002,2.689 1.063,5.487 2.742,7.64 l 0,0 c 2.755,3.534 6.807,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.214 l 0,0 c 2.132,2.238 4.348,4.93 4.35,7.937 l 0,0 c 0,0.269 -0.017,0.54 -0.054,0.814 l 0,0 c -0.28,2.082 -1.645,3.833 -2.959,5.471 l 0,0 c -9.167,11.424 -18.333,22.849 -27.5,34.273 l 0,0 -23.071,-6.074 z"
|
||||||
|
id="path1562"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1646"><path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1648"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath><clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1658"><path
|
||||||
|
d="m 444.813,571.047 c 6.832,-7.66 13.665,-15.32 20.499,-22.979 l 0,0 c 3.241,-3.634 6.709,-7.994 5.908,-12.797 l 0,0 c -0.056,-0.338 -0.132,-0.668 -0.226,-0.99 l 0,0 c -0.987,-3.65 -4.29,-6.315 -7.463,-8.492 l 0,0 c -8.135,-5.582 -16.812,-10.954 -24.246,-17.441 l 0,0 c -3.348,-2.922 -15.687,-9.846 -17.855,-11.769 l 0,0 c -10.514,-9.321 -29.699,-8.229 -43.695,-6.992 l 0,0 c -2.979,0.264 -6.375,0.503 -8.543,-1.557 l 0,0 c -0.945,-0.898 -1.487,-2.091 -1.857,-3.358 l 0,0 c -0.178,-0.638 -0.315,-1.291 -0.44,-1.933 l 0,0 c -1.283,-6.581 -1.885,-14.024 2.129,-19.396 l 0,0 c 5.499,-7.36 17.621,-6.774 24.514,-0.7 l 0,0 c 3.856,3.397 7.099,8.391 12.216,8.854 l 0,0 c 5.189,0.47 9.464,-4.158 11.607,-8.906 l 0,0 c 2.144,-4.747 3.15,-10.106 6.357,-14.211 l 0,0 c 6.393,-8.177 21.135,-7.199 26.39,1.752 l 0,0 c 0.57,0.971 1.003,1.993 1.311,3.046 l 0,0 c 2.398,8.633 -3.607,19.267 -12.691,20.68 l 0,0 c -1.621,2.332 -1.772,5.302 -0.964,8.064 l 0,0 c 0.46,1.658 1.268,3.248 2.313,4.588 l 0,0 c 2.754,3.534 6.806,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.215 l 0,0 c 1.669,1.751 3.39,3.782 4.06,6.024 l 0,0 c 0.225,0.825 0.306,1.678 0.187,2.556 l 0,0 c -0.279,2.082 -1.644,3.832 -2.959,5.47 l 0,0 c -9.166,11.425 -18.334,22.85 -27.5,34.274 l 0,0 -22.909,-6.031 z"
|
||||||
|
id="path1660"
|
||||||
|
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
||||||
|
units="px"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
id="base"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:cx="905.60307"
|
||||||
|
inkscape:cy="566.10351"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1868"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="52"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"><sodipodi:guide
|
||||||
|
position="991.42857,1077.1429"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide8407"
|
||||||
|
inkscape:locked="false" /><sodipodi:guide
|
||||||
|
position="880.85303,551.5433"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide8409"
|
||||||
|
inkscape:locked="false"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" /><sodipodi:guide
|
||||||
|
position="960,1143.4927"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide8411"
|
||||||
|
inkscape:locked="false"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" /><sodipodi:guide
|
||||||
|
position="1874.1345,936.72488"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide1596"
|
||||||
|
inkscape:locked="false" /></sodipodi:namedview><g
|
||||||
|
id="layer2"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Background"
|
||||||
|
style="display:inline"><rect
|
||||||
|
id="pause_bg"
|
||||||
|
x="1.1444092e-05"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
y="3.0517578e-05"
|
||||||
|
style="display:inline;fill:#173f4f;fill-opacity:1" /><text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.52660465px;line-height:0%;font-family:'Open Sans Pro';-inkscape-font-specification:'Open Sans Pro';letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.79388374px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="1470.6472"
|
||||||
|
y="343.86914"
|
||||||
|
id="text5802"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="1470.6472"
|
||||||
|
y="343.86914"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:55.57185745px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Bold';stroke-width:0.79388374px"
|
||||||
|
id="tspan1594">Conference 2022</tspan></text>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="pause"
|
||||||
|
transform="matrix(2.4406736,0,0,2.4406736,-2702.7083,-70.559949)"><text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91700482px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="645.31598"
|
||||||
|
y="593.3819"
|
||||||
|
id="text8405"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan8403"
|
||||||
|
x="645.31598"
|
||||||
|
y="596.49908"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:268.98806763px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Ultra-Light';fill:#ffffff;fill-opacity:1;stroke-width:0.91700482px" /></text>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<g
|
||||||
|
id="g5758"
|
||||||
|
transform="matrix(0.51253329,0,0,0.51253329,1586.7258,-164.41202)"
|
||||||
|
style="fill:#ffffff"><path
|
||||||
|
d="m 523.71,442.05 c -3.3113,-0.11926 -6.4507,1.0506 -8.8499,3.3008 -2.3993,2.2502 -3.8147,5.2984 -3.9147,8.5992 -0.2297,6.8208 5.1108,12.559 11.916,12.81 3.3095,0.1 6.4647,-1.0698 8.878,-3.32 2.4098,-2.2607 3.7953,-5.3107 3.9006,-8.5992 0.2297,-6.819 -5.109,-12.549 -11.93,-12.791 z m 2.0205,13.512 c -3.0307,0 -5.4791,-1.6398 -5.4791,-3.6498 0,-2.0292 2.4484,-3.6603 5.4791,-3.6603 3.0306,0 5.486,1.6311 5.486,3.6603 0,2.0099 -2.4571,3.6498 -5.486,3.6498 z m 28.798,14.729 c 0.0887,-0.0692 0.29521,-0.25105 0.2683,-0.41918 -0.68471,-4.2787 -7.0592,-25.029 -11.884,-30.019 -1.3294,-1.3592 -2.394,-2.6992 -4.5495,-3.9602 -17.454,-10.171 -58.863,-16.309 -60.803,-16.59 0,0 -0.19473,-0.0406 -0.3297,0.0912 -0.1048,0.10237 -0.1246,0.29991 -0.1246,0.29991 0,0 -0.1596,8.5799 -0.1841,9.5392 -4.2286,-1.4206 -34.972,-11.351 -63.791,-12.351 -24.44,-0.85939 -60.033,-4.0198 -107.2,24.98 l -1.3943,0.86815 c -22.19,13.841 -37.51,30.91 -45.518,50.739 -2.5116,6.2402 -5.8895,20.32 -2.5414,33.569 1.4417,5.7912 4.1304,11.611 7.7556,16.819 8.194,11.77 21.944,19.58 36.749,20.899 20.904,1.8696 36.733,-7.5188 42.363,-25.099 3.8708,-12.13 0,-29.928 -14.839,-39.008 -12.07,-7.3908 -25.049,-5.7106 -32.578,-0.7296 -6.5313,4.3303 -10.23,11.06 -10.165,18.451 0.1508,13.11 11.444,20.078 19.564,20.099 2.3589,0 4.7284,-0.41041 7.3995,-1.2803 0.9506,-0.28939 1.845,-0.64893 2.8307,-1.2593 l 0.3087,-0.18065 0.1947,-0.12978 -0.065,0.0386 c 1.8503,-1.261 2.964,-3.3113 2.964,-5.5106 0,-0.59981 -0.084,-1.2084 -0.2561,-1.8205 -0.9593,-3.32 -4.239,-5.3282 -7.638,-4.7091 l -0.4595,0.10874 -0.6209,0.18942 -0.9015,0.31043 c -1.8696,0.45951 -3.2692,0.49985 -3.5691,0.51038 -0.9506,-0.0614 -5.6246,-1.461 -5.6246,-6.5805 v -0.0702 c 0,-1.8801 0.7542,-3.199 1.1698,-3.9199 1.454,-2.28 5.4352,-4.5179 10.814,-4.0497 7.0593,0.61034 12.149,4.2303 15.52,11.06 3.1289,6.349 2.3098,14.159 -2.1099,19.88 -4.3899,5.6685 -12.205,8.0783 -22.598,6.9593 -10.481,-1.1593 -19.34,-7.1908 -24.303,-16.579 -4.8565,-9.1779 -5.1213,-20.059 -0.6858,-28.418 10.609,-20.029 30.649,-19.82 41.637,-17.921 16.26,2.8202 34.758,17.819 41.319,35.139 1.0593,2.7606 1.5995,4.9494 2.0713,6.9505 l 0.7085,2.9903 18.37,8.9692 c 0.39458,0.19266 0.52796,0.25778 0.6858,0.14034 0.18941,-0.14093 0.081,-0.52966 0.081,-0.52966 -0.114,-0.4104 -0.3806,-0.78924 -0.805,-5.9298 -0.3491,-4.5618 -1.0594,-17.051 5.2282,-23.24 2.4414,-2.4186 6.1613,-4.5776 9.099,-5.2686 12.04,-2.9412 26.159,-0.912 39.507,14.539 6.9102,7.98 10.279,11.619 11.97,13.249 0,0 0.38494,0.36349 0.5893,0.53142 0.22331,0.1835 0.36878,0.33789 0.6945,0.51914 0.55786,0.31042 22.954,10.621 22.954,10.621 0,0 0.26534,0.13182 0.4612,-0.11049 0.19362,-0.23953 0.01,-0.4788 0.01,-0.4788 -0.1491,-0.17013 -14.199,-18.328 -11.698,-33.279 1.9696,-11.909 11.447,-10.83 24.558,-9.3498 4.2794,0.49984 9.1516,1.0593 14.196,1.1716 14.084,0.0895 29.254,-2.5115 38.604,-6.6015 6.049,-2.629 9.9093,-4.3794 12.328,-6.5787 0.8699,-0.72084 1.3207,-1.8907 1.7907,-3.1499 l 0.3297,-0.83133 c 0.3911,-1.0207 0.9664,-3.171 1.219,-4.3496 0.1017,-0.51914 0.2208,-1.0274 -0.2087,-1.3592 -0.39265,-0.30337 -1.2944,0.24027 -1.2944,0.24027 -4.1058,2.4712 -14.369,7.1505 -23.965,7.3504 -11.914,0.24028 -36.054,-12.061 -38.555,-13.36 -1.6739,-3.9857 -3.3458,-7.9724 -5.0438,-11.948 17.27,11.379 31.594,17.668 42.559,18.638 12.207,1.0874 21.723,-5.5724 25.853,-8.3433 0.54064,-0.35944 1.0799,-0.76184 1.5756,-1.1486 z m -48.992,-16.369 c 0.1753,-4.7302 2.1554,-9.1201 5.6141,-12.34 3.4603,-3.2306 7.9747,-4.9003 12.708,-4.7494 9.7602,0.34902 17.43,8.5886 17.095,18.338 -0.1841,4.7302 -2.1642,9.1201 -5.6141,12.33 -3.4603,3.2499 -7.9642,4.9196 -12.719,4.76 -9.7497,-0.35954 -17.411,-8.5799 -17.084,-18.338 z"
|
||||||
|
id="Geeko"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" /><path
|
||||||
|
id="path5761"
|
||||||
|
d="m 376.84,556.36 c -7.7836,0 -12.065,6.5805 -12.065,11.13 v 5.8403 c 0,6.6997 5.4738,10.851 10.55,10.851 h 17.819 c 2.2449,0 2.7149,1.4697 2.7149,2.7097 v 3.769 c 0,0.39988 -0.081,4.0198 -2.7149,4.0198 h -24.303 c -2.4151,0 -4.1602,1.6802 -4.1602,3.9795 v 1.0418 c 0,2.2905 1.7451,3.9602 4.1602,3.9602 h 25.624 c 6.698,0 11.02,-4.66 11.02,-11.879 v -6.3016 c 0,-6.7786 -4.8705,-9.8093 -9.7058,-9.8093 h -17.533 c -2.6395,0 -3.8356,-1.9801 -3.8356,-3.3797 v -3.4796 c 0,-2.1906 1.4644,-3.4604 4.0251,-3.4604 h 19.408 c 2.38,0 4.1707,-1.71 4.1707,-3.9707 v -1.04 c 0,-2.2695 -1.8205,-3.9813 -4.2513,-3.9813 h -20.922 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5763"
|
||||||
|
d="m 449.7,556.36 c -2.301,0 -4.1548,1.8696 -4.1548,4.1707 v 29.838 c 0,2.3905 -1.9503,4.311 -4.311,4.311 h -13.545 c -2.3694,0 -4.3092,-1.9205 -4.3092,-4.311 v -29.838 c 0,-2.3011 -1.8696,-4.1707 -4.1689,-4.1707 h -1.3101 c -2.3344,0 -4.1707,1.8416 -4.1707,4.1707 v 30.968 c 0,7.2101 5.6737,12.44 13.489,12.44 h 14.485 c 7.8047,0 13.475,-5.2282 13.475,-12.44 v -30.968 c 0,-2.3291 -1.8293,-4.1707 -4.1602,-4.1707 h -1.3189 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5765"
|
||||||
|
d="m 475.63,556.36 c -7.7801,0 -12.074,6.5805 -12.074,11.13 v 5.8403 c 0,6.6997 5.4843,10.851 10.564,10.851 h 17.814 c 2.2485,0 2.7203,1.4697 2.7203,2.7097 v 3.769 c 0,0.39988 -0.081,4.0198 -2.7203,4.0198 H 467.62 c -2.4045,0 -4.1601,1.6802 -4.1601,3.9795 v 1.0418 c 0,2.2905 1.7556,3.9602 4.1601,3.9602 h 25.633 c 6.6998,0 11.041,-4.66 11.041,-11.879 v -6.3016 c 0,-6.7786 -4.8845,-9.8093 -9.7199,-9.8093 h -17.533 c -2.6466,0 -3.8392,-1.9801 -3.8392,-3.3797 v -3.4796 c 0,-2.1906 1.4645,-3.4604 4.0251,-3.4604 h 19.419 c 2.3747,0 4.1584,-1.71 4.1584,-3.9707 v -1.04 c 0,-2.2695 -1.8188,-3.9813 -4.2601,-3.9813 h -20.913 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5767"
|
||||||
|
d="m 516.6,556.36 c -2.3098,0 -4.0549,1.7118 -4.0549,3.9813 v 39.358 c 0,2.259 1.7047,3.9602 3.9637,3.9602 h 31.364 c 2.4151,0 4.1602,-1.6697 4.1602,-3.9602 v -1.0418 c 0,-2.2993 -1.7451,-3.9795 -4.1602,-3.9795 h -25.687 v -10.02 h 18.822 c 2.4098,0 4.1602,-1.6907 4.1602,-3.9813 v -1.04 c 0,-2.3011 -1.7504,-3.9707 -4.1602,-3.9707 h -18.822 v -10.32 h 24.382 c 2.4063,0 4.1601,-1.6591 4.1601,-3.9707 v -1.04 c 0,-2.3011 -1.7538,-3.9813 -4.1601,-3.9813 h -29.968 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><g
|
||||||
|
id="g5769"
|
||||||
|
transform="matrix(1.7539,0,0,1.7539,-611.6,-134.13)"
|
||||||
|
style="fill:#ffffff"><path
|
||||||
|
id="path5771"
|
||||||
|
d="m 491.25,404.37 c -2.241,0 -4.065,1.744 -4.065,3.894 v 8.461 c 0,2.184 1.765,3.963 3.929,3.963 h 5.473 c 2.164,0 3.929,-1.779 3.929,-3.963 v -8.461 c 0,-2.149 -1.825,-3.894 -4.065,-3.894 z m -1.184,12.019 v -7.726 c 0,-0.906 0.744,-1.647 1.654,-1.647 h 4.264 c 0.89,0 1.648,0.758 1.648,1.647 v 7.726 c 0,0.912 -0.738,1.653 -1.648,1.653 h -4.296 c -0.912,0 -1.622,-0.725 -1.622,-1.653 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5773"
|
||||||
|
d="m 512.91,404.27 c -1.578,0 -2.768,0.564 -3.723,1.026 -0.582,0.279 -1.086,0.52 -1.477,0.52 -0.177,0 -0.328,-0.08 -0.408,-0.211 l -0.364,-0.696 c -0.091,-0.183 -0.456,-0.541 -0.907,-0.541 h -0.541 c -0.52,0 -0.936,0.467 -0.936,1.037 v 21.461 c 0,0.673 0.531,1.203 1.203,1.203 h 0.468 c 0.667,0 1.209,-0.536 1.209,-1.203 v -7.121 c 0,-0.211 0.137,-0.439 0.276,-0.439 0.391,0 0.895,0.229 1.477,0.496 0.955,0.439 2.145,0.98 3.723,0.98 h 0.505 c 2.794,0 4.532,-1.597 4.532,-4.162 v -8.192 c 0,-2.526 -1.775,-4.157 -4.532,-4.157 h -0.505 z m -5.475,11.952 v -7.39 c 0,-1.021 0.798,-1.818 1.818,-1.818 h 3.997 c 1.021,0 1.818,0.798 1.818,1.818 v 7.39 c 0,1.003 -0.818,1.818 -1.818,1.818 h -3.997 c -1.001,0 -1.818,-0.815 -1.818,-1.818 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5775"
|
||||||
|
d="m 526.04,404.37 c -2.241,0 -4.06,1.744 -4.06,3.894 v 8.398 c 0,2.178 1.768,4.025 3.854,4.025 h 5.647 c 0.698,0 1.203,-0.484 1.203,-1.141 v -0.37 c 0,-0.661 -0.505,-1.135 -1.203,-1.135 h -4.639 c -1.3,0 -1.986,-0.639 -1.986,-1.854 v -2.457 h 8.369 c 1.346,0 2.142,-0.821 2.142,-2.212 v -3.256 c 0,-2.149 -1.822,-3.894 -4.054,-3.894 h -5.273 z m -1.183,4.265 c 0,-0.907 0.713,-1.619 1.621,-1.619 h 4.396 c 0.906,0 1.613,0.712 1.613,1.619 v 2.622 h -7.631 c 10e-4,-0.342 10e-4,-2.622 10e-4,-2.622 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /><path
|
||||||
|
id="path5777"
|
||||||
|
d="m 547,404.27 c -1.573,0 -2.76,0.564 -3.718,1.021 -0.596,0.28 -1.105,0.525 -1.521,0.525 -0.183,0 -0.257,-0.023 -0.399,-0.269 l -0.331,-0.604 c -0.19,-0.382 -0.513,-0.575 -0.949,-0.575 h -0.465 c -0.562,0 -0.972,0.438 -0.972,1.037 v 14.077 c 0,0.667 0.527,1.203 1.206,1.203 h 0.465 c 0.667,0 1.211,-0.542 1.211,-1.203 v -10.65 c 0,-0.998 0.815,-1.818 1.813,-1.818 h 3.999 c 1.001,0 1.816,0.82 1.816,1.818 v 10.65 c 0,0.667 0.53,1.203 1.203,1.203 h 0.47 c 0.667,0 1.209,-0.542 1.209,-1.203 v -11.055 c 0,-2.526 -1.776,-4.157 -4.535,-4.157 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /></g><g
|
||||||
|
id="g5779"
|
||||||
|
transform="matrix(1.7539,0,0,1.7539,-611.6,-134.13)"
|
||||||
|
style="fill:#ffffff"><path
|
||||||
|
id="path5781"
|
||||||
|
d="m 667.46,415.23 c 1.218,0 2.188,0.99 2.188,2.229 0,1.257 -0.971,2.237 -2.198,2.237 -1.218,0 -2.208,-0.98 -2.208,-2.237 0,-1.238 0.99,-2.229 2.208,-2.229 z m -0.01,0.346 c -0.98,0 -1.782,0.842 -1.782,1.882 0,1.06 0.802,1.891 1.792,1.891 0.99,0.011 1.782,-0.831 1.782,-1.881 0,-1.05 -0.792,-1.892 -1.782,-1.892 z m -0.416,3.179 h -0.396 v -2.485 c 0.208,-0.03 0.406,-0.06 0.703,-0.06 0.377,0 0.624,0.079 0.772,0.188 0.149,0.108 0.229,0.276 0.229,0.515 0,0.326 -0.218,0.524 -0.485,0.604 v 0.021 c 0.218,0.039 0.366,0.237 0.416,0.604 0.06,0.387 0.118,0.535 0.158,0.614 h -0.416 c -0.06,-0.079 -0.119,-0.307 -0.168,-0.634 -0.06,-0.316 -0.218,-0.436 -0.535,-0.436 h -0.277 v 1.069 z m 0,-1.377 h 0.287 c 0.327,0 0.604,-0.118 0.604,-0.426 0,-0.218 -0.158,-0.436 -0.604,-0.436 -0.129,0 -0.218,0.01 -0.287,0.021 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" /></g></g></g><g
|
||||||
|
id="layer3"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Text" />
|
||||||
|
|
||||||
|
</svg>
|
After Width: | Height: | Size: 28 KiB |
341
osc22/artwork/intro.svg
Normal file
After Width: | Height: | Size: 69 KiB |
377
osc22/artwork/logo_osc-video.svg
Normal file
|
@ -0,0 +1,377 @@
|
||||||
|
<?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="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="logo_osc-video.svg"
|
||||||
|
inkscape:export-filename="/home/tbro/git/voc/intro-outro-generator/osc17/artwork/logo_osc-video_preview.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.49497474"
|
||||||
|
inkscape:cx="545.03463"
|
||||||
|
inkscape:cy="432.91305"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="1596"
|
||||||
|
inkscape:window-height="850"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="26"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true">
|
||||||
|
<sodipodi:guide
|
||||||
|
position="21.429,710"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide6027"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="-50,340"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide6053"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="960,1056.6196"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide6055"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="0,1030"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide4785"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="1440,1040"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4787"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="50,941.42857"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4821"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="560,50"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide4823"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="480,1333.4014"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide4825"
|
||||||
|
inkscape:label=""
|
||||||
|
inkscape:color="rgb(0,0,255)" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Background">
|
||||||
|
<rect
|
||||||
|
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#0d2c40;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:23.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||||
|
id="background"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
x="0"
|
||||||
|
y="0" />
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="credits"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
transform="translate(0,38)"><flowRegion
|
||||||
|
id="flowRegion6144"><rect
|
||||||
|
id="rect6146"
|
||||||
|
width="960"
|
||||||
|
height="67.14286"
|
||||||
|
x="480"
|
||||||
|
y="864.28571" /></flowRegion><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:25px;font-family:'Arial MT';-inkscape-font-specification:'Arial MT Bold';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||||
|
id="flowPara6152">recording by: younameit</flowPara><flowPara
|
||||||
|
id="flowPara6150"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:25px;font-family:'Arial MT';-inkscape-font-specification:'Arial MT Bold';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1">postprocessing by: eventuallyhere</flowPara></flowRoot> <flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="susetext"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
transform="translate(-559.54527,38.644881)"><flowRegion
|
||||||
|
id="flowRegion4763"><rect
|
||||||
|
id="rect4765"
|
||||||
|
width="867.14294"
|
||||||
|
height="707.39093"
|
||||||
|
x="1078.5714"
|
||||||
|
y="418.57144"
|
||||||
|
ry="0" /></flowRegion><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:62.5px;font-family:'Arial MT';-inkscape-font-specification:'Arial MT Bold';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||||
|
id="flowPara4771">openSUSE conference 2017</flowPara><flowPara
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:62.5px;font-family:'Arial MT';-inkscape-font-specification:'Arial MT Bold';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1"
|
||||||
|
id="flowPara4811">Z-Bau, Nuremberg</flowPara></flowRoot> <g
|
||||||
|
id="g4523">
|
||||||
|
<path
|
||||||
|
d="m 1076.6039,267.93595 c -2.4905,0 -4.5161,-1.36532 -4.5161,-3.02254 0,-1.67048 2.0256,-3.02254 4.5161,-3.02254 2.5038,0 4.5339,1.35206 4.5339,3.02254 0,1.65722 -2.0301,3.02254 -4.5339,3.02254 z m -1.6767,-11.15842 c -2.7231,-0.11629 -5.2985,0.86398 -7.2882,2.72402 -1.996,1.85272 -3.1566,4.37184 -3.2416,7.10479 -0.179,5.62202 4.2208,10.36335 9.8455,10.56115 2.7321,0.0865 5.321,-0.88184 7.3168,-2.72402 1.997,-1.8779 3.1418,-4.39703 3.2403,-7.10845 0.174,-5.63828 -4.2418,-10.36427 -9.8728,-10.55749"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path18-4"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="translate(5.0000007,-5.0000008)"
|
||||||
|
id="g4515">
|
||||||
|
<g
|
||||||
|
id="g388-6"
|
||||||
|
transform="matrix(8.7050385,0,0,-8.7062511,845,310.01306)"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none">
|
||||||
|
<path
|
||||||
|
d="m 0,0 c 0,-7.93 -6.434,-14.356 -14.359,-14.356 -7.93,0 -14.36,6.426 -14.36,14.356 0,7.931 6.43,14.359 14.36,14.359 C -6.434,14.359 0,7.931 0,0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path390-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g1576-8"
|
||||||
|
transform="matrix(8.7050385,0,0,-8.7062511,678.438,260.50651)"
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none">
|
||||||
|
<path
|
||||||
|
d="m 0,0 9.463,-5.536 c 0.078,-0.046 0.086,-0.121 0.086,-0.151 0,-0.03 -0.008,-0.104 -0.086,-0.15 L 0,-11.373 0,0 Z m -0.186,-12.163 c 0.085,0 0.17,0.021 0.245,0.065 l 9.735,5.696 c 0.257,0.15 0.411,0.417 0.411,0.715 0,0.298 -0.154,0.565 -0.411,0.716 L 0.061,0.724 C -0.088,0.813 -0.266,0.817 -0.415,0.732 -0.563,0.648 -0.655,0.489 -0.655,0.316 l 0,-12.004 c -0.001,-0.174 0.085,-0.329 0.23,-0.412 0.072,-0.042 0.155,-0.063 0.239,-0.063"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path1578-3"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(1.2481116,0,0,1.2481116,698.98448,-54.506575)"
|
||||||
|
id="g4501">
|
||||||
|
<path
|
||||||
|
d="m 421.88287,213.597 c -3.3113,-0.11926 -6.4507,1.05056 -8.8499,3.30076 -2.3993,2.2502 -3.8147,5.2984 -3.9147,8.59916 -0.2297,6.82075 5.1108,12.55937 11.9158,12.81017 3.3095,0.1 6.4647,-1.06985 8.878,-3.32005 2.4098,-2.26072 3.7953,-5.31068 3.9006,-8.59916 0.2297,-6.819 -5.109,-12.54885 -11.9298,-12.79088 z m 2.0205,13.51171 c -3.0307,0 -5.4791,-1.63985 -5.4791,-3.64977 0,-2.02922 2.4484,-3.6603 5.4791,-3.6603 3.0306,0 5.486,1.63108 5.486,3.6603 0,2.00992 -2.4571,3.64977 -5.486,3.64977 z m 27.15319,15.79875 c 0.805,-0.53142 1.3961,-0.97164 1.6451,-1.06985 l 0.2683,-0.41918 c -0.6805,-4.27941 -7.05919,-25.02929 -11.88409,-30.01901 -1.3294,-1.35924 -2.394,-2.69919 -4.5495,-3.96021 -17.4544,-10.17062 -58.863,-16.30912 -60.8027,-16.58974 l -0.3297,0.0912 -0.1246,0.29991 c 0,0 -0.1596,8.57987 -0.1841,9.53923 -4.2286,-1.42062 -34.9719,-11.35096 -63.7913,-12.35066 -24.44,-0.85939 -60.0328,-4.01984 -107.1958,24.98019 l -1.3943,0.86815 c -22.1898,13.84145 -37.5097,30.90998 -45.5178,50.73909 -2.5116,6.24022 -5.8895,20.32019 -2.5414,33.56882 1.4417,5.79123 4.1304,11.61053 7.7556,16.81949 8.194,11.77013 21.9442,19.58006 36.7486,20.89896 20.9042,1.86961 36.7327,-7.51879 42.3626,-25.09945 3.8708,-12.12968 0,-29.92781 -14.8394,-39.00753 -12.07,-7.39075 -25.0486,-5.71056 -32.5779,-0.7296 -6.5313,4.33027 -10.2302,11.05982 -10.1653,18.45056 0.1508,13.11009 11.4439,20.07816 19.5643,20.09921 2.3589,0 4.7284,-0.41041 7.3995,-1.28032 0.9506,-0.28939 1.845,-0.64893 2.8307,-1.25927 l 0.3087,-0.18065 0.1947,-0.12978 -0.065,0.0386 c 1.8503,-1.26102 2.964,-3.31128 2.964,-5.51062 0,-0.59981 -0.084,-1.2084 -0.2561,-1.8205 -0.9593,-3.32005 -4.239,-5.32822 -7.638,-4.70911 l -0.4595,0.10874 -0.6209,0.18942 -0.9015,0.31043 c -1.8696,0.45951 -3.2692,0.49985 -3.5691,0.51038 -0.9506,-0.0614 -5.6246,-1.46097 -5.6246,-6.58048 l 0,-0.0702 c 0,-1.88013 0.7542,-3.19903 1.1698,-3.91986 1.454,-2.28002 5.4352,-4.51794 10.8143,-4.04966 7.0593,0.61034 12.149,4.23031 15.5199,11.05982 3.1289,6.34896 2.3098,14.15888 -2.1099,19.87997 -4.3899,5.66846 -12.2051,8.07826 -22.5985,6.9593 -10.481,-1.1593 -19.3397,-7.19081 -24.3031,-16.57921 -4.8565,-9.17793 -5.1213,-20.05885 -0.6858,-28.41774 10.6091,-20.02905 30.6486,-19.82034 41.6366,-17.92091 16.26,2.8202 34.7579,17.81919 41.3191,35.13852 1.0593,2.76057 1.5995,4.94938 2.0713,6.95053 l 0.7085,2.99033 18.3699,8.96923 0.2403,0.18064 0.4455,-0.0403 0.081,-0.52966 c -0.114,-0.4104 -0.3806,-0.78924 -0.805,-5.92979 -0.3491,-4.56178 -1.0594,-17.05099 5.2282,-23.24035 2.4414,-2.41857 6.1613,-4.57757 9.099,-5.26859 12.0402,-2.94122 26.1588,-0.912 39.5074,14.53947 6.9102,7.98005 10.2794,11.6193 11.9701,13.24863 l 0.5893,0.53142 0.6945,0.51914 c 0.5542,0.30167 22.9545,10.62136 22.9545,10.62136 l 0.4612,-0.11049 0.01,-0.4788 c -0.1491,-0.17013 -14.1992,-18.32781 -11.6982,-33.27943 1.9696,-11.90869 11.4474,-10.83007 24.5575,-9.34981 4.2794,0.49984 9.1516,1.05932 14.1957,1.17157 14.0835,0.0895 29.2544,-2.51152 38.6042,-6.60152 6.049,-2.62903 9.9093,-4.37938 12.32779,-6.57871 0.8699,-0.72084 1.3207,-1.89066 1.7907,-3.14993 l 0.3297,-0.83133 c 0.3911,-1.02074 0.9664,-3.17097 1.219,-4.34957 0.1017,-0.51914 0.1613,-1.06809 -0.2087,-1.35923 l -1.2944,0.24027 c -4.10579,2.47119 -14.36929,7.15048 -23.96469,7.35042 -11.9139,0.24028 -35.8979,-11.9806 -38.3989,-13.28021 l -0.2403,-0.27886 c -0.5893,-1.43992 -4.19,-9.94963 -4.9599,-11.74909 17.2702,11.37903 31.594,17.66836 42.5591,18.63824 12.2068,1.08739 21.7215,-5.57376 25.78519,-8.42202 z m -47.34709,-17.4386 c 0.1753,-4.73016 2.1554,-9.12006 5.6141,-12.34014 3.4603,-3.23061 7.9747,-4.90028 12.7084,-4.74945 9.7602,0.34902 17.4298,8.58864 17.0948,18.33833 -0.1841,4.73016 -2.1642,9.12006 -5.6141,12.32962 -3.4603,3.2499 -7.9642,4.91957 -12.7189,4.75997 -9.7497,-0.35954 -17.4106,-8.57987 -17.0843,-18.33833 z"
|
||||||
|
id="Geeko"
|
||||||
|
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 275.00437,327.90287 c -7.7836,0 -12.0648,6.58047 -12.0648,11.12998 l 0,5.84034 c 0,6.69974 5.4738,10.85112 10.5495,10.85112 l 17.8192,0 c 2.2449,0 2.7149,1.46973 2.7149,2.70971 l 0,3.76903 c 0,0.39988 -0.081,4.01984 -2.7149,4.01984 l -24.3032,0 c -2.4151,0 -4.1602,1.6802 -4.1602,3.97951 l 0,1.04179 c 0,2.29054 1.7451,3.96021 4.1602,3.96021 l 25.6238,0 c 6.698,0 11.0195,-4.66 11.0195,-11.87888 l 0,-6.30161 c 0,-6.77865 -4.8705,-9.80932 -9.7058,-9.80932 l -17.5334,0 c -2.6395,0 -3.8356,-1.9801 -3.8356,-3.37968 l 0,-3.47965 c 0,-2.19057 1.4644,-3.46036 4.0251,-3.46036 l 19.4081,0 c 2.38,0 4.1707,-1.71001 4.1707,-3.97074 l 0,-1.04003 c 0,-2.26949 -1.8205,-3.98126 -4.2513,-3.98126 l -20.9218,0 z"
|
||||||
|
id="path7"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 347.86657,327.90287 c -2.301,0 -4.1548,1.86961 -4.1548,4.17067 l 0,29.83837 c 0,2.39051 -1.9503,4.31098 -4.311,4.31098 l -13.5451,0 c -2.3694,0 -4.3092,-1.92047 -4.3092,-4.31098 l 0,-29.83837 c 0,-2.30106 -1.8696,-4.17067 -4.1689,-4.17067 l -1.3101,0 c -2.3344,0 -4.1707,1.84155 -4.1707,4.17067 l 0,30.96786 c 0,7.2101 5.6737,12.44011 13.4889,12.44011 l 14.4851,0 c 7.8047,0 13.4749,-5.22825 13.4749,-12.44011 l 0,-30.96786 c 0,-2.32912 -1.8293,-4.17067 -4.1602,-4.17067 l -1.3189,0 z"
|
||||||
|
id="path9"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 373.79917,327.90287 c -7.7801,0 -12.0736,6.58047 -12.0736,11.12998 l 0,5.84034 c 0,6.69974 5.4843,10.85112 10.5635,10.85112 l 17.8139,0 c 2.2485,0 2.7203,1.46973 2.7203,2.70971 l 0,3.76903 c 0,0.39988 -0.081,4.01984 -2.7203,4.01984 l -24.3137,0 c -2.4045,0 -4.1601,1.6802 -4.1601,3.97951 l 0,1.04179 c 0,2.29054 1.7556,3.96021 4.1601,3.96021 l 25.6326,0 c 6.6998,0 11.0406,-4.66 11.0406,-11.87888 l 0,-6.30161 c 0,-6.77865 -4.8845,-9.80932 -9.7199,-9.80932 l -17.5333,0 c -2.6466,0 -3.8392,-1.9801 -3.8392,-3.37968 l 0,-3.47965 c 0,-2.19057 1.4645,-3.46036 4.0251,-3.46036 l 19.4187,0 c 2.3747,0 4.1584,-1.71001 4.1584,-3.97074 l 0,-1.04003 c 0,-2.26949 -1.8188,-3.98126 -4.2601,-3.98126 l -20.913,0 z"
|
||||||
|
id="path11"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 414.76397,327.90287 c -2.3098,0 -4.0549,1.71177 -4.0549,3.98126 l 0,39.3583 c 0,2.25897 1.7047,3.96021 3.9637,3.96021 l 31.3642,0 c 2.41509,0 4.16019,-1.66967 4.16019,-3.96021 l 0,-1.04179 c 0,-2.2993 -1.7451,-3.9795 -4.16019,-3.9795 0,0 -24.5329,0 -25.6869,0 0,-1.02074 0,-9.01132 0,-10.01978 1.1435,0 18.8223,0 18.8223,0 2.4098,0 4.1602,-1.69072 4.1602,-3.98126 l 0,-1.04004 c 0,-2.30106 -1.7504,-3.97073 -4.1602,-3.97073 0,0 -17.6788,0 -18.8223,0 0,-1.02951 0,-9.29018 0,-10.3197 1.1435,0 24.3821,0 24.3821,0 2.4063,0 4.16009,-1.65914 4.16009,-3.97073 l 0,-1.04003 c 0,-2.30107 -1.75379,-3.98126 -4.16009,-3.98126 l -29.9682,0 z"
|
||||||
|
id="path13"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g15"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
transform="matrix(1.7538571,0,0,1.7538571,-713.43442,-362.5819)">
|
||||||
|
<path
|
||||||
|
d="m 491.254,404.369 c -2.241,0 -4.065,1.744 -4.065,3.894 l 0,8.461 c 0,2.184 1.765,3.963 3.929,3.963 l 5.473,0 c 2.164,0 3.929,-1.779 3.929,-3.963 l 0,-8.461 c 0,-2.149 -1.825,-3.894 -4.065,-3.894 l -5.201,0 z m -1.184,12.019 0,-7.726 c 0,-0.906 0.744,-1.647 1.654,-1.647 l 4.264,0 c 0.89,0 1.648,0.758 1.648,1.647 l 0,7.726 c 0,0.912 -0.738,1.653 -1.648,1.653 l -4.296,0 c -0.912,0 -1.622,-0.725 -1.622,-1.653 z"
|
||||||
|
id="path17"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 512.91,404.271 c -1.578,0 -2.768,0.564 -3.723,1.026 -0.582,0.279 -1.086,0.52 -1.477,0.52 -0.177,0 -0.328,-0.08 -0.408,-0.211 l -0.364,-0.696 c -0.091,-0.183 -0.456,-0.541 -0.907,-0.541 l -0.541,0 c -0.52,0 -0.936,0.467 -0.936,1.037 l 0,21.461 c 0,0.673 0.531,1.203 1.203,1.203 l 0.468,0 c 0.667,0 1.209,-0.536 1.209,-1.203 l 0,-7.121 c 0,-0.211 0.137,-0.439 0.276,-0.439 0.391,0 0.895,0.229 1.477,0.496 0.955,0.439 2.145,0.98 3.723,0.98 l 0.505,0 c 2.794,0 4.532,-1.597 4.532,-4.162 l 0,-8.192 c 0,-2.526 -1.775,-4.157 -4.532,-4.157 l -0.505,0 z m -5.475,11.952 0,-7.39 c 0,-1.021 0.798,-1.818 1.818,-1.818 l 3.997,0 c 1.021,0 1.818,0.798 1.818,1.818 l 0,7.39 c 0,1.003 -0.818,1.818 -1.818,1.818 l -3.997,0 c -1.001,0 -1.818,-0.815 -1.818,-1.818 z"
|
||||||
|
id="path19"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 526.044,404.369 c -2.241,0 -4.06,1.744 -4.06,3.894 l 0,8.398 c 0,2.178 1.768,4.025 3.854,4.025 l 5.647,0 c 0.698,0 1.203,-0.484 1.203,-1.141 l 0,-0.37 c 0,-0.661 -0.505,-1.135 -1.203,-1.135 l -4.639,0 c -1.3,0 -1.986,-0.639 -1.986,-1.854 0,0 0,-2.115 0,-2.457 0.379,0 8.369,0 8.369,0 1.346,0 2.142,-0.821 2.142,-2.212 l 0,-3.256 c 0,-2.149 -1.822,-3.894 -4.054,-3.894 l -5.273,0 z m -1.183,4.265 c 0,-0.907 0.713,-1.619 1.621,-1.619 l 4.396,0 c 0.906,0 1.613,0.712 1.613,1.619 0,0 0,2.28 0,2.622 -0.364,0 -7.258,0 -7.631,0 10e-4,-0.342 10e-4,-2.622 10e-4,-2.622 z"
|
||||||
|
id="path21"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 546.997,404.271 c -1.573,0 -2.76,0.564 -3.718,1.021 -0.596,0.28 -1.105,0.525 -1.521,0.525 -0.183,0 -0.257,-0.023 -0.399,-0.269 l -0.331,-0.604 c -0.19,-0.382 -0.513,-0.575 -0.949,-0.575 l -0.465,0 c -0.562,0 -0.972,0.438 -0.972,1.037 l 0,14.077 c 0,0.667 0.527,1.203 1.206,1.203 l 0.465,0 c 0.667,0 1.211,-0.542 1.211,-1.203 l 0,-10.65 c 0,-0.998 0.815,-1.818 1.813,-1.818 l 3.999,0 c 1.001,0 1.816,0.82 1.816,1.818 l 0,10.65 c 0,0.667 0.53,1.203 1.203,1.203 l 0.47,0 c 0.667,0 1.209,-0.542 1.209,-1.203 l 0,-11.055 c 0,-2.526 -1.776,-4.157 -4.535,-4.157 l -0.502,0 z"
|
||||||
|
id="path23"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g25"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
transform="matrix(1.7538571,0,0,1.7538571,-713.43442,-362.5819)">
|
||||||
|
<path
|
||||||
|
d="m 667.456,415.229 c 1.218,0 2.188,0.99 2.188,2.229 0,1.257 -0.971,2.237 -2.198,2.237 -1.218,0 -2.208,-0.98 -2.208,-2.237 0,-1.238 0.99,-2.229 2.208,-2.229 l 0.01,0 z m -0.01,0.346 c -0.98,0 -1.782,0.842 -1.782,1.882 0,1.06 0.802,1.891 1.792,1.891 0.99,0.011 1.782,-0.831 1.782,-1.881 0,-1.05 -0.792,-1.892 -1.782,-1.892 l -0.01,0 z m -0.416,3.179 -0.396,0 0,-2.485 c 0.208,-0.03 0.406,-0.06 0.703,-0.06 0.377,0 0.624,0.079 0.772,0.188 0.149,0.108 0.229,0.276 0.229,0.515 0,0.326 -0.218,0.524 -0.485,0.604 l 0,0.021 c 0.218,0.039 0.366,0.237 0.416,0.604 0.06,0.387 0.118,0.535 0.158,0.614 l -0.416,0 c -0.06,-0.079 -0.119,-0.307 -0.168,-0.634 -0.06,-0.316 -0.218,-0.436 -0.535,-0.436 l -0.277,0 0,1.069 z m 0,-1.377 0.287,0 c 0.327,0 0.604,-0.118 0.604,-0.426 0,-0.218 -0.158,-0.436 -0.604,-0.436 -0.129,0 -0.218,0.01 -0.287,0.021 l 0,0.841 z"
|
||||||
|
id="path27"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:label="Icons"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer-icons"
|
||||||
|
transform="translate(0,27.637839)"
|
||||||
|
style="display:none"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<g
|
||||||
|
id="eat"
|
||||||
|
inkscape:label="#g5170">
|
||||||
|
<g
|
||||||
|
transform="matrix(1,0,0,-1,960.005,512.34716)"
|
||||||
|
id="eat-inner">
|
||||||
|
<g
|
||||||
|
id="g12"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m -257.918,69.037 c 0,19.059 14.072,38.346 40.969,38.346 l 258.72,-0.004 c 5.373,19.998 23.656,34.338 45.991,34.338 l 157.858,-0.002 c 6.787,0 12.288,-5.502 12.288,-12.287 0,-6.785 -5.501,-12.289 -12.288,-12.289 l -157.864,0.004 c -15.114,0 -23.023,-11.09 -23.023,-22.05 l -0.002,-12.29 -281.674,0.005 c -12.099,0 -16.391,-7.419 -16.391,-13.771 -0.001,-6.352 4.292,-13.775 16.391,-13.775 l 281.68,-0.005 0,-12.285 c 0,-11.681 11.353,-21.087 20.754,-21.087 l 160.128,-0.002 c 6.787,0 12.289,-5.502 12.289,-12.289 0,-6.784 -5.502,-12.287 -12.289,-12.287 L 85.49,-2.69 c -17.998,0 -37.725,13.216 -43.592,33.372 l -258.842,0.004 c -26.903,0.007 -40.974,19.294 -40.974,38.351 z"
|
||||||
|
id="path14"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="m -256.946,-103.484 c 0,18.684 14.065,38.551 40.129,38.551 l 153.709,-0.003 0,27.818 264.646,-0.003 c 36.996,-0.002 56.352,-26.321 56.352,-52.316 -0.002,-25.992 -19.358,-52.311 -56.354,-52.31 l -418.354,0.006 c -26.345,0 -40.13,19.243 -40.128,38.257 z m 218.413,41.793 -10e-4,-27.822 -178.28,0.004 c -11.479,0 -15.55,-7.526 -15.55,-13.975 0,-6.621 4.08,-13.682 15.55,-13.682 l 418.35,-0.006 c 21.953,-0.001 31.783,13.932 31.783,27.734 0,13.808 -9.83,27.742 -31.781,27.742 l -240.071,0.005 z"
|
||||||
|
id="path18"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 78.087,90.25 c 0,6.787 5.502,12.285 12.285,12.285 l 155.248,-0.002 c 6.787,0 12.288,-5.499 12.287,-12.285 0,-6.787 -5.5,-12.289 -12.289,-12.289 L 90.371,77.962 c -6.782,0 -12.284,5.501 -12.284,12.288 z"
|
||||||
|
id="path20"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 78.087,48.113 c 0,6.783 5.502,12.287 12.284,12.287 l 155.247,-0.004 c 6.789,0 12.289,-5.502 12.289,-12.286 0,-6.787 -5.502,-12.288 -12.289,-12.288 L 90.371,35.824 c -6.782,0 -12.286,5.502 -12.284,12.289 z"
|
||||||
|
id="path22-2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="code"
|
||||||
|
inkscape:label="#g5164">
|
||||||
|
<g
|
||||||
|
style="font-size:medium;font-family:ProstoSans-Bold;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
transform="translate(717.25155,401.37325)"
|
||||||
|
id="code-inner">
|
||||||
|
<path
|
||||||
|
id="path4138"
|
||||||
|
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
d="m 316.67032,64.180481 0,-23.896593 168.32655,61.054482 0,21.79579 -168.32655,61.05448 0,-23.89659 135.23896,-47.92448 -135.23896,-48.187089 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path4136"
|
||||||
|
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
d="m 265.59465,0.50000127 22.32099,0 -68.27598,220.97782873 -22.32099,0 68.27598,-220.97782873 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path4134"
|
||||||
|
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
d="m 168.82658,64.180481 -135.501558,48.187089 135.501558,47.92448 0,23.89659 -168.32654699,-61.05448 0,-21.79579 168.32654699,-61.054482 0,23.896593 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="sleep"
|
||||||
|
inkscape:label="#g5158">
|
||||||
|
<g
|
||||||
|
transform="translate(392.14286,238.57143)"
|
||||||
|
id="sleep-inner">
|
||||||
|
<path
|
||||||
|
d="m 363.61614,205.17623 c 0,-10.968 8.891,-19.858 19.858,-19.858 10.967,0 19.858,8.891 19.858,19.858 0,10.967 -8.891,19.858 -19.858,19.858 -10.967,0 -19.858,-8.89 -19.858,-19.858 z"
|
||||||
|
id="path12"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:37.36399841;stroke-linecap:round;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<line
|
||||||
|
x1="452.92215"
|
||||||
|
y1="241.75023"
|
||||||
|
x2="770.66412"
|
||||||
|
y2="241.75023"
|
||||||
|
id="line10"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:50;stroke-linecap:round;stroke-opacity:1" />
|
||||||
|
<polyline
|
||||||
|
points=" 264.811,-132.373 264.811,-42.348 -264.759,-42.348 -264.759,-132.373 -264.759,132.41 "
|
||||||
|
id="polyline8"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:37.36399841;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||||
|
transform="matrix(1,0,0,-1,567.83114,273.80923)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="repeat"
|
||||||
|
inkscape:label="#g5149">
|
||||||
|
<g
|
||||||
|
id="repeat-inner">
|
||||||
|
<path
|
||||||
|
d="m 1087.366,384.80213 -353.43398,0 c -31.336,0 -56.692,25.357 -56.692,56.693 l 0,141.73303 c 0,31.336 25.357,56.693 56.693,56.693"
|
||||||
|
id="path12-3"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g14"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
transform="matrix(1,0,0,-1,960.01198,512.19516)">
|
||||||
|
<polygon
|
||||||
|
points="112.765,176.973 199.117,127.119 112.765,77.256 "
|
||||||
|
id="polygon16"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 832.63502,639.92216 353.43398,0 c 31.336,0 56.691,-25.357 56.691,-56.693 l 0,-141.73203 c 0,-31.336 -25.357,-56.693 -56.693,-56.693"
|
||||||
|
id="path22"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-opacity:1"
|
||||||
|
sodipodi:nodetypes="csccc" />
|
||||||
|
<g
|
||||||
|
id="g24"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||||
|
transform="matrix(1,0,0,-1,960.01198,512.19516)">
|
||||||
|
<polygon
|
||||||
|
points="-112.787,-177.307 -199.14,-127.453 -112.787,-77.59 "
|
||||||
|
id="polygon26"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Text"
|
||||||
|
style="display:inline;" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 26 KiB |
BIN
osc22/artwork/logo_osc-video_preview.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
osc22/artwork/logos/Admin_logo_Transparent_1659x588.png
Normal file
After Width: | Height: | Size: 218 KiB |
BIN
osc22/artwork/logos/Datto-blue-CMYK.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
osc22/artwork/logos/LMI_Logo_Transparent.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
osc22/artwork/logos/SUSE_Logo-vert_L_Green-pos_sRGB.png
Normal file
After Width: | Height: | Size: 274 KiB |
BIN
osc22/artwork/logos/alma.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
osc22/artwork/logos/fedora.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
osc22/artwork/logos/osc21.png
Normal file
After Width: | Height: | Size: 110 KiB |
BIN
osc22/artwork/logos/shells.png
Normal file
After Width: | Height: | Size: 221 KiB |
19
osc22/artwork/official-logo-monochrome.svg
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg version="1.1" viewBox="0 0 340 220.3" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g transform="translate(-232.86 -406.35)">
|
||||||
|
<path id="Geeko" d="m523.71 442.05c-3.3113-.11926-6.4507 1.0506-8.8499 3.3008-2.3993 2.2502-3.8147 5.2984-3.9147 8.5992-.2297 6.8208 5.1108 12.559 11.916 12.81 3.3095.1 6.4647-1.0698 8.878-3.32 2.4098-2.2607 3.7953-5.3107 3.9006-8.5992.2297-6.819-5.109-12.549-11.93-12.791zm2.0205 13.512c-3.0307 0-5.4791-1.6398-5.4791-3.6498 0-2.0292 2.4484-3.6603 5.4791-3.6603 3.0306 0 5.486 1.6311 5.486 3.6603 0 2.0099-2.4571 3.6498-5.486 3.6498zm28.798 14.729c.0887-.0692.29521-.25105.2683-.41918-.68471-4.2787-7.0592-25.029-11.884-30.019-1.3294-1.3592-2.394-2.6992-4.5495-3.9602-17.454-10.171-58.863-16.309-60.803-16.59 0 0-.19473-.0406-.3297.0912-.1048.10237-.1246.29991-.1246.29991s-.1596 8.5799-.1841 9.5392c-4.2286-1.4206-34.972-11.351-63.791-12.351-24.44-.85939-60.033-4.0198-107.2 24.98l-1.3943.86815c-22.19 13.841-37.51 30.91-45.518 50.739-2.5116 6.2402-5.8895 20.32-2.5414 33.569 1.4417 5.7912 4.1304 11.611 7.7556 16.819 8.194 11.77 21.944 19.58 36.749 20.899 20.904 1.8696 36.733-7.5188 42.363-25.099 3.8708-12.13 0-29.928-14.839-39.008-12.07-7.3908-25.049-5.7106-32.578-.7296-6.5313 4.3303-10.23 11.06-10.165 18.451.1508 13.11 11.444 20.078 19.564 20.099 2.3589 0 4.7284-.41041 7.3995-1.2803.9506-.28939 1.845-.64893 2.8307-1.2593l.3087-.18065.1947-.12978-.065.0386c1.8503-1.261 2.964-3.3113 2.964-5.5106 0-.59981-.084-1.2084-.2561-1.8205-.9593-3.32-4.239-5.3282-7.638-4.7091l-.4595.10874-.6209.18942-.9015.31043c-1.8696.45951-3.2692.49985-3.5691.51038-.9506-.0614-5.6246-1.461-5.6246-6.5805v-.0702c0-1.8801.7542-3.199 1.1698-3.9199 1.454-2.28 5.4352-4.5179 10.814-4.0497 7.0593.61034 12.149 4.2303 15.52 11.06 3.1289 6.349 2.3098 14.159-2.1099 19.88-4.3899 5.6685-12.205 8.0783-22.598 6.9593-10.481-1.1593-19.34-7.1908-24.303-16.579-4.8565-9.1779-5.1213-20.059-.6858-28.418 10.609-20.029 30.649-19.82 41.637-17.921 16.26 2.8202 34.758 17.819 41.319 35.139 1.0593 2.7606 1.5995 4.9494 2.0713 6.9505l.7085 2.9903 18.37 8.9692c.39458.19266.52796.25778.6858.14034.18941-.14093.081-.52966.081-.52966-.114-.4104-.3806-.78924-.805-5.9298-.3491-4.5618-1.0594-17.051 5.2282-23.24 2.4414-2.4186 6.1613-4.5776 9.099-5.2686 12.04-2.9412 26.159-.912 39.507 14.539 6.9102 7.98 10.279 11.619 11.97 13.249 0 0 .38494.36349.5893.53142.22331.1835.36878.33789.6945.51914.55786.31042 22.954 10.621 22.954 10.621s.26534.13182.4612-.11049c.19362-.23953.01-.4788.01-.4788-.1491-.17013-14.199-18.328-11.698-33.279 1.9696-11.909 11.447-10.83 24.558-9.3498 4.2794.49984 9.1516 1.0593 14.196 1.1716 14.084.0895 29.254-2.5115 38.604-6.6015 6.049-2.629 9.9093-4.3794 12.328-6.5787.8699-.72084 1.3207-1.8907 1.7907-3.1499l.3297-.83133c.3911-1.0207.9664-3.171 1.219-4.3496.1017-.51914.2208-1.0274-.2087-1.3592-.39265-.30337-1.2944.24027-1.2944.24027-4.1058 2.4712-14.369 7.1505-23.965 7.3504-11.914.24028-36.054-12.061-38.555-13.36-1.6739-3.9857-3.3458-7.9724-5.0438-11.948 17.27 11.379 31.594 17.668 42.559 18.638 12.207 1.0874 21.723-5.5724 25.853-8.3433.54064-.35944 1.0799-.76184 1.5756-1.1486zm-48.992-16.369c.1753-4.7302 2.1554-9.1201 5.6141-12.34 3.4603-3.2306 7.9747-4.9003 12.708-4.7494 9.7602.34902 17.43 8.5886 17.095 18.338-.1841 4.7302-2.1642 9.1201-5.6141 12.33-3.4603 3.2499-7.9642 4.9196-12.719 4.76-9.7497-.35954-17.411-8.5799-17.084-18.338z" clip-rule="evenodd" fill-rule="evenodd"/>
|
||||||
|
<path d="m376.84 556.36c-7.7836 0-12.065 6.5805-12.065 11.13v5.8403c0 6.6997 5.4738 10.851 10.55 10.851h17.819c2.2449 0 2.7149 1.4697 2.7149 2.7097v3.769c0 .39988-.081 4.0198-2.7149 4.0198h-24.303c-2.4151 0-4.1602 1.6802-4.1602 3.9795v1.0418c0 2.2905 1.7451 3.9602 4.1602 3.9602h25.624c6.698 0 11.02-4.66 11.02-11.879v-6.3016c0-6.7786-4.8705-9.8093-9.7058-9.8093h-17.533c-2.6395 0-3.8356-1.9801-3.8356-3.3797v-3.4796c0-2.1906 1.4644-3.4604 4.0251-3.4604h19.408c2.38 0 4.1707-1.71 4.1707-3.9707v-1.04c0-2.2695-1.8205-3.9813-4.2513-3.9813h-20.922z"/>
|
||||||
|
<path d="m449.7 556.36c-2.301 0-4.1548 1.8696-4.1548 4.1707v29.838c0 2.3905-1.9503 4.311-4.311 4.311h-13.545c-2.3694 0-4.3092-1.9205-4.3092-4.311v-29.838c0-2.3011-1.8696-4.1707-4.1689-4.1707h-1.3101c-2.3344 0-4.1707 1.8416-4.1707 4.1707v30.968c0 7.2101 5.6737 12.44 13.489 12.44h14.485c7.8047 0 13.475-5.2282 13.475-12.44v-30.968c0-2.3291-1.8293-4.1707-4.1602-4.1707h-1.3189z"/>
|
||||||
|
<path d="m475.63 556.36c-7.7801 0-12.074 6.5805-12.074 11.13v5.8403c0 6.6997 5.4843 10.851 10.564 10.851h17.814c2.2485 0 2.7203 1.4697 2.7203 2.7097v3.769c0 .39988-.081 4.0198-2.7203 4.0198h-24.314c-2.4045 0-4.1601 1.6802-4.1601 3.9795v1.0418c0 2.2905 1.7556 3.9602 4.1601 3.9602h25.633c6.6998 0 11.041-4.66 11.041-11.879v-6.3016c0-6.7786-4.8845-9.8093-9.7199-9.8093h-17.533c-2.6466 0-3.8392-1.9801-3.8392-3.3797v-3.4796c0-2.1906 1.4645-3.4604 4.0251-3.4604h19.419c2.3747 0 4.1584-1.71 4.1584-3.9707v-1.04c0-2.2695-1.8188-3.9813-4.2601-3.9813h-20.913z"/>
|
||||||
|
<path d="m516.6 556.36c-2.3098 0-4.0549 1.7118-4.0549 3.9813v39.358c0 2.259 1.7047 3.9602 3.9637 3.9602h31.364c2.4151 0 4.1602-1.6697 4.1602-3.9602v-1.0418c0-2.2993-1.7451-3.9795-4.1602-3.9795h-25.687v-10.02h18.822c2.4098 0 4.1602-1.6907 4.1602-3.9813v-1.04c0-2.3011-1.7504-3.9707-4.1602-3.9707h-18.822v-10.32h24.382c2.4063 0 4.1601-1.6591 4.1601-3.9707v-1.04c0-2.3011-1.7538-3.9813-4.1601-3.9813h-29.968z"/>
|
||||||
|
<g transform="matrix(1.7539 0 0 1.7539 -611.6 -134.13)">
|
||||||
|
<path d="m491.25 404.37c-2.241 0-4.065 1.744-4.065 3.894v8.461c0 2.184 1.765 3.963 3.929 3.963h5.473c2.164 0 3.929-1.779 3.929-3.963v-8.461c0-2.149-1.825-3.894-4.065-3.894h-5.201zm-1.184 12.019v-7.726c0-.906.744-1.647 1.654-1.647h4.264c.89 0 1.648.758 1.648 1.647v7.726c0 .912-.738 1.653-1.648 1.653h-4.296c-.912 0-1.622-.725-1.622-1.653z"/>
|
||||||
|
<path d="m512.91 404.27c-1.578 0-2.768.564-3.723 1.026-.582.279-1.086.52-1.477.52-.177 0-.328-.08-.408-.211l-.364-.696c-.091-.183-.456-.541-.907-.541h-.541c-.52 0-.936.467-.936 1.037v21.461c0 .673.531 1.203 1.203 1.203h.468c.667 0 1.209-.536 1.209-1.203v-7.121c0-.211.137-.439.276-.439.391 0 .895.229 1.477.496.955.439 2.145.98 3.723.98h.505c2.794 0 4.532-1.597 4.532-4.162v-8.192c0-2.526-1.775-4.157-4.532-4.157h-.505zm-5.475 11.952v-7.39c0-1.021.798-1.818 1.818-1.818h3.997c1.021 0 1.818.798 1.818 1.818v7.39c0 1.003-.818 1.818-1.818 1.818h-3.997c-1.001 0-1.818-.815-1.818-1.818z"/>
|
||||||
|
<path d="m526.04 404.37c-2.241 0-4.06 1.744-4.06 3.894v8.398c0 2.178 1.768 4.025 3.854 4.025h5.647c.698 0 1.203-.484 1.203-1.141v-.37c0-.661-.505-1.135-1.203-1.135h-4.639c-1.3 0-1.986-.639-1.986-1.854v-2.457h8.369c1.346 0 2.142-.821 2.142-2.212v-3.256c0-2.149-1.822-3.894-4.054-3.894h-5.273zm-1.183 4.265c0-.907.713-1.619 1.621-1.619h4.396c.906 0 1.613.712 1.613 1.619v2.622h-7.631c.001-.342.001-2.622.001-2.622z"/>
|
||||||
|
<path d="m547 404.27c-1.573 0-2.76.564-3.718 1.021-.596.28-1.105.525-1.521.525-.183 0-.257-.023-.399-.269l-.331-.604c-.19-.382-.513-.575-.949-.575h-.465c-.562 0-.972.438-.972 1.037v14.077c0 .667.527 1.203 1.206 1.203h.465c.667 0 1.211-.542 1.211-1.203v-10.65c0-.998.815-1.818 1.813-1.818h3.999c1.001 0 1.816.82 1.816 1.818v10.65c0 .667.53 1.203 1.203 1.203h.47c.667 0 1.209-.542 1.209-1.203v-11.055c0-2.526-1.776-4.157-4.535-4.157h-.502z"/>
|
||||||
|
</g>
|
||||||
|
<g transform="matrix(1.7539 0 0 1.7539 -611.6 -134.13)">
|
||||||
|
<path d="m667.46 415.23c1.218 0 2.188.99 2.188 2.229 0 1.257-.971 2.237-2.198 2.237-1.218 0-2.208-.98-2.208-2.237 0-1.238.99-2.229 2.208-2.229h.01zm-.01.346c-.98 0-1.782.842-1.782 1.882 0 1.06.802 1.891 1.792 1.891.99.011 1.782-.831 1.782-1.881s-.792-1.892-1.782-1.892h-.01zm-.416 3.179h-.396v-2.485c.208-.03.406-.06.703-.06.377 0 .624.079.772.188.149.108.229.276.229.515 0 .326-.218.524-.485.604v.021c.218.039.366.237.416.604.06.387.118.535.158.614h-.416c-.06-.079-.119-.307-.168-.634-.06-.316-.218-.436-.535-.436h-.277v1.069zm0-1.377h.287c.327 0 .604-.118.604-.426 0-.218-.158-.436-.604-.436-.129 0-.218.01-.287.021v.841z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.7 KiB |
732
osc22/artwork/outro.svg
Normal file
|
@ -0,0 +1,732 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||||
|
sodipodi:docname="outro.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3807">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3809" />
|
||||||
|
<stop
|
||||||
|
id="stop3815"
|
||||||
|
offset="0.2"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.78431374;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.78431374;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3811" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3807"
|
||||||
|
id="linearGradient3813"
|
||||||
|
x1="650"
|
||||||
|
y1="595.07648"
|
||||||
|
x2="1230"
|
||||||
|
y2="595.07648"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(1,0,0,0.99744172,-74.949237,-22.857439)" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3807"
|
||||||
|
id="linearGradient3819"
|
||||||
|
x1="575.05078"
|
||||||
|
y1="570.69666"
|
||||||
|
x2="1155.0508"
|
||||||
|
y2="570.69666"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
spreadMethod="reflect" />
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3807-2"
|
||||||
|
id="linearGradient3819-8"
|
||||||
|
x1="575.05078"
|
||||||
|
y1="570.69666"
|
||||||
|
x2="1155.0508"
|
||||||
|
y2="570.69666"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
spreadMethod="reflect" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3807-2">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3809-5" />
|
||||||
|
<stop
|
||||||
|
id="stop3815-1"
|
||||||
|
offset="0.2"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3811-1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
gradientTransform="matrix(2.3933139,0,0,1,-1291.5105,359.35582)"
|
||||||
|
y2="570.69666"
|
||||||
|
x2="1155.0508"
|
||||||
|
y1="570.69666"
|
||||||
|
x1="575.05078"
|
||||||
|
spreadMethod="reflect"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4017-1"
|
||||||
|
xlink:href="#linearGradient3807-2-2"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3807-2-2">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3809-5-5" />
|
||||||
|
<stop
|
||||||
|
id="stop3815-1-7"
|
||||||
|
offset="0.2"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffffff;stop-opacity:1;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3811-1-0" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
y2="570.69666"
|
||||||
|
x2="1155.0508"
|
||||||
|
y1="570.69666"
|
||||||
|
x1="575.05078"
|
||||||
|
spreadMethod="reflect"
|
||||||
|
gradientTransform="matrix(2.3933139,0,0,1,-842.013,2.87365)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient4510"
|
||||||
|
xlink:href="#linearGradient3807-2-2"
|
||||||
|
inkscape:collect="always" />
|
||||||
|
<filter
|
||||||
|
id="filter4858"
|
||||||
|
inkscape:label="Drop Shadow"
|
||||||
|
width="1.2"
|
||||||
|
color-interpolation-filters="sRGB">
|
||||||
|
<feFlood
|
||||||
|
id="feFlood4860"
|
||||||
|
flood-opacity="0.29666666666666669"
|
||||||
|
flood-color="rgb(255,255,255)"
|
||||||
|
result="flood" />
|
||||||
|
<feComposite
|
||||||
|
id="feComposite4862"
|
||||||
|
in2="SourceGraphic"
|
||||||
|
in="flood"
|
||||||
|
operator="in"
|
||||||
|
result="composite1" />
|
||||||
|
<feGaussianBlur
|
||||||
|
id="feGaussianBlur4864"
|
||||||
|
stdDeviation="2"
|
||||||
|
result="blur" />
|
||||||
|
<feOffset
|
||||||
|
id="feOffset4866"
|
||||||
|
dx="2"
|
||||||
|
dy="2.2000000000000002"
|
||||||
|
result="offset" />
|
||||||
|
<feComposite
|
||||||
|
id="feComposite4868"
|
||||||
|
in2="offset"
|
||||||
|
in="SourceGraphic"
|
||||||
|
operator="over"
|
||||||
|
result="composite2"
|
||||||
|
dy="0" />
|
||||||
|
</filter>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath18">
|
||||||
|
<path
|
||||||
|
d="m 312.117,871.087 c -6.264,-1.72 -10.84,-10.647 -14.167,-15.645 l 0,0 c -4.194,-6.302 -7.979,-12.897 -11.534,-19.58 l 0,0 c -6.794,-12.771 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.658,-134.44 c -34.506,-10.769 -67.49,-29.469 -99.699,-48.874 l 0,0 c 12.812,-37.59 55.526,-58.834 95.24,-58.766 l 0,0 c 0.024,0 0.047,0 0.071,0 l 0,0 c -6.665,-0.282 -13.34,-0.125 -19.96,0.504 l 0,0 c 17.08,-29.328 37.542,-57.811 69.853,-68.2 l 0,0 c 26.039,-8.372 54.524,-0.76 79.568,10.242 l 0,0 c 16.073,7.061 37.811,23.424 50.174,37.459 l 0,0 c -5.443,-6.931 -9.356,-11.85 -9.378,-14.226 l 0,0 c -0.036,-4.022 11.889,-7.249 15.319,-7.836 l 0,0 c 4.537,-0.776 55.479,-8.821 65.762,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.162 l 0,0 c 9.775,1.619 19.405,4.609 27.984,9.637 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.648 -9.272,-36.305 l 0,0 c -0.171,-0.666 -0.311,-1.344 -0.413,-2.024 l 0,0 c -3.39,-22.815 -3.156,-46.468 -3.991,-69.493 l 0,0 c -0.901,-24.858 -1.418,-49.754 -2.83,-74.59 l 0,0 c -0.791,-13.917 -3.767,-27.11 -7.947,-40.362 l 0,0 c -1.785,-5.66 -3.752,-11.282 -5.94,-16.816 l 0,0 c 2.853,8.361 4.713,17.016 5.261,25.851 l 0,0 c 0.555,8.93 -0.352,17.967 -2.745,26.592 l 0,0 c -2.662,9.599 -7.206,18.729 -13.686,26.328 l 0,0 c -1.536,1.801 -2.531,3.044 -3.792,5.045 l 0,0 c -1.313,2.081 -3.691,4.003 -5.535,5.683 l 0,0 c -4.28,3.901 -8.981,7.314 -13.802,10.512 l 0,0 c -8.952,5.937 -18.089,11.527 -28.039,15.555 l 0,0 c -22.597,9.151 -48.915,13.05 -72.999,8.126 l 0,0 c -49.265,-10.074 -94.2,-46.844 -113.089,-93.79 l 0,0 c -7.565,-18.805 -8.616,-45.719 -6.222,-65.756 l 0,0 c 7.2,-60.243 65.422,-100.088 125.514,-108.448 l 0,0 c 24.824,-3.455 52.18,-1.693 76.294,4.869 l 0,0 c 50.617,13.775 89.298,54.937 112.844,99.669 l 0,0 c 2.794,5.307 14.736,24.552 14.675,26.909 l 0,0 c 0.267,-10.318 3.457,-20.545 9.106,-29.184 l 0,0 16.227,92.559 c 1.621,-9.021 7.294,-17.234 15.157,-21.945 l 0,0 0.204,60.905 c 1.41,-9.085 6.602,-14.523 14.491,-19.244 l 0,0 c -4.166,27.38 -4.717,52.34 -2.482,79.945 l 0,0 c 7.063,-4.324 13.65,-8.62 20.658,-10.281 l 0,0 c -3.651,26.792 -12.97,49.694 -16.621,76.487 l 0,0 c 10.534,-8.562 10.319,-10.84 19.664,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.882,-0.923 c -10.728,25.86 -25.45,41.841 -43.486,63.254 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.489 l 0,0 c -14.416,20.027 -33.431,26.496 -56.345,35.655 l 0,0 c 14.572,6.667 21.146,13.146 30.811,25.412 l 0,0 c -25.908,4.436 -43.613,6.974 -69.672,10.409 l 0,0 c 9.984,6.221 25.959,11.735 32.646,23.966 l 0,0 c -23.093,-0.068 -51.514,-1.99 -74.606,-2.058 l 0,0 c 3.118,9.15 16.024,22.056 15.344,33.286 l 0,0 -67.289,-24.136 c -2.029,7.646 4.971,10.282 1.623,31.588 l 0,0 -54.542,-23.538 c 0,6.9 9.282,21.518 5.236,31.248 l 0,0 c -1.052,2.53 -27.624,-18.934 -36.917,-20.788 l 0,0 c 0,0 19.327,52.162 14.75,52.15 l 0,0 c -15.455,-0.042 -33.75,-18.848 -49.058,-21.738 l 0,0 c -3.6,5.947 -6.717,12.18 -9.698,18.456 l 0,0 c -5.957,12.543 -11.32,25.358 -17.137,37.966 l 0,0 c -2.809,6.088 -5.71,12.138 -8.882,18.045 l 0,0 c -2.044,3.808 -3.89,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.531 -9.801,2.531 l 0,0 c -1.401,0 -2.751,-0.155 -3.948,-0.484 m 41.469,-271.97 c -2.238,-1.885 -4.527,-3.722 -6.865,-5.509 l 0,0 c 2.327,1.793 4.616,3.631 6.865,5.509 m 85.349,-45.569 c 0,0 0,0 0,0 M 383.533,241.747 c -16.443,19.302 -23.431,46.211 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.037 39.804,56.683 l 0,0 c 20.808,11.645 47.481,12.699 68.622,1.67 l 0,0 c 21.142,-11.029 35.713,-34.183 35.364,-58.026 l 0,0 c -0.349,-23.843 -16.558,-46.24 -39.055,-54.146 l 0,0 c -13.248,-4.655 -27.77,-4.347 -39.5,3.375 l 0,0 c -11.729,7.722 -19.3,22.583 -15.553,36.117 l 0,0 c 3.746,13.535 19.143,23.26 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.83 14.374,-7.338 l 0,0 c 6.351,-3.339 14.186,-5.411 20.409,0.204 l 0,0 c 2.348,2.119 3.893,5.052 4.395,8.174 l 0,0 c 1.65,10.257 -5.836,19.545 -14.699,22.812 l 0,0 c -6.84,2.521 -14.529,2.26 -21.749,1.25 l 0,0 c -23.7,-3.318 -46.176,-17.837 -57.931,-38.681 l 0,0 c -11.755,-20.845 -11.322,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.479,-17.733 32.216,-21.387 l 0,0 c -16.77,4.192 -32.281,13.594 -43.507,26.771 m 146.601,21.02 c 0.24,0.346 0.478,0.693 0.716,1.042 l 0,0 c -2.094,-3.187 -4.311,-6.295 -6.662,-9.313 l 0,0 c -5.252,-6.741 -11.254,-13.003 -17.851,-18.524 l 0,0 c 9.038,7.807 17.014,17.001 23.797,26.795"
|
||||||
|
id="path20"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath28">
|
||||||
|
<path
|
||||||
|
d="m 314.284,874.024 c -6.264,-1.721 -10.84,-10.648 -14.166,-15.645 l 0,0 c -4.194,-6.302 -7.981,-12.897 -11.535,-19.58 l 0,0 c -6.794,-12.772 -13.065,-25.863 -21.157,-37.891 l 0,0 -14.657,-134.44 c -34.506,-10.769 -67.491,-29.47 -99.701,-48.874 l 0,0 c 12.813,-37.59 55.528,-58.835 95.241,-58.767 l 0,0 c 0.017,0 0.031,0 0.048,0 l 0,0 c -6.659,-0.281 -13.323,-0.124 -19.938,0.505 l 0,0 c 17.081,-29.328 37.544,-57.812 69.854,-68.2 l 0,0 c 26.039,-8.373 54.524,-0.761 79.568,10.242 l 0,0 c 16.072,7.06 37.807,23.42 50.171,37.455 l 0,0 c -5.441,-6.928 -9.354,-11.847 -9.375,-14.223 l 0,0 c -0.036,-4.022 11.889,-7.249 15.32,-7.836 l 0,0 c 4.536,-0.776 55.478,-8.82 65.761,-9.857 l 0,0 c 10.396,-1.048 20.273,-1.879 30.647,-0.161 l 0,0 c 9.774,1.618 19.404,4.608 27.984,9.636 l 0,0 c 9.366,5.488 17.124,13.214 21.752,22.642 l 0,0 c -2.467,-9.581 -5.754,-22.647 -9.272,-36.304 l 0,0 c -0.171,-0.666 -0.312,-1.345 -0.413,-2.025 l 0,0 c -3.39,-22.814 -3.157,-46.467 -3.991,-69.492 l 0,0 c -0.902,-24.859 -1.418,-49.754 -2.83,-74.591 l 0,0 c -0.791,-13.916 -3.768,-27.109 -7.947,-40.362 l 0,0 c -1.785,-5.661 -3.753,-11.284 -5.942,-16.82 l 0,0 c 2.854,8.362 4.714,17.02 5.263,25.856 l 0,0 c 0.554,8.929 -0.353,17.967 -2.745,26.592 l 0,0 c -2.662,9.598 -7.206,18.729 -13.686,26.327 l 0,0 c -1.536,1.801 -3.494,3.382 -4.757,5.383 l 0,0 c -1.312,2.081 -2.726,3.665 -4.57,5.345 l 0,0 c -4.28,3.901 -8.981,7.315 -13.802,10.512 l 0,0 c -8.952,5.938 -18.598,10.791 -28.547,14.819 l 0,0 c -22.597,9.149 -47.586,13.078 -71.67,8.153 l 0,0 c -49.265,-10.074 -95.021,-46.134 -113.91,-93.081 l 0,0 c -7.566,-18.804 -8.616,-45.718 -6.222,-65.755 l 0,0 c 7.2,-60.244 65.422,-100.089 125.514,-108.45 l 0,0 c 24.823,-3.453 52.179,-1.692 76.293,4.87 l 0,0 c 50.618,13.775 89.298,54.937 112.845,99.669 l 0,0 c 2.794,5.306 14.736,24.552 14.675,26.91 l 0,0 c 0.266,-10.318 3.457,-20.545 9.105,-29.185 l 0,0 16.228,92.559 c 1.622,-9.021 7.294,-17.234 15.156,-21.944 l 0,0 0.204,60.905 c 1.411,-9.085 6.603,-14.524 14.491,-19.245 l 0,0 c -4.165,27.381 -4.717,52.34 -2.481,79.945 l 0,0 c 7.063,-4.324 13.65,-8.619 20.657,-10.281 l 0,0 c -3.651,26.793 -12.969,49.695 -16.621,76.488 l 0,0 c 10.535,-8.562 10.321,-10.841 19.665,-11.89 l 0,0 c -3.943,26.189 -16.832,43.539 -29.738,66.666 l 0,0 25.881,-0.924 c -10.726,25.861 -25.449,41.842 -43.485,63.255 l 0,0 c 10.92,0.053 16.559,0.433 26.037,2.488 l 0,0 c -14.416,20.028 -33.431,26.496 -56.345,35.655 l 0,0 c 14.571,6.668 21.146,13.147 30.811,25.413 l 0,0 c -25.908,4.436 -43.613,6.973 -69.673,10.409 l 0,0 c 9.985,6.22 25.961,11.735 32.648,23.966 l 0,0 c -23.094,-0.069 -51.515,-1.991 -74.608,-2.06 l 0,0 c 3.119,9.152 16.025,22.058 15.345,33.287 l 0,0 -67.289,-24.135 c -2.03,7.644 4.971,10.282 1.624,31.588 l 0,0 -54.543,-23.538 c 0,6.899 9.282,21.517 5.235,31.248 l 0,0 c -1.052,2.53 -27.623,-18.935 -36.917,-20.789 l 0,0 c 0,0 19.328,52.162 14.751,52.15 l 0,0 c -15.456,-0.043 -33.751,-18.848 -49.059,-21.737 l 0,0 c -3.6,5.946 -6.717,12.18 -9.697,18.454 l 0,0 c -5.958,12.545 -11.32,25.36 -17.137,37.968 l 0,0 c -2.808,6.086 -5.71,12.137 -8.882,18.045 l 0,0 c -2.044,3.808 -3.889,8.265 -7.717,10.63 l 0,0 c -2.577,1.592 -6.347,2.53 -9.801,2.53 l 0,0 c -1.401,0 -2.752,-0.154 -3.948,-0.483 m 41.469,-271.971 c -2.231,-1.88 -4.511,-3.71 -6.842,-5.492 l 0,0 c 2.319,1.787 4.601,3.62 6.842,5.492 m 85.349,-45.569 c 0,0 0,0 0,0 M 385.7,244.684 c -16.443,19.301 -23.431,46.21 -18.815,71.142 l 0,0 c 4.341,23.447 18.996,45.036 39.804,56.681 l 0,0 c 20.807,11.646 47.481,12.699 68.623,1.672 l 0,0 c 21.141,-11.029 35.712,-34.184 35.362,-58.026 l 0,0 C 510.325,292.31 494.456,269.141 471.96,261.234 l 0,0 c -13.249,-4.656 -28.749,-3.925 -40.478,3.797 l 0,0 c -11.73,7.722 -18.663,22.934 -14.915,36.468 l 0,0 c 3.747,13.534 19.144,23.259 32.574,19.157 l 0,0 c 5.156,-1.575 9.602,-4.831 14.374,-7.339 l 0,0 c 6.352,-3.338 14.186,-5.411 20.41,0.205 l 0,0 c 2.347,2.118 3.891,5.052 4.393,8.173 l 0,0 c 1.651,10.257 -5.876,18.554 -14.739,21.821 l 0,0 c -6.84,2.522 -14.381,2.425 -21.601,1.414 l 0,0 c -23.699,-3.317 -46.283,-17.011 -58.038,-37.854 l 0,0 c -11.755,-20.844 -11.323,-48.644 3.051,-67.777 l 0,0 c 7.968,-10.606 19.481,-17.733 32.218,-21.388 l 0,0 c -16.769,4.192 -32.283,13.595 -43.509,26.773 m 146.6,21.019 c 0.248,0.358 0.494,0.716 0.739,1.075 l 0,0 c -2.1,-3.197 -4.324,-6.317 -6.684,-9.346 l 0,0 c -5.241,-6.727 -11.231,-12.977 -17.813,-18.49 l 0,0 c 9.023,7.8 16.985,16.98 23.758,26.761"
|
||||||
|
id="path30"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1428">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1430"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1436">
|
||||||
|
<path
|
||||||
|
d="m 153.069,874.507 547.722,0 0,-721.1 -547.722,0 0,721.1 z"
|
||||||
|
id="path1438"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,239.82324,731.99097)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1468">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1470" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1472" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1480">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1482"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<radialGradient
|
||||||
|
fx="0"
|
||||||
|
fy="0"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(74.078758,0,0,-59.263008,324.3374,727.64069)"
|
||||||
|
spreadMethod="pad"
|
||||||
|
id="radialGradient1516">
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#ffffff"
|
||||||
|
offset="0"
|
||||||
|
id="stop1518" />
|
||||||
|
<stop
|
||||||
|
style="stop-opacity:1;stop-color:#c4c3c3"
|
||||||
|
offset="1"
|
||||||
|
id="stop1520" />
|
||||||
|
</radialGradient>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1528">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1530"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1560">
|
||||||
|
<path
|
||||||
|
d="m 529.474,574.673 c 6.87,-7.702 13.741,-15.405 20.611,-23.107 l 0,0 c 2.925,-3.279 6.035,-7.149 6.026,-11.402 l 0,0 c -10e-4,-0.461 -0.038,-0.925 -0.116,-1.394 l 0,0 c -0.679,-4.076 -4.235,-6.974 -7.641,-9.312 l 0,0 c -8.134,-5.582 -16.812,-10.954 -24.245,-17.441 l 0,0 c -3.348,-2.922 -15.688,-9.847 -17.856,-11.768 l 0,0 c -10.514,-9.322 -29.698,-8.23 -43.695,-6.992 l 0,0 c -2.978,0.263 -6.376,0.501 -8.544,-1.558 l 0,0 c -1.461,-1.388 -1.959,-3.483 -2.345,-5.461 l 0,0 c -0.541,-2.777 -0.961,-5.706 -0.964,-8.569 l 0,0 c -0.005,-3.924 0.773,-7.721 3.093,-10.826 l 0,0 c 5.5,-7.361 17.621,-6.775 24.515,-0.701 l 0,0 c 3.855,3.397 7.098,8.39 12.216,8.854 l 0,0 c 5.187,0.469 9.462,-4.158 11.606,-8.906 l 0,0 c 2.145,-4.748 3.149,-10.106 6.358,-14.211 l 0,0 c 6.392,-8.178 21.134,-7.2 26.389,1.752 l 0,0 c 1.293,2.202 1.885,4.672 1.889,7.167 l 0,0 c 0.013,7.643 -5.488,15.526 -13.22,16.729 l 0,0 c -0.999,1.438 -1.44,3.117 -1.442,4.842 l 0,0 c -0.002,2.689 1.063,5.487 2.742,7.64 l 0,0 c 2.755,3.534 6.807,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.214 l 0,0 c 2.132,2.238 4.348,4.93 4.35,7.937 l 0,0 c 0,0.269 -0.017,0.54 -0.054,0.814 l 0,0 c -0.28,2.082 -1.645,3.833 -2.959,5.471 l 0,0 c -9.167,11.424 -18.333,22.849 -27.5,34.273 l 0,0 -23.071,-6.074 z"
|
||||||
|
id="path1562"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1646">
|
||||||
|
<path
|
||||||
|
d="m 0,1201.89 853.228,0 L 853.228,0 0,0 0,1201.89 Z"
|
||||||
|
id="path1648"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
clipPathUnits="userSpaceOnUse"
|
||||||
|
id="clipPath1658">
|
||||||
|
<path
|
||||||
|
d="m 444.813,571.047 c 6.832,-7.66 13.665,-15.32 20.499,-22.979 l 0,0 c 3.241,-3.634 6.709,-7.994 5.908,-12.797 l 0,0 c -0.056,-0.338 -0.132,-0.668 -0.226,-0.99 l 0,0 c -0.987,-3.65 -4.29,-6.315 -7.463,-8.492 l 0,0 c -8.135,-5.582 -16.812,-10.954 -24.246,-17.441 l 0,0 c -3.348,-2.922 -15.687,-9.846 -17.855,-11.769 l 0,0 c -10.514,-9.321 -29.699,-8.229 -43.695,-6.992 l 0,0 c -2.979,0.264 -6.375,0.503 -8.543,-1.557 l 0,0 c -0.945,-0.898 -1.487,-2.091 -1.857,-3.358 l 0,0 c -0.178,-0.638 -0.315,-1.291 -0.44,-1.933 l 0,0 c -1.283,-6.581 -1.885,-14.024 2.129,-19.396 l 0,0 c 5.499,-7.36 17.621,-6.774 24.514,-0.7 l 0,0 c 3.856,3.397 7.099,8.391 12.216,8.854 l 0,0 c 5.189,0.47 9.464,-4.158 11.607,-8.906 l 0,0 c 2.144,-4.747 3.15,-10.106 6.357,-14.211 l 0,0 c 6.393,-8.177 21.135,-7.199 26.39,1.752 l 0,0 c 0.57,0.971 1.003,1.993 1.311,3.046 l 0,0 c 2.398,8.633 -3.607,19.267 -12.691,20.68 l 0,0 c -1.621,2.332 -1.772,5.302 -0.964,8.064 l 0,0 c 0.46,1.658 1.268,3.248 2.313,4.588 l 0,0 c 2.754,3.534 6.806,5.762 10.671,8.029 l 0,0 c 15.893,9.322 30.475,20.875 43.186,34.215 l 0,0 c 1.669,1.751 3.39,3.782 4.06,6.024 l 0,0 c 0.225,0.825 0.306,1.678 0.187,2.556 l 0,0 c -0.279,2.082 -1.644,3.832 -2.959,5.47 l 0,0 c -9.166,11.425 -18.334,22.85 -27.5,34.274 l 0,0 -22.909,-6.031 z"
|
||||||
|
id="path1660"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.49497475"
|
||||||
|
inkscape:cx="886.57303"
|
||||||
|
inkscape:cy="508.13531"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1868"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="52"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="true"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"
|
||||||
|
inkscape:snap-bbox-midpoints="true"
|
||||||
|
inkscape:object-paths="false"
|
||||||
|
inkscape:snap-to-guides="true">
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,0"
|
||||||
|
id="guide3017"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,1080"
|
||||||
|
id="guide3019"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="0,0"
|
||||||
|
id="guide3021"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1920,1337.442"
|
||||||
|
id="guide3023"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,25"
|
||||||
|
id="guide3025"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="0,1"
|
||||||
|
position="0,1048"
|
||||||
|
id="guide3027"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="32,0"
|
||||||
|
id="guide3029"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="1888,0"
|
||||||
|
id="guide3031"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
orientation="1,0"
|
||||||
|
position="960,1080"
|
||||||
|
id="guide3819"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
<sodipodi:guide
|
||||||
|
position="801.03138,410.45881"
|
||||||
|
orientation="0,1"
|
||||||
|
id="guide6270"
|
||||||
|
inkscape:locked="false" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Ebene 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,27.63782)">
|
||||||
|
<rect
|
||||||
|
style="fill:#6da741;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="rect3797"
|
||||||
|
width="1920"
|
||||||
|
height="1080"
|
||||||
|
x="0"
|
||||||
|
y="-27.637817" />
|
||||||
|
<g
|
||||||
|
id="ccbysa"
|
||||||
|
inkscape:label="#ccbysa"
|
||||||
|
transform="matrix(1.81654,0,0,1.81654,31.999998,951.0675)">
|
||||||
|
<g
|
||||||
|
inkscape:export-ydpi="300.23013"
|
||||||
|
inkscape:export-xdpi="300.23013"
|
||||||
|
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
|
||||||
|
id="g287"
|
||||||
|
transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)">
|
||||||
|
<path
|
||||||
|
style="fill:#aab2ab"
|
||||||
|
d="m 182.23532,75.39014 114.06396,0.20312 c 1.59375,0 3.01758,-0.23682 3.01758,3.18018 l -0.13965,37.56689 -119.82031,0 0,-37.70654 c 0,-1.68457 0.16309,-3.24365 2.87842,-3.24365 z"
|
||||||
|
nodetypes="ccccccc"
|
||||||
|
id="path3817_2_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)"
|
||||||
|
id="g5908_2_">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
d="m 187.20944,-55.6792 c 0.006,8.68024 -7.02786,15.72095 -15.7081,15.72708 -8.68021,0.005 -15.72205,-7.02786 -15.72708,-15.70804 0,-0.0067 0,-0.01233 0,-0.01904 -0.005,-8.68134 7.02783,-15.72205 15.70807,-15.72711 8.68134,-0.0056 15.72208,7.02789 15.72711,15.70807 0,0.0056 0,0.01233 0,0.01904 z"
|
||||||
|
rx="22.939548"
|
||||||
|
type="arc"
|
||||||
|
cy="264.3577"
|
||||||
|
ry="22.939548"
|
||||||
|
cx="296.35416"
|
||||||
|
id="path5906_2_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="translate(-289.6157,99.0653)"
|
||||||
|
id="g5706_2_">
|
||||||
|
<path
|
||||||
|
d="m 473.88455,-167.54724 c 3.48541,3.48596 5.22839,7.75391 5.22839,12.80273 0,5.04938 -1.7128,9.27148 -5.13834,12.66736 -3.63531,3.5766 -7.93179,5.36432 -12.88947,5.36432 -4.89777,0 -9.11987,-1.77261 -12.6651,-5.31955 -3.54584,-3.54581 -5.31845,-7.78299 -5.31845,-12.71213 0,-4.92859 1.77261,-9.19598 5.31845,-12.80273 3.4552,-3.48651 7.67725,-5.22894 12.6651,-5.22894 5.04829,0 9.31401,1.74243 12.79942,5.22894 z m -23.11798,2.34485 c -2.94675,2.97638 -4.41956,6.46289 -4.41956,10.46234 0,3.99835 1.45828,7.4552 4.37424,10.37067 2.91653,2.9165 6.38849,4.37476 10.41705,4.37476 4.02853,0 7.53018,-1.47281 10.50656,-4.41901 2.8259,-2.73584 4.23941,-6.17706 4.23941,-10.32642 0,-4.11804 -1.43646,-7.61292 -4.30768,-10.48474 -2.87064,-2.87067 -6.34988,-4.30652 -10.43829,-4.30652 -4.08837,0 -7.54638,1.44318 -10.37173,4.32892 z m 7.75449,8.70312 c -0.45032,-0.98163 -1.12433,-1.47223 -2.02325,-1.47223 -1.58914,0 -2.38342,1.06952 -2.38342,3.2085 0,2.13959 0.79428,3.20911 2.38342,3.20911 1.04938,0 1.79895,-0.5213 2.24866,-1.56512 l 2.20276,1.17303 c -1.04993,1.86548 -2.62506,2.79901 -4.72549,2.79901 -1.6199,0 -2.91763,-0.4967 -3.89206,-1.48956 -0.97607,-0.99341 -1.46274,-2.36273 -1.46274,-4.10797 0,-1.71558 0.50229,-3.07709 1.50748,-4.08563 1.00519,-1.00793 2.25705,-1.51251 3.75781,-1.51251 2.22012,0 3.80984,0.87488 4.77081,2.62286 l -2.38398,1.22051 z m 10.36334,0 c -0.45087,-0.98163 -1.11148,-1.47223 -1.98239,-1.47223 -1.62106,0 -2.43213,1.06952 -2.43213,3.2085 0,2.13959 0.81107,3.20911 2.43213,3.20911 1.05103,0 1.78717,-0.5213 2.20724,-1.56512 l 2.25201,1.17303 c -1.04825,1.86548 -2.62119,2.79901 -4.71768,2.79901 -1.61771,0 -2.91263,-0.4967 -3.88647,-1.48956 -0.97217,-0.99341 -1.45938,-2.36273 -1.45938,-4.10797 0,-1.71558 0.49448,-3.07709 1.48288,-4.08563 0.98782,-1.00793 2.24527,-1.51251 3.77347,-1.51251 2.21619,0 3.80368,0.87488 4.76132,2.62286 l -2.431,1.22051 z"
|
||||||
|
id="path5708_2_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
id="path294"
|
||||||
|
d="m 297.29639,74.91064 -116.22951,0 c -1.24658,0 -2.26074,1.01465 -2.26074,2.26123 l 0,39.49561 c 0,0.28174 0.22852,0.51074 0.51025,0.51074 l 119.73,0 c 0.28174,0 0.51074,-0.229 0.51074,-0.51074 l 0,-39.4956 c 0,-1.24659 -1.01416,-2.26124 -2.26074,-2.26124 z m -116.22951,1.02149 116.22951,0 c 0.68359,0 1.23926,0.55615 1.23926,1.23975 0,0 0,15.91943 0,27.41846 l -83.07375,0 c -3.04492,5.50537 -8.91113,9.24365 -15.64355,9.24365 -6.73535,0 -12.6001,-3.73486 -15.64355,-9.24365 l -4.34814,0 c 0,-11.49902 0,-27.41846 0,-27.41846 -2e-5,-0.6836 0.55663,-1.23975 1.24022,-1.23975 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g296"
|
||||||
|
enable-background="new ">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path298"
|
||||||
|
d="m 265.60986,112.8833 c 0.0801,0.15576 0.1875,0.28174 0.32129,0.37842 0.13379,0.0962 0.29004,0.16797 0.46973,0.21436 0.18066,0.0469 0.36719,0.0703 0.55957,0.0703 0.12988,0 0.26953,-0.0107 0.41895,-0.0327 0.14844,-0.0215 0.28809,-0.064 0.41895,-0.12598 0.12988,-0.062 0.23926,-0.14795 0.3252,-0.25684 0.0879,-0.10889 0.13086,-0.24707 0.13086,-0.41553 0,-0.18018 -0.0576,-0.32617 -0.17285,-0.43848 -0.11426,-0.1123 -0.26562,-0.20508 -0.45215,-0.28027 -0.18555,-0.0742 -0.39746,-0.13965 -0.63281,-0.1958 -0.23633,-0.0562 -0.47559,-0.11816 -0.71777,-0.18701 -0.24902,-0.062 -0.49121,-0.13818 -0.72754,-0.22852 -0.23535,-0.0898 -0.44727,-0.20703 -0.63379,-0.3501 -0.18652,-0.14307 -0.33691,-0.32178 -0.45215,-0.53662 -0.11426,-0.21484 -0.17188,-0.47461 -0.17188,-0.7793 0,-0.34277 0.0732,-0.63965 0.21875,-0.8916 0.14648,-0.25195 0.33789,-0.46191 0.57422,-0.63037 0.23535,-0.16797 0.50293,-0.29248 0.80176,-0.37354 0.29785,-0.0806 0.59668,-0.12109 0.89453,-0.12109 0.34863,0 0.68262,0.0391 1.00293,0.11719 0.31934,0.0776 0.60449,0.2041 0.85254,0.37842 0.24902,0.17432 0.44629,0.39697 0.59277,0.66797 0.14551,0.271 0.21875,0.59961 0.21875,0.98535 l -1.42188,0 c -0.0127,-0.19922 -0.0547,-0.36426 -0.125,-0.49463 -0.0713,-0.13086 -0.16602,-0.2334 -0.2832,-0.30859 -0.11816,-0.0742 -0.25293,-0.12744 -0.4043,-0.1582 -0.15234,-0.0312 -0.31738,-0.0469 -0.49707,-0.0469 -0.11719,0 -0.23535,0.0127 -0.35254,0.0371 -0.11816,0.0254 -0.22461,0.0688 -0.32031,0.13086 -0.0967,0.0625 -0.17578,0.14014 -0.2373,0.2334 -0.0615,0.0937 -0.0928,0.21191 -0.0928,0.35498 0,0.13086 0.0244,0.23682 0.0742,0.31738 0.0498,0.0811 0.14844,0.15576 0.29395,0.22412 0.14551,0.0684 0.34766,0.13721 0.60547,0.20557 0.25781,0.0684 0.59473,0.15576 1.01172,0.26123 0.12402,0.0249 0.2959,0.0703 0.5166,0.13574 0.2207,0.0654 0.43945,0.16943 0.65723,0.3125 0.21777,0.14355 0.40527,0.33496 0.56445,0.57422 0.1582,0.23975 0.2373,0.54639 0.2373,0.91992 0,0.30518 -0.0596,0.58838 -0.17773,0.84961 -0.11816,0.26172 -0.29395,0.4873 -0.52734,0.67676 -0.2334,0.19043 -0.52246,0.33789 -0.86719,0.44385 -0.3457,0.10596 -0.74609,0.15869 -1.19922,0.15869 -0.36719,0 -0.72363,-0.0454 -1.06934,-0.13574 -0.34473,-0.0903 -0.65039,-0.23242 -0.91504,-0.42578 -0.26367,-0.19336 -0.47363,-0.43994 -0.62988,-0.73877 -0.15527,-0.29932 -0.22949,-0.65381 -0.22363,-1.06494 l 1.42188,0 c -3e-5,0.22412 0.04,0.41406 0.12106,0.56933 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path300"
|
||||||
|
d="m 273.8667,107.8667 2.49316,6.66406 -1.52246,0 -0.50391,-1.48438 -2.49316,0 -0.52246,1.48438 -1.47461,0 2.52051,-6.66406 1.50293,0 z m 0.084,4.08594 -0.83984,-2.44336 -0.0186,0 -0.86914,2.44336 1.72753,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g302"
|
||||||
|
enable-background="new ">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path304"
|
||||||
|
d="m 239.17821,107.8667 c 0.31738,0 0.60742,0.0283 0.86914,0.084 0.26172,0.0561 0.48633,0.14795 0.67383,0.27539 0.18652,0.12744 0.33203,0.29688 0.43457,0.5083 0.10254,0.21142 0.1543,0.47266 0.1543,0.78369 0,0.33594 -0.0762,0.61523 -0.22949,0.83936 -0.15234,0.22412 -0.37891,0.40723 -0.67773,0.55029 0.41211,0.11816 0.71973,0.3252 0.92285,0.62109 0.20312,0.29589 0.30469,0.65234 0.30469,1.06934 0,0.33594 -0.0654,0.62695 -0.19629,0.87305 -0.13086,0.24561 -0.30762,0.44629 -0.52832,0.60205 -0.22168,0.15576 -0.47461,0.271 -0.75781,0.34521 -0.28418,0.0752 -0.5752,0.1123 -0.875,0.1123 l -3.23633,0 0,-6.66406 3.14159,0 0,1e-5 z m -0.1875,2.69531 c 0.26172,0 0.47656,-0.062 0.64551,-0.18604 0.16797,-0.12451 0.25195,-0.32568 0.25195,-0.60498 0,-0.15527 -0.0283,-0.28271 -0.084,-0.38184 -0.0566,-0.0996 -0.13086,-0.17676 -0.22461,-0.23291 -0.0937,-0.0557 -0.20117,-0.0947 -0.32227,-0.11621 -0.12207,-0.022 -0.24805,-0.0327 -0.37891,-0.0327 l -1.37305,0 0,1.55469 1.48536,0 z m 0.0859,2.82813 c 0.14355,0 0.28027,-0.0137 0.41113,-0.042 0.13086,-0.0278 0.24707,-0.0747 0.34668,-0.13965 0.0996,-0.0654 0.17871,-0.1543 0.23828,-0.26611 0.0596,-0.11181 0.0889,-0.25488 0.0889,-0.4292 0,-0.3418 -0.0967,-0.58594 -0.29004,-0.73193 -0.19336,-0.14599 -0.44922,-0.21924 -0.7666,-0.21924 l -1.59961,0 0,1.82812 1.57129,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path306"
|
||||||
|
d="m 241.88914,107.8667 1.64355,0 1.56055,2.63184 1.55078,-2.63184 1.63379,0 -2.47363,4.10645 0,2.55762 -1.46875,0 0,-2.59473 -2.44629,-4.06934 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)"
|
||||||
|
id="g6316_1_">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
d="m -175.0083,-139.1153 c 0.006,9.4118 -7.61725,17.04779 -17.02982,17.05481 -9.41101,0.007 -17.047,-7.61725 -17.05481,-17.02979 0,-0.008 0,-0.0172 0,-0.025 -0.006,-9.41254 7.6188,-17.047 17.02982,-17.05481 9.41257,-0.007 17.04855,7.61804 17.05481,17.02985 0,0.009 0,0.0164 0,0.025 z"
|
||||||
|
rx="29.209877"
|
||||||
|
type="arc"
|
||||||
|
cy="252.08646"
|
||||||
|
ry="29.209877"
|
||||||
|
cx="475.97119"
|
||||||
|
id="path6318_1_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="translate(-23.9521,-89.72962)"
|
||||||
|
id="g6320_1_">
|
||||||
|
<path
|
||||||
|
d="m -168.2204,-68.05536 c -5.17194,0 -9.54852,1.80469 -13.13135,5.41333 -3.67661,3.73444 -5.51413,8.1532 -5.51413,13.25635 0,5.10315 1.83752,9.49152 5.51413,13.1626 3.67502,3.67194 8.05316,5.50787 13.13135,5.50787 5.14066,0 9.59537,-1.85156 13.36728,-5.55475 3.55005,-3.51562 5.3266,-7.88831 5.3266,-13.11572 0,-5.22662 -1.8078,-9.64697 -5.42191,-13.25635 -3.61407,-3.60864 -8.03756,-5.41333 -13.27197,-5.41333 z m 0.0469,3.36017 c 4.23752,0 7.836,1.49298 10.79697,4.48053 2.98907,2.9563 4.48441,6.56567 4.48441,10.82898 0,4.29382 -1.46252,7.85712 -4.39224,10.68915 -3.08438,3.04926 -6.71411,4.57349 -10.88913,4.57349 -4.17505,0 -7.7735,-1.5094 -10.79541,-4.52661 -3.02188,-3.01953 -4.53284,-6.59692 -4.53284,-10.73602 0,-4.13831 1.52658,-7.74847 4.57971,-10.82898 2.92815,-2.98756 6.51098,-4.48054 10.74853,-4.48054 z"
|
||||||
|
id="path6322_1_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m -176.49548,-52.02087 c 0.74377,-4.69769 4.05161,-7.20862 8.1954,-7.20862 5.96097,0 9.59225,4.32501 9.59225,10.09229 0,5.62738 -3.86411,9.99927 -9.686,9.99927 -4.00473,0 -7.58914,-2.46484 -8.24228,-7.30084 l 4.70319,0 c 0.14062,2.51099 1.77032,3.39459 4.09845,3.39459 2.65317,0 4.37817,-2.4649 4.37817,-6.23291 0,-3.95233 -1.49063,-6.04535 -4.28598,-6.04535 -2.04846,0 -3.8172,0.74457 -4.19064,3.30157 l 1.36874,-0.007 -3.70316,3.7016 -3.7016,-3.7016 1.47346,0.007 z"
|
||||||
|
id="path6324_1_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g313">
|
||||||
|
<circle
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="circle315"
|
||||||
|
r="10.8064"
|
||||||
|
cy="90.224609"
|
||||||
|
cx="242.56226" />
|
||||||
|
<g
|
||||||
|
id="g317">
|
||||||
|
<path
|
||||||
|
id="path319"
|
||||||
|
d="m 245.68994,87.09766 c 0,-0.4165 -0.33789,-0.75342 -0.75391,-0.75342 l -4.77246,0 c -0.41602,0 -0.75391,0.33691 -0.75391,0.75342 l 0,4.77295 1.33105,0 0,5.65234 3.61719,0 0,-5.65234 1.33203,0 0,-4.77295 1e-5,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<circle
|
||||||
|
id="circle321"
|
||||||
|
r="1.63232"
|
||||||
|
cy="84.083008"
|
||||||
|
cx="242.5498" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
style="clip-rule:evenodd;fill-rule:evenodd"
|
||||||
|
id="path323"
|
||||||
|
d="m 242.53467,78.31836 c -3.23145,0 -5.96826,1.12744 -8.20752,3.38379 -2.29785,2.33301 -3.44629,5.09521 -3.44629,8.28418 0,3.18897 1.14844,5.93213 3.44629,8.22705 2.29785,2.29443 5.03418,3.44189 8.20752,3.44189 3.21289,0 5.99805,-1.15674 8.35352,-3.47168 2.2207,-2.19678 3.33008,-4.92969 3.33008,-8.19727 0,-3.26758 -1.12891,-6.02881 -3.3877,-8.28418 -2.25879,-2.25634 -5.02442,-3.38378 -8.2959,-3.38378 z m 0.0293,2.09961 c 2.64844,0 4.89746,0.93359 6.74707,2.80078 1.87012,1.84717 2.80469,4.10352 2.80469,6.76758 0,2.68359 -0.91504,4.91113 -2.74609,6.68066 -1.92773,1.90576 -4.19629,2.8584 -6.80566,2.8584 -2.60937,0 -4.8584,-0.94287 -6.74658,-2.82959 -1.88965,-1.88623 -2.8335,-4.12256 -2.8335,-6.70947 0,-2.58643 0.9541,-4.84229 2.8623,-6.76758 1.83057,-1.86719 4.07031,-2.80078 6.71777,-2.80078 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="line"
|
||||||
|
width="1325.7142"
|
||||||
|
height="3"
|
||||||
|
x="295.14285"
|
||||||
|
y="763.93365" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none"
|
||||||
|
x="989.0517"
|
||||||
|
y="842.97003"
|
||||||
|
id="text"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3895"
|
||||||
|
x="989.0517"
|
||||||
|
y="842.97003"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:45px;line-height:125%;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1">More Recordings available on media.ccc.de</tspan></text>
|
||||||
|
<g
|
||||||
|
id="g10921"
|
||||||
|
transform="matrix(0.64941813,0,0,0.64941813,-14.539683,262.95618)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31813714;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 521.39144,236.24008 0,318.11746 10.90768,0 c 0.5987,-1.54888 2.07347,-2.65098 3.8384,-2.65098 l 23.52743,0 c 1.76493,0 3.23968,1.1021 3.8384,2.65098 l 10.90767,0 212.07831,0 10.90767,0 c 0.5987,-1.54888 2.07347,-2.65098 3.8384,-2.65098 l 23.52743,0 c 1.76492,0 3.2397,1.1021 3.8384,2.65098 l 10.90767,0 0,-318.11746 -10.60391,0 0,1.16007 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-1.16007 -10.60391,0 -212.07831,0 -10.60391,0 0,1.16007 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-1.16007 z m 14.74608,29.16077 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14188 l 0,15.57504 c 0,2.29468 -1.8474,4.14188 -4.14216,4.14188 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14188 l 0,-15.57504 c 0,-2.29468 1.8474,-4.14188 4.14216,-4.14188 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14188 l 0,15.57504 c 0,2.29468 -1.8474,4.14188 -4.14216,4.14188 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14188 l 0,-15.57504 c 0,-2.29468 1.84741,-4.14188 4.14216,-4.14188 z m -265.09788,47.71761 23.52743,0 c 2.29476,0 4.14216,1.84721 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29468 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.84721 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29468 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29476,0 4.14216,1.84721 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29475,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29468 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.84721 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29468 1.84741,-4.14189 4.14216,-4.14189 z"
|
||||||
|
id="rect817-2"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#061c2a;fill-opacity:1;stroke:none;stroke-width:1.49999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 521.39144,230.93812 0,318.11746 10.90768,0 c 0.5987,-1.54958 2.07347,-2.65098 3.8384,-2.65098 l 23.52743,0 c 1.76493,0 3.23968,1.1014 3.8384,2.65098 l 10.90767,0 212.07831,0 10.90767,0 c 0.5987,-1.54817 2.07347,-2.65098 3.8384,-2.65098 l 23.52743,0 c 1.76492,0 3.2397,1.10281 3.8384,2.65098 l 10.90767,0 0,-318.11746 -10.60391,0 0,1.16007 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-1.16007 -10.60391,0 -212.07831,0 -10.60391,0 0,1.16007 c 0,2.29469 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-1.16007 z m 14.74608,29.16077 23.52743,0 c 2.29475,0 4.14216,1.8465 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29539 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8465 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29539 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29469 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.8472 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.8474,-4.14189 4.14216,-4.14189 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14189 l 0,15.57503 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57503 c 0,-2.29469 1.84741,-4.14189 4.14216,-4.14189 z m -265.09788,47.71762 23.52743,0 c 2.29475,0 4.14216,1.8472 4.14216,4.14188 l 0,15.57504 c 0,2.29468 -1.84741,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29476,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57504 c 0,-2.29468 1.8474,-4.14188 4.14216,-4.14188 z m 265.09788,0 23.52743,0 c 2.29476,0 4.14216,1.8472 4.14216,4.14188 l 0,15.57504 c 0,2.29468 -1.8474,4.14189 -4.14216,4.14189 l -23.52743,0 c -2.29474,0 -4.14216,-1.84721 -4.14216,-4.14189 l 0,-15.57504 c 0,-2.29468 1.84741,-4.14188 4.14216,-4.14188 z"
|
||||||
|
id="rect1349"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-9-4-0"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15286"
|
||||||
|
x="585.01544"
|
||||||
|
y="482.78079"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-9-3"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15286"
|
||||||
|
x="585.01544"
|
||||||
|
y="323.72119"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-6"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15285"
|
||||||
|
x="585.01544"
|
||||||
|
y="164.66418"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15285"
|
||||||
|
x="585.01544"
|
||||||
|
y="159.36223"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#73ba25;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-9"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15286"
|
||||||
|
x="585.01544"
|
||||||
|
y="318.41922"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect1059-9-4"
|
||||||
|
width="190.87047"
|
||||||
|
height="143.15286"
|
||||||
|
x="585.01544"
|
||||||
|
y="477.47882"
|
||||||
|
ry="0" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.14482522;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 680.45017,505.75626 a 45.9503,45.9503 0 0 0 -45.9503,45.9503 45.9503,45.9503 0 0 0 45.9503,45.9503 45.9503,45.9503 0 0 0 45.9503,-45.9503 45.9503,45.9503 0 0 0 -45.9503,-45.9503 z m -13.25489,24.74247 37.1137,21.20783 -37.1137,21.20783 z"
|
||||||
|
id="path1671"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path819"
|
||||||
|
d="m 680.47646,339.68976 c -16.32415,0 -31.72807,7.55847 -41.76281,20.42738 6.47048,1.72702 11.05018,3.21299 12.42175,3.6732 0.0212,-0.83771 0.16104,-8.36366 0.16104,-8.36366 0,0 0.017,-0.17674 0.11028,-0.2545 0.11778,-0.12725 0.28956,-0.12725 0.28956,-0.12725 1.70184,0.2545 38.02695,5.62786 53.33818,14.54433 1.89087,1.10281 2.8242,2.28197 3.99039,3.47314 4.23247,4.37518 9.82505,22.56796 10.42571,26.31892 0.0247,0.14845 -0.15863,0.31812 -0.23639,0.36053 l -0.002,0 c -0.43477,0.33933 -0.90844,0.68572 -1.38267,0.99677 -3.62299,2.43042 -11.96947,8.26893 -22.67786,7.31529 -9.61885,-0.84832 -22.18571,-6.36447 -37.33552,-16.34134 1.48955,3.48515 2.95717,6.98232 4.42558,10.47667 2.19395,1.13956 23.37008,11.92304 33.82145,11.71308 8.41791,-0.17673 17.42101,-4.27903 21.02275,-6.44506 0,0 0.79148,-0.47364 1.13596,-0.21208 0.37672,0.28984 0.27726,0.74298 0.1833,1.18976 -0.21674,1.02929 -0.72605,2.91678 -1.06916,3.81317 l -0.28956,0.73167 c -0.41228,1.10139 -0.80802,2.12927 -1.57114,2.76197 -2.12175,1.92779 -5.50824,3.46111 -10.81463,5.76782 -8.20212,3.58483 -21.50933,5.86608 -33.86428,5.7862 -4.42512,-0.12724 -8.70028,-0.59382 -12.45431,-1.02858 -7.70409,-0.86952 -13.97253,-1.57433 -17.79483,1.18976 10.05468,11.54837 24.61281,18.18925 39.92953,18.2147 29.29858,0 53.04955,-23.73863 53.04861,-53.02099 -6.2e-4,-29.28165 -23.75113,-53.01816 -53.04861,-53.01816 z m 11.83238,30.76408 c -4.15222,-0.14139 -8.11156,1.33044 -11.14704,4.1638 -3.0341,2.82276 -4.77038,6.67198 -4.92416,10.81812 -0.2868,8.55523 6.43389,15.76378 14.98664,16.07977 4.17107,0.13432 8.12182,-1.32407 11.1573,-4.1737 3.02637,-2.81498 4.76266,-6.66421 4.92416,-10.81034 0.2938,-8.54887 -6.43494,-15.77226 -14.9969,-16.07765 z m -0.13022,4.57453 c 5.98361,0.21207 10.66832,5.23692 10.46681,11.2147 -0.0923,2.88285 -1.30929,5.55504 -3.42324,7.53797 -2.11703,1.97233 -4.88397,2.99878 -7.78718,2.91113 -5.96973,-0.23329 -10.65462,-5.24894 -10.45311,-11.22955 0.088,-2.89487 1.3288,-5.56706 3.43353,-7.53938 2.10467,-1.97445 4.8584,-2.99879 7.76319,-2.89487 z m 1.7733,5.43768 c -2.65862,0 -4.80593,1.42941 -4.80593,3.20875 0,1.76237 2.14731,3.20026 4.80593,3.20026 2.65705,0 4.8128,-1.4393 4.8128,-3.20026 0,-1.77934 -2.15426,-3.20875 -4.8128,-3.20875 z"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23640315;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 680.44906,180.72364 c -29.27979,0 -53.01797,23.73792 -53.01797,53.02099 a 53.021201,53.021201 0 0 0 3.46499,18.79225 c 0.77673,-2.03383 1.66777,-4.01888 2.79075,-5.88305 0.57176,-0.95435 1.20067,-1.86982 1.62031,-2.89062 0.42076,-1.02858 0.61488,-2.18158 0.29344,-3.23985 -0.18345,-0.60796 -0.52864,-1.14523 -0.90186,-1.64997 -0.37432,-0.50899 -0.78427,-0.98617 -1.12515,-1.51636 -0.8673,-1.34458 -1.26539,-3.00091 -1.03993,-4.58514 0.2265,-1.58493 1.08093,-3.08432 2.36897,-4.03585 1.1478,-0.84831 2.59766,-1.23005 4.03026,-1.17562 a 7.184562,7.184562 0 0 1 1.41318,0.20501 c 1.85115,0.44537 3.4844,1.60756 4.69585,3.07372 1.50165,1.82388 2.38407,4.13058 2.59982,6.48112 0.21794,2.35194 -0.21569,4.74772 -1.12407,6.92647 -1.62894,3.90437 -4.70556,7.05726 -6.39922,10.93405 -1.38298,3.16704 -1.77995,6.69956 -1.59118,10.15149 0.0255,0.31811 0.0693,0.63623 0.0976,0.96495 a 53.021201,53.021201 0 0 0 14.80171,13.00676 72.093737,72.093737 0 0 1 -0.52638,-8.63088 c 0.007,-2.29539 0.12407,-4.58513 0.3452,-6.85012 -1.39484,-0.96496 -2.66131,-2.08261 -3.55992,-3.50919 -1.59874,-2.54282 -1.90079,-5.76076 -1.24274,-8.69168 0.65807,-2.93092 2.21146,-5.60099 4.07773,-7.95435 3.07879,-3.8775 7.10042,-7.01555 11.59454,-9.09392 -0.12951,-0.17673 -0.25888,-0.36053 -0.36675,-0.50899 -1.65482,-2.67854 -2.63218,-5.76499 -2.86951,-8.90516 -0.2417,-3.17552 0.25887,-6.35599 0.46925,-9.53292 0.151,-2.21622 0.1597,-4.43315 0.28907,-6.65078 0.151,-2.56403 0.46381,-5.13088 1.18339,-7.59664 0.26107,-0.89073 0.58032,-1.7857 1.08739,-2.56686 a 5.728232,5.728232 0 0 1 2.43046,-2.10806 c 1.11868,-0.44536 2.09065,-0.54433 3.17157,-0.36053 0.90398,0.19087 1.74004,0.6433 2.47252,1.20743 0.73358,0.56554 1.36681,1.24419 1.96552,1.949 a 29.84398,29.84398 0 0 1 4.24384,6.60978 14.604295,14.604295 0 0 1 4.46609,0 29.798672,29.798672 0 0 1 4.246,-6.61049 c 0.59764,-0.71046 1.23303,-1.38628 1.96551,-1.95041 0.73358,-0.56554 1.56852,-1.01797 2.47361,-1.20531 a 5.1856141,5.1856141 0 0 1 3.1899,0.36053 5.7347047,5.7347047 0 0 1 2.43045,2.11442 c 0.50694,0.77409 0.82636,1.66765 1.0874,2.56191 0.71842,2.46506 1.03134,5.03262 1.18232,7.59452 0.12951,2.21834 0.14018,4.44163 0.29118,6.65573 0.21038,3.17834 0.71524,6.35386 0.4747,9.52868 a 19.854634,19.854634 0 0 1 -2.87814,8.90728 c -0.12951,0.19794 -0.28694,0.38882 -0.42069,0.59382 1.00758,1.13462 2.44555,2.09887 3.6721,2.51101 a 7.9979494,7.9979494 0 0 0 4.28701,0.16966 6.7498206,6.7498206 0 0 0 2.18341,-0.92254 5.124125,5.124125 0 0 0 1.62354,-1.70935 c 0.48545,-0.84831 0.67964,-1.83306 0.78755,-2.81004 0.27507,-2.48979 0,-5.00504 -0.20501,-7.50121 -0.14018,-1.62027 -0.25343,-3.26883 0.10993,-4.85447 0.24601,-1.07311 0.72711,-2.1229 1.53186,-2.87224 a 4.5221749,4.5221749 0 0 1 1.90077,-1.03919 5.3657674,5.3657674 0 0 1 2.16832,-0.11311 c 1.55342,0.23329 3.00759,1.11554 3.87491,2.42194 0.49302,0.74227 0.79287,1.59977 0.97303,2.47354 0.17906,0.86952 0.24495,1.76378 0.29344,2.6531 0.16825,3.11048 0.16182,6.2245 0.0753,9.33922 -0.0721,2.71884 -0.2265,5.51262 -1.31394,8.00454 -1.39807,3.19814 -4.21365,5.58614 -7.25467,7.30115 a 28.838573,28.838573 0 0 1 -6.48985,2.65381 c 1.9709,6.29165 2.9968,13.25348 2.9968,20.31356 a 71.971834,71.971834 0 0 1 -0.55013,8.69309 53.019049,53.019049 0 0 0 26.10606,-45.60885 c -0.003,-29.28377 -23.74137,-53.02099 -53.02116,-53.02099 z m -14.82868,65.35758 0,6.06544 a 7.6883448,7.6883448 0 0 1 4.43048,1.48101 7.1068911,7.1068911 0 0 1 2.27404,2.78389 c 0.49619,1.10563 0.67957,2.35477 0.47463,3.54877 a 6.1057992,6.1057992 0 0 1 -1.35708,2.89629 6.734718,6.734718 0 0 1 -2.59982,1.87265 7.1090487,7.1090487 0 0 1 -3.22227,0.50192 l 0,15.25903 31.74369,-17.21228 -31.74477,-17.19531 z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.15259878"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:220.47531128px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.77969539"
|
||||||
|
x="987.96375"
|
||||||
|
y="383.42517"
|
||||||
|
id="text1624"><tspan
|
||||||
|
id="tspan1622"
|
||||||
|
x="987.96375"
|
||||||
|
y="383.42517"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-family:'Open Sans Condensed';-inkscape-font-specification:'Open Sans Condensed, Bold Condensed';fill:#ffffff;fill-opacity:1;stroke-width:0.77969539">Video</tspan></text>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:252.85043335px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.89418781"
|
||||||
|
x="980.6311"
|
||||||
|
y="580.48383"
|
||||||
|
id="text1628"><tspan
|
||||||
|
id="tspan1626"
|
||||||
|
x="980.6311"
|
||||||
|
y="580.48383"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';fill:#ffffff;fill-opacity:1;stroke-width:0.89418781">Team</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g5758"
|
||||||
|
transform="matrix(0.51253329,0,0,0.51253329,1599.4973,-209.0269)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
d="m 523.71,442.05 c -3.3113,-0.11926 -6.4507,1.0506 -8.8499,3.3008 -2.3993,2.2502 -3.8147,5.2984 -3.9147,8.5992 -0.2297,6.8208 5.1108,12.559 11.916,12.81 3.3095,0.1 6.4647,-1.0698 8.878,-3.32 2.4098,-2.2607 3.7953,-5.3107 3.9006,-8.5992 0.2297,-6.819 -5.109,-12.549 -11.93,-12.791 z m 2.0205,13.512 c -3.0307,0 -5.4791,-1.6398 -5.4791,-3.6498 0,-2.0292 2.4484,-3.6603 5.4791,-3.6603 3.0306,0 5.486,1.6311 5.486,3.6603 0,2.0099 -2.4571,3.6498 -5.486,3.6498 z m 28.798,14.729 c 0.0887,-0.0692 0.29521,-0.25105 0.2683,-0.41918 -0.68471,-4.2787 -7.0592,-25.029 -11.884,-30.019 -1.3294,-1.3592 -2.394,-2.6992 -4.5495,-3.9602 -17.454,-10.171 -58.863,-16.309 -60.803,-16.59 0,0 -0.19473,-0.0406 -0.3297,0.0912 -0.1048,0.10237 -0.1246,0.29991 -0.1246,0.29991 0,0 -0.1596,8.5799 -0.1841,9.5392 -4.2286,-1.4206 -34.972,-11.351 -63.791,-12.351 -24.44,-0.85939 -60.033,-4.0198 -107.2,24.98 l -1.3943,0.86815 c -22.19,13.841 -37.51,30.91 -45.518,50.739 -2.5116,6.2402 -5.8895,20.32 -2.5414,33.569 1.4417,5.7912 4.1304,11.611 7.7556,16.819 8.194,11.77 21.944,19.58 36.749,20.899 20.904,1.8696 36.733,-7.5188 42.363,-25.099 3.8708,-12.13 0,-29.928 -14.839,-39.008 -12.07,-7.3908 -25.049,-5.7106 -32.578,-0.7296 -6.5313,4.3303 -10.23,11.06 -10.165,18.451 0.1508,13.11 11.444,20.078 19.564,20.099 2.3589,0 4.7284,-0.41041 7.3995,-1.2803 0.9506,-0.28939 1.845,-0.64893 2.8307,-1.2593 l 0.3087,-0.18065 0.1947,-0.12978 -0.065,0.0386 c 1.8503,-1.261 2.964,-3.3113 2.964,-5.5106 0,-0.59981 -0.084,-1.2084 -0.2561,-1.8205 -0.9593,-3.32 -4.239,-5.3282 -7.638,-4.7091 l -0.4595,0.10874 -0.6209,0.18942 -0.9015,0.31043 c -1.8696,0.45951 -3.2692,0.49985 -3.5691,0.51038 -0.9506,-0.0614 -5.6246,-1.461 -5.6246,-6.5805 l 0,-0.0702 c 0,-1.8801 0.7542,-3.199 1.1698,-3.9199 1.454,-2.28 5.4352,-4.5179 10.814,-4.0497 7.0593,0.61034 12.149,4.2303 15.52,11.06 3.1289,6.349 2.3098,14.159 -2.1099,19.88 -4.3899,5.6685 -12.205,8.0783 -22.598,6.9593 -10.481,-1.1593 -19.34,-7.1908 -24.303,-16.579 -4.8565,-9.1779 -5.1213,-20.059 -0.6858,-28.418 10.609,-20.029 30.649,-19.82 41.637,-17.921 16.26,2.8202 34.758,17.819 41.319,35.139 1.0593,2.7606 1.5995,4.9494 2.0713,6.9505 l 0.7085,2.9903 18.37,8.9692 c 0.39458,0.19266 0.52796,0.25778 0.6858,0.14034 0.18941,-0.14093 0.081,-0.52966 0.081,-0.52966 -0.114,-0.4104 -0.3806,-0.78924 -0.805,-5.9298 -0.3491,-4.5618 -1.0594,-17.051 5.2282,-23.24 2.4414,-2.4186 6.1613,-4.5776 9.099,-5.2686 12.04,-2.9412 26.159,-0.912 39.507,14.539 6.9102,7.98 10.279,11.619 11.97,13.249 0,0 0.38494,0.36349 0.5893,0.53142 0.22331,0.1835 0.36878,0.33789 0.6945,0.51914 0.55786,0.31042 22.954,10.621 22.954,10.621 0,0 0.26534,0.13182 0.4612,-0.11049 0.19362,-0.23953 0.01,-0.4788 0.01,-0.4788 -0.1491,-0.17013 -14.199,-18.328 -11.698,-33.279 1.9696,-11.909 11.447,-10.83 24.558,-9.3498 4.2794,0.49984 9.1516,1.0593 14.196,1.1716 14.084,0.0895 29.254,-2.5115 38.604,-6.6015 6.049,-2.629 9.9093,-4.3794 12.328,-6.5787 0.8699,-0.72084 1.3207,-1.8907 1.7907,-3.1499 l 0.3297,-0.83133 c 0.3911,-1.0207 0.9664,-3.171 1.219,-4.3496 0.1017,-0.51914 0.2208,-1.0274 -0.2087,-1.3592 -0.39265,-0.30337 -1.2944,0.24027 -1.2944,0.24027 -4.1058,2.4712 -14.369,7.1505 -23.965,7.3504 -11.914,0.24028 -36.054,-12.061 -38.555,-13.36 -1.6739,-3.9857 -3.3458,-7.9724 -5.0438,-11.948 17.27,11.379 31.594,17.668 42.559,18.638 12.207,1.0874 21.723,-5.5724 25.853,-8.3433 0.54064,-0.35944 1.0799,-0.76184 1.5756,-1.1486 z m -48.992,-16.369 c 0.1753,-4.7302 2.1554,-9.1201 5.6141,-12.34 3.4603,-3.2306 7.9747,-4.9003 12.708,-4.7494 9.7602,0.34902 17.43,8.5886 17.095,18.338 -0.1841,4.7302 -2.1642,9.1201 -5.6141,12.33 -3.4603,3.2499 -7.9642,4.9196 -12.719,4.76 -9.7497,-0.35954 -17.411,-8.5799 -17.084,-18.338 z"
|
||||||
|
id="Geeko"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd" />
|
||||||
|
<path
|
||||||
|
id="path5761"
|
||||||
|
d="m 376.84,556.36 c -7.7836,0 -12.065,6.5805 -12.065,11.13 l 0,5.8403 c 0,6.6997 5.4738,10.851 10.55,10.851 l 17.819,0 c 2.2449,0 2.7149,1.4697 2.7149,2.7097 l 0,3.769 c 0,0.39988 -0.081,4.0198 -2.7149,4.0198 l -24.303,0 c -2.4151,0 -4.1602,1.6802 -4.1602,3.9795 l 0,1.0418 c 0,2.2905 1.7451,3.9602 4.1602,3.9602 l 25.624,0 c 6.698,0 11.02,-4.66 11.02,-11.879 l 0,-6.3016 c 0,-6.7786 -4.8705,-9.8093 -9.7058,-9.8093 l -17.533,0 c -2.6395,0 -3.8356,-1.9801 -3.8356,-3.3797 l 0,-3.4796 c 0,-2.1906 1.4644,-3.4604 4.0251,-3.4604 l 19.408,0 c 2.38,0 4.1707,-1.71 4.1707,-3.9707 l 0,-1.04 c 0,-2.2695 -1.8205,-3.9813 -4.2513,-3.9813 l -20.922,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5763"
|
||||||
|
d="m 449.7,556.36 c -2.301,0 -4.1548,1.8696 -4.1548,4.1707 l 0,29.838 c 0,2.3905 -1.9503,4.311 -4.311,4.311 l -13.545,0 c -2.3694,0 -4.3092,-1.9205 -4.3092,-4.311 l 0,-29.838 c 0,-2.3011 -1.8696,-4.1707 -4.1689,-4.1707 l -1.3101,0 c -2.3344,0 -4.1707,1.8416 -4.1707,4.1707 l 0,30.968 c 0,7.2101 5.6737,12.44 13.489,12.44 l 14.485,0 c 7.8047,0 13.475,-5.2282 13.475,-12.44 l 0,-30.968 c 0,-2.3291 -1.8293,-4.1707 -4.1602,-4.1707 l -1.3189,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5765"
|
||||||
|
d="m 475.63,556.36 c -7.7801,0 -12.074,6.5805 -12.074,11.13 l 0,5.8403 c 0,6.6997 5.4843,10.851 10.564,10.851 l 17.814,0 c 2.2485,0 2.7203,1.4697 2.7203,2.7097 l 0,3.769 c 0,0.39988 -0.081,4.0198 -2.7203,4.0198 l -24.314,0 c -2.4045,0 -4.1601,1.6802 -4.1601,3.9795 l 0,1.0418 c 0,2.2905 1.7556,3.9602 4.1601,3.9602 l 25.633,0 c 6.6998,0 11.041,-4.66 11.041,-11.879 l 0,-6.3016 c 0,-6.7786 -4.8845,-9.8093 -9.7199,-9.8093 l -17.533,0 c -2.6466,0 -3.8392,-1.9801 -3.8392,-3.3797 l 0,-3.4796 c 0,-2.1906 1.4645,-3.4604 4.0251,-3.4604 l 19.419,0 c 2.3747,0 4.1584,-1.71 4.1584,-3.9707 l 0,-1.04 c 0,-2.2695 -1.8188,-3.9813 -4.2601,-3.9813 l -20.913,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5767"
|
||||||
|
d="m 516.6,556.36 c -2.3098,0 -4.0549,1.7118 -4.0549,3.9813 l 0,39.358 c 0,2.259 1.7047,3.9602 3.9637,3.9602 l 31.364,0 c 2.4151,0 4.1602,-1.6697 4.1602,-3.9602 l 0,-1.0418 c 0,-2.2993 -1.7451,-3.9795 -4.1602,-3.9795 l -25.687,0 0,-10.02 18.822,0 c 2.4098,0 4.1602,-1.6907 4.1602,-3.9813 l 0,-1.04 c 0,-2.3011 -1.7504,-3.9707 -4.1602,-3.9707 l -18.822,0 0,-10.32 24.382,0 c 2.4063,0 4.1601,-1.6591 4.1601,-3.9707 l 0,-1.04 c 0,-2.3011 -1.7538,-3.9813 -4.1601,-3.9813 l -29.968,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<g
|
||||||
|
id="g5769"
|
||||||
|
transform="matrix(1.7539,0,0,1.7539,-611.6,-134.13)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
id="path5771"
|
||||||
|
d="m 491.25,404.37 c -2.241,0 -4.065,1.744 -4.065,3.894 l 0,8.461 c 0,2.184 1.765,3.963 3.929,3.963 l 5.473,0 c 2.164,0 3.929,-1.779 3.929,-3.963 l 0,-8.461 c 0,-2.149 -1.825,-3.894 -4.065,-3.894 l -5.201,0 z m -1.184,12.019 0,-7.726 c 0,-0.906 0.744,-1.647 1.654,-1.647 l 4.264,0 c 0.89,0 1.648,0.758 1.648,1.647 l 0,7.726 c 0,0.912 -0.738,1.653 -1.648,1.653 l -4.296,0 c -0.912,0 -1.622,-0.725 -1.622,-1.653 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5773"
|
||||||
|
d="m 512.91,404.27 c -1.578,0 -2.768,0.564 -3.723,1.026 -0.582,0.279 -1.086,0.52 -1.477,0.52 -0.177,0 -0.328,-0.08 -0.408,-0.211 l -0.364,-0.696 c -0.091,-0.183 -0.456,-0.541 -0.907,-0.541 l -0.541,0 c -0.52,0 -0.936,0.467 -0.936,1.037 l 0,21.461 c 0,0.673 0.531,1.203 1.203,1.203 l 0.468,0 c 0.667,0 1.209,-0.536 1.209,-1.203 l 0,-7.121 c 0,-0.211 0.137,-0.439 0.276,-0.439 0.391,0 0.895,0.229 1.477,0.496 0.955,0.439 2.145,0.98 3.723,0.98 l 0.505,0 c 2.794,0 4.532,-1.597 4.532,-4.162 l 0,-8.192 c 0,-2.526 -1.775,-4.157 -4.532,-4.157 l -0.505,0 z m -5.475,11.952 0,-7.39 c 0,-1.021 0.798,-1.818 1.818,-1.818 l 3.997,0 c 1.021,0 1.818,0.798 1.818,1.818 l 0,7.39 c 0,1.003 -0.818,1.818 -1.818,1.818 l -3.997,0 c -1.001,0 -1.818,-0.815 -1.818,-1.818 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5775"
|
||||||
|
d="m 526.04,404.37 c -2.241,0 -4.06,1.744 -4.06,3.894 l 0,8.398 c 0,2.178 1.768,4.025 3.854,4.025 l 5.647,0 c 0.698,0 1.203,-0.484 1.203,-1.141 l 0,-0.37 c 0,-0.661 -0.505,-1.135 -1.203,-1.135 l -4.639,0 c -1.3,0 -1.986,-0.639 -1.986,-1.854 l 0,-2.457 8.369,0 c 1.346,0 2.142,-0.821 2.142,-2.212 l 0,-3.256 c 0,-2.149 -1.822,-3.894 -4.054,-3.894 l -5.273,0 z m -1.183,4.265 c 0,-0.907 0.713,-1.619 1.621,-1.619 l 4.396,0 c 0.906,0 1.613,0.712 1.613,1.619 l 0,2.622 -7.631,0 c 10e-4,-0.342 10e-4,-2.622 10e-4,-2.622 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
id="path5777"
|
||||||
|
d="m 547,404.27 c -1.573,0 -2.76,0.564 -3.718,1.021 -0.596,0.28 -1.105,0.525 -1.521,0.525 -0.183,0 -0.257,-0.023 -0.399,-0.269 l -0.331,-0.604 c -0.19,-0.382 -0.513,-0.575 -0.949,-0.575 l -0.465,0 c -0.562,0 -0.972,0.438 -0.972,1.037 l 0,14.077 c 0,0.667 0.527,1.203 1.206,1.203 l 0.465,0 c 0.667,0 1.211,-0.542 1.211,-1.203 l 0,-10.65 c 0,-0.998 0.815,-1.818 1.813,-1.818 l 3.999,0 c 1.001,0 1.816,0.82 1.816,1.818 l 0,10.65 c 0,0.667 0.53,1.203 1.203,1.203 l 0.47,0 c 0.667,0 1.209,-0.542 1.209,-1.203 l 0,-11.055 c 0,-2.526 -1.776,-4.157 -4.535,-4.157 l -0.502,0 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g5779"
|
||||||
|
transform="matrix(1.7539,0,0,1.7539,-611.6,-134.13)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
id="path5781"
|
||||||
|
d="m 667.46,415.23 c 1.218,0 2.188,0.99 2.188,2.229 0,1.257 -0.971,2.237 -2.198,2.237 -1.218,0 -2.208,-0.98 -2.208,-2.237 0,-1.238 0.99,-2.229 2.208,-2.229 l 0.01,0 z m -0.01,0.346 c -0.98,0 -1.782,0.842 -1.782,1.882 0,1.06 0.802,1.891 1.792,1.891 0.99,0.011 1.782,-0.831 1.782,-1.881 0,-1.05 -0.792,-1.892 -1.782,-1.892 l -0.01,0 z m -0.416,3.179 -0.396,0 0,-2.485 c 0.208,-0.03 0.406,-0.06 0.703,-0.06 0.377,0 0.624,0.079 0.772,0.188 0.149,0.108 0.229,0.276 0.229,0.515 0,0.326 -0.218,0.524 -0.485,0.604 l 0,0.021 c 0.218,0.039 0.366,0.237 0.416,0.604 0.06,0.387 0.118,0.535 0.158,0.614 l -0.416,0 c -0.06,-0.079 -0.119,-0.307 -0.168,-0.634 -0.06,-0.316 -0.218,-0.436 -0.535,-0.436 l -0.277,0 0,1.069 z m 0,-1.377 0.287,0 c 0.327,0 0.604,-0.118 0.604,-0.426 0,-0.218 -0.158,-0.436 -0.604,-0.436 -0.129,0 -0.218,0.01 -0.287,0.021 l 0,0.841 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Open Sans Pro';-inkscape-font-specification:'Open Sans Pro';letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="957.59033"
|
||||||
|
y="204.7789"
|
||||||
|
id="text5802"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan5804"
|
||||||
|
x="957.59033"
|
||||||
|
y="204.7789"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:70px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;text-anchor:middle">openSUSE Conference 2022</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="957.59033"
|
||||||
|
y="292.2789"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:70px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;text-anchor:middle"
|
||||||
|
id="tspan11035">was brought to you by:</tspan></text>
|
||||||
|
<g
|
||||||
|
id="g3899"
|
||||||
|
transform="matrix(0.76333759,0,0,0.76333759,1080.3691,388.43453)"
|
||||||
|
style="fill:#ffffff;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:#ffffff;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:#ffffff;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:#ffffff;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:#ffffff;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:#ffffff;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:#ffffff;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;line-height:0%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
x="1195.7698"
|
||||||
|
y="640.70959"
|
||||||
|
id="text3926"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan3928"
|
||||||
|
x="1195.7698"
|
||||||
|
y="640.70959"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:40px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1">www.ccc.de</tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 70 KiB |
BIN
osc22/artwork/overlay_osc22_fullcam.png
Normal file
After Width: | Height: | Size: 30 KiB |
3472
osc22/artwork/pause.svg
Normal file
After Width: | Height: | Size: 270 KiB |
BIN
osc22/artwork/sponsors.png
Normal file
After Width: | Height: | Size: 180 KiB |
953
osc22/artwork/sponsors.svg
Normal file
After Width: | Height: | Size: 486 KiB |
BIN
osc22/artwork/video-team.png
Normal file
After Width: | Height: | Size: 21 KiB |
143
osc22/artwork/video-team.svg
Normal file
|
@ -0,0 +1,143 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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"
|
||||||
|
id="svg8"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 180 82.000005"
|
||||||
|
height="82"
|
||||||
|
width="180"
|
||||||
|
sodipodi:docname="video-team.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2019-03-11)">
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="713"
|
||||||
|
id="namedview25"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="3.8183766"
|
||||||
|
inkscape:cx="45.430183"
|
||||||
|
inkscape:cy="54.914672"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer1" />
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<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
|
||||||
|
transform="translate(0,-1040.5197)"
|
||||||
|
id="layer1">
|
||||||
|
<path
|
||||||
|
id="rect817-2"
|
||||||
|
d="m 18,1059.3947 v 45 h 1.542969 c 0.08469,-0.2191 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.249663,0 0.458277,0.1559 0.542969,0.375 H 25.5 h 30 1.542969 c 0.08469,-0.2191 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.24966,0 0.458278,0.1559 0.542969,0.375 H 63 v -45 h -1.5 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1060.1447 57,1059.8834 57,1059.5588 v -0.1641 H 55.5 25.5 24 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -0.1641 z m 2.085938,4.125 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1066.8947 57,1066.6334 57,1066.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1073.6447 57,1073.3834 57,1073.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1080.3947 57,1080.1334 57,1079.8088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1087.1447 57,1086.8834 57,1086.5588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1093.8947 57,1093.6334 57,1093.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1100.6447 57,1100.3834 57,1100.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z"
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31813714;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="rect1349"
|
||||||
|
d="m 18,1058.6447 v 45 h 1.542969 c 0.08469,-0.2192 0.293308,-0.375 0.542969,-0.375 h 3.328124 c 0.249663,0 0.458277,0.1558 0.542969,0.375 H 25.5 h 30 1.542969 c 0.08469,-0.219 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.24966,0 0.458278,0.156 0.542969,0.375 H 63 v -45 h -1.5 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1059.3947 57,1059.1334 57,1058.8088 v -0.1641 H 55.5 25.5 24 v 0.1641 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -0.1641 z m 2.085938,4.125 h 3.328124 c 0.324609,0 0.585938,0.2612 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3247 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2612 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1066.1447 57,1065.8834 57,1065.5588 v -2.2032 c 0,-0.3247 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1072.8947 57,1072.6334 57,1072.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1079.6447 57,1079.3834 57,1079.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1086.3947 57,1086.1334 57,1085.8088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1093.1447 57,1092.8834 57,1092.5588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1099.8947 57,1099.6334 57,1099.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z"
|
||||||
|
style="opacity:1;fill:#061c2a;fill-opacity:1;stroke:none;stroke-width:1.49999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1094.2697"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.25"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-9-4-0"
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1071.7695"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.25"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-9-3"
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1049.2698"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.249998"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-6"
|
||||||
|
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1048.5198"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.249998"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059"
|
||||||
|
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1071.0195"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.25"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-9"
|
||||||
|
style="opacity:1;fill:#73ba25;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<rect
|
||||||
|
ry="0"
|
||||||
|
y="1093.5197"
|
||||||
|
x="27.000071"
|
||||||
|
height="20.25"
|
||||||
|
width="26.999998"
|
||||||
|
id="rect1059-9-4"
|
||||||
|
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="path1671"
|
||||||
|
d="m 40.5,1097.5197 a 6.5,6.5 0 0 0 -6.5,6.5 6.5,6.5 0 0 0 6.5,6.5 6.5,6.5 0 0 0 6.5,-6.5 6.5,6.5 0 0 0 -6.5,-6.5 z m -1.875,3.5 5.25,3 -5.25,3 z"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.14482522;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23640315;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 40.503718,1074.0284 c -2.309168,0 -4.488163,1.0692 -5.907649,2.8896 0.915295,0.2443 1.563127,0.4545 1.757146,0.5196 0.003,-0.1185 0.02278,-1.1831 0.02278,-1.1831 0,0 0.0024,-0.025 0.0156,-0.036 0.01666,-0.018 0.04096,-0.018 0.04096,-0.018 0.240737,0.036 5.379185,0.7961 7.545069,2.0574 0.267477,0.156 0.399503,0.3228 0.564469,0.4913 0.598714,0.6189 1.389824,3.1924 1.474792,3.723 0.0035,0.021 -0.02244,0.045 -0.03344,0.051 h -2.49e-4 c -0.0615,0.048 -0.128505,0.097 -0.195588,0.141 -0.512498,0.3438 -1.693168,1.1697 -3.207946,1.0348 -1.360655,-0.12 -3.138328,-0.9003 -5.281378,-2.3116 0.210708,0.493 0.418313,0.9877 0.62603,1.482 0.310351,0.1612 3.305866,1.6866 4.784288,1.6569 1.190774,-0.025 2.464326,-0.6053 2.973818,-0.9117 0,0 0.111961,-0.067 0.16069,-0.03 0.05329,0.041 0.03922,0.1051 0.02593,0.1683 -0.03066,0.1456 -0.102705,0.4126 -0.151241,0.5394 l -0.04096,0.1035 c -0.05832,0.1558 -0.1143,0.3012 -0.222249,0.3907 -0.300137,0.2727 -0.779181,0.4896 -1.529807,0.8159 -1.16025,0.5071 -3.04265,0.8298 -4.790346,0.8185 -0.625965,-0.018 -1.230718,-0.084 -1.761752,-0.1455 -1.089799,-0.123 -1.976515,-0.2227 -2.517206,0.1683 1.422306,1.6336 3.481658,2.573 5.648319,2.5766 4.144494,0 7.50424,-3.358 7.504106,-7.5002 -8.7e-5,-4.1421 -3.359768,-7.4998 -7.504106,-7.4998 z m 1.673775,4.3518 c -0.587361,-0.02 -1.147438,0.1882 -1.576829,0.589 -0.429194,0.3993 -0.674804,0.9438 -0.696557,1.5303 -0.04057,1.2102 0.910119,2.2299 2.119968,2.2746 0.590028,0.019 1.14889,-0.1873 1.57828,-0.5904 0.428101,-0.3982 0.673713,-0.9427 0.696558,-1.5292 0.04156,-1.2093 -0.910269,-2.2311 -2.12142,-2.2743 z m -0.01842,0.6471 c 0.846425,0.03 1.50911,0.7408 1.480606,1.5864 -0.01305,0.4078 -0.185209,0.7858 -0.484242,1.0663 -0.29947,0.279 -0.690873,0.4242 -1.101553,0.4118 -0.844462,-0.033 -1.507172,-0.7425 -1.478668,-1.5885 0.01245,-0.4095 0.187969,-0.7875 0.485698,-1.0665 0.297721,-0.2793 0.687256,-0.4242 1.098159,-0.4095 z m 0.250846,0.7692 c -0.376081,0 -0.679833,0.2022 -0.679833,0.4539 0,0.2493 0.303752,0.4527 0.679833,0.4527 0.375859,0 0.680805,-0.2036 0.680805,-0.4527 0,-0.2517 -0.304735,-0.4539 -0.680805,-0.4539 z"
|
||||||
|
id="path819" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.15259878"
|
||||||
|
id="path2"
|
||||||
|
d="m 40.499843,1051.5415 c -4.141837,0 -7.499774,3.3579 -7.499774,7.5002 a 7.5002298,7.5002298 0 0 0 0.490148,2.6583 c 0.109875,-0.2877 0.235918,-0.5685 0.394772,-0.8322 0.08088,-0.135 0.169843,-0.2645 0.229204,-0.4089 0.05952,-0.1455 0.08698,-0.3086 0.04151,-0.4583 -0.02595,-0.086 -0.07478,-0.162 -0.127575,-0.2334 -0.05295,-0.072 -0.11094,-0.1395 -0.159161,-0.2145 -0.122685,-0.1902 -0.178998,-0.4245 -0.147105,-0.6486 0.03204,-0.2242 0.152905,-0.4363 0.335108,-0.5709 0.162365,-0.12 0.367458,-0.174 0.570109,-0.1663 a 1.0163079,1.0163079 0 0 1 0.199904,0.029 c 0.261859,0.063 0.492894,0.2274 0.664262,0.4348 0.212419,0.258 0.337244,0.5843 0.367763,0.9168 0.03083,0.3327 -0.03051,0.6716 -0.159007,0.9798 -0.230425,0.5523 -0.665636,0.9983 -0.905216,1.5467 -0.195632,0.448 -0.251787,0.9477 -0.225084,1.436 0.0036,0.045 0.0098,0.09 0.0138,0.1365 a 7.5002298,7.5002298 0 0 0 2.093808,1.8399 10.198177,10.198177 0 0 1 -0.07446,-1.2209 c 10e-4,-0.3247 0.01755,-0.6486 0.04883,-0.969 -0.19731,-0.1365 -0.376461,-0.2946 -0.503576,-0.4964 -0.226153,-0.3597 -0.26888,-0.8149 -0.175795,-1.2295 0.09309,-0.4146 0.312828,-0.7923 0.576825,-1.1252 0.435517,-0.5485 1.004405,-0.9924 1.640131,-1.2864 -0.01832,-0.025 -0.03662,-0.051 -0.05188,-0.072 -0.234086,-0.3789 -0.372341,-0.8155 -0.405913,-1.2597 -0.03419,-0.4492 0.03662,-0.8991 0.06638,-1.3485 0.02136,-0.3135 0.02259,-0.6271 0.04089,-0.9408 0.02136,-0.3627 0.06561,-0.7258 0.1674,-1.0746 0.03693,-0.126 0.08209,-0.2526 0.153819,-0.3631 a 0.81029957,0.81029957 0 0 1 0.343805,-0.2982 c 0.158246,-0.063 0.295738,-0.077 0.448642,-0.051 0.127875,0.027 0.246141,0.091 0.349756,0.1708 0.10377,0.08 0.193344,0.176 0.278036,0.2757 a 4.2216454,4.2216454 0 0 1 0.600322,0.935 2.0658824,2.0658824 0 0 1 0.63176,0 4.2152362,4.2152362 0 0 1 0.600628,-0.9351 c 0.08454,-0.1005 0.174421,-0.1961 0.278036,-0.2759 0.10377,-0.08 0.221878,-0.144 0.349909,-0.1705 a 0.73354237,0.73354237 0 0 1 0.451235,0.051 0.81121518,0.81121518 0 0 1 0.343804,0.2991 c 0.07171,0.1095 0.116895,0.2359 0.15382,0.3624 0.101626,0.3487 0.145891,0.7119 0.167248,1.0743 0.01832,0.3138 0.01983,0.6283 0.04119,0.9415 0.02976,0.4496 0.101175,0.8988 0.06715,1.3479 a 2.8085806,2.8085806 0 0 1 -0.407134,1.26 c -0.01832,0.028 -0.04059,0.055 -0.05951,0.084 0.14253,0.1605 0.345941,0.2969 0.519446,0.3552 a 1.1313674,1.1313674 0 0 0 0.606427,0.024 0.95481061,0.95481061 0 0 0 0.30886,-0.1305 0.72484429,0.72484429 0 0 0 0.229661,-0.2418 c 0.06867,-0.12 0.09614,-0.2593 0.111405,-0.3975 0.03891,-0.3522 0,-0.708 -0.029,-1.0611 -0.01983,-0.2292 -0.03585,-0.4624 0.01555,-0.6867 0.0348,-0.1518 0.102855,-0.3003 0.216692,-0.4063 a 0.63969412,0.63969412 0 0 1 0.268878,-0.147 0.75902635,0.75902635 0 0 1 0.306724,-0.016 c 0.219743,0.033 0.425446,0.1578 0.548135,0.3426 0.06974,0.105 0.112156,0.2263 0.137641,0.3499 0.02533,0.123 0.03465,0.2495 0.04151,0.3753 0.0238,0.44 0.02289,0.8805 0.01065,1.3211 -0.0102,0.3846 -0.03204,0.7798 -0.185866,1.1323 -0.197767,0.4524 -0.596051,0.7902 -1.026226,1.0328 a 4.0794233,4.0794233 0 0 1 -0.918035,0.3754 c 0.278798,0.89 0.423919,1.8748 0.423919,2.8735 a 10.180933,10.180933 0 0 1 -0.07782,1.2297 7.4999253,7.4999253 0 0 0 3.69289,-6.4517 c -4.59e-4,-4.1424 -3.358388,-7.5002 -7.500225,-7.5002 z m -2.097624,9.2453 v 0.858 a 1.0875716,1.0875716 0 0 1 0.626723,0.2095 1.0053208,1.0053208 0 0 1 0.321679,0.3938 c 0.07019,0.1564 0.09613,0.3331 0.06714,0.502 a 0.86370916,0.86370916 0 0 1 -0.191969,0.4097 0.95267424,0.95267424 0 0 1 -0.367763,0.2649 1.005626,1.005626 0 0 1 -0.455813,0.071 v 2.1585 l 4.490373,-2.4348 -4.490526,-2.4324 z" />
|
||||||
|
<text
|
||||||
|
id="text1624"
|
||||||
|
y="1080.2151"
|
||||||
|
x="84"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:31.18781662px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.77969539"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Open Sans Condensed';-inkscape-font-specification:'Open Sans Condensed, ';stroke-width:0.77969539"
|
||||||
|
y="1080.2151"
|
||||||
|
x="84"
|
||||||
|
id="tspan1622">Video</tspan></text>
|
||||||
|
<text
|
||||||
|
id="text1628"
|
||||||
|
y="1108.0905"
|
||||||
|
x="82.962746"
|
||||||
|
style="font-style:normal;font-weight:normal;font-size:35.76750946px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.89418781"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';stroke-width:0.89418781"
|
||||||
|
y="1108.0905"
|
||||||
|
x="82.962746"
|
||||||
|
id="tspan1626">Team</tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
BIN
osc22/artwork/zbau.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
319
osc22/artwork/zbau.svg
Normal file
After Width: | Height: | Size: 7.2 MiB |