Compare commits

..

3 commits

Author SHA1 Message Date
Thorti
04063b3d6e FOSSGIS23: Background 2023-03-15 10:39:18 +01:00
Thorti
4f36e2b8f8 FOSSGIS23: Sponsoren-Logos + Pause-Projekt-File 2023-03-14 10:25:52 +01:00
Thorti
7ec0f4bafa FOSSGIS 2023: Initiale Version 2023-02-19 15:59:58 +01:00
270 changed files with 2294 additions and 151242 deletions

2
.pep8
View file

@ -1,2 +0,0 @@
[pycodestyle]
max_line_length = 99

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from itertools import zip_longest
# URL to Schedule-XML

View file

@ -3,7 +3,6 @@
import svg.path, random
from lxml import etree
from renderlib import *
from schedulelib import *
def introFrames(p):
frames = 0

View file

@ -2,7 +2,6 @@
import subprocess
from renderlib import *
from schedulelib import *
def pyconFrames(params):
frames = 500

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path

View file

@ -3,9 +3,7 @@
from lxml import etree
from slugify import slugify
from renderlib import *
from schedulelib import *
from renderlib import *
from schedulelib import *
from easing import *

View file

@ -9,7 +9,7 @@ Yes! That's what I want!
------------------------
Okay, let's go.
- Install python3, python3-lxml, python3-cssutils, python3-wand (or use virtualenv, see below), inkscape and libav-tools
- Install python3, python3-lxml, python3-cssutils (or use virtualenv, see below), inkscape and libav-tools
- Fork this repo on github and clone your personal fork to your local system.
- Copy one of the existing setup: 00_example_render_byid
- If you are using a newer version of intro-outro-generator, don't copy any of the other projects, as the __init.py__ may not contain all mandatory parameters in the tasks function.
@ -28,7 +28,7 @@ Okay, let's go.
- search for `def debug()` and comment the sections about outro (postroll) and pause
- run `./make.py yourproject/ --debug` to generate your first intro
- if it looks good, duplicate intro.svg to outro.svg (postroll) and pause.svg (pause-loop) and modify them according to your needs. You can use different IDs in your SVG if required
- modify outroFrames and pauseFrames like before and test them using `./make.py yourproject/ --debug`
- modify outroFrames and pauseFrames like before an test them using `./make.py yourproject/ --debug`
- if everything look like you'd want them to, run `./make.py yourproject/`.
- You can use any debianesque linux (can be headless) to generate the videos. More cores help more.
- Run `./make-snapshots.sh yourproject/` to generate a png from a specific time-index of your .ts or .dv-files. You can run `./make-snapshots.sh yourproject/ 5` to get a png for the frame at the 5th second of all your clips. Default is 3 seconds.
@ -109,7 +109,7 @@ The animation sequence is controlled by the three frame-generator routines vorsp
### CSS-Style-Modifications
`('logo', 'style', 'opacity', 1),` - locate object with id `logo` in the svg, parse its `style`-attribute as css-inline-string and change the value of the css-property `opacity` to 1. The Tupel-Element `'style'` is fixed and declares the type of action which is applied to the specified element. All other tupel-mebers can be modified to suit your needs.
To form a fade-in-opacity-animation, the frame-generator could look like this:
To form an fade-in-opacity-animation, the frame-generator could look like this:
# three seconds of animation
frames = 3*fps
@ -150,7 +150,7 @@ FEM/VOC-Tracker-Integration
*that script-Z-thingy*
The [FEM](http://fem.tu-ilmenau.de/) and the [VOC](https://c3voc.de/) uses a special Ticket-Tracker to keep track of the Talks on an event. Various tasks are performed around the recorded Videomaterial (preparing, cutting, encoding, releasing) - synchronized by the Tracker. The files starting with `script-Z` are experiments to integrate the intro-rendering into this process. On some Events the Schedule is very fluid with talks being addes or names changing over the whole conference. Using the Scripts to render the prerols when they are actually needed (and not some days before the conference) would help to get the always-freshest prerolls but it would an additional (computational intense) task to the publishing process.
Generating a Live-Stream-Overlay
Generating an Live-Stream-Overlay
---------------------------------
While your working on your Video-Artwork you can create another required asset: the stream overlay. When we'll live-stream your Talks we can't send prerolls ovet the live-stream. To let your viewer now what program they are watching at, we usually overlay a transparent image over the live-stream like most television programs do, too.
Just create another SVG of the size 1920×1080 (or 1024×576 if you're only targeting the legacy SD-Pipeline) and throw your logo into your prefered corner. To have it looking good we would suggest

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
def introFrames(p):

View file

@ -320,7 +320,7 @@ def debug():
def tasks(queue, args, idlist, skiplist):
# iterate over all events extracted from the schedule xml-export
for event in schedulelib.events(scheduleUrl):
for event in renderlib.events(scheduleUrl):
if not (idlist == []):
if 000000 in idlist:
print("skipping id (%s [%s])" % (event["title"], event["id"]))

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
import math

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
import math

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
# URL to Schedule-XML
scheduleUrl = 'http://annaberg6.de/stuff/camp99/schedule.xml'

Binary file not shown.

View file

@ -1,35 +0,0 @@
[meta]
schedule = https://pretalx.c3voc.de/camp2023/schedule/export/schedule.xml
template = intro.mp4
alpha = false
prores = false
inout_type = t
[title]
in = 16
out = 24
fontfile = saira.ttf
fontsize = 100
fontcolor = #FB48C4
x = (w-text_w)/2
y = 100
[speaker]
in = 16
out = 24
fontfile = saira.ttf
fontsize = 70
fontcolor = #3FFF21
x = (w-text_w)/2
y = 800
[text]
in = 16
out = 24
fontfile = saira.ttf
fontsize = 45
fontcolor = #FB48C4
x = (w-text_w)/2
y = 1000
text = Chaos Communication Camp 2023

Binary file not shown.

View file

@ -2,7 +2,6 @@
import subprocess
from renderlib import *
from schedulelib import *
# URL to Schedule-XML
scheduleUrl = 'http://www.fossgis.de/konferenz/2014/programm/schedule.de.xml'

View file

@ -2,7 +2,6 @@
import random, sys
from renderlib import *
from schedulelib import *
from easing import *
from colour import Color

View file

@ -1,14 +1,13 @@
[meta]
[default]
schedule = https://fahrplan.events.ccc.de/camp/2019/Fahrplan/schedule.xml
template = cccamp19_talks_intro_1080p.mov
alpha = true
prores = true
inout_type = n
[title]
in = 193
out = 324
fontfile = Marvel-Bold.ttf
font = Marvel-Bold.ttf
fontsize = 120
fontcolor = #c68100
x = (w-text_w)/2
@ -17,7 +16,7 @@ y = 480
[speaker]
in = 233
out = 324
fontfile = Marvel-Regular.ttf
font = Marvel-Regular.ttf
fontsize = 70
fontcolor = #c68100
x = (w-text_w)/2
@ -26,10 +25,10 @@ y = 845
[text]
in = 242
out = 324
fontfile = Marvel-Regular.ttf
font = Marvel-Regular.ttf
fontsize = 45
fontcolor = #c68100
x = (w-text_w)/2
y = 927
text = chaos communication camp 2019
text = 'chaos communication camp 2019'

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
scheduleUrl = ""

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
scheduleUrl = "https://berlin.ccc.de/datengarten/index.xml"

View file

@ -1,14 +1,13 @@
[meta]
[default]
schedule = https://pretalx.denog.de/denog11/schedule/export/schedule.xml
template = denog11_intro_template.ts
alpha = false
prores = false
inout_type = n
[title]
in = 1
out = 6.5
fontfile = DejaVuSans.ttf
font = DejaVuSans.ttf
fontsize = 100
fontcolor = #f9cc12
x = 640
@ -17,7 +16,7 @@ y = 200
[speaker]
in = 2
out = 6.5
fontfile = DejaVuSans.ttf
font = DejaVuSans.ttf
fontsize = 60
fontcolor = #ffffff
x = 640
@ -26,10 +25,10 @@ y = 900
[text]
in = 3
out = 6.5
fontfile = DejaVuSans.ttf
font = DejaVuSans.ttf
fontsize = 45
fontcolor = #ffffff
x = 640
y = 1000
; text =
text = ''

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -4,7 +4,6 @@ import svg.path, random
from lxml import etree
from slugify import slugify
from renderlib import *
from schedulelib import *
# URL to Schedule-XML
scheduleUrl = 'https://www.datenspuren.de/2014/fahrplan/schedule.xml'

287
easing.py
View file

@ -4,233 +4,208 @@
import math
def easeLinear(t, b, c, d):
return c*t/d + b
return c*t/d + b
def easeOutCubic(t, b, c, d):
t = float(t)/d-1
return c*((t)*t*t + 1) + b
t=float(t)/d-1
return c*((t)*t*t + 1) + b
def easeInCubic(t, b, c, d):
t = float(t)/d
return c*(t)*t*t + b
t=float(t)/d
return c*(t)*t*t + b;
def easeInQuad(t, b, c, d):
t /= d
return c*t*t + b
t /= d
return c*t*t + b
def easeOutQuad(t, b, c, d):
t /= d
return -c * t*(t-2) + b
t /= d
return -c * t*(t-2) + b
def easeInOutQuad(t, b, c, d):
t /= d/2
if t < 1:
return c/2*t*t + b
t -= 1
return -c/2 * (t*(t-2) - 1) + b
t /= d/2
if t < 1:
return c/2*t*t + b
t-=1
return -c/2 * (t*(t-2) - 1) + b
def easeInOutCubic(t, b, c, d):
t /= d/2
if t < 1:
return c/2*t*t*t + b
t -= 2
return c/2*(t*t*t + 2) + b
t /= d/2
if t < 1:
return c/2*t*t*t + b
t -= 2
return c/2*(t*t*t + 2) + b
def easeInQuart(t, b, c, d):
t /= d
return c*t*t*t*t + b
t /= d
return c*t*t*t*t + b
def easeOutQuart(t, b, c, d):
t /= d
t -= 1
return -c * (t*t*t*t - 1) + b
t /= d
t -= 1
return -c * (t*t*t*t - 1) + b
def easeInOutQuart(t, b, c, d):
t /= d/2
if t < 1:
return c/2*t*t*t*t + b
t -= 2
return -c/2 * (t*t*t*t - 2) + b
t /= d/2
if t < 1:
return c/2*t*t*t*t + b
t -= 2
return -c/2 * (t*t*t*t - 2) + b
def easeInQuint(t, b, c, d):
t /= d
return c*t*t*t*t*t + b
t /= d
return c*t*t*t*t*t + b
def easeOutQuint(t, b, c, d):
t /= d
t -= 1
return c*(t*t*t*t*t + 1) + b
t /= d
t -= 1
return c*(t*t*t*t*t + 1) + b
def easeInOutQuint(t, b, c, d):
t /= d/2
if t < 1:
return c/2*t*t*t*t*t + b
t -= 2
return c/2*(t*t*t*t*t + 2) + b
t /= d/2
if t < 1:
return c/2*t*t*t*t*t + b
t -= 2
return c/2*(t*t*t*t*t + 2) + b
def easeInSine(t, b, c, d):
return -c * math.cos(t/d * (math.pi/2)) + c + b
return -c * math.cos(t/d * (math.pi/2)) + c + b
def easeOutSine(t, b, c, d):
return c * math.sin(t/d * (math.pi/2)) + b
return c * math.sin(t/d * (math.pi/2)) + b
def easeInOutSine(t, b, c, d):
return -c/2 * (math.cos(math.pi*t/d) - 1) + b
return -c/2 * (math.cos(math.pi*t/d) - 1) + b
def easeInExpo(t, b, c, d):
return c * math.pow(2, 10 * (t/d - 1)) + b
return c * math.pow( 2, 10 * (t/d - 1) ) + b
def easeOutExpo(t, b, c, d):
return c * (-math.pow(2, -10 * t/d) + 1) + b
return c * ( -math.pow( 2, -10 * t/d ) + 1 ) + b
def easeInOutExpo(t, b, c, d):
t /= d/2
if t < 1:
return c/2 * math.pow(2, 10 * (t - 1)) + b
t -= 1
return c/2 * (-math.pow(2, -10 * t) + 2) + b
t /= d/2
if t < 1:
return c/2 * math.pow( 2, 10 * (t - 1) ) + b
t -= 1
return c/2 * ( -math.pow( 2, -10 * t) + 2 ) + b
def easeInCirc(t, b, c, d):
t /= d
return -c * (math.sqrt(1 - t*t) - 1) + b
t /= d
return -c * (math.sqrt(1 - t*t) - 1) + b
def easeOutCirc(t, b, c, d):
t /= d
t -= 1
return c * math.sqrt(1 - t*t) + b
t /= d;
t -= 1
return c * math.sqrt(1 - t*t) + b
def easeInOutCirc(t, b, c, d):
t /= d/2
if t < 1:
return -c/2 * (math.sqrt(1 - t*t) - 1) + b
t -= 2
return c/2 * (math.sqrt(1 - t*t) + 1) + b
t /= d/2
if t < 1:
return -c/2 * (math.sqrt(1 - t*t) - 1) + b
t -= 2
return c/2 * (math.sqrt(1 - t*t) + 1) + b
def easeInElastic(t, b, c, d, s=1.70158):
a = c
def easeInElastic(t, b, c, d, s = 1.70158):
a = c
if t == 0:
return b
t /= d
if t == 1:
return b + c
if t == 0:
return b
t /= d
if t == 1:
return b + c
p = d * 0.3
if a < abs(c):
a = c
s = p / 4
else:
s = p / (2 * math.pi) * math.asin(c / a)
p = d * 0.3
if a < abs(c):
a = c
s = p / 4
else:
s = p / (2 * math.pi) * math.asin(c / a)
t -= 1
return -(a * pow(2, 10 * t) * math.sin((t * d - s) * (2 * math.pi) / p)) + b
t -= 1
return -(a * pow(2, 10 * t) * math.sin((t * d - s) * (2 * math.pi) / p)) + b
def easeOutElastic(t, b, c, d, a = 1.70158):
if t == 0:
return b
t /= d
if t == 1:
return b + c
def easeOutElastic(t, b, c, d, a=1.70158):
if t == 0:
return b
t /= d
if t == 1:
return b + c
p = d * 0.3
if a < abs(c):
a, s = c, p / 4
else:
s = p / (2 * math.pi) * math.asin(c / a)
p = d * 0.3
if a < abs(c):
a, s = c, p / 4
else:
s = p / (2 * math.pi) * math.asin(c / a)
return a * pow(2, -10 * t) * math.sin((t * d - s) * (2 * math.pi) / p) + c + b
return a * pow(2, -10 * t) * math.sin((t * d - s) * (2 * math.pi) / p) + c + b
def easeInOutElastic(t, b, c, d, a = 1.70158):
if t == 0:
return b
t /= (d / 2)
if t == 2:
return b + c
p = d * (0.3 * 1.5)
if a < abs(c):
a, s = c, p / 4
else:
s = p / (2 * math.pi) * math.asin(c / a)
def easeInOutElastic(t, b, c, d, a=1.70158):
if t == 0:
return b
t /= (d / 2)
if t == 2:
return b + c
if t < 1:
t -= 1
return -0.5 * (a * pow(2, 10 * t) * math.sin((t * d - s) * (2 * math.pi) / p)) + b
p = d * (0.3 * 1.5)
if a < abs(c):
a, s = c, p / 4
else:
s = p / (2 * math.pi) * math.asin(c / a)
t -= 1
return a * pow(2, -10 * t) * math.sin((t * d - s) * (2 * math.pi) / p ) * 0.5 + c + b
if t < 1:
t -= 1
return -0.5 * (a * pow(2, 10 * t) * math.sin((t * d - s) * (2 * math.pi) / p)) + b
def easeInBack(t, b, c, d, s = 1.70158):
t /= d
return c * t * t * ((s + 1) * t - s) + b
t -= 1
return a * pow(2, -10 * t) * math.sin((t * d - s) * (2 * math.pi) / p) * 0.5 + c + b
def easeOutBack(t, b, c, d, s = 1.70158):
t = t / d - 1
return c * (t * t * ((s + 1) * t + s) + 1) + b
def easeInOutBack(t, b, c, d, s = 1.70158):
t /= d / 2
s *= 1.525
if t < 1:
return c / 2 * (t * t * ((s + 1) * t - s)) + b;
def easeInBack(t, b, c, d, s=1.70158):
t /= d
return c * t * t * ((s + 1) * t - s) + b
def easeOutBack(t, b, c, d, s=1.70158):
t = t / d - 1
return c * (t * t * ((s + 1) * t + s) + 1) + b
def easeInOutBack(t, b, c, d, s=1.70158):
t /= d / 2
s *= 1.525
if t < 1:
return c / 2 * (t * t * ((s + 1) * t - s)) + b
t -= 2
return c/2 * (t * t * ((s + 1) * t + s) + 2) + b
t -= 2
return c/2 * (t * t * ((s + 1) * t + s) + 2) + b;
def easeInBounce(t, b, c, d):
return c - easeOutBounce(d-t, 0, c, d) + b
return c - easeOutBounce(d-t, 0, c, d) + b;
def easeOutBounce(t, b, c, d):
t /= d
if t < (1/2.75):
return c*(7.5625*t*t) + b
t /= d
if t < (1/2.75):
return c*(7.5625*t*t) + b;
elif t < (2/2.75):
t -= (1.5/2.75)
return c*(7.5625*t*t + 0.75) + b
elif t < (2/2.75):
t -= (1.5/2.75)
return c*(7.5625*t*t + 0.75) + b;
elif t < (2.5/2.75):
t -= (2.25/2.75)
return c*(7.5625*t*t + 0.9375) + b
else:
t -= (2.625/2.75)
return c*(7.5625*t*t + 0.984375) + b
elif t < (2.5/2.75):
t -= (2.25/2.75)
return c*(7.5625*t*t + 0.9375) + b;
else:
t -= (2.625/2.75)
return c*(7.5625*t*t + 0.984375) + b;
def easeInOutBounce(t, b, c, d):
if t < d/2:
return easeInBounce(t*2, 0, c, d) * .5 + b
if t < d/2:
return easeInBounce(t*2, 0, c, d) * .5 + b;
return easeOutBounce(t*2-d, 0, c, d) * .5 + c*.5 + b
return easeOutBounce(t*2-d, 0, c, d) * .5 + c*.5 + b;

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
import math
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
# URL to Schedule-XML
scheduleUrl = 'https://eh15.easterhegg.eu/frab/en/eh15/public/schedule.xml'

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path
import random
@ -278,7 +277,7 @@ def tasks(queue, args, idlist, skiplist):
if event['id'] == 8496:
eventTitle = 'Know your tools - Im firing my laser! -'
# generate a task description and put them into the queue
queue.put(Rendertask(
infile='intro.svg',

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML
@ -32,7 +31,7 @@ def introFrames(p):
('text', 'style', 'opacity', easeLinear(i, 1, 0, frames)),
('bg', 'style', 'opacity', easeLinear(i, 1, 0, frames)),
)
frames = int(fps/2)
for i in range(0, frames):
yield (
@ -41,7 +40,7 @@ def introFrames(p):
('text', 'style', 'opacity', 0),
('bg', 'style', 'opacity',0),
)
# Show Sponsor
frames = 5*fps
for i in range(0, frames):

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML
@ -16,13 +15,13 @@ def introFrames(p):
nr = p['$id'];
# 1 Sekunde nix
# 1 Sekunde nix
frames = 1*fps
for i in range(0, frames):
givenFrame += 1
yield (
('bg', 'attr', '{http://www.w3.org/1999/xlink}href', "given-frames/frame%04d.png" % (givenFrame)),
('layer1', 'style', 'opacity', "%.4f" % 0), # nix
('layer1', 'style', 'opacity', "%.4f" % 0), # nix
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
)
@ -45,7 +44,7 @@ def introFrames(p):
('layer1', 'style', 'opacity', "%.4f" %1),
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
)
# 1 Sekunde Text Fadeout
frames = 1*fps
for i in range(0, frames):
@ -55,7 +54,7 @@ def introFrames(p):
('layer1', 'style', 'opacity', "%.4f" % easeInQuad(i, 1, -1, frames)),
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
)
# Sponsors
frames = 187
for i in range(0, frames):

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
import math
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
import math

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
import math

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
import math

View file

@ -2,7 +2,6 @@
# vim: tabstop=4 shiftwidth=4 expandtab
from renderlib import *
from schedulelib import *
from easing import *
import math

View file

@ -1,7 +1,6 @@
#!/usr/bin/python
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path
@ -161,7 +160,7 @@ def pauseFrames(params):
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', 0),
)
def debug():
render('intro.svg',
'../intro.ts',

View file

@ -2,7 +2,6 @@
import subprocess
from renderlib import *
from schedulelib import *
# URL to Schedule-XML
scheduleUrl = 'http://www.fossgis.de/konferenz/2014/programm/schedule.de.xml'

View file

@ -2,7 +2,6 @@
import subprocess
from renderlib import *
from schedulelib import *
# URL to Schedule-XML
scheduleUrl = 'http://www.fossgis.de/konferenz/2015/programm/schedule.de.xml'

View file

@ -2,7 +2,6 @@
import subprocess
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -2,7 +2,6 @@
import subprocess
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -2,7 +2,6 @@
import subprocess
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -2,7 +2,6 @@
import subprocess
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

200
fossgis23/__init__.py Normal file
View file

@ -0,0 +1,200 @@
#!/usr/bin/python3
import subprocess
from renderlib import *
from easing import *
# URL to Schedule-XML
scheduleUrl = 'https://pretalx.com/fossgis2023/schedule/export/schedule.xml'
# For (really) too long titles
titlemap = {
#708: "Neue WEB-Anwendungen des LGRB Baden-Württemberg im Überblick"
}
def outroFrames(params):
# 8 Sekunden
# 2 Sekunden Fadein Text
frames = 2*fps
for i in range(0, frames):
yield (
('banderole', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames) ),
('license', 'style', 'opacity', 0)
)
# 2 Sekunde Fadein Lizenz-Logo
frames = 2*fps
for i in range(0, frames):
yield (
('banderole', 'style', 'opacity', 1),
('license', 'style', 'opacity', "%.4f" % (float(i)/frames))
)
# 4 Sekunde stehen bleiben
frames = 4*fps
for i in range(0, frames):
yield (
('banderole', 'style', 'opacity', 1),
('license', 'style', 'opacity', 1)
)
def introFrames(params):
# 7 Sekunden
# 2 Sekunden Text 1
frames = 2*fps
for i in range(0, frames):
yield (
('box-und-text1', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
('url', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
('text1', 'style', 'opacity', "%.4f" % 1),
('text2', 'style', 'opacity', 0)
)
# 1 Sekunde Fadeout Text 1
frames = 1*fps
for i in range(0, frames):
yield (
('box-und-text1', 'style', 'opacity', 1),
('url', 'style', 'opacity', 1),
('text1', 'style', 'opacity', "%.4f" % (1-(float(i)/frames))),
('text2', 'style', 'opacity', 0)
)
# 2 Sekunden Text 2
frames = 2*fps
for i in range(0, frames):
yield (
('box-und-text1', 'style', 'opacity', 1),
('url', 'style', 'opacity', 1),
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames))
)
# 2 Sekunden stehen bleiben
frames = 2*fps
for i in range(0, frames):
yield (
('box-und-text1', 'style', 'opacity', 1),
('url', 'style', 'opacity', 1),
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', 1)
)
def pauseFrames(params):
# 12 Sekunden
# 2 Sekunden Text1 stehen
frames = 2*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', 1),
('text2', 'style', 'opacity', 0)
)
# 2 Sekunden Fadeout Text1
frames = 2*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', "%.4f" % (1-easeOutCubic(i, 0, 1, frames))),
('text2', 'style', 'opacity', 0)
)
# 2 Sekunden Fadein Text2
frames = 2*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames))
)
# 2 Sekunden Text2 stehen
frames = 2*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', 1)
)
# 2 Sekunden Fadeout Text2
frames = 2*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', 0),
('text2', 'style', 'opacity', "%.4f" % (1-easeOutCubic(i, 0, 1, frames)))
)
# 2 Sekunden Fadein Text1
frames = 2*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', "%.4f" % (easeOutCubic(i, 0, 1, frames))),
('text2', 'style', 'opacity', 0)
)
def debug():
render(
'intro.svg',
'../intro.ts',
introFrames,
{
'$id': 904,
'$title': 'Was ist Open Source, wie funktioniert das?',
'$subtitle': 'Die Organisation der Open Geo- und GIS-Welt. Worauf man achten sollte.',
'$personnames': 'Arnulf Christl, Astrid Emde, Dominik Helle, Till Adams'
}
)
render(
'outro.svg',
'../outro.ts',
outroFrames
)
render('pause.svg',
'../pause.ts',
pauseFrames
)
def tasks(queue, args, idlist, skiplist):
# iterate over all events extracted from the schedule xml-export
for event in events(scheduleUrl):
if event['room'] not in ('Hörsaal 1 (0115)', 'Hörsaal 2 (0110)', 'Hörsaal 3 (0119)'):
print("skipping room %s (%s)" % (event['room'], event['title']))
continue
if (event['id'] in idlist or not idlist) and not 'intro' in skiplist:
# generate a task description and put them into the queue
queue.put(Rendertask(
infile = 'intro.svg',
outfile = str(event['id'])+".ts",
sequence = introFrames,
parameters = {
'$id': event['id'],
'$title': event['title'],
'$url': event['url'],
#'$subtitle': event['subtitle'],
'$personnames': event['personnames']
}
))
if not 'outro' in skiplist:
# place a task for the outro into the queue
queue.put(Rendertask(
infile = 'outro.svg',
outfile = 'outro.ts',
sequence = outroFrames
))
if not 'pause' in skiplist:
# place the pause-sequence into the queue
queue.put(Rendertask(
infile = 'pause.svg',
outfile = 'pause.ts',
sequence = pauseFrames
))

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

BIN
fossgis23/artwork/bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

199
fossgis23/artwork/by-sa.svg Executable file
View file

@ -0,0 +1,199 @@
<?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-sa.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="488"
inkscape:window-y="401" />
<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.9937807,0,0,0.9936694,-177.69409,-74.436409)"
id="g287"
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
inkscape:export-xdpi="300.23013"
inkscape:export-ydpi="300.23013">
<path
id="path3817_2_"
nodetypes="ccccccc"
d="M 182.23532,75.39014 L 296.29928,75.59326 C 297.89303,75.59326 299.31686,75.35644 299.31686,78.77344 L 299.17721,116.34033 L 179.3569,116.34033 L 179.3569,78.63379 C 179.3569,76.94922 179.51999,75.39014 182.23532,75.39014 z"
style="fill:#aab2ab" />
<g
id="g5908_2_"
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
<path
id="path5906_2_"
cx="296.35416"
ry="22.939548"
cy="264.3577"
type="arc"
rx="22.939548"
d="M 187.20944,-55.6792 C 187.21502,-46.99896 180.18158,-39.95825 171.50134,-39.95212 C 162.82113,-39.94708 155.77929,-46.97998 155.77426,-55.66016 C 155.77426,-55.66687 155.77426,-55.67249 155.77426,-55.6792 C 155.76922,-64.36054 162.80209,-71.40125 171.48233,-71.40631 C 180.16367,-71.41193 187.20441,-64.37842 187.20944,-55.69824 C 187.20944,-55.69263 187.20944,-55.68591 187.20944,-55.6792 z"
style="fill:#ffffff" />
<g
id="g5706_2_"
transform="translate(-289.6157,99.0653)">
<path
id="path5708_2_"
d="M 473.88455,-167.54724 C 477.36996,-164.06128 479.11294,-159.79333 479.11294,-154.74451 C 479.11294,-149.69513 477.40014,-145.47303 473.9746,-142.07715 C 470.33929,-138.50055 466.04281,-136.71283 461.08513,-136.71283 C 456.18736,-136.71283 451.96526,-138.48544 448.42003,-142.03238 C 444.87419,-145.57819 443.10158,-149.81537 443.10158,-154.74451 C 443.10158,-159.6731 444.87419,-163.94049 448.42003,-167.54724 C 451.87523,-171.03375 456.09728,-172.77618 461.08513,-172.77618 C 466.13342,-172.77618 470.39914,-171.03375 473.88455,-167.54724 z M 450.76657,-165.20239 C 447.81982,-162.22601 446.34701,-158.7395 446.34701,-154.74005 C 446.34701,-150.7417 447.80529,-147.28485 450.72125,-144.36938 C 453.63778,-141.45288 457.10974,-139.99462 461.1383,-139.99462 C 465.16683,-139.99462 468.66848,-141.46743 471.64486,-144.41363 C 474.47076,-147.14947 475.88427,-150.59069 475.88427,-154.74005 C 475.88427,-158.85809 474.44781,-162.35297 471.57659,-165.22479 C 468.70595,-168.09546 465.22671,-169.53131 461.1383,-169.53131 C 457.04993,-169.53131 453.59192,-168.08813 450.76657,-165.20239 z M 458.52106,-156.49927 C 458.07074,-157.4809 457.39673,-157.9715 456.49781,-157.9715 C 454.90867,-157.9715 454.11439,-156.90198 454.11439,-154.763 C 454.11439,-152.62341 454.90867,-151.55389 456.49781,-151.55389 C 457.54719,-151.55389 458.29676,-152.07519 458.74647,-153.11901 L 460.94923,-151.94598 C 459.8993,-150.0805 458.32417,-149.14697 456.22374,-149.14697 C 454.60384,-149.14697 453.30611,-149.64367 452.33168,-150.63653 C 451.35561,-151.62994 450.86894,-152.99926 450.86894,-154.7445 C 450.86894,-156.46008 451.37123,-157.82159 452.37642,-158.83013 C 453.38161,-159.83806 454.63347,-160.34264 456.13423,-160.34264 C 458.35435,-160.34264 459.94407,-159.46776 460.90504,-157.71978 L 458.52106,-156.49927 z M 468.8844,-156.49927 C 468.43353,-157.4809 467.77292,-157.9715 466.90201,-157.9715 C 465.28095,-157.9715 464.46988,-156.90198 464.46988,-154.763 C 464.46988,-152.62341 465.28095,-151.55389 466.90201,-151.55389 C 467.95304,-151.55389 468.68918,-152.07519 469.10925,-153.11901 L 471.36126,-151.94598 C 470.31301,-150.0805 468.74007,-149.14697 466.64358,-149.14697 C 465.02587,-149.14697 463.73095,-149.64367 462.75711,-150.63653 C 461.78494,-151.62994 461.29773,-152.99926 461.29773,-154.7445 C 461.29773,-156.46008 461.79221,-157.82159 462.78061,-158.83013 C 463.76843,-159.83806 465.02588,-160.34264 466.55408,-160.34264 C 468.77027,-160.34264 470.35776,-159.46776 471.3154,-157.71978 L 468.8844,-156.49927 z" />
</g>
</g>
<path
d="M 297.29639,74.91064 L 181.06688,74.91064 C 179.8203,74.91064 178.80614,75.92529 178.80614,77.17187 L 178.80614,116.66748 C 178.80614,116.94922 179.03466,117.17822 179.31639,117.17822 L 299.04639,117.17822 C 299.32813,117.17822 299.55713,116.94922 299.55713,116.66748 L 299.55713,77.17188 C 299.55713,75.92529 298.54297,74.91064 297.29639,74.91064 z M 181.06688,75.93213 L 297.29639,75.93213 C 297.97998,75.93213 298.53565,76.48828 298.53565,77.17188 C 298.53565,77.17188 298.53565,93.09131 298.53565,104.59034 L 215.4619,104.59034 C 212.41698,110.09571 206.55077,113.83399 199.81835,113.83399 C 193.083,113.83399 187.21825,110.09913 184.1748,104.59034 L 179.82666,104.59034 C 179.82666,93.09132 179.82666,77.17188 179.82666,77.17188 C 179.82664,76.48828 180.38329,75.93213 181.06688,75.93213 z"
id="path294" />
<g
enable-background="new "
id="g296">
<path
d="M 265.60986,112.8833 C 265.68994,113.03906 265.79736,113.16504 265.93115,113.26172 C 266.06494,113.35791 266.22119,113.42969 266.40088,113.47608 C 266.58154,113.52296 266.76807,113.54639 266.96045,113.54639 C 267.09033,113.54639 267.22998,113.53565 267.3794,113.51368 C 267.52784,113.4922 267.66749,113.44972 267.79835,113.3877 C 267.92823,113.32569 268.03761,113.23975 268.12355,113.13086 C 268.21144,113.02197 268.25441,112.88379 268.25441,112.71533 C 268.25441,112.53515 268.19679,112.38916 268.08156,112.27685 C 267.9673,112.16455 267.81594,112.07177 267.62941,111.99658 C 267.44386,111.92236 267.23195,111.85693 266.9966,111.80078 C 266.76027,111.74463 266.52101,111.68262 266.27883,111.61377 C 266.02981,111.55176 265.78762,111.47559 265.55129,111.38525 C 265.31594,111.29541 265.10402,111.17822 264.9175,111.03515 C 264.73098,110.89208 264.58059,110.71337 264.46535,110.49853 C 264.35109,110.28369 264.29347,110.02392 264.29347,109.71923 C 264.29347,109.37646 264.36671,109.07958 264.51222,108.82763 C 264.6587,108.57568 264.85011,108.36572 265.08644,108.19726 C 265.32179,108.02929 265.58937,107.90478 265.8882,107.82372 C 266.18605,107.74315 266.48488,107.70263 266.78273,107.70263 C 267.13136,107.70263 267.46535,107.74169 267.78566,107.81982 C 268.105,107.89746 268.39015,108.02392 268.6382,108.19824 C 268.88722,108.37256 269.08449,108.59521 269.23097,108.86621 C 269.37648,109.13721 269.44972,109.46582 269.44972,109.85156 L 268.02784,109.85156 C 268.01514,109.65234 267.97315,109.4873 267.90284,109.35693 C 267.83155,109.22607 267.73682,109.12353 267.61964,109.04834 C 267.50148,108.97412 267.36671,108.9209 267.21534,108.89014 C 267.063,108.85889 266.89796,108.84326 266.71827,108.84326 C 266.60108,108.84326 266.48292,108.85596 266.36573,108.88037 C 266.24757,108.90576 266.14112,108.94922 266.04542,109.01123 C 265.94874,109.07373 265.86964,109.15137 265.80812,109.24463 C 265.7466,109.33838 265.71535,109.45654 265.71535,109.59961 C 265.71535,109.73047 265.73976,109.83643 265.78957,109.91699 C 265.83937,109.99804 265.93801,110.07275 266.08352,110.14111 C 266.22903,110.20947 266.43118,110.27832 266.68899,110.34668 C 266.9468,110.41504 267.28372,110.50244 267.70071,110.60791 C 267.82473,110.63281 267.99661,110.67822 268.21731,110.74365 C 268.43801,110.80908 268.65676,110.91308 268.87454,111.05615 C 269.09231,111.1997 269.27981,111.39111 269.43899,111.63037 C 269.59719,111.87012 269.67629,112.17676 269.67629,112.55029 C 269.67629,112.85547 269.61672,113.13867 269.49856,113.3999 C 269.3804,113.66162 269.20461,113.8872 268.97122,114.07666 C 268.73782,114.26709 268.44876,114.41455 268.10403,114.52051 C 267.75833,114.62647 267.35794,114.6792 266.90481,114.6792 C 266.53762,114.6792 266.18118,114.63379 265.83547,114.54346 C 265.49074,114.45313 265.18508,114.31104 264.92043,114.11768 C 264.65676,113.92432 264.4468,113.67774 264.29055,113.37891 C 264.13528,113.07959 264.06106,112.7251 264.06692,112.31397 L 265.4888,112.31397 C 265.48877,112.53809 265.52881,112.72803 265.60986,112.8833 z"
id="path298"
style="fill:#ffffff" />
<path
d="M 273.8667,107.8667 L 276.35986,114.53076 L 274.8374,114.53076 L 274.33349,113.04638 L 271.84033,113.04638 L 271.31787,114.53076 L 269.84326,114.53076 L 272.36377,107.8667 L 273.8667,107.8667 z M 273.95068,111.95264 L 273.11084,109.50928 L 273.09229,109.50928 L 272.22315,111.95264 L 273.95068,111.95264 z"
id="path300"
style="fill:#ffffff" />
</g>
<g
enable-background="new "
id="g302">
<path
d="M 239.17821,107.8667 C 239.49559,107.8667 239.78563,107.89502 240.04735,107.95068 C 240.30907,108.00683 240.53368,108.09863 240.72118,108.22607 C 240.9077,108.35351 241.05321,108.52295 241.15575,108.73437 C 241.25829,108.94579 241.31005,109.20703 241.31005,109.51806 C 241.31005,109.854 241.23388,110.13329 241.08056,110.35742 C 240.92822,110.58154 240.70165,110.76465 240.40283,110.90771 C 240.81494,111.02587 241.12256,111.23291 241.32568,111.5288 C 241.5288,111.82469 241.63037,112.18114 241.63037,112.59814 C 241.63037,112.93408 241.56494,113.22509 241.43408,113.47119 C 241.30322,113.7168 241.12646,113.91748 240.90576,114.07324 C 240.68408,114.229 240.43115,114.34424 240.14795,114.41845 C 239.86377,114.49365 239.57275,114.53075 239.27295,114.53075 L 236.03662,114.53075 L 236.03662,107.86669 L 239.17821,107.86669 L 239.17821,107.8667 z M 238.99071,110.56201 C 239.25243,110.56201 239.46727,110.5 239.63622,110.37597 C 239.80419,110.25146 239.88817,110.05029 239.88817,109.77099 C 239.88817,109.61572 239.85985,109.48828 239.80419,109.38915 C 239.74755,109.28954 239.67333,109.21239 239.57958,109.15624 C 239.48583,109.10058 239.37841,109.06151 239.25731,109.04003 C 239.13524,109.01806 239.00926,109.00732 238.8784,109.00732 L 237.50535,109.00732 L 237.50535,110.56201 L 238.99071,110.56201 z M 239.07664,113.39014 C 239.22019,113.39014 239.35691,113.37647 239.48777,113.34815 C 239.61863,113.32032 239.73484,113.27344 239.83445,113.2085 C 239.93406,113.14307 240.01316,113.0542 240.07273,112.94239 C 240.1323,112.83058 240.1616,112.68751 240.1616,112.51319 C 240.1616,112.17139 240.06492,111.92725 239.87156,111.78126 C 239.6782,111.63527 239.42234,111.56202 239.10496,111.56202 L 237.50535,111.56202 L 237.50535,113.39014 L 239.07664,113.39014 z"
id="path304"
style="fill:#ffffff" />
<path
d="M 241.88914,107.8667 L 243.53269,107.8667 L 245.09324,110.49854 L 246.64402,107.8667 L 248.27781,107.8667 L 245.80418,111.97315 L 245.80418,114.53077 L 244.33543,114.53077 L 244.33543,111.93604 L 241.88914,107.8667 z"
id="path306"
style="fill:#ffffff" />
</g>
<g
id="g6316_1_"
transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)">
<path
id="path6318_1_"
cx="475.97119"
ry="29.209877"
cy="252.08646"
type="arc"
rx="29.209877"
d="M -175.0083,-139.1153 C -175.00204,-129.7035 -182.62555,-122.06751 -192.03812,-122.06049 C -201.44913,-122.05341 -209.08512,-129.67774 -209.09293,-139.09028 C -209.09293,-139.09809 -209.09293,-139.10749 -209.09293,-139.1153 C -209.09919,-148.52784 -201.47413,-156.1623 -192.06311,-156.17011 C -182.65054,-156.17713 -175.01456,-148.55207 -175.0083,-139.14026 C -175.0083,-139.13092 -175.0083,-139.1239 -175.0083,-139.1153 z"
style="fill:#ffffff" />
<g
id="g6320_1_"
transform="translate(-23.9521,-89.72962)">
<path
id="path6322_1_"
d="M -168.2204,-68.05536 C -173.39234,-68.05536 -177.76892,-66.25067 -181.35175,-62.64203 C -185.02836,-58.90759 -186.86588,-54.48883 -186.86588,-49.38568 C -186.86588,-44.28253 -185.02836,-39.89416 -181.35175,-36.22308 C -177.67673,-32.55114 -173.29859,-30.71521 -168.2204,-30.71521 C -163.07974,-30.71521 -158.62503,-32.56677 -154.85312,-36.26996 C -151.30307,-39.78558 -149.52652,-44.15827 -149.52652,-49.38568 C -149.52652,-54.6123 -151.33432,-59.03265 -154.94843,-62.64203 C -158.5625,-66.25067 -162.98599,-68.05536 -168.2204,-68.05536 z M -168.17352,-64.69519 C -163.936,-64.69519 -160.33752,-63.20221 -157.37655,-60.21466 C -154.38748,-57.25836 -152.89214,-53.64899 -152.89214,-49.38568 C -152.89214,-45.09186 -154.35466,-41.52856 -157.28438,-38.69653 C -160.36876,-35.64727 -163.99849,-34.12304 -168.17351,-34.12304 C -172.34856,-34.12304 -175.94701,-35.63244 -178.96892,-38.64965 C -181.9908,-41.66918 -183.50176,-45.24657 -183.50176,-49.38567 C -183.50176,-53.52398 -181.97518,-57.13414 -178.92205,-60.21465 C -175.9939,-63.20221 -172.41107,-64.69519 -168.17352,-64.69519 z" />
<path
id="path6324_1_"
d="M -176.49548,-52.02087 C -175.75171,-56.71856 -172.44387,-59.22949 -168.30008,-59.22949 C -162.33911,-59.22949 -158.70783,-54.90448 -158.70783,-49.1372 C -158.70783,-43.50982 -162.57194,-39.13793 -168.39383,-39.13793 C -172.39856,-39.13793 -175.98297,-41.60277 -176.63611,-46.43877 L -171.93292,-46.43877 C -171.7923,-43.92778 -170.1626,-43.04418 -167.83447,-43.04418 C -165.1813,-43.04418 -163.4563,-45.50908 -163.4563,-49.27709 C -163.4563,-53.22942 -164.94693,-55.32244 -167.74228,-55.32244 C -169.79074,-55.32244 -171.55948,-54.57787 -171.93292,-52.02087 L -170.56418,-52.02789 L -174.26734,-48.32629 L -177.96894,-52.02789 L -176.49548,-52.02087 z" />
</g>
</g>
<g
id="g313">
<circle
cx="242.56226"
cy="90.224609"
r="10.8064"
id="circle315"
sodipodi:cx="242.56226"
sodipodi:cy="90.224609"
sodipodi:rx="10.8064"
sodipodi:ry="10.8064"
style="fill:#ffffff" />
<g
id="g317">
<path
d="M 245.68994,87.09766 C 245.68994,86.68116 245.35205,86.34424 244.93603,86.34424 L 240.16357,86.34424 C 239.74755,86.34424 239.40966,86.68115 239.40966,87.09766 L 239.40966,91.87061 L 240.74071,91.87061 L 240.74071,97.52295 L 244.3579,97.52295 L 244.3579,91.87061 L 245.68993,91.87061 L 245.68993,87.09766 L 245.68994,87.09766 z"
id="path319" />
<circle
cx="242.5498"
cy="84.083008"
r="1.63232"
id="circle321"
sodipodi:cx="242.5498"
sodipodi:cy="84.083008"
sodipodi:rx="1.63232"
sodipodi:ry="1.63232" />
</g>
<path
clip-rule="evenodd"
d="M 242.53467,78.31836 C 239.30322,78.31836 236.56641,79.4458 234.32715,81.70215 C 232.0293,84.03516 230.88086,86.79736 230.88086,89.98633 C 230.88086,93.1753 232.0293,95.91846 234.32715,98.21338 C 236.625,100.50781 239.36133,101.65527 242.53467,101.65527 C 245.74756,101.65527 248.53272,100.49853 250.88819,98.18359 C 253.10889,95.98681 254.21827,93.2539 254.21827,89.98632 C 254.21827,86.71874 253.08936,83.95751 250.83057,81.70214 C 248.57178,79.4458 245.80615,78.31836 242.53467,78.31836 z M 242.56396,80.41797 C 245.2124,80.41797 247.46142,81.35156 249.31103,83.21875 C 251.18115,85.06592 252.11572,87.32227 252.11572,89.98633 C 252.11572,92.66992 251.20068,94.89746 249.36963,96.66699 C 247.4419,98.57275 245.17334,99.52539 242.56397,99.52539 C 239.9546,99.52539 237.70557,98.58252 235.81739,96.6958 C 233.92774,94.80957 232.98389,92.57324 232.98389,89.98633 C 232.98389,87.3999 233.93799,85.14404 235.84619,83.21875 C 237.67676,81.35156 239.9165,80.41797 242.56396,80.41797 z"
id="path323"
style="fill-rule:evenodd" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

243
fossgis23/artwork/intro.svg Executable file
View file

@ -0,0 +1,243 @@
<?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.91 r13725"
sodipodi:docname="intro.svg">
<defs
id="defs20">
<filter
id="filter3772"
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow">
<feFlood
id="feFlood3774"
flood-opacity="0.5"
flood-color="rgb(255,255,255)"
result="flood" />
<feComposite
id="feComposite3776"
in2="SourceGraphic"
in="flood"
operator="in"
result="composite1" />
<feGaussianBlur
id="feGaussianBlur3778"
in="composite"
stdDeviation="3"
result="blur" />
<feOffset
id="feOffset3780"
dx="1"
dy="1"
result="offset" />
<feComposite
id="feComposite3782"
in2="offset"
in="SourceGraphic"
operator="over"
result="composite2" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="1237.7451"
inkscape:cy="-112.36108"
inkscape:document-units="px"
inkscape:current-layer="g_background"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-x="1920"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:snap-page="true">
<sodipodi:guide
orientation="0,1"
position="1987.9802,1080.8632"
id="guide2996" />
<sodipodi:guide
orientation="0,1"
position="0,0"
id="guide2998" />
<sodipodi:guide
orientation="1,0"
position="0,0"
id="guide3000" />
<sodipodi:guide
orientation="1,0"
position="1920,2297.1429"
id="guide3002" />
<sodipodi:guide
orientation="1,0"
position="32,0"
id="guide3029" />
<sodipodi:guide
orientation="0,1"
position="0,1048"
id="guide3031"
inkscape:label=""
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
position="1888,0"
orientation="1,0"
id="guide4176"
inkscape:label=""
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
position="1865.6255,13.404053"
orientation="0,1"
id="guide4183" />
</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="Background"
inkscape:groupmode="layer"
id="layer_background"
transform="translate(0,28)">
<g
id="g_background"
transform="translate(-162.78572,747.3215)">
<image
xlink:href="/Users/thorti/Git/c3voc/intro-outro-generator/fossgis23/artwork/berliner_fernsehturm_fullhd.png"
width="1920"
height="1080"
id="image_background"
x="162.78572"
y="-775.32147" />
<image
xlink:href="/Users/thorti/Git/c3voc/intro-outro-generator/fossgis23/artwork/fossgis23_logo.png"
width="249"
height="249"
id="image_logo"
x="1801.7858"
y="-743.32147" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:80.00000119%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
x="1900.0262"
y="1035.1428"
id="text2992-5-5-3"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
x="1900.0262"
y="1035.1428"
id="url"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:end;text-anchor:end;fill:#f2f4f5;fill-opacity:1;stroke:none">$url</tspan></text>
<g
id="box-und-text1"
inkscape:label="#g4270"
style="opacity:1">
<rect
style="fill:#333333;fill-opacity:0.70196078"
ry="0.0084510781"
y="697"
x="0"
height="310"
width="1920"
id="rect_banderole_1" />
<g
transform="matrix(1.3478261,0,0,1.3478261,0,-350.26087)"
style="opacity:0.25"
id="text1">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:80.00000119%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="75.964493"
y="879.83752"
id="text2992"
sodipodi:linespacing="90.000001%"><tspan
sodipodi:role="line"
x="75.964493"
y="879.83752"
id="tspan2996"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;stroke:none;fill-opacity:1"> Berlin</tspan><tspan
sodipodi:role="line"
x="75.964493"
y="915.23755"
id="tspan3002"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;stroke:none;fill-opacity:1">15. - 18. März 2023</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:80.00000119%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="77.218193"
y="837.2262"
id="text2992-5"
sodipodi:linespacing="90.000001%"><tspan
sodipodi:role="line"
id="tspan2994-9"
x="77.218193"
y="837.2262"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;stroke:none;fill-opacity:1">FOSSGIS Konferenz</tspan><tspan
sodipodi:role="line"
x="77.218193"
y="875.62622"
id="tspan2998-1"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;stroke:none;fill-opacity:1">2023</tspan></text>
</g>
</g>
<flowRoot
xml:space="preserve"
id="text2"
style="font-style:normal;font-weight:normal;font-size:53.91304398px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
inkscape:label="#text2"><flowRegion
id="flowRegion3041"><rect
id="rect3043"
width="1782.4845"
height="248.00835"
x="105.51553"
y="738.59009" /></flowRegion><flowPara
style="font-weight:bold;font-size:64.69565582px;line-height:94.99999762%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;stroke:none;fill-opacity:1"
id="flowPara3025">$personnames</flowPara><flowPara
id="flowPara3048"
style="font-weight:bold;font-size:64.69565582px;line-height:98.99999762%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;stroke:none;fill-opacity:1">$title</flowPara></flowRoot> <text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:80.00000119%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
x="30.53125"
y="1038.3694"
id="text2992-5-5-3-3"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
x="30.53125"
y="1038.3694"
id="url-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:start;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none">Photo: Adenie.abubakar, CC BY-SA 4.0</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

350
fossgis23/artwork/outro.svg Executable file
View file

@ -0,0 +1,350 @@
<?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.91 r13725"
sodipodi:docname="outro.svg">
<defs
id="defs20">
<filter
id="filter3772"
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow">
<feFlood
id="feFlood3774"
flood-opacity="0.5"
flood-color="rgb(255,255,255)"
result="flood" />
<feComposite
id="feComposite3776"
in2="SourceGraphic"
in="flood"
operator="in"
result="composite1" />
<feGaussianBlur
id="feGaussianBlur3778"
in="composite"
stdDeviation="3"
result="blur" />
<feOffset
id="feOffset3780"
dx="1"
dy="1"
result="offset" />
<feComposite
id="feComposite3782"
in2="offset"
in="SourceGraphic"
operator="over"
result="composite2" />
</filter>
<filter
color-interpolation-filters="sRGB"
id="filter3772-5"
inkscape:label="Drop Shadow">
<feFlood
id="feFlood3774-9"
flood-opacity="0.5"
flood-color="rgb(255,255,255)"
result="flood" />
<feComposite
id="feComposite3776-9"
in2="SourceGraphic"
in="flood"
operator="in"
result="composite1" />
<feGaussianBlur
id="feGaussianBlur3778-3"
stdDeviation="3"
result="blur" />
<feOffset
id="feOffset3780-4"
dx="1"
dy="1"
result="offset" />
<feComposite
id="feComposite3782-9"
in2="offset"
in="SourceGraphic"
operator="over"
result="composite2" />
</filter>
</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="617.24097"
inkscape:cy="402.75815"
inkscape:document-units="px"
inkscape:current-layer="g_background-5"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1031"
inkscape:window-x="1920"
inkscape:window-y="27"
inkscape:window-maximized="1">
<sodipodi:guide
orientation="0,1"
position="0,1080"
id="guide2996"
inkscape:label=""
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
orientation="0,1"
position="0,0"
id="guide2998" />
<sodipodi:guide
orientation="1,0"
position="0,0"
id="guide3000" />
<sodipodi:guide
orientation="1,0"
position="1920,0"
id="guide3002"
inkscape:label=""
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
orientation="1,0"
position="32,0"
id="guide3029" />
<sodipodi:guide
orientation="0,1"
position="0,1048"
id="guide3031"
inkscape:label=""
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
position="1888,281.42857"
orientation="1,0"
id="guide4165"
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:label="Background"
inkscape:groupmode="layer"
id="layer_background"
transform="translate(0,-476)">
<g
id="g_background"
transform="translate(437.21428,1251.3215)">
<image
xlink:href="/Users/thorti/Git/c3voc/intro-outro-generator/fossgis23/artwork/fossgis23_logo.png"
y="-743.32147"
x="1801.7858"
id="image_logo"
height="249"
width="249" />
<g
id="g_background-5"
transform="translate(1.4433594e-5,-2.7832031e-5)">
<image
xlink:href="/Users/thorti/Git/c3voc/intro-outro-generator/fossgis23/artwork/berliner_fernsehturm_fullhd.png"
y="-775.32147"
x="-437.21429"
id="image_background"
height="1080"
width="1920" />
<image
xlink:href="/Users/thorti/Git/c3voc/intro-outro-generator/fossgis23/artwork/fossgis23_logo.png"
y="-743.32147"
x="1801.7858"
id="image_logo-3"
height="249"
width="249" />
</g>
</g>
<g
style="opacity:1"
id="banderole"
transform="matrix(1.3478261,0,0,1.3478261,2.8702447e-7,-525.56522)">
<rect
id="rect_banderole"
width="1424.5161"
height="230"
x="-8.2519534e-07"
y="1281"
ry="0.0062701544"
style="fill:#333333;fill-opacity:0.70196078" />
<text
sodipodi:linespacing="90.000001%"
id="text2992"
y="1382.8375"
x="75.964493"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:90.00000119%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;fill-opacity:1;stroke:none"
id="tspan3002"
y="1382.8375"
x="75.964493"
sodipodi:role="line"> Berlin</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;fill-opacity:1;stroke:none"
y="1420.2375"
x="75.964493"
sodipodi:role="line"
id="tspan4213">15. - 18. März 2023</tspan></text>
<text
sodipodi:linespacing="90.000001%"
id="text2992-5"
y="1341.2262"
x="77.218193"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:90.00000119%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none"
y="1341.2262"
x="77.218193"
id="tspan2994-9"
sodipodi:role="line">FOSSGIS Konferenz</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none"
id="tspan2998-1"
y="1379.6262"
x="77.218193"
sodipodi:role="line">2023</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none"
id="tspan3002-3"
y="1418.0262"
x="77.218193"
sodipodi:role="line" /><tspan
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none"
y="1438.5645"
x="77.218193"
sodipodi:role="line"
id="tspan3013">www.fossgis-konferenz.de/2023</tspan></text>
</g>
<g
transform="matrix(1.9786883,0,0,1.9784667,1294.4604,1263.9383)"
id="license"
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png"
inkscape:export-xdpi="300.23013"
inkscape:export-ydpi="300.23013"
inkscape:label="#g287">
<path
inkscape:connector-curvature="0"
id="path3817_2_"
nodetypes="ccccccc"
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"
style="fill:#aab2ab" />
<g
id="g5908_2_"
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
<path
inkscape:connector-curvature="0"
id="path5906_2_"
cx="296.35416"
ry="22.939548"
cy="264.3577"
type="arc"
rx="22.939548"
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"
style="fill:#ffffff" />
<g
id="g5706_2_"
transform="translate(-289.6157,99.0653)">
<path
inkscape:connector-curvature="0"
id="path5708_2_"
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" />
</g>
</g>
<path
inkscape:connector-curvature="0"
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"
id="path294" />
<g
id="g313"
transform="translate(16.172332,0)">
<circle
cx="242.56226"
cy="90.224609"
r="10.8064"
id="circle315"
style="fill:#ffffff" />
<g
id="g317">
<path
inkscape:connector-curvature="0"
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"
id="path319" />
<circle
cx="242.5498"
cy="84.083008"
r="1.63232"
id="circle321" />
</g>
<path
inkscape:connector-curvature="0"
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"
id="path323"
style="clip-rule:evenodd;fill-rule:evenodd" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:20.2165451px;line-height:125%;font-family:Sans;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="236.42627"
y="113.75954"
id="text3393"
sodipodi:linespacing="125%"
transform="scale(0.999944,1.000056)"><tspan
sodipodi:role="line"
id="tspan3395"
x="236.42627"
y="113.75954"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.84473801px;font-family:Helvetica;-inkscape-font-specification:'Helvetica Bold'"> BY 4.0 DE</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:30px;line-height:80.00000119%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
x="306.42627"
y="140.1428"
id="text2992-5-5-3"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
x="306.42627"
y="140.1428"
id="url"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:end;text-anchor:end;fill:#f2f4f5;fill-opacity:1;stroke:none">https://creativecommons.org/licenses/by/4.0/</tspan></text>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:80.00000119%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
x="30.53125"
y="1542.3694"
id="text2992-5-5-3-3"
sodipodi:linespacing="80.000001%"><tspan
sodipodi:role="line"
x="30.53125"
y="1542.3694"
id="url-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:start;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none">Photo: Adiene.abubakar, CC BY-SA 4.0</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

66
fossgis23/artwork/overlay.svg Executable file
View file

@ -0,0 +1,66 @@
<?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.91 r13725"
sodipodi:docname="overlay.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="1821.5279"
inkscape:cy="997.43813"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1021"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<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="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-476.36218)">
<image
sodipodi:absref="/Users/thorti/Git/c3voc/intro-outro-generator/fossgis23/artwork/fossgis23_logo.png"
xlink:href="fossgis23_logo.png"
style="opacity:0.5"
width="120"
height="120"
id="image2993"
x="1788"
y="488.36218" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

242
fossgis23/artwork/pause.svg Executable file
View file

@ -0,0 +1,242 @@
<?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.91 r13725"
sodipodi:docname="pause.svg">
<defs
id="defs20">
<filter
id="filter3772"
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow">
<feFlood
id="feFlood3774"
flood-opacity="0.5"
flood-color="rgb(255,255,255)"
result="flood" />
<feComposite
id="feComposite3776"
in2="SourceGraphic"
in="flood"
operator="in"
result="composite1" />
<feGaussianBlur
id="feGaussianBlur3778"
in="composite"
stdDeviation="3"
result="blur" />
<feOffset
id="feOffset3780"
dx="1"
dy="1"
result="offset" />
<feComposite
id="feComposite3782"
in2="offset"
in="SourceGraphic"
operator="over"
result="composite2" />
</filter>
</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="400.88988"
inkscape:cy="724.07855"
inkscape:document-units="px"
inkscape:current-layer="g3091x"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1021"
inkscape:window-x="1280"
inkscape:window-y="27"
inkscape:window-maximized="1">
<sodipodi:guide
orientation="0,1"
position="0,1080"
id="guide2996"
inkscape:label=""
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
orientation="0,1"
position="0,0"
id="guide2998" />
<sodipodi:guide
orientation="1,0"
position="0,0"
id="guide3000" />
<sodipodi:guide
orientation="1,0"
position="1920,0"
id="guide3002"
inkscape:label=""
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
orientation="1,0"
position="32,0"
id="guide3029" />
<sodipodi:guide
orientation="0,1"
position="0,1048"
id="guide3031"
inkscape:label=""
inkscape:color="rgb(0,0,255)" />
<sodipodi:guide
position="1888,0"
orientation="1,0"
id="guide4168"
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:label="Background"
inkscape:groupmode="layer"
id="layer_background"
transform="translate(0,-476)">
<g
id="g_background"
transform="translate(-162.78572,1251.3215)">
<image
xlink:href="/Users/thorti/Git/c3voc/intro-outro-generator/fossgis23/artwork/berliner_fernsehturm_fullhd.png"
x="162.78572"
y="-775.32147"
id="image_background"
height="1080"
width="1920" />
<image
xlink:href="/Users/thorti/Git/c3voc/intro-outro-generator/fossgis23/artwork/fossgis23_logo.png"
y="-743.32147"
x="1801.7858"
id="image_logo"
height="249"
width="249" />
</g>
<g
id="g4170"
transform="matrix(1.3478261,0,0,1.3478261,2.8702446e-7,-525.56523)">
<g
transform="matrix(1.875,0,0,1,-8.2519531e-7,504.00003)"
id="g3091x">
<rect
id="rect_banderole_1"
width="759.74194"
height="230"
x="0"
y="777"
ry="0.0062701544"
style="fill:#333333;fill-opacity:0.70196078" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:21.67332268px;line-height:90.00000119%;font-family:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
x="16.542841"
y="752.40576"
id="text2992-5-5-3-3"
sodipodi:linespacing="90.000001%"
transform="scale(0.73029674,1.3693064)"><tspan
sodipodi:role="line"
x="16.542841"
y="752.40576"
id="url-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.66932869px;line-height:80.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:start;text-anchor:start;fill:#f2f4f5;fill-opacity:1;stroke:none">Photo: Adiene.abubakar, CC BY-SA</tspan></text>
</g>
<g
transform="translate(-8.2519531e-7,504.00003)"
id="text1"
style="opacity:0.25">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:90.00000119%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="75.964493"
y="879.83752"
id="text2992"
sodipodi:linespacing="90.000001%"><tspan
sodipodi:role="line"
x="75.964493"
y="879.83752"
id="tspan2996"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;fill-opacity:1;stroke:none"> Berlin</tspan><tspan
sodipodi:role="line"
x="75.964493"
y="915.23755"
id="tspan3002"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#c2ced2;fill-opacity:1;stroke:none">15. - 18. März 2023</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:90.00000119%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="77.218193"
y="837.2262"
id="text2992-5"
sodipodi:linespacing="90.000001%"><tspan
sodipodi:role="line"
id="tspan2994-9"
x="77.218193"
y="837.2262"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none">FOSSGIS Konferenz</tspan><tspan
sodipodi:role="line"
x="77.218193"
y="875.62622"
id="tspan2998-1"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none">2023</tspan><tspan
id="tspan3018"
sodipodi:role="line"
x="77.218193"
y="914.02618"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none" /><tspan
sodipodi:role="line"
x="77.218193"
y="934.56445"
id="tspan3002-3"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none">www.fossgis-konferenz.de/2023</tspan></text>
</g>
<g
transform="translate(-8.2519531e-7,504.00003)"
id="text2"
style="opacity:1">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:90.00000119%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="77.218193"
y="837.2262"
id="text39"
sodipodi:linespacing="90.000001%"><tspan
sodipodi:role="line"
x="77.218193"
y="837.2262"
id="tspan41"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:48px;line-height:90.00000119%;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#f2f4f5;fill-opacity:1;stroke:none">Gleich geht's weiter...</tspan></text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

View file

@ -3,7 +3,6 @@
import svg.path
from lxml import etree
from renderlib import *
from schedulelib import *
# URL to Schedule-XML
scheduleUrl = 'http://programm.froscon.de/2014/schedule.xml'

View file

@ -3,7 +3,6 @@
import svg.path
from lxml import etree
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
import svg.path

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,145 +0,0 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML
scheduleUrl = 'https://import.c3voc.de/schedule/god2024.xml?showall=yes'
titlemap = {
}
def introFrames(p):
givenFrame = 0
nr = p['$id'];
# 1 Sekunden nix
frames = 1*fps
for i in range(0, frames):
givenFrame += 1
yield (
('bg', 'attr', '{http://www.w3.org/1999/xlink}href', "given-frames/frame%04d.png" % (givenFrame)),
('layer1', 'style', 'opacity', "%.4f" % 0), # nix
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
)
# 1 Sekunde Text Fadein
frames = 1*fps
for i in range(0, frames):
givenFrame += 1
yield (
('bg', 'attr', '{http://www.w3.org/1999/xlink}href', "given-frames/frame%04d.png" % (givenFrame)),
('layer1', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
)
# 5 Sekunden Text
frames = 5*fps
for i in range(0, frames):
givenFrame += 1
yield (
('bg', 'attr', '{http://www.w3.org/1999/xlink}href', "given-frames/frame%04d.png" % (givenFrame)),
('layer1', 'style', 'opacity', "%.4f" %1),
# ('text', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, move, -move, frames)),
)
def outroFrames(p):
xml = etree.parse('god2024/artwork/outro.svg').getroot()
frames = int(5*fps)
for i in range(0, frames):
yield ()
def pauseFrames(p):
# 1 sekunden fade in
frames = 1*fps
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
)
# 1 sekunde sehen
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', "%.4f" % 1),
)
# 1 sekunde fadeout
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
)
# 1 sekunde bild
for i in range(0, frames):
yield (
('text1', 'style', 'opacity', "%.4f" % 0),
)
def debug():
render(
'intro.svg',
'../intro.ts',
introFrames,
{
'$id': 65,
'$title': 'OWASP Juice Shop 10th anniversary: Is it still fresh?'.upper(),
'$subtitle': '',
'$personnames': 'Jannik Hollenbach'.upper(),
#'only_render_frame': 353
'only_rerender_frames_after': 225
}
)
# render(
# 'pause.svg',
# '../pause.ts',
# pauseFrames
# )
def tasks(queue, args, id_list, skip_list):
if not 'outro' in skip_list:
# place a task for the outro into the queue
queue.put(Rendertask(
infile = 'outro.svg',
outfile = 'outro.ts',
sequence = outroFrames
))
if not 'pause' in skip_list:
# place the pause-sequence into the queue
queue.put(Rendertask(
infile = 'pause.svg',
outfile = 'pause.ts',
sequence = pauseFrames
))
# iterate over all events extracted from the schedule xml-export
for event in events(scheduleUrl, titlemap):
# skip events which will not be recorded
if event['room'] not in ('Da Capo',) or event['track'] == 'Nomnom':
print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
continue
# when id_list is not empty, only render events which are in id_list
if id_list and int(event['id']) not in id_list:
print("skipping id (%s [%s])" % (event['title'], event['id']))
continue
# generate a task description and put them into the queue
queue.put(Rendertask(
infile = 'intro.svg',
outfile = str(event['id']) + ".ts",
sequence = introFrames,
parameters = {
'$id': event['id'],
'$title': event['title'].upper(),
'$subtitle': event['subtitle'],
'$personnames': event['personnames'].upper(),
}
))

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.9 MiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.4 MiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.9 MiB

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
# URL to Schedule-XML
scheduleUrl = 'http://bl0rg.net/~andi/gpn15-fahrplan/schedule.xml'

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -1,7 +1,6 @@
#!/usr/bin/python3
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML

View file

@ -3,7 +3,6 @@
import subprocess
import os.path
from renderlib import *
from schedulelib import *
from easing import *
# URL to Schedule-XML
@ -101,7 +100,7 @@ def pauseFrames(p):
yield (
('onhold', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -0.8, frames-1)),
)
frames = int(1.5*fps)
for i in range(0, frames):
yield (
@ -117,7 +116,7 @@ def outroFrames(p):
scale = easeLinear(i, 1.3, 0.3 , frames-1)
opacity = 0
if i > int(frames*0.7):
opacity = easeLinear(int(i-frames*0.7), 0, 1, int(frames-frames*0.7)-1)
opacity = easeLinear(int(i-frames*0.7), 0, 1, int(frames-frames*0.7)-1)
yield (
('guadeclogoscale', 'attr', 'transform', 'scale({scale},{scale})'.format(scale=scale),),
('fadetoblack', 'style', 'opacity', '{opac}'.format(opac=opacity),),
@ -130,7 +129,7 @@ def outroFrames(p):
('fadetoblack', 'style', 'opacity', "1"),
)
def debug():
render(
'intro.svg',
@ -163,7 +162,7 @@ def tasks(queue, args):
if not str(event['id']) in args:
continue
if len(event['title']) < 71:
if len(event['title']) < 71:
params = {
'$title': event['title'],
'$longtitle': '',

View file

@ -1,140 +0,0 @@
#!/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
))

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

View file

@ -1,482 +0,0 @@
<?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="bg.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.28796074"
inkscape:cx="897.69181"
inkscape:cy="724.05703"
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" />
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline">
<rect
style="fill:#000000;stroke:#000000;stroke-width:2.50195;fill-opacity:1"
id="rect1419"
width="1917.498"
height="1077.498"
x="1.2509733"
y="1.2509733"
inkscape:export-filename="/home/thorsten/git/voc/intro-outro-generator/hackerhotel2024/artwork/bg.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96" />
<g
id="g3984"
transform="matrix(0.51141082,0,0,0.51141082,1309.2136,-62.528704)"
inkscape:export-filename="/home/thorsten/git/voc/intro-outro-generator/hackerhotel2024/artwork/bg.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<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>
</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>

Before

Width:  |  Height:  |  Size: 37 KiB

View file

@ -1,745 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 58 KiB

File diff suppressed because one or more lines are too long

View file

@ -1,300 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 19 KiB

View file

@ -1,406 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 17 KiB

View file

@ -1,54 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 9.6 KiB

Some files were not shown because too many files have changed in this diff Show more