Merge pull request #43 from stblassitude/master
Add intro for DiVOC HS and PTT
This commit is contained in:
commit
fa59ff29c1
10 changed files with 1696 additions and 0 deletions
131
divoc-hs/__init__.py
Normal file
131
divoc-hs/__init__.py
Normal file
|
@ -0,0 +1,131 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://git.chaotikum.org/divoc/fahrplan/raw/master/fahrplan.xml'
|
||||
|
||||
|
||||
def clamp(n, i, a):
|
||||
return max(min(n, a), i)
|
||||
|
||||
|
||||
def introFrames(args):
|
||||
frames = int(.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('subtitle', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
frames = int(.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('title', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('subtitle', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
frames = int(1*fps)
|
||||
for i in range(0, frames):
|
||||
scale = easeInOutQuad(i, 1.0, -0.8, frames-1)
|
||||
dx = easeInOutQuad(i, 0, 1550, frames-1)
|
||||
dy = easeInOutQuad(i, 0, 875, frames-1)
|
||||
yield (
|
||||
('logo', 'attr', 'transform', f'translate({dx}, {dy}) scale({scale},{scale})'),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('subtitle', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
step = 0.33
|
||||
steps = step * fps
|
||||
frames = int(4 * steps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'attr', 'transform', f'translate(1550, 875) scale(.2,.2)'),
|
||||
('title', 'style', 'opacity', easeInQuad(clamp(i, 0, fps), 0, 1, fps)),
|
||||
('subtitle', 'style', 'opacity', easeInQuad(clamp(i - 1*steps, 0, fps), 0, 1, fps)),
|
||||
('personnames', 'style', 'opacity', easeInQuad(clamp(i - 2*steps, 0, fps), 0, 1, fps)),
|
||||
('id', 'style', 'opacity', easeInQuad(clamp(i - 3*steps, 0, fps), 0, 1, fps)),
|
||||
)
|
||||
frames = int(5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'attr', 'transform', f'translate(1550, 875) scale(.2,.2)'),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(args):
|
||||
#fadein outro graphics
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(())
|
||||
|
||||
|
||||
def debug():
|
||||
render('divoc-hs-intro.svg',
|
||||
'../divoc-hs-intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 7776,
|
||||
'$title': 'StageWar live! mit vielen Wörtern extra lang das wird jetzt echt zu viel',
|
||||
'$subtitle': 'Metal Konzert mit vielen Wörtern extra lang das wird jetzt echt zu viel',
|
||||
'$personnames': 'www.stagewar.de mit vielen Wörtern extra lang das wird jetzt echt zu viel'
|
||||
}
|
||||
)
|
||||
|
||||
render('divoc-hs-outro.svg',
|
||||
'../divoc-hs-outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'background.svg',
|
||||
# '../background.ts',
|
||||
# backgroundFrames
|
||||
# )
|
||||
#
|
||||
# render('pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
# if event['room'] not in ('Chirurgie (Saal 1.04)', 'Kreißsaal (Saal 1.11)'):
|
||||
# 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 them into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'divoc-hs-intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$id': event['id'],
|
||||
'$title': event['title'],
|
||||
'$subtitle': event['subtitle'],
|
||||
'$personnames': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'divoc-hs-outro.svg',
|
||||
outfile = 'divoc-hs-outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
BIN
divoc-hs/artwork/ArchivoBlack-Regular.ttf
Normal file
BIN
divoc-hs/artwork/ArchivoBlack-Regular.ttf
Normal file
Binary file not shown.
93
divoc-hs/artwork/OFL.txt
Normal file
93
divoc-hs/artwork/OFL.txt
Normal file
|
@ -0,0 +1,93 @@
|
|||
Copyright 2017 The Archivo Black Project Authors (https://github.com/Omnibus-Type/ArchivoBlack)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
577
divoc-hs/artwork/divoc-hs-intro.svg
Normal file
577
divoc-hs/artwork/divoc-hs-intro.svg
Normal file
|
@ -0,0 +1,577 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="wave"
|
||||
viewBox="0 0 1920 1080"
|
||||
version="1.1"
|
||||
sodipodi:docname="divoc-hs-intro.svg"
|
||||
inkscape:version="1.0.1 (c497b03c, 2020-09-10)">
|
||||
<metadata
|
||||
id="metadata11764">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs11762">
|
||||
<rect
|
||||
x="69.551954"
|
||||
y="42.097235"
|
||||
width="1725.9867"
|
||||
height="168.38894"
|
||||
id="rect11768" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31649"
|
||||
id="rect11768-7" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect69" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59008"
|
||||
id="rect11768-7-8" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect101" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect11768-7-8-5" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect131" />
|
||||
<rect
|
||||
x="69.551954"
|
||||
y="42.097235"
|
||||
width="1725.9867"
|
||||
height="168.38894"
|
||||
id="rect11768-8" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31649"
|
||||
id="rect11768-7-1" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect69-7" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59008"
|
||||
id="rect11768-7-8-2" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect101-6" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect11768-7-8-5-0" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect131-6" />
|
||||
<style
|
||||
id="style1165">.a{fill:#f79520;}.b{fill:#ad621b;}.c{fill:#6d6e71;}.d{fill:#434345;}.e{fill:#58595b;}.f{fill:#4b9042;}.g{fill:#5ab547;}.h{fill:#417e3c;}</style>
|
||||
<style
|
||||
id="style1413">.a{fill:#434345;}.b{fill:#6d6e71;}</style>
|
||||
<style
|
||||
id="style1007">.a{fill:#f79520;}.b{fill:#ad621b;}.c{fill:#6d6e71;}.d{fill:#434345;}.e{fill:#58595b;}.f{fill:#4b9042;}.g{fill:#5ab547;}.h{fill:#417e3c;}</style>
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect11768-7-3" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect1256" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1731.718"
|
||||
height="181.28447"
|
||||
id="rect11768-83" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1725.9867"
|
||||
height="168.38895"
|
||||
id="rect2903" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect11768-7-2" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect2906" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect11768-7-8-5-9" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect2909" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect11768-7-2-3" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31648"
|
||||
id="rect2969" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1959"
|
||||
inkscape:window-height="1235"
|
||||
id="namedview11760"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.69791667"
|
||||
inkscape:cx="960"
|
||||
inkscape:cy="540"
|
||||
inkscape:window-x="276"
|
||||
inkscape:window-y="90"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="wave"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-text-baseline="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<sodipodi:guide
|
||||
position="100.6673,869.51382"
|
||||
orientation="1,0"
|
||||
id="guide90" />
|
||||
</sodipodi:namedview>
|
||||
<linearGradient
|
||||
id="gradient"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6.1731"
|
||||
y1="-9.6922"
|
||||
x2="1898.9858"
|
||||
y2="1083.1237">
|
||||
<stop
|
||||
offset="0"
|
||||
stop-color="#4D99B2"
|
||||
id="stop11682" />
|
||||
<stop
|
||||
offset="0.3765"
|
||||
stop-color="#56A5BA"
|
||||
id="stop11684" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#6DC4CE"
|
||||
id="stop11686" />
|
||||
</linearGradient>
|
||||
<rect
|
||||
fill="url(#gradient)"
|
||||
width="1920"
|
||||
height="1080"
|
||||
id="rect11689"
|
||||
sodipodi:insensitive="true"
|
||||
x="0"
|
||||
y="0"
|
||||
style="fill:#e5d7c8;fill-opacity:1" />
|
||||
<g
|
||||
id="logo"
|
||||
transform="translate(-8.1293612,23.806559)">
|
||||
<g
|
||||
id="g1087"
|
||||
transform="matrix(2.6814338,0,0,2.6814338,215.61849,222.15064)">
|
||||
<path
|
||||
class="a"
|
||||
d="m 272.86,85.19 v 0 a 5.78,5.78 0 0 1 -1.72,-0.68 4.31,4.31 0 0 1 -0.73,-0.54 c -1.88,-1.54 -3.89,-3 -6,-4.45 a 78.87,78.87 0 0 0 -8.21,-4.82 73,73 0 0 0 -6.8,-3 101.14,101.14 0 0 0 -10.89,-3.11 c -1.19,-0.26 -2.41,-0.52 -3.76,-0.77 l -2.46,-0.43 -1.25,-0.19 a 101.72,101.72 0 0 0 -15,-1.12 c -1.56,0 -3.12,0.15 -4.63,0.28 -1.91,0.16 -3.88,0.39 -5.85,0.68 l -0.57,0.08 4.2,14.58 a 0.68,0.68 0 0 1 -0.06,0.54 0.7,0.7 0 0 1 -0.43,0.34 0.72,0.72 0 0 1 -0.88,-0.49 L 206.34,77 206.29,76.88 a 0.67,0.67 0 0 1 -0.08,-0.18 l -2.5,-8.85 -0.12,-0.45 -0.45,0.07 c -1.32,0.23 -2.59,0.47 -3.82,0.72 -3,0.6 -5.76,1.26 -8,1.8 a 164.33,164.33 0 0 0 -16,4.45 l -0.45,0.15 1.73,6.11 a 0.65,0.65 0 0 1 0,0.31 v 0.11 l 1.54,5.84 a 0.72,0.72 0 0 1 -0.5,0.88 0.7,0.7 0 0 1 -0.88,-0.48 L 173.49,75 l -0.52,0.19 a 99.27,99.27 0 0 0 -16.8,8 c -1.16,0.7 -2.23,1.36 -3.26,2 l -0.31,0.2 5.33,18.85 v 0.15 a 0.73,0.73 0 0 1 -0.52,0.74 0.75,0.75 0 0 1 -0.42,0 0.68,0.68 0 0 1 -0.37,-0.3 0.7,0.7 0 0 1 -0.1,-0.19 l -5.2,-18.4 -1.1,0.76 c -0.83,0.58 -1.66,1.17 -2.48,1.79 A 99.45,99.45 0 0 0 136.09,99 l -0.34,0.35 0.33,0.35 a 12,12 0 0 1 0.84,1 8.74,8.74 0 0 1 1.58,2.86 v 0.09 a 6,6 0 0 1 0.22,1.72 c 0,0.18 0,0.37 -0.05,0.56 a 4.69,4.69 0 0 1 -0.23,0.93 4.47,4.47 0 0 1 -0.55,1.06 9.54,9.54 0 0 1 -0.71,0.89 l -0.3,0.35 -0.17,0.22 a 8.14,8.14 0 0 0 -0.94,1.52 9.6,9.6 0 0 0 -0.93,3 l -0.06,0.34 a 5.34,5.34 0 0 1 -1.34,2.81 l -0.22,0.21 a 6.07,6.07 0 0 1 -0.75,0.61 l -0.25,0.16 -0.58,0.36 0.51,0.44 c 0.14,0.13 0.28,0.26 0.41,0.4 a 7.36,7.36 0 0 1 1.12,1.49 5.47,5.47 0 0 1 0.51,1.22 6.06,6.06 0 0 1 0.21,1.63 5.55,5.55 0 0 0 0.16,1.37 l 0.06,0.26 0.13,0.41 a 6.72,6.72 0 0 0 0.88,1.78 l 0.43,0.59 a 8.17,8.17 0 0 1 0.54,0.73 7,7 0 0 1 0.49,0.88 c 0,0.11 0.09,0.23 0.14,0.35 l 0.12,0.37 a 7.1,7.1 0 0 1 0.18,1 3.39,3.39 0 0 1 0,0.55 c 0,0.12 0,0.23 0,0.35 v 0.71 l 0.67,-0.23 a 6,6 0 0 1 3.32,-0.22 4.31,4.31 0 0 1 2.21,1.25 l 0.36,0.38 a 13.83,13.83 0 0 0 1.19,1.14 l 0.48,0.39 0.38,0.28 a 12.81,12.81 0 0 0 2.63,1.52 l 0.73,0.34 a 8.43,8.43 0 0 1 1.71,1.14 10.86,10.86 0 0 1 3.28,5.43 l 0.19,0.71 h 0.36 l 2.55,0.13 c 2.37,0.1 4.79,0.14 7.2,0.14 2,0 4,0 5.93,-0.09 1.26,0 2.52,-0.11 3.77,-0.18 l 1.3,-0.07 c 1.35,-0.08 2.82,-0.17 4.39,-0.29 l 1.72,-0.13 0.61,-0.05 -2.28,-8.05 a 0.59,0.59 0 0 1 0,-0.14 0.7,0.7 0 0 1 0.52,-0.74 0.72,0.72 0 0 1 0.88,0.49 l 2.35,8.32 h 0.41 a 139.38,139.38 0 0 0 17,-2.57 c 2.11,-0.46 4.22,-1 6.25,-1.52 l 0.49,-0.14 -2.76,-9.75 a 0.71,0.71 0 0 1 0.49,-0.88 0.68,0.68 0 0 1 0.4,0 0.71,0.71 0 0 1 0.49,0.49 l 2.76,9.76 0.48,-0.14 c 3.54,-1 7.08,-2.27 10.51,-3.64 1.48,-0.59 2.86,-1.17 4.21,-1.77 l 1.61,-0.72 c 0.84,-0.38 1.73,-0.79 2.68,-1.24 1.47,-0.7 2.8,-1.36 4.06,-2 l 0.36,-0.19 -4,-14.29 a 0.72,0.72 0 0 1 0.14,-0.65 0.77,0.77 0 0 1 0.36,-0.23 0.72,0.72 0 0 1 0.88,0.49 l 3.95,14 0.55,-0.31 a 74,74 0 0 0 13.7,-10 c 0.71,-0.64 1.42,-1.31 2.14,-2 1,-1 2.21,-2.19 3.46,-3.54 l 1.1,-1.22 c 0.37,-0.43 0.75,-0.87 1.13,-1.33 0.38,-0.46 0.77,-1 1.17,-1.46 0.6,-0.78 1.21,-1.6 1.8,-2.44 1.77,-2.53 3.34,-4.78 4.66,-6.75 0.94,-1.4 1.69,-2.57 2.37,-3.69 a 77.46,77.46 0 0 0 4.17,-7.96 7,7 0 0 1 2.32,-2.55 l 0.92,-0.67 -1.12,-0.22 z m -32.08,15.3 a 0.74,0.74 0 0 1 -1,0.18 0.71,0.71 0 0 1 -0.27,-0.39 0.7,0.7 0 0 1 0.1,-0.61 l 4.46,-6.36 -7.13,-3.09 a 0.7,0.7 0 0 1 -0.41,-0.46 0.71,0.71 0 0 1 0.69,-0.91 0.67,0.67 0 0 1 0.28,0.06 l 7.71,3.33 14.7,-4.15 a 0.71,0.71 0 0 1 0.88,0.49 0.71,0.71 0 0 1 -0.49,0.88 l -14.7,4.16 z m -9.33,5.64 a 21.65,21.65 0 0 1 -23.93,6.31 c -3.62,-1.5 -6.1,-4.07 -7,-7.24 v -0.17 c -0.86,-3.24 0,-6.77 2.48,-9.91 a 20.49,20.49 0 0 1 11,-6.91 22.61,22.61 0 0 1 5.78,-0.76 v 0 a 18.76,18.76 0 0 1 7.17,1.36 12.93,12.93 0 0 1 5,3.52 9.88,9.88 0 0 1 2,3.76 v 0.13 c 0.84,3.24 -0.04,6.78 -2.5,9.91 z m -33.91,6.5 -11,-2.38 -22.1,6.49 a 0.72,0.72 0 0 1 -0.4,-1.38 l 22,-6.45 h 0.12 l 8,-7.95 a 0.7,0.7 0 0 1 0.5,-0.2 0.74,0.74 0 0 1 0.51,0.2 0.72,0.72 0 0 1 0,1 l -7.17,7.13 9.88,2.14 a 0.72,0.72 0 0 1 0.55,0.85 0.74,0.74 0 0 1 -0.89,0.55 z"
|
||||
id="path1011" />
|
||||
<path
|
||||
class="b"
|
||||
d="M 271.7,82.53 A 79.78,79.78 0 0 0 257.09,73 a 73.18,73.18 0 0 0 -8.42,-3.61 100.14,100.14 0 0 0 -31.14,-5.26 155.83,155.83 0 0 0 -26.66,4 C 180.06,70.7 163.51,74.67 146.61,87.3 A 100.81,100.81 0 0 0 133,99.5 c 2.36,1.93 3.35,3.47 3.69,4.67 a 3.54,3.54 0 0 1 0.11,1.48 c -0.21,1.57 -1.38,1.71 -2.71,4.38 -1.56,3.13 -0.69,4.39 -2.15,5.78 -1.87,1.77 -4.68,1 -4.81,1.87 a 0.22,0.22 0 0 0 0,0.14 c 0.22,0.8 3.44,1.19 4.9,3.8 a 3.23,3.23 0 0 1 0.34,0.8 c 0.27,0.93 0,1.6 0.43,3.25 0.05,0.16 0.1,0.33 0.16,0.51 0.91,2.68 2.13,3.06 2.57,4.61 a 3.77,3.77 0 0 1 0.12,0.65 c 0.29,2.42 -1.3,4.1 -1.11,4.78 a 0.39,0.39 0 0 0 0.1,0.16 c 0.78,0.7 3.54,-2.81 6.52,-2.12 1.4,0.32 1.29,1.2 3.92,3.12 2.63,1.92 3.48,1.64 5,2.91 a 8.73,8.73 0 0 1 2.68,4.49 16.07,16.07 0 0 1 0.42,2 173.79,173.79 0 0 0 22.55,0.07 c 11.77,-0.72 29.69,-2 49.86,-11 6.88,-3.06 17.14,-7.74 26.92,-17.42 a 70.08,70.08 0 0 0 8.9,-10.27 c 6.17,-8.82 8.26,-11.93 11.43,-18.67 1,-2.07 5.72,-4.28 13.33,-7.29 -5.51,0.68 -12.28,2.43 -14.47,0.33 z m -1.12,6 c -3.11,6.61 -5.18,9.66 -11.22,18.3 a 68.88,68.88 0 0 1 -8.62,9.95 74.44,74.44 0 0 1 -15.68,11.75 l -3.78,-13.36 a 1.22,1.22 0 1 0 -2.34,0.66 l 3.93,13.89 c -3.18,1.69 -6,3 -8.33,4 a 116.21,116.21 0 0 1 -14.65,5.39 l -2.62,-9.27 a 1.22,1.22 0 0 0 -2.34,0.66 l 2.62,9.27 a 135.56,135.56 0 0 1 -23.15,4.07 l -2.24,-7.91 a 1.22,1.22 0 0 0 -2.34,0.66 l 2.11,7.46 c -2.34,0.19 -4.49,0.32 -6.41,0.44 a 173.22,173.22 0 0 1 -20.38,0 c 0,-0.12 -0.07,-0.24 -0.1,-0.37 a 11.3,11.3 0 0 0 -3.44,-5.67 9.54,9.54 0 0 0 -2.56,-1.56 13.63,13.63 0 0 1 -4.52,-3.22 5.16,5.16 0 0 0 -2.82,-1.77 6.43,6.43 0 0 0 -3.59,0.24 8.09,8.09 0 0 0 -0.05,-1 6.71,6.71 0 0 0 -0.2,-1 7,7 0 0 0 -1.37,-2.51 6.66,6.66 0 0 1 -1.23,-2.22 l -0.13,-0.39 a 5.27,5.27 0 0 1 -0.2,-1.51 6.51,6.51 0 0 0 -0.23,-1.75 5.94,5.94 0 0 0 -0.56,-1.32 7.6,7.6 0 0 0 -1.63,-2 6.77,6.77 0 0 0 1.08,-0.83 6.05,6.05 0 0 0 1.79,-3.71 9,9 0 0 1 0.86,-2.75 8.52,8.52 0 0 1 1.39,-2 5.62,5.62 0 0 0 1.56,-3.09 5.82,5.82 0 0 0 -0.18,-2.48 10.13,10.13 0 0 0 -2.56,-4.13 98.36,98.36 0 0 1 11.61,-10.19 c 1,-0.75 2,-1.46 3,-2.15 l 5,17.74 a 1.22,1.22 0 0 0 1.5,0.84 1.21,1.21 0 0 0 0.84,-1.5 l -5.23,-18.5 a 98.41,98.41 0 0 1 20,-9.94 l 3.09,11.77 a 1.22,1.22 0 1 0 2.34,-0.67 l -3.13,-11.91 c 6.05,-2.07 11.5,-3.37 16,-4.44 3.47,-0.82 7.41,-1.75 11.79,-2.5 l 4.13,14.3 a 1.2,1.2 0 0 0 1.5,0.84 1.22,1.22 0 0 0 0.84,-1.5 l -4.05,-14 a 86.65,86.65 0 0 1 9.94,-1 101.83,101.83 0 0 1 34.81,6 50.71,50.71 0 0 1 5.6,2.57 77.23,77.23 0 0 1 14.11,9.21 6,6 0 0 0 3,1.39 7.47,7.47 0 0 0 -2.56,2.68 z"
|
||||
id="path1013" />
|
||||
<path
|
||||
class="c"
|
||||
d="m 241.38,55.75 -0.17,0.47 v 0 l 0.09,-0.51 a 2.5,2.5 0 0 1 -0.26,-2.66 3.16,3.16 0 0 1 1.28,-1.68 l 0.5,-0.3 -0.11,-0.58 a 21,21 0 0 0 -5.83,-11 20.49,20.49 0 0 0 -11.45,-5.53 c -0.35,-0.64 -0.64,-1.18 -0.86,-1.6 l -0.21,-0.4 c -0.27,-0.5 -0.44,-0.84 -0.71,-1.3 0,0 -0.67,-1.2 -1.31,-2.21 -3,-4.71 -13.19,-9 -14.33,-9.47 a 59.84,59.84 0 0 0 -6.31,-2.27 35.4,35.4 0 0 0 -9.53,-1.61 c -3.15,0 -5.22,0.82 -6,2.36 -1,2.08 0.48,4.81 4.29,7.9 l 0.17,0.14 c -0.93,0.15 -2.07,0.35 -3.14,0.59 -0.13,0 -12.62,3 -12.39,7.34 0.14,2.81 4.51,4.75 11.66,5.18 a 56.14,56.14 0 0 0 8.81,-0.23 59.21,59.21 0 0 0 7.86,-1.38 c 0.61,0.26 1.24,0.52 1.86,0.76 l 1.39,0.52 a 4,4 0 0 0 -0.61,1.3 c -0.65,0.75 -8.18,1.92 -18.33,2.46 -6.59,0.36 -16.53,0.89 -22.25,7.52 a 16.91,16.91 0 0 0 -1.49,2.07 9.25,9.25 0 0 0 -3.16,-2.5 9.53,9.53 0 0 0 -4.13,-0.94 8.84,8.84 0 0 0 -5.89,2.17 c -3,2.63 -2.88,6.3 -2.85,8.06 0,1.54 0.09,5.13 3,7.79 a 9,9 0 0 0 3,1.77 l 0.34,0.13 0.32,-0.16 a 15.58,15.58 0 0 0 5.49,-4.5 l -0.4,-0.31 0.51,0.29 a 0.08,0.08 0 0 1 0,0.11 16,16 0 0 1 -2.63,2.69 15.38,15.38 0 0 1 -2.95,1.87 l -0.28,0.14 -0.12,0.3 c -0.93,2.26 -2.32,5.49 -3.67,8 -0.85,1.61 -1.51,2.82 -2,3.68 -0.32,0.55 -0.6,1 -0.88,1.46 -0.28,0.46 -0.53,0.86 -0.75,1.26 l -0.82,1.47 1.67,-0.24 a 14.24,14.24 0 0 1 1.72,-0.14 14,14 0 0 1 3.06,0.32 l 0.11,-0.48 v 0 0.58 l 0.48,0.11 v 0 h -0.58 a 13.18,13.18 0 0 0 -3,-0.32 12.67,12.67 0 0 0 -3,0.4 l -0.41,0.16 -0.19,0.57 c -1.58,5 -1.81,13.25 2.7,15.26 a 4.87,4.87 0 0 0 1.62,0.39 h 0.31 c 3.45,0 6.91,-3.38 7.56,-4.06 3.69,-3.82 4.34,-9 4.44,-11.11 a 18.75,18.75 0 0 0 -0.09,-3 5.39,5.39 0 0 1 0.21,-2.72 18.81,18.81 0 0 1 1.31,-2.85 30.65,30.65 0 0 0 8,1.28 32.11,32.11 0 0 0 15.75,-3.79 34.66,34.66 0 0 0 8.98,-6.77 l 0.56,-0.58 -0.56,-0.58 a 8.65,8.65 0 0 0 -5.93,-2.66 0.23,0.23 0 0 1 -0.21,-0.24 c 0,-0.14 0.12,-0.22 0.29,-0.22 h 0.07 0.18 0.36 a 5.72,5.72 0 0 1 2.28,0.66 12.32,12.32 0 0 1 4.43,3.26 l 0.09,0.1 c 0.13,0.17 0.4,0.5 0.87,1.16 0.36,0.48 0.73,1 1.24,1.6 a 26.68,26.68 0 0 0 4.44,4.13 l 0.83,0.61 0.43,-0.93 a 9.59,9.59 0 0 1 2,-2.85 h 0.11 a 0.08,0.08 0 0 1 0,0.11 10,10 0 0 0 -1.19,1.43 10.25,10.25 0 0 0 -0.82,1.49 l -0.47,0.71 0.72,0.45 c 5,3.21 9.85,4 12.61,2.13 2.37,-1.62 3.64,-5.28 2.46,-7.11 a 2.89,2.89 0 0 0 -1.43,-1 14.58,14.58 0 0 1 -1.72,-0.89 16.3,16.3 0 0 1 -2.5,-1.87 21.48,21.48 0 0 1 -3.87,-4.46 0.24,0.24 0 0 1 0.07,-0.33 0.26,0.26 0 0 1 0.32,0.07 20.91,20.91 0 0 0 3.79,4.37 l 0.07,0.06 a 16.78,16.78 0 0 0 2.19,1.65 10.66,10.66 0 0 0 5.68,1.42 21.75,21.75 0 0 0 6.46,-1.09 c 5.11,-1.65 8.73,-4.5 10.77,-8.48 a 14.92,14.92 0 0 0 1.21,-3.3 l 0.29,-1.24 -1.26,0.23 a 0.51,0.51 0 0 1 -0.26,-0.06 z m -37.82,-31 c 4.81,0.28 6.71,0.92 7.95,1.51 a 16.19,16.19 0 0 1 2.19,1.28 l 0.17,0.11 a 32.92,32.92 0 0 1 5.75,4.87 h -0.1 a 20.89,20.89 0 0 0 -5.26,-4.32 l -0.92,-0.58 a 17.37,17.37 0 0 0 -2.26,-1.32 c -1.29,-0.61 -3.26,-1.28 -8.17,-1.57 -0.87,-0.05 -1.75,-0.08 -2.65,-0.09 1.12,0.05 2.23,0.08 3.3,0.15 z"
|
||||
id="path1015" />
|
||||
<path
|
||||
class="d"
|
||||
d="m 243.77,50.72 a 22,22 0 0 0 -6.19,-12 21.21,21.21 0 0 0 -11.51,-5.71 l -0.62,-1.18 -0.2,-0.37 -0.74,-1.37 v 0 c -0.21,-0.42 -0.6,-1.08 -1.33,-2.23 -3.15,-5 -13.56,-9.36 -14.8,-9.86 a 57.24,57.24 0 0 0 -6.4,-2.3 36.26,36.26 0 0 0 -9.81,-1.66 c -3.61,0 -5.92,1 -6.86,2.93 -0.77,1.6 -0.77,4.2 3.12,7.85 l -1.13,0.23 a 44.26,44.26 0 0 0 -7.3,2.48 c -2.61,1.16 -6.06,3 -5.91,5.93 0.18,3.42 4.78,5.65 12.6,6.12 1,0.06 2,0.08 3,0.08 a 59.33,59.33 0 0 0 6,-0.31 59.94,59.94 0 0 0 7.64,-1.29 l 1.59,0.65 0.34,0.13 v 0 c -0.62,0.26 -2.74,0.9 -9.27,1.55 -4.25,0.42 -8.25,0.64 -8.29,0.64 -6.75,0.36 -17,0.91 -22.95,7.86 -0.31,0.35 -0.6,0.72 -0.88,1.1 a 10.41,10.41 0 0 0 -7.17,-2.84 9.79,9.79 0 0 0 -6.55,2.43 c -3.29,2.93 -3.22,7.06 -3.19,8.82 0,1.52 0.1,5.55 3.33,8.5 a 9.91,9.91 0 0 0 2.78,1.78 c -1,2.36 -2.21,5.15 -3.4,7.4 -0.84,1.59 -1.49,2.78 -2,3.63 -0.33,0.56 -0.6,1 -0.85,1.4 v 0 a 15.08,15.08 0 0 0 -1.87,3.86 c -1.73,5.47 -1.87,14.19 3.24,16.46 a 5.53,5.53 0 0 0 2,0.48 h 0.37 c 3.85,0 7.57,-3.64 8.28,-4.37 3.92,-4.06 4.6,-9.57 4.72,-11.75 a 21.42,21.42 0 0 0 -0.1,-3.12 4.48,4.48 0 0 1 0.16,-2.32 16.13,16.13 0 0 1 0.87,-2 32.11,32.11 0 0 0 7.47,1.1 h 0.84 a 33.34,33.34 0 0 0 15.4,-3.92 35.64,35.64 0 0 0 9.34,-7 l 0.23,-0.23 c 0.14,0.19 0.37,0.48 0.73,1 0.36,0.52 0.75,1 1.28,1.66 4.25,5 10.86,8.71 15.72,8.71 a 7.33,7.33 0 0 0 4.22,-1.2 8,8 0 0 0 2.91,-3.89 5.56,5.56 0 0 0 0.06,-4.15 15.11,15.11 0 0 0 1.53,0.07 23.12,23.12 0 0 0 6.77,-1.13 c 5.36,-1.74 9.18,-4.76 11.35,-9 a 16.18,16.18 0 0 0 1.66,-5.74 4.68,4.68 0 0 0 0.19,-0.45 3.4,3.4 0 0 0 -0.42,-3.46 z m -13.4,17 a 21.23,21.23 0 0 1 -6.2,1 10,10 0 0 1 -5.24,-1.29 12.61,12.61 0 0 1 -2.16,-1.63 20.27,20.27 0 0 1 -3.63,-4.19 1.05,1.05 0 0 0 -0.89,-0.49 1.15,1.15 0 0 0 -0.59,0.17 1.08,1.08 0 0 0 -0.31,1.48 22.08,22.08 0 0 0 4,4.64 16.76,16.76 0 0 0 2.62,2 c 1.82,1.11 2.46,1 2.88,1.68 0.88,1.37 -0.16,4.56 -2.23,6 a 5.5,5.5 0 0 1 -3.19,0.88 c -2.54,0 -5.63,-1.19 -8.5,-3 a 0.83,0.83 0 0 0 0.07,-0.13 9.37,9.37 0 0 1 0.74,-1.36 9.49,9.49 0 0 1 1.1,-1.36 0.91,0.91 0 0 0 0,-1.29 0.93,0.93 0 0 0 -1.3,0 10.75,10.75 0 0 0 -1.31,1.63 9.88,9.88 0 0 0 -0.81,1.46 25.27,25.27 0 0 1 -4.3,-4 c -0.49,-0.59 -0.85,-1.08 -1.2,-1.56 -0.61,-0.84 -0.89,-1.16 -1,-1.28 a 13.61,13.61 0 0 0 -4.72,-3.49 6.26,6.26 0 0 0 -2.64,-0.74 c -0.32,0 -0.52,0 -0.65,0 h -0.06 a 1.07,1.07 0 0 0 -0.06,2.13 v 0 a 7.64,7.64 0 0 1 2.6,0.54 8,8 0 0 1 2.75,1.86 34,34 0 0 1 -8.83,6.62 31.39,31.39 0 0 1 -14.56,3.72 H 172 a 30.3,30.3 0 0 1 -8.42,-1.45 22.5,22.5 0 0 0 -1.7,3.58 6.32,6.32 0 0 0 -0.25,3.07 18.47,18.47 0 0 1 0.09,2.85 c -0.1,2 -0.71,7 -4.21,10.58 -0.43,0.44 -3.79,3.81 -7,3.81 h -0.26 a 3.6,3.6 0 0 1 -1.34,-0.32 c -3.86,-1.72 -3.78,-9.37 -2.24,-14.23 a 1.18,1.18 0 0 1 0.07,-0.2 11.94,11.94 0 0 1 2.73,-0.35 12.26,12.26 0 0 1 2.83,0.3 0.92,0.92 0 0 0 0.4,-1.79 14.24,14.24 0 0 0 -3.25,-0.34 16.1,16.1 0 0 0 -1.83,0.14 c 0.22,-0.38 0.45,-0.77 0.73,-1.22 0.28,-0.45 0.55,-0.89 0.89,-1.48 0.52,-0.87 1.18,-2.09 2,-3.71 1.33,-2.52 2.71,-5.7 3.7,-8.12 a 16.63,16.63 0 0 0 5.87,-4.8 0.91304436,0.91304436 0 1 0 -1.45,-1.11 15.1,15.1 0 0 1 -2.47,2.52 14.69,14.69 0 0 1 -2.73,1.74 8.18,8.18 0 0 1 -2.68,-1.61 c -2.66,-2.42 -2.71,-5.75 -2.74,-7.18 0,-1.64 -0.09,-5.06 2.57,-7.42 a 8,8 0 0 1 5.34,-2 8.69,8.69 0 0 1 3.77,0.86 8.49,8.49 0 0 1 3.59,3.3 16.21,16.21 0 0 1 2.07,-3.06 c 5.38,-6.23 14.64,-6.85 21.67,-7.22 0,0 18.45,-1 19.05,-3 a 3.29,3.29 0 0 1 1.21,-1.82 l 0.21,-0.12 c -0.9,-0.3 -1.8,-0.62 -2.67,-1 -0.64,-0.25 -1.29,-0.52 -1.93,-0.79 l -0.16,-0.07 h -0.18 a 55,55 0 0 1 -7.81,1.35 c -2,0.2 -3.94,0.31 -5.82,0.31 q -1.45,0 -2.85,-0.09 c -6.49,-0.38 -10.76,-2.11 -10.88,-4.38 -0.16,-3 9.12,-5.91 11.73,-6.49 2.41,-0.53 5.11,-0.87 5.11,-0.87 l 1.39,-0.16 a 55.86,55.86 0 0 1 5.82,-0.31 c 1,0 1.92,0 2.85,0.08 4.77,0.28 6.65,0.91 7.86,1.49 a 16.23,16.23 0 0 1 2.16,1.27 23.32,23.32 0 0 1 6.16,4.95 1,1 0 0 0 0.6,0.22 0.87,0.87 0 0 0 0.65,-0.28 0.88,0.88 0 0 0 0,-1 30.84,30.84 0 0 0 -6.09,-5.23 16.31,16.31 0 0 0 -2.3,-1.35 c -1.31,-0.62 -3.31,-1.29 -8.26,-1.59 -1,-0.05 -1.92,-0.08 -2.91,-0.08 a 57.94,57.94 0 0 0 -5.93,0.31 c -1.27,0.13 -2.52,0.3 -3.76,0.51 -3.25,-2.64 -4.88,-5.17 -4,-6.88 0.61,-1.28 2.51,-1.9 5.21,-1.9 a 34.38,34.38 0 0 1 9.29,1.58 58.84,58.84 0 0 1 6.22,2.24 c 0,0 11,4.5 14,9.15 0.64,1 1.28,2.15 1.28,2.15 0.33,0.59 0.52,1 0.91,1.7 0.26,0.5 0.62,1.17 1.06,2 a 19.87,19.87 0 0 1 11.41,5.36 20.2,20.2 0 0 1 5.59,10.58 4.08,4.08 0 0 0 -1.64,2.12 c -0.59,1.64 -0.17,3.14 0.59,3.64 a 1.15,1.15 0 0 0 0.25,0.12 1.26,1.26 0 0 0 0.7,0 13.41,13.41 0 0 1 -1.13,3.11 c -2.97,5.62 -8.53,7.46 -10.37,8.06 z"
|
||||
id="path1017" />
|
||||
<path
|
||||
class="d"
|
||||
d="m 231.27,49.46 a 0.86,0.86 0 0 1 -0.28,0 c -0.9,0 -2.09,-1 -2.49,-2.71 -0.45,-1.87 0.3,-3.42 1.25,-3.65 h 0.28 c 0.91,0 2.09,1 2.5,2.71 0.47,1.87 -0.3,3.42 -1.26,3.65 z"
|
||||
id="path1019" />
|
||||
<path
|
||||
class="d"
|
||||
d="m 224.66,55.51 -0.81,-0.35 -0.45,-0.2 a 3.68,3.68 0 0 0 -1.51,-0.35 3,3 0 0 0 -2.11,0.87 h -0.17 a 3.17,3.17 0 0 1 -1.32,-0.4 c -2,-1 -4.1,-1.83 -6.15,-2.74 -1.13,-0.5 -1.35,-0.94 -1.09,-2.14 a 1,1 0 0 0 -0.68,-1.33 1.47,1.47 0 0 0 -0.34,-0.05 1.06,1.06 0 0 0 -1,0.8 3.56,3.56 0 0 0 1.8,4.41 l 0.16,0.07 3.56,1.58 c 1.21,0.53 2.42,1.09 3.65,1.6 a 1.13,1.13 0 0 1 0.53,0.41 3.14,3.14 0 0 0 2,3.12 l 0.22,0.1 a 5.33,5.33 0 0 0 1,0.44 h 0.06 a 3.7,3.7 0 0 0 1.42,0.3 3.06,3.06 0 0 0 2.87,-2 3.1,3.1 0 0 0 -1.64,-4.14 z M 220.77,58 a 1.28,1.28 0 0 1 0.12,-0.69 1.62,1.62 0 0 1 0.27,-0.41 c 0.15,-0.08 0.3,-0.18 0.45,-0.28 a 0.86,0.86 0 0 1 0.28,0 1.74,1.74 0 0 1 0.69,0.17 l 1.24,0.55 a 1.12,1.12 0 0 1 0.69,1.57 1.07,1.07 0 0 1 -1,0.77 1.65,1.65 0 0 1 -0.65,-0.15 c -0.21,-0.08 -0.41,-0.18 -0.62,-0.27 L 221.6,59 A 1.84,1.84 0 0 1 221.04,58.62 1.35,1.35 0 0 1 220.77,58 Z"
|
||||
id="path1021" />
|
||||
<path
|
||||
class="d"
|
||||
d="m 210.82,48.37 a 4.53,4.53 0 0 0 1.22,0.52 4.83,4.83 0 0 0 1.32,0.18 6.44,6.44 0 0 0 2.57,-0.57 9.82,9.82 0 0 0 4.31,-3.93 c 2.38,-3.9 2,-8.34 -0.93,-10.11 a 4.85,4.85 0 0 0 -2.56,-0.71 7,7 0 0 0 -3.86,1.3 7,7 0 0 0 -4.46,7.27 8.21,8.21 0 0 0 -0.06,1.56 5.4,5.4 0 0 0 2.45,4.49 z m 5.61,-12.1 h 0.33 a 2.48,2.48 0 0 1 0.68,0.09 2.24,2.24 0 0 1 0.57,0.25 c 1.66,1 1.7,4.07 0.1,6.68 a 7.3,7.3 0 0 1 -3.18,2.94 3.91,3.91 0 0 1 -1.57,0.36 2.29,2.29 0 0 1 -1.24,-0.33 2.48,2.48 0 0 1 -1,-1.31 h 0.22 a 5.79,5.79 0 0 0 4.56,-3.06 5.69,5.69 0 0 0 0.53,-5.62 z M 211,38.89 a 4.68,4.68 0 0 1 2.44,-2.09 l 0.27,-0.08 0.23,-0.16 0.41,-0.26 0.52,0.89 a 4,4 0 0 1 -0.53,3.74 4.07,4.07 0 0 1 -3,2.18 h -0.1 l -1,-0.07 c 0,-0.16 0,-0.32 0,-0.49 V 42.27 L 210.19,42 A 4.72,4.72 0 0 1 211,38.89 Z"
|
||||
id="path1023" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 160.46,49.88 a 8.69,8.69 0 0 0 -3.77,-0.86 8,8 0 0 0 -5.34,2 c -2.66,2.36 -2.6,5.78 -2.57,7.42 0,1.43 0.08,4.76 2.74,7.18 a 8.18,8.18 0 0 0 2.68,1.61 14.69,14.69 0 0 0 2.73,-1.74 15.1,15.1 0 0 0 2.47,-2.52 0.91,0.91 0 0 1 1.26,-0.18 19.22,19.22 0 0 0 2.23,-4.53 21.27,21.27 0 0 0 1.16,-5 8.49,8.49 0 0 0 -3.59,-3.38 z"
|
||||
id="path1025" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 146.74,85.42 a 1.18,1.18 0 0 0 -0.07,0.2 c -1.54,4.86 -1.62,12.51 2.24,14.23 a 3.6,3.6 0 0 0 1.34,0.32 h 0.26 c 3.17,0 6.53,-3.37 7,-3.81 a 14.79,14.79 0 0 0 3.4,-6 13.48,13.48 0 0 0 -6.18,-5.21 10.82,10.82 0 0 0 -1.31,-0.46 0.92,0.92 0 0 1 -1.08,0.66 12.26,12.26 0 0 0 -2.83,-0.3 11.94,11.94 0 0 0 -2.77,0.37 z"
|
||||
id="path1027" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 218.64,77.08 c 2.07,-1.41 3.11,-4.6 2.23,-6 -0.42,-0.64 -1.06,-0.57 -2.88,-1.68 a 16.63,16.63 0 0 1 -1.89,-1.33 12.18,12.18 0 0 0 -7.23,2.72 0.93,0.93 0 0 1 0,1.27 9.49,9.49 0 0 0 -1.1,1.36 9.37,9.37 0 0 0 -0.74,1.36 0.83,0.83 0 0 1 -0.07,0.13 c 2.87,1.83 6,3 8.5,3 a 5.5,5.5 0 0 0 3.18,-0.83 z"
|
||||
id="path1029" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 224.89,34.71 c -0.44,-0.81 -0.8,-1.48 -1.06,-2 -0.39,-0.73 -0.58,-1.11 -0.91,-1.7 0,0 -0.64,-1.14 -1.28,-2.15 -2.95,-4.65 -14,-9.15 -14,-9.15 a 58.84,58.84 0 0 0 -6.22,-2.24 34.38,34.38 0 0 0 -9.29,-1.58 c -2.7,0 -4.6,0.62 -5.21,1.9 -0.83,1.71 0.8,4.24 4,6.88 1.24,-0.21 2.49,-0.38 3.76,-0.51 a 57.94,57.94 0 0 1 5.93,-0.31 c 1,0 2,0 2.91,0.08 4.95,0.3 6.95,1 8.26,1.59 a 16.31,16.31 0 0 1 2.3,1.35 30.84,30.84 0 0 1 6.09,5.23 0.88,0.88 0 0 1 0,1 0.87,0.87 0 0 1 -0.65,0.28 0.63,0.63 0 0 1 -0.19,0 v 0 a 6.24,6.24 0 0 0 2.37,0.7 c 1.33,0.27 2.18,0.42 3.14,0.61 a 28.41,28.41 0 0 1 3.58,0.79 14.06,14.06 0 0 0 1.58,0.52 22.89,22.89 0 0 0 -5.11,-1.29 z"
|
||||
id="path1031" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 211,38.89 a 4.68,4.68 0 0 1 2.44,-2.09 l 0.27,-0.08 0.23,-0.16 0.41,-0.26 0.52,0.89 a 4,4 0 0 1 -0.53,3.74 4.07,4.07 0 0 1 -3,2.18 h -0.1 l -1,-0.07 c 0,-0.16 0,-0.32 0,-0.49 V 42.27 L 210.19,42 A 4.72,4.72 0 0 1 211,38.89 Z"
|
||||
id="path1033" />
|
||||
<path
|
||||
class="e"
|
||||
d="m 216.43,36.27 h 0.33 a 2.48,2.48 0 0 1 0.68,0.09 2.24,2.24 0 0 1 0.57,0.25 c 1.66,1 1.7,4.07 0.1,6.68 a 7.3,7.3 0 0 1 -3.18,2.94 3.91,3.91 0 0 1 -1.57,0.36 2.29,2.29 0 0 1 -1.24,-0.33 2.48,2.48 0 0 1 -1,-1.31 h 0.22 a 5.79,5.79 0 0 0 4.56,-3.06 5.69,5.69 0 0 0 0.53,-5.62 z"
|
||||
id="path1035" />
|
||||
<path
|
||||
class="b"
|
||||
d="m 241.19,100.78 4.72,-6.73 14.52,-4.11 a 1.22,1.22 0 0 0 -0.66,-2.34 l -14.52,4.11 -7.55,-3.26 a 1.22,1.22 0 0 0 -1.6,0.63 1.29,1.29 0 0 0 0,0.82 1.21,1.21 0 0 0 0.69,0.78 l 6.57,2.84 -4.11,5.86 a 1.24,1.24 0 0 0 -0.18,1 1.27,1.27 0 0 0 0.48,0.67 1.22,1.22 0 0 0 1.64,-0.27 z"
|
||||
id="path1037" />
|
||||
<path
|
||||
class="b"
|
||||
d="m 198.88,112.19 a 1.22,1.22 0 0 0 -0.93,-1.45 l -9,-1.95 6.5,-6.49 a 1.21,1.21 0 0 0 0,-1.72 1.23,1.23 0 0 0 -1.72,0 l -7.86,7.85 -22,6.45 a 1.22,1.22 0 0 0 0.68,2.34 l 22,-6.46 10.86,2.36 a 1.22,1.22 0 0 0 1.47,-0.93 z"
|
||||
id="path1039" />
|
||||
<path
|
||||
class="b"
|
||||
d="m 213.81,87.73 a 20.94,20.94 0 0 0 -11.25,7.08 c -2.55,3.27 -3.46,7 -2.57,10.35 a 1.54,1.54 0 0 1 0,0.17 c 0.94,3.32 3.52,6 7.29,7.57 a 22.18,22.18 0 0 0 24.52,-6.46 c 2.55,-3.28 3.46,-7 2.57,-10.35 a 1.21,1.21 0 0 1 0,-0.18 10.42,10.42 0 0 0 -2.11,-3.91 13.49,13.49 0 0 0 -5.18,-3.65 20.94,20.94 0 0 0 -13.27,-0.62 z m 12.68,2.76 a 11.22,11.22 0 0 1 4.32,3 8,8 0 0 1 1.61,3 v 0.14 c 0.7,2.64 -0.07,5.57 -2.17,8.26 a 20.4,20.4 0 0 1 -22.36,5.89 c -3.09,-1.28 -5.2,-3.41 -5.93,-6 v -0.13 c -0.7,-2.64 0.07,-5.57 2.17,-8.26 a 20.4,20.4 0 0 1 22.36,-5.89 z"
|
||||
id="path1041" />
|
||||
<path
|
||||
class="b"
|
||||
d="m 207.6,100.7 a 1.13,1.13 0 0 1 -0.47,-0.12 1.07,1.07 0 0 1 -0.46,-1.44 14,14 0 0 1 17.33,-6.72 1.07,1.07 0 0 1 -0.73,2 11.89,11.89 0 0 0 -14.65,5.69 1.1,1.1 0 0 1 -1.02,0.59 z"
|
||||
id="path1043" />
|
||||
<path
|
||||
class="f"
|
||||
d="m 127.28,112.66 a 5.31,5.31 0 0 0 1.48,0.3 h 0.1 0.38 l 0.15,-0.7 a 14.91,14.91 0 0 1 0.86,-2.77 12.09,12.09 0 0 1 1.58,-2.74 c 0.42,-0.58 0.5,-0.71 0.55,-1.07 a 2.71,2.71 0 0 0 -0.11,-1.18 6,6 0 0 0 -0.8,-1.6 l -0.41,0.28 v 0 l 0.35,-0.38 c -1.07,-1.81 -2.17,-3.62 -3.28,-5.36 -3.77,-5.93 -5.35,-7.61 -6.11,-8.42 a 24.11,24.11 0 0 0 -7,-5.14 59.16,59.16 0 0 0 -7.41,-2.71 c -1.49,-0.43 -3,-0.81 -4.54,-1.12 l -0.75,-0.15 0.15,0.74 c 0.13,0.6 0.38,1.78 0.7,2.92 l 0.11,0.38 a 37.58,37.58 0 0 0 2.12,5.38 10.19,10.19 0 0 1 0.59,1.39 2,2 0 0 1 -0.85,2.38 c -0.35,0.23 -1.63,0.81 -2.88,-0.79 -0.22,-0.29 -0.49,-0.66 -0.83,-1.14 A 51.28,51.28 0 0 0 96.59,85.1 L 96.18,84.67 95,83.38 l 0.4,1.73 c 1.09,4.7 0.65,5.68 -0.81,6.21 -1.46,0.53 -2.37,-0.6 -2.94,-1.5 A 8,8 0 0 0 89.8,87.64 c -0.92,-0.71 -2.28,-1.38 -7.78,-1.15 a 70.62,70.62 0 0 0 -8.72,1 l -0.64,0.12 0.27,0.59 a 23.71,23.71 0 0 0 3.81,5.79 45.11,45.11 0 0 0 4,3.77 c 1.69,1.46 2.54,2.2 2.82,3.17 a 2.12,2.12 0 0 1 -0.21,1.74 2,2 0 0 1 -0.77,0.75 l -0.85,0.46 0.86,0.43 c 13,6.6 23.94,6.88 32.72,7.11 4.57,0.07 8.57,0.18 11.97,1.24 z"
|
||||
id="path1045" />
|
||||
<path
|
||||
class="f"
|
||||
d="m 147.68,142.63 a 3.21,3.21 0 0 0 -1,-0.39 13.48,13.48 0 0 1 -3.53,-1.44 15,15 0 0 1 -3.17,-2.44 c -0.17,-0.16 -0.37,-0.35 -0.49,-0.45 l -0.2,-0.16 -0.24,0.06 a 3.89,3.89 0 0 0 -1.64,1.19 34.23,34.23 0 0 0 -3,3.77 l -0.6,0.83 a 73.34,73.34 0 0 1 -5.36,6.35 71.73,71.73 0 0 0 -5.08,6 c -4.46,6.17 -10.44,13.51 -17.79,21.83 l -0.76,0.86 h 1.14 a 10.2,10.2 0 0 0 1.24,-0.1 3.82,3.82 0 0 1 2.8,0.46 3.49,3.49 0 0 1 1.39,2 c 0.41,1.42 0.13,3.16 -0.23,5.41 -0.16,1.07 -0.34,2.17 -0.44,3.32 a 28.73,28.73 0 0 0 0.07,5.93 l 0.11,1 0.72,-0.66 c 1.52,-1.37 3,-2.78 4.46,-4.18 2,-1.9 3,-2.95 3.68,-3.7 0.49,-0.57 1,-1.15 1.4,-1.66 1.79,-2.19 2.89,-3.39 4.49,-2.48 a 2,2 0 0 1 1,1.23 2.67,2.67 0 0 1 0.06,1.07 5.68,5.68 0 0 0 0,0.76 3.19,3.19 0 0 0 0,0.45 l 0.12,1 0.73,-0.73 c 0.28,-0.29 0.56,-0.58 0.82,-0.88 a 24.89,24.89 0 0 0 2.74,-3.93 c 1,-1.67 1.88,-2.91 3.51,-2.41 a 2.22,2.22 0 0 1 1.48,1.56 6.79,6.79 0 0 1 0.14,1.78 17.92,17.92 0 0 0 0.22,3.33 l 0.15,0.91 0.68,-0.63 a 33.68,33.68 0 0 0 3.18,-3.36 35.3,35.3 0 0 0 4.38,-7 c 1.65,-3.49 1.82,-5.5 2.55,-14 0.2,-2.24 0.44,-5 0.76,-8.4 l 0.08,-0.9 c 0.43,-4.5 0.77,-8.06 0.23,-10 v 0 a 1.86,1.86 0 0 0 -0.8,-1.2 z"
|
||||
id="path1047" />
|
||||
<path
|
||||
class="g"
|
||||
d="m 82.68,177.86 a 1.72,1.72 0 0 1 0.25,0.53 c 0.27,1 -0.15,1.72 -1.43,3.66 -0.47,0.71 -1.06,1.6 -1.71,2.7 -0.38,0.63 -0.74,1.27 -1.09,1.91 l -1.65,3.07 3.17,-1.45 A 51.68,51.68 0 0 0 96.65,176.4 c 11.65,-12.17 33.12,-38.6 34,-39.7 l 0.13,-0.15 a 4.36,4.36 0 0 0 1.59,-2.81 2.35,2.35 0 0 0 -0.07,-0.71 v 0 a 5.43,5.43 0 0 0 -1,-1.63 11.77,11.77 0 0 1 -2.18,-4 v -0.14 a 12.35,12.35 0 0 1 -0.41,-3.9 7.63,7.63 0 0 0 0,-1.27 l -0.08,-0.46 -0.38,-0.27 a 3.82,3.82 0 0 0 -2.55,-0.38 l -8.58,0.33 c -3.9,0.15 -8.45,-0.17 -18,-2.2 a 144.48,144.48 0 0 1 -15,-4.06 c -5.73,-1.83 -9.2,-2.93 -15,-2.4 -0.71,0.06 -1.42,0.15 -2.12,0.25 l -2.58,0.39 2,1.67 c 1,0.84 1.2,1.28 1.3,1.62 a 1.49,1.49 0 0 1 -0.08,1 c -0.44,0.91 -1.3,1 -3,0.7 l -0.45,-0.07 a 42.57,42.57 0 0 0 -4.45,-0.38 h -1.23 v 1.23 a 5.33,5.33 0 0 0 0.19,1.32 7.82,7.82 0 0 0 0.9,1.9 5.24,5.24 0 0 1 0.56,1.15 1.71,1.71 0 0 1 -0.25,1.5 c -0.56,0.75 -1.33,0.74 -2.59,0.46 -0.34,-0.07 -0.72,-0.16 -1.14,-0.21 l -3.55,-0.48 2.58,2.48 0.46,0.42 a 2.89,2.89 0 0 1 1,1.31 1.64,1.64 0 0 1 0,0.88 c -0.28,1 -1.07,1.2 -2.45,1.35 -0.36,0 -0.76,0.08 -1.18,0.16 l -4.89,1 4.92,1.35 c 1,0.27 1.58,0.57 1.8,1.32 a 1.55,1.55 0 0 1 0,0.21 c 0.14,1 -0.52,1.53 -1.71,2.15 a 10.29,10.29 0 0 0 -2,1.26 c -0.14,0.12 -0.27,0.25 -0.4,0.38 l -1.25,1.26 1.65,0.65 a 13.19,13.19 0 0 0 1.42,0.48 18.73,18.73 0 0 0 3.43,0.56 c 1.45,0.12 2.19,0.33 2.43,1.21 v 0.17 c 0.19,1.08 -0.53,1.59 -2.65,2.48 -1.13,0.48 -2.67,1.13 -4.61,2.16 -0.83,0.44 -1.44,0.8 -2.37,1.33 l -1.24,0.74 -2.62,1.57 3,0.58 c 0.24,0 0.45,0.07 0.65,0.1 a 2.36,2.36 0 0 1 1.8,0.86 2.29,2.29 0 0 1 0.3,0.63 c 0.3,1.08 0,3 -5,8.38 -0.86,0.94 -1.78,1.85 -2.71,2.71 l -1.61,1.48 2.12,0.51 a 29.66,29.66 0 0 0 3.61,0.64 c 1.6,0.17 3.15,0.21 4.52,0.24 3.28,0.07 4.46,0.21 4.82,1.47 v 0.12 c 0.17,0.84 -0.31,1.4 -1.09,2 a 5.87,5.87 0 0 0 -1,0.91 l -1.7,2 2.62,-0.07 c 0.7,0 1.42,-0.07 2.12,-0.14 a 36.53,36.53 0 0 0 5.94,-1.24 c 2.55,-0.71 3.5,-0.76 4.08,0.28 a 1.22,1.22 0 0 1 0.14,0.33 c 0.25,0.89 -0.34,1.57 -1,2.3 a 15.6,15.6 0 0 0 -1.7,2.27 c -0.12,0.2 -0.24,0.4 -0.34,0.6 l -1,1.81 2.05,-0.09 c 0.84,0 1.68,-0.1 2.49,-0.19 a 46.87,46.87 0 0 0 9.13,-2.1 c 3.3,-1.07 4.64,-1.34 5.49,-0.11 z"
|
||||
id="path1049" />
|
||||
<path
|
||||
class="h"
|
||||
d="m 131.18,133.34 a 0.87,0.87 0 0 1 0,0.33 3.3,3.3 0 0 1 -1.22,2 l -0.12,0.12 -0.1,0.12 c -0.22,0.27 -22.14,27.3 -34,39.65 a 51.75,51.75 0 0 1 -8.74,7.61 50,50 0 0 1 -7.22,4.05 c 0.34,-0.63 0.7,-1.25 1.06,-1.87 0.64,-1.07 1.22,-1.95 1.69,-2.66 1.21,-1.84 2,-3.06 1.58,-4.62 v 0 a 3,3 0 0 0 -0.42,-0.88 c -1.42,-2.06 -3.82,-1.3 -6.61,-0.43 a 44.93,44.93 0 0 1 -8.91,2.05 c -0.8,0.09 -1.6,0.16 -2.41,0.19 0.1,-0.18 0.2,-0.37 0.31,-0.55 a 14.33,14.33 0 0 1 1.59,-2.11 c 0.69,-0.79 1.63,-1.88 1.2,-3.38 a 2.09,2.09 0 0 0 -0.24,-0.58 c -1.13,-2 -3.3,-1.42 -5.41,-0.84 a 35.11,35.11 0 0 1 -5.75,1.2 c -0.67,0.08 -1.35,0.12 -2,0.14 a 4.72,4.72 0 0 1 0.83,-0.73 3.13,3.13 0 0 0 1.45,-3.15 v -0.1 -0.09 c -0.63,-2.22 -2.85,-2.27 -5.92,-2.33 -1.35,0 -2.87,-0.07 -4.42,-0.24 a 27.21,27.21 0 0 1 -3.46,-0.6 c 1,-0.89 1.89,-1.81 2.78,-2.77 5.35,-5.74 5.69,-8 5.25,-9.5 a 3.22,3.22 0 0 0 -0.47,-1 3.5,3.5 0 0 0 -2.6,-1.34 l -0.58,-0.09 1.23,-0.73 c 0.91,-0.53 1.52,-0.88 2.33,-1.31 1.88,-1 3.41,-1.64 4.52,-2.11 1.74,-0.74 3.71,-1.57 3.35,-3.75 v -0.15 -0.13 c -0.52,-1.83 -2.3,-2 -3.47,-2.08 a 16.59,16.59 0 0 1 -3.22,-0.52 12.43,12.43 0 0 1 -1.3,-0.44 c 0.1,-0.11 0.22,-0.21 0.33,-0.31 a 8.94,8.94 0 0 1 1.76,-1.11 c 0.84,-0.45 2.6,-1.37 2.32,-3.35 a 2.09,2.09 0 0 0 -0.08,-0.36 3.26,3.26 0 0 0 -2.61,-2.14 h -0.13 c 0.39,-0.07 0.76,-0.11 1.1,-0.15 1,-0.1 2.89,-0.3 3.44,-2.19 a 2.8,2.8 0 0 0 0,-1.52 3.89,3.89 0 0 0 -1.36,-1.87 l -0.42,-0.38 c 0.4,0 0.76,0.13 1.08,0.2 0.92,0.2 2.62,0.58 3.75,-0.91 a 2.85,2.85 0 0 0 0.44,-2.51 6.23,6.23 0 0 0 -0.69,-1.45 6.31,6.31 0 0 1 -0.77,-1.61 3.5,3.5 0 0 1 -0.15,-1 37.74,37.74 0 0 1 4.31,0.37 l 0.44,0.07 c 1.32,0.2 3.31,0.5 4.2,-1.36 a 2.7,2.7 0 0 0 0.15,-1.86 4.35,4.35 0 0 0 -1.69,-2.2 c 0.69,-0.1 1.37,-0.18 2.06,-0.25 5.61,-0.5 9,0.57 14.58,2.35 a 144.82,144.82 0 0 0 15.07,4.09 c 9.69,2.06 14.32,2.38 18.3,2.23 l 8.43,-0.32 h 0.21 a 2.8,2.8 0 0 1 1.76,0.15 c 0,0.2 0,0.66 0,1 a 13.6,13.6 0 0 0 0.45,4.24 v 0.15 a 12.91,12.91 0 0 0 2.38,4.4 4.94,4.94 0 0 1 0.8,1.24 v 0 m 2.34,-0.66 c -0.49,-1.72 -2.3,-2.69 -3.18,-5.67 a 0.65,0.65 0 0 1 0,-0.13 c -0.69,-2.43 -0.13,-4.07 -0.48,-5.32 a 2.31,2.31 0 0 0 -0.63,-1 4.64,4.64 0 0 0 -3.76,-0.83 L 117,120 c -4,0.15 -8.53,-0.23 -17.7,-2.18 -16.63,-3.53 -20.29,-7.39 -30.38,-6.48 a 38,38 0 0 0 -7.8,1.55 c 2.5,1.54 5.11,3.29 5.3,4 a 0.22,0.22 0 0 1 0,0.16 c -0.13,0.26 -1,0.09 -2.09,-0.07 a 41.11,41.11 0 0 0 -6.74,-0.42 7.37,7.37 0 0 0 -0.11,4.13 v 0 a 22.43,22.43 0 0 0 1.46,3 0.47,0.47 0 0 1 0,0.39 c -0.32,0.42 -1.38,-0.18 -3.18,-0.31 a 9.91,9.91 0 0 0 -3.54,0.41 c 0,0.13 0.07,0.28 0.11,0.43 a 7.78,7.78 0 0 0 1.16,2.4 c 0.91,1.23 1.88,1.72 2,2.15 a 0.31,0.31 0 0 1 0,0.19 c -0.16,0.57 -1.73,0.27 -3.75,0.88 a 9.47,9.47 0 0 0 -3.3,1.78 7.69,7.69 0 0 0 2.54,2.08 c 1.45,0.72 2.59,0.68 2.71,1.1 0,0 0,0 0,0 0.08,0.56 -1.62,0.88 -3.25,2.27 a 8.78,8.78 0 0 0 -2.27,3.1 15.88,15.88 0 0 0 4.17,1.84 c 2.85,0.8 4.87,0.47 5,0.93 v 0 c 0.09,0.54 -2.42,1.09 -6.61,3.31 -0.86,0.46 -1.5,0.83 -2.42,1.37 -1.84,1.07 -3.57,2.15 -5.17,3.21 q 0.59,0.38 1.32,0.75 c 0,0 0.81,0.41 1.62,0.73 2.22,0.87 3.06,0.46 3.43,1 a 0.7,0.7 0 0 1 0.11,0.23 c 0.47,1.65 -3.81,6.24 -4.69,7.18 a 49.19,49.19 0 0 1 -5.9,5.39 30,30 0 0 0 8.1,2.06 c 4.13,0.45 8,0 8.26,0.82 v 0 c 0.11,0.5 -1.27,0.83 -2.28,2.43 a 6.18,6.18 0 0 0 -0.91,3.28 27.32,27.32 0 0 0 5.5,0 c 5,-0.54 8.38,-2.31 8.78,-1.59 a 0.08,0.08 0 0 1 0,0.05 c 0.14,0.48 -1.2,1.38 -2.53,3.58 a 14.68,14.68 0 0 0 -1.73,4.22 37.71,37.71 0 0 0 6.19,-0.19 c 7.77,-0.88 12.42,-3.85 13.24,-2.66 a 0.6,0.6 0 0 1 0.08,0.16 c 0.21,0.75 -1.11,2.17 -3,5.38 a 50,50 0 0 0 -3.7,7.56 53.38,53.38 0 0 0 13.31,-6.48 55.08,55.08 0 0 0 9.26,-7.91 c 11.78,-12.32 33.2,-38.7 34.09,-39.81 a 5.71,5.71 0 0 0 2,-3.65 3.42,3.42 0 0 0 -0.12,-1.14 z"
|
||||
id="path1051" />
|
||||
<path
|
||||
class="h"
|
||||
d="m 131.73,105 a 2.32,2.32 0 0 1 0.08,1 c 0,0.24 -0.06,0.29 -0.47,0.85 a 12.87,12.87 0 0 0 -1.68,2.81 15.24,15.24 0 0 0 -0.91,2.86 c 0,0.1 -0.05,0.22 -0.08,0.32 a 4.06,4.06 0 0 1 -1.39,-0.29 h -0.07 c -3.39,-1.1 -7.42,-1.26 -12.09,-1.44 -8.74,-0.33 -19.59,-0.75 -32.42,-7.45 a 2.58,2.58 0 0 0 1,-0.92 2.69,2.69 0 0 0 0.29,-2.15 c -0.32,-1.1 -1.19,-1.88 -2.93,-3.43 a 43.61,43.61 0 0 1 -3.88,-3.77 23.26,23.26 0 0 1 -3.66,-5.72 67.45,67.45 0 0 1 8.67,-0.84 c 5.33,-0.16 6.6,0.47 7.44,1.13 a 7.47,7.47 0 0 1 1.71,2.08 c 0.37,0.6 1.51,2.44 3.5,1.74 1.99,-0.7 2.22,-2.18 1.16,-6.88 l 0.4,0.43 a 50.29,50.29 0 0 1 4.72,6.06 c 0.34,0.49 0.61,0.88 0.83,1.17 a 2.6,2.6 0 0 0 3.53,1 2.51,2.51 0 0 0 1.1,-2.94 11.4,11.4 0 0 0 -0.6,-1.49 37.35,37.35 0 0 1 -2,-5.32 l -0.1,-0.37 c -0.3,-1.13 -0.54,-2.32 -0.65,-2.9 1.51,0.33 3,0.72 4.48,1.17 a 57.83,57.83 0 0 1 7.33,2.78 23.55,23.55 0 0 1 3.48,2.17 23.84,23.84 0 0 1 3.25,2.94 c 0.74,0.8 2.27,2.48 6,8.42 1.08,1.75 2.16,3.56 3.2,5.38 v 0.06 0.07 a 5.36,5.36 0 0 1 0.72,1.47 m 2.34,-0.66 a 7.8,7.8 0 0 0 -1,-2.15 c -1.28,-2.24 -2.4,-4.1 -3.24,-5.45 -3.7,-6 -5.3,-7.77 -6.23,-8.79 a 27,27 0 0 0 -3.56,-3.28 26.76,26.76 0 0 0 -3.88,-2.41 60.42,60.42 0 0 0 -7.68,-2.92 58,58 0 0 0 -8.08,-1.85 c 0.09,1 0.23,2 0.43,3.08 0,0 0.31,1.76 0.76,3.46 0,0.13 0.07,0.27 0.11,0.4 a 60.4,60.4 0 0 0 2.63,6.81 q 0,0.15 0,0.18 c -0.27,0.16 -2.38,-3.79 -6.06,-7.75 a 39,39 0 0 0 -6.41,-5.53 c 2.36,8.72 2.61,11.11 2.21,11.25 -0.4,0.14 -1,-1.9 -2.91,-3.44 -1.56,-1.23 -3.59,-1.82 -9,-1.65 a 70.49,70.49 0 0 0 -11.92,1.4 26,26 0 0 0 5.15,9.19 c 2.66,3 6,5.41 6.3,6.27 a 0.24,0.24 0 0 1 0,0.19 c -0.21,0.34 -1.33,-0.3 -3.37,-0.18 a 9.73,9.73 0 0 0 -3.09,0.73 c 2.59,1.73 4.76,2.93 6.09,3.64 20.33,10.77 36.16,6.27 45.22,9.23 0.62,0.2 2.52,0.86 3.77,0 1,-0.73 0.62,-1.78 1.66,-4.17 1.04,-2.39 2.07,-2.63 2.32,-4.27 a 4.73,4.73 0 0 0 -0.14,-2 z"
|
||||
id="path1053" />
|
||||
<path
|
||||
class="h"
|
||||
d="m 147.94,144 v 0 c 0.52,1.82 0.18,5.34 -0.24,9.8 l -0.09,0.9 c -0.32,3.35 -0.56,6.15 -0.75,8.4 -0.73,8.42 -0.9,10.42 -2.51,13.83 a 34.67,34.67 0 0 1 -4.32,6.89 31.58,31.58 0 0 1 -3.13,3.31 17.56,17.56 0 0 1 -0.21,-3.24 7,7 0 0 0 -0.16,-1.91 2.72,2.72 0 0 0 -1.82,-1.91 c -2.13,-0.65 -3.26,1.25 -4.08,2.64 a 24.38,24.38 0 0 1 -2.69,3.85 c -0.25,0.29 -0.52,0.58 -0.79,0.85 a 2.5,2.5 0 0 1 0,-0.4 5.12,5.12 0 0 1 0,-0.72 3.25,3.25 0 0 0 -0.08,-1.24 2.57,2.57 0 0 0 -1.19,-1.53 c -2,-1.15 -3.48,0.59 -5.13,2.6 -0.42,0.51 -0.9,1.09 -1.39,1.65 -0.63,0.73 -1.64,1.71 -3.65,3.67 -1.45,1.41 -2.93,2.81 -4.44,4.17 a 28.48,28.48 0 0 1 -0.08,-5.83 c 0.11,-1.15 0.29,-2.25 0.46,-3.33 0.35,-2.26 0.64,-4 0.2,-5.58 a 3.87,3.87 0 0 0 -1.6,-2.26 4.21,4.21 0 0 0 -3.08,-0.53 11.88,11.88 0 0 1 -1.19,0.09 c 7.37,-8.33 13.35,-15.68 17.83,-21.86 a 67.61,67.61 0 0 1 5.07,-6 74.49,74.49 0 0 0 5.36,-6.37 l 0.61,-0.83 a 35.36,35.36 0 0 1 2.9,-3.71 3.82,3.82 0 0 1 1.41,-1.06 l 0.46,0.43 a 15.56,15.56 0 0 0 3.27,2.51 14.76,14.76 0 0 0 3.64,1.5 3,3 0 0 1 0.88,0.31 c 0.11,0.07 0.35,0.23 0.54,0.92 m 2.34,-0.66 a 3.8,3.8 0 0 0 -1.51,-2.27 c -1.15,-0.78 -2.21,-0.49 -4.67,-1.91 -2.89,-1.66 -3.1,-3 -4.53,-3.24 -2.52,-0.39 -4.93,3.31 -7.3,6.59 -3.17,4.36 -7.28,8 -10.45,12.37 a 304.1,304.1 0 0 1 -20.61,25 14.33,14.33 0 0 0 3.86,0.73 c 2.38,0.12 3.09,-0.44 3.83,0 a 1.53,1.53 0 0 1 0.6,0.9 c 0.45,1.59 -0.42,4.62 -0.74,8 a 32,32 0 0 0 0.88,10.73 c 2.52,-2.17 5.11,-4.53 7.76,-7.11 2.06,-2 3.09,-3 3.79,-3.81 1.72,-2 3.1,-3.94 3.48,-3.73 a 0.18,0.18 0 0 1 0,0.07 c 0,0.17 -0.06,0.57 0,1.38 a 8.66,8.66 0 0 0 0.25,1.78 l 0.18,0.71 a 12.85,12.85 0 0 0 0.77,2 20.89,20.89 0 0 0 3.88,-3.43 c 2.67,-3 3.6,-6 4.23,-5.77 0.09,0 0.15,0.1 0.19,0.24 0.19,0.68 -0.16,2.73 0.45,5.63 0.09,0.39 0.18,0.76 0.28,1.1 a 15,15 0 0 0 0.69,2 35,35 0 0 0 6.3,-6 36.43,36.43 0 0 0 4.64,-7.4 c 2.27,-4.81 2,-7.12 3.48,-23 0.51,-5.37 0.93,-9.2 0.25,-11.59 z"
|
||||
id="path1055" />
|
||||
</g>
|
||||
<g
|
||||
id="g1017"
|
||||
transform="matrix(2.6814338,0,0,2.6814338,1392.7076,-1345.721)">
|
||||
<path
|
||||
class="a"
|
||||
d="m -138.48791,663.5353 c 0,3.67044 -1.97639,5.37861 -5.64683,5.37861 h -4.67276 v -10.77134 h 4.65864 c 3.68456,0 5.66095,1.70817 5.66095,5.39273 z m -6.84679,2.82342 h 1.14349 c 1.51053,0 2.17403,-0.86114 2.17403,-2.32932 v -0.93173 c 0,-1.41171 -0.6635,-2.32932 -2.17403,-2.32932 h -1.14349 z"
|
||||
id="path1417"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -136.73739,659.68133 v -2.11756 h 3.10577 v 2.11756 z m 0,9.21847 v -8.18792 h 3.10577 v 8.18792 z"
|
||||
id="path1419"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -124.27199,661.33303 a 2.2446184,2.2446184 0 0 1 0.95996,1.77876 c 0,1.84934 -1.62346,2.65401 -3.45868,2.65401 h -1.18584 c -0.71997,0 -0.9882,0.19764 -0.9882,0.45175 0,0.25411 0.18352,0.4941 0.9882,0.4941 h 2.82342 a 2.470492,2.470492 0 0 1 2.82342,2.63989 c 0,1.83523 -1.62347,2.82342 -3.47281,2.82342 h -4.67276 a 2.032862,2.032862 0 0 1 -2.07521,-2.01874 2.1034475,2.1034475 0 0 1 1.29877,-1.83522 1.7787542,1.7787542 0 0 1 -0.80467,-1.41171 1.9481594,1.9481594 0 0 1 1.58111,-1.80699 2.5269604,2.5269604 0 0 1 -1.327,-1.9764 c 0,-2.04698 1.93404,-2.66813 4.23512,-2.66813 a 6.6350356,6.6350356 0 0 1 1.41171,0.0988 c 1.22819,-0.77644 1.21407,-1.41171 1.21407,-1.41171 h 2.56932 a 2.1175646,2.1175646 0 0 1 -1.91993,2.18815 z m -5.27979,8.31497 a 0.76232324,0.76232324 0 0 0 0.80467,0.79056 h 2.44226 a 0.77644034,0.77644034 0 0 0 0.83291,-0.77644 0.76232324,0.76232324 0 0 0 -0.83291,-0.76232 h -2.44226 a 0.71997195,0.71997195 0 0 0 -0.80467,0.7482 z m 0.83291,-6.53621 c 0,0.70585 0.43763,1.03054 1.17171,1.03054 0.73409,0 1.21408,-0.32469 1.21408,-1.03054 0,-0.70586 -0.47999,-1.03055 -1.21408,-1.03055 -0.73408,0 -1.17171,0.32469 -1.17171,1.03055 z"
|
||||
id="path1421"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -121.12388,659.68133 v -2.11756 h 3.10577 v 2.11756 z m 0,9.21847 v -8.18792 h 3.10577 v 8.18792 z"
|
||||
id="path1423"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -110.53605,660.71188 v 2.11756 h -1.73641 v 3.134 c 0,0.70585 0.16941,1.08702 0.87526,1.08702 h 0.86115 v 1.8211 a 7.7926375,7.7926375 0 0 1 -1.99051,0.28234 c -1.69406,0 -2.82342,-0.52233 -2.82342,-2.20226 v -4.19278 h -1.15761 v -2.04698 h 1.28466 l 0.67762,-2.49873 h 2.31521 v 2.49873 z"
|
||||
id="path1425"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -100.80937,663.14002 v 3.2187 c 0,0.35293 0.15528,0.62115 0.50821,0.62115 h 0.550569 v 1.79287 a 3.6139768,3.6139768 0 0 1 -1.623469,0.31058 c -1.2423,0 -2.00463,-0.4094 -2.28697,-1.03055 a 4.6162907,4.6162907 0 0 1 -3.04929,1.03055 c -1.72229,0 -2.90812,-0.59292 -2.90812,-2.31521 0,-2.47049 2.08933,-2.93635 5.64684,-2.93635 v -0.4094 c 0,-0.6635 -0.53645,-0.97408 -1.19996,-0.97408 -0.6635,0 -1.18583,0.16941 -1.18583,0.71997 v 0 h -2.92224 a 1.2140703,1.2140703 0 0 1 0,-0.22587 c 0,-1.51053 1.48229,-2.54108 4.30571,-2.54108 2.2305,0.0565 4.16455,0.71998 4.16455,2.73872 z m -5.64684,3.2187 c 0,0.64939 0.53645,0.79056 1.0729,0.79056 0.79055,0 1.52464,-0.46587 1.52464,-1.14349 v -0.70585 c -1.84934,0 -2.59754,0.45174 -2.59754,1.05878 z"
|
||||
id="path1427"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -98.564755,668.8998 v -11.29368 h 3.105761 v 11.29368 z"
|
||||
id="path1429"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -86.085241,668.8998 -3.119879,-8.18792 h 3.345752 l 1.51053,5.13862 h 0.112936 l 1.51053,-5.13862 h 3.091644 l -3.148113,8.2585 z"
|
||||
id="path1431"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -70.203507,664.7776 v 0.52234 h -6.197406 c 0,1.14348 0.479982,1.79287 1.665818,1.79287 1.185836,0 1.510529,-0.52233 1.510529,-1.19996 h 3.021059 c 0,1.9764 -1.51053,3.19047 -4.47512,3.19047 -2.96459,0 -4.828047,-1.41171 -4.828047,-4.23513 0,-2.82342 1.835222,-4.31983 4.644525,-4.31983 2.809302,0 4.658642,1.27054 4.658642,4.24924 z m -6.183289,-0.94584 h 3.035176 a 1.2705387,1.2705387 0 0 0 -1.41171,-1.41171 1.4117097,1.4117097 0 0 0 -1.623466,1.41171 z"
|
||||
id="path1433"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -62.777914,660.62718 v 2.61166 h -1.002314 c -1.341124,0 -1.821106,0.73409 -1.821106,1.99051 v 3.67045 h -3.105761 v -8.18792 h 2.541078 l 0.211756,1.25642 a 2.2869697,2.2869697 0 0 1 2.258736,-1.41171 2.0752133,2.0752133 0 0 1 0.917611,0.0706 z"
|
||||
id="path1435"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -55.493492,660.71188 v 2.11756 h -1.75052 v 3.134 c 0,0.70585 0.169405,1.08702 0.87526,1.08702 h 0.87526 v 1.8211 a 7.9902769,7.9902769 0 0 1 -2.004628,0.28234 c -1.679934,0 -2.823419,-0.52233 -2.823419,-2.20226 v -4.19278 h -1.157602 v -2.04698 h 1.284656 l 0.663503,-2.49873 h 2.315204 v 2.49873 z"
|
||||
id="path1437"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -45.131543,664.7776 v 0.52234 h -6.197406 c 0,1.14348 0.479982,1.79287 1.665818,1.79287 1.185836,0 1.510529,-0.52233 1.510529,-1.19996 h 3.021059 c 0,1.9764 -1.510529,3.19047 -4.47512,3.19047 -2.96459,0 -4.828047,-1.41171 -4.828047,-4.23513 0,-2.82342 1.835223,-4.31983 4.644525,-4.31983 2.809302,0 4.658642,1.27054 4.658642,4.24924 z m -6.183288,-0.94584 h 3.035175 a 1.2705387,1.2705387 0 0 0 -1.411709,-1.41171 1.4117097,1.4117097 0 0 0 -1.623466,1.41171 z"
|
||||
id="path1439"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -43.522194,659.68133 v -2.11756 h 3.105761 v 2.11756 z m 0,9.21847 v -8.18792 h 3.105761 v 8.18792 z"
|
||||
id="path1441"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -38.327102,668.8998 v -11.29368 h 3.105761 v 11.29368 z"
|
||||
id="path1443"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -27.739279,660.71188 v 2.11756 h -1.75052 v 3.134 c 0,0.70585 0.183522,1.08702 0.87526,1.08702 h 0.87526 v 1.8211 a 7.8773401,7.8773401 0 0 1 -1.990511,0.28234 c -1.694052,0 -2.82342,-0.52233 -2.82342,-2.20226 v -4.19278 h -1.157601 v -2.04698 h 1.284655 l 0.677621,-2.49873 h 2.301087 v 2.49873 z"
|
||||
id="path1445"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -17.37733,664.7776 v 0.52234 h -6.183289 c 0,1.14348 0.465864,1.79287 1.651701,1.79287 1.185836,0 1.510529,-0.52233 1.510529,-1.19996 h 3.021059 c 0,1.9764 -1.496413,3.19047 -4.47512,3.19047 -2.978707,0 -4.81393,-1.41171 -4.81393,-4.23513 0,-2.82342 1.821105,-4.31983 4.630408,-4.31983 2.809302,0 4.658642,1.27054 4.658642,4.24924 z m -6.169172,-0.94584 h 3.035176 a 1.2846558,1.2846558 0 0 0 -1.411709,-1.41171 1.4117097,1.4117097 0 0 0 -1.623467,1.41171 z"
|
||||
id="path1447"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -8.0035778,663.11179 h -2.8940052 a 0.66350356,0.66350356 0 0 0 -0.409396,-0.63527 1.4117097,1.4117097 0 0 0 -0.691737,-0.15529 c -0.268225,0 -1.129368,0 -1.129368,0.52233 0,1.19995 5.3221455,0 5.3221455,3.31752 0,2.25873 -1.9905106,2.92224 -4.2351295,2.92224 -2.244618,0 -4.235129,-0.81879 -4.235129,-2.82342 h 2.894005 v 0 c 0,0.79056 0.903494,0.94584 1.41171,0.94584 0.508215,0 1.298773,0 1.298773,-0.60703 0,-1.22819 -5.322146,-0.11294 -5.322146,-3.35987 0,-2.17403 1.962277,-2.82342 4.13631,-2.82342 1.849339,0.0423 3.8539672,0.74821 3.8539672,2.69637 z"
|
||||
id="path1449"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 10.235712,663.5353 c 0,3.67044 -2.1316821,5.56214 -5.8021274,5.56214 -3.67044518,0 -5.8021268,-1.8917 -5.8021268,-5.56214 0,-3.67045 2.13168161,-5.56214 5.8021268,-5.56214 3.6704453,0 5.8021274,1.87758 5.8021274,5.56214 z m -8.07498,-0.4941 v 0.9882 a 2.2869697,2.2869697 0 1 0 4.5457053,0 v -0.9882 a 2.2869697,2.2869697 0 1 0 -4.5457053,0 z"
|
||||
id="path1451"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 20.442373,663.5353 v 5.3645 h -3.105762 v -4.96922 a 1.0305481,1.0305481 0 0 0 -1.044665,-1.17172 1.2564216,1.2564216 0 0 0 -1.298773,1.29877 v 4.84217 h -3.105761 v -8.18792 h 2.541077 l 0.19764,1.25642 a 3.6986794,3.6986794 0 0 1 2.936356,-1.41171 c 1.962276,-0.0988 2.879888,1.04467 2.879888,2.97871 z"
|
||||
id="path1453"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 22.404649,668.8998 v -11.29368 h 3.119879 v 11.29368 z"
|
||||
id="path1455"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 27.656209,659.68133 v -2.11756 h 3.105762 v 2.11756 z m 0,9.21847 v -8.18792 h 3.105762 v 8.18792 z"
|
||||
id="path1457"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 41.265091,663.5353 v 5.3645 h -3.105762 v -4.96922 a 1.0305481,1.0305481 0 0 0 -1.044665,-1.17172 1.2564216,1.2564216 0 0 0 -1.298773,1.29877 v 4.84217 H 32.71013 v -8.18792 h 2.541077 l 0.19764,1.25642 a 3.6986794,3.6986794 0 0 1 2.936356,-1.41171 c 1.976394,-0.0988 2.879888,1.04467 2.879888,2.97871 z"
|
||||
id="path1459"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 52.050553,664.7776 v 0.52234 h -6.197406 c 0,1.14348 0.479982,1.79287 1.665818,1.79287 1.185836,0 1.510529,-0.52233 1.510529,-1.19996 h 3.021059 c 0,1.9764 -1.51053,3.19047 -4.47512,3.19047 -2.96459,0 -4.828047,-1.41171 -4.828047,-4.23513 0,-2.82342 1.835223,-4.31983 4.644525,-4.31983 2.809302,0 4.658642,1.27054 4.658642,4.24924 z m -6.183289,-0.94584 h 3.035176 a 1.2705387,1.2705387 0 0 0 -1.41171,-1.41171 1.4117097,1.4117097 0 0 0 -1.623466,1.41171 z"
|
||||
id="path1461"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 53.222272,665.83639 v -2.4705 h 3.981021 v 2.4705 z"
|
||||
id="path1463"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 69.259294,662.56122 h -3.303401 a 1.7787542,1.7787542 0 0 0 -1.877574,-2.01875 c -1.411709,0 -2.032862,1.01644 -2.032862,2.48461 v 0.9882 c 0,1.41171 0.592919,2.48461 1.990511,2.48461 a 1.7928713,1.7928713 0 0 0 2.032862,-1.96228 h 3.190464 c 0,2.95048 -1.891691,4.54571 -5.166857,4.54571 -3.670446,0 -5.576254,-1.89169 -5.576254,-5.56214 0,-3.67044 1.905808,-5.56213 5.576254,-5.56213 3.091644,0 5.166857,1.60934 5.166857,4.60217 z"
|
||||
id="path1465"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 76.586067,660.45777 c 1.94816,0 2.82342,1.14349 2.82342,3.09165 v 5.35038 h -3.119879 v -4.96922 c 0,-0.69174 -0.352927,-1.17172 -1.044665,-1.17172 a 1.2705387,1.2705387 0 0 0 -1.298773,1.29877 v 4.84217 h -3.105761 v -11.29368 h 3.105761 v 3.93867 a 3.7127965,3.7127965 0 0 1 2.639897,-1.08702 z"
|
||||
id="path1467"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 89.658499,663.14002 v 3.2187 c 0,0.35293 0.155288,0.62115 0.508216,0.62115 h 0.550566 v 1.79287 a 3.6845623,3.6845623 0 0 1 -1.623466,0.31058 c -1.242304,0 -2.004627,-0.4094 -2.286969,-1.03055 a 4.6162907,4.6162907 0 0 1 -3.049293,1.03055 c -1.722286,0 -2.908122,-0.59292 -2.908122,-2.31521 0,-2.47049 2.08933,-2.93635 5.646838,-2.93635 v -0.4094 c 0,-0.6635 -0.536449,-0.97408 -1.199953,-0.97408 -0.663503,0 -1.185836,0.16941 -1.185836,0.71997 v 0 h -3.06341 a 1.2140703,1.2140703 0 0 1 0,-0.22587 c 0,-1.51053 1.41171,-2.54108 4.235129,-2.54108 2.38579,0.0565 4.3763,0.71998 4.3763,2.73872 z m -5.646839,3.2187 c 0,0.64939 0.53645,0.79056 1.0729,0.79056 0.790557,0 1.524646,-0.46587 1.524646,-1.14349 v -0.70585 c -1.905808,0 -2.654014,0.45174 -2.654014,1.05878 z"
|
||||
id="path1469"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 100.65572,664.7776 c 0,2.82342 -1.835225,4.23513 -4.658644,4.23513 -2.82342,0 -4.630408,-1.41171 -4.630408,-4.23513 0,-2.82342 1.821105,-4.31983 4.630408,-4.31983 2.809302,0 4.658644,1.42583 4.658644,4.31983 z m -6.183291,-0.43763 v 0.88938 c 0,1.08702 0.43763,1.75052 1.524647,1.75052 1.087016,0 1.55288,-0.6635 1.55288,-1.75052 v -0.88938 c 0,-1.10113 -0.451747,-1.77875 -1.55288,-1.77875 -1.101134,0 -1.524647,0.67762 -1.524647,1.77875 z"
|
||||
id="path1471"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 110.02947,663.11179 h -2.894 a 0.66350356,0.66350356 0 0 0 -0.39528,-0.63527 1.4117097,1.4117097 0 0 0 -0.70586,-0.15529 c -0.26822,0 -1.12937,0 -1.12937,0.52233 0,1.19995 5.33627,0 5.33627,3.31752 0,2.25873 -2.00463,2.92224 -4.23513,2.92224 -2.2305,0 -4.23513,-0.81879 -4.23513,-2.82342 h 2.894 v 0 c 0,0.79056 0.9035,0.94584 1.41171,0.94584 0.50822,0 1.29878,0 1.29878,-0.60703 0,-1.22819 -5.32215,-0.11294 -5.32215,-3.35987 0,-2.17403 1.96228,-2.82342 4.13631,-2.82342 1.84934,0.0423 3.83985,0.74821 3.83985,2.69637 z"
|
||||
id="path1473"
|
||||
style="fill:#444444;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="b"
|
||||
d="m -99.905879,776.47208 v -99.58201 h 14.526493 v 99.58201 z"
|
||||
id="path1475"
|
||||
style="fill:#888888;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -122.53559,691.50127 c 9.11965,0 13.42536,5.33626 13.42536,14.45591 v 24.97314 h -14.52649 v -23.20851 c 0,-3.2187 -1.67993,-5.47743 -4.89863,-5.47743 a 5.9009465,5.9009465 0 0 0 -6.05624,6.05623 v 22.58736 h -14.52649 v -52.89676 h 14.52649 v 18.35222 a 17.152273,17.152273 0 0 1 12.056,-4.84216 z"
|
||||
id="path1477"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -48.053782,730.93032 -1.242305,-5.46332 a 13.905341,13.905341 0 0 1 -12.267757,6.33858 c -10.220778,0 -16.29113,-6.63504 -16.29113,-20.21568 0,-13.58065 6.070352,-20.08863 16.29113,-20.08863 a 14.2018,14.2018 0 0 1 10.799579,4.50335 v -18.01341 h 14.54061 v 52.93911 z m -15.260582,-21.17565 v 3.88221 c 0,4.51747 1.75052,7.43971 6.282108,7.43971 4.531588,0 6.423279,-3.64221 6.423279,-8.1738 v -2.41403 c 0,-4.53158 -1.905808,-8.24438 -6.423279,-8.24438 -4.517471,0 -6.282108,2.99282 -6.282108,7.51029 z"
|
||||
id="path1479"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="M 1.3842917,730.93032 0.14198715,725.467 A 13.905341,13.905341 0 0 1 -12.12577,731.80558 c -10.220778,0 -16.29113,-6.63504 -16.29113,-20.21568 0,-13.58065 6.070352,-20.08863 16.29113,-20.08863 a 14.2018,14.2018 0 0 1 10.7995791,4.50335 V 677.99121 H 13.214419 v 52.93911 z M -13.87629,709.75467 v 3.88221 c 0,4.51747 1.75052,7.43971 6.2679909,7.43971 4.517471,0 6.4373962,-3.64221 6.4373962,-8.1738 v -2.41403 c 0,-4.53158 -1.9058081,-8.24438 -6.4373962,-8.24438 -4.5315879,0 -6.2679909,2.99282 -6.2679909,7.51029 z"
|
||||
id="path1481"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 63.739509,711.66048 v 2.48461 H 34.827694 c 0,5.32215 2.188151,8.47026 7.73617,8.47026 5.180974,0 7.058548,-2.48461 7.058548,-5.64684 h 14.117097 c 0,9.20435 -7.058548,14.89354 -20.879186,14.89354 -13.820638,0 -22.587356,-6.26799 -22.587356,-20.1451 0,-13.51006 8.554961,-20.15921 21.697979,-20.15921 13.919457,-0.0565 21.768563,6.22564 21.768563,20.10274 z M 34.89828,707.2983 h 14.117097 a 5.9856491,5.9856491 0 0 0 -6.493865,-6.50798 c -4.856281,-0.0141 -7.115017,2.47049 -7.623232,6.50798 z"
|
||||
id="path1483"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 110.76356,705.95718 v 24.97314 H 96.237066 v -23.20851 c 0,-3.2187 -1.679934,-5.47743 -4.898632,-5.47743 a 5.9009465,5.9009465 0 0 0 -6.056235,6.05623 v 22.58736 H 70.755706 v -38.51144 h 11.957182 l 0.945845,5.84448 a 17.208741,17.208741 0 0 1 13.721818,-6.71974 c 9.077289,0 13.383009,5.33626 13.383009,14.45591 z"
|
||||
id="path1485"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -238.43695,749.52254 h -13.51006 a 3.1198784,3.1198784 0 0 0 -1.89169,-3.00694 6.7479724,6.7479724 0 0 0 -3.28929,-0.71998 c -1.2423,0 -5.25156,0 -5.25156,2.48461 0,5.54802 24.90256,-0.22587 24.90256,15.52881 0,10.58782 -9.34552,13.65123 -19.93334,13.65123 -9.64198,-0.0565 -19.86276,-3.81161 -19.86276,-13.48183 h 13.51007 v 0.28235 c 0.0706,3.72691 4.23512,4.461 6.35269,4.461 2.11756,0 6.05623,-0.14117 6.05623,-2.82342 0,-5.75978 -24.90256,-0.50822 -24.90256,-15.69821 0,-10.1502 9.20435,-13.07243 19.35454,-13.07243 9.11965,-0.0282 18.46517,3.26105 18.46517,12.39481 z"
|
||||
id="path1487"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -188.92829,757.25871 v 2.48461 h -28.91182 c 0,5.32214 2.18815,8.39967 7.73617,8.39967 5.19509,0 7.05855,-2.48461 7.05855,-5.64684 h 14.1171 c 0,9.20435 -7.05855,14.89354 -20.87919,14.89354 -13.82064,0 -22.58735,-6.26799 -22.58735,-20.1451 0,-13.51006 8.47025,-20.15922 21.68386,-20.15922 13.90534,0.0141 21.78268,6.29623 21.78268,20.17334 z m -28.84123,-4.39042 h 14.11709 a 5.9856491,5.9856491 0 0 0 -6.50798,-6.49387 c -4.82804,0 -7.08678,2.48461 -7.60911,6.49387 z"
|
||||
id="path1489"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -154.15788,737.90417 v 12.19717 h -4.67276 c -6.28211,0 -8.55496,3.43045 -8.55496,9.27493 v 17.09581 h -14.5265 v -38.49733 h 11.92895 l 0.94585,5.84448 a 10.84193,10.84193 0 0 1 10.58782,-6.79032 9.7266798,9.7266798 0 0 1 4.2916,0.87526 z"
|
||||
id="path1491"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -136.37034,776.47208 -13.27007,-38.5538 h 14.2018 l 6.43739,23.99907 h 0.46587 l 6.42328,-23.99907 h 13.00184 l -13.39712,38.5538 z"
|
||||
id="path1493"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m -36.223655,753.53179 h -13.66535 c 0,-4.53159 -2.555194,-6.56445 -6.931494,-6.56445 -4.955101,0 -6.945612,3.134 -6.945612,8.24439 v 4.23513 c 0,5.11039 2.061096,8.1738 7.227954,8.1738 4.602173,0 7.213836,-1.96228 7.213836,-6.71974 h 13.100666 c 0,11.75954 -9.204347,16.57347 -20.596844,16.57347 -12.705388,0 -21.034475,-6.63504 -21.034475,-20.1451 0,-13.51006 8.286736,-20.15921 21.034475,-20.15921 11.392497,-0.0706 20.596844,4.60217 20.596844,16.36171 z"
|
||||
id="path1495"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
<path
|
||||
class="a"
|
||||
d="m 13.214419,757.25871 v 2.48461 h -27.711861 c 0,5.32214 2.103447,8.39967 7.4114755,8.39967 4.9692181,0 6.79032364,-2.48461 6.79032364,-5.64684 H 13.214419 c 0,9.20435 -6.7197382,14.89354 -20.0180436,14.89354 -13.2983054,0 -21.6132754,-6.26799 -21.6132754,-20.1451 0,-13.51006 8.187916,-20.15922 20.7803667,-20.15922 13.2841883,0.0141 20.8509523,6.29623 20.8509523,20.17334 z m -27.641276,-4.39042 h 13.58064736 c 0,-4.00926 -2.31520396,-6.49387 -6.23975686,-6.49387 -4.6727595,0 -6.8467925,2.48461 -7.3408905,6.49387 z"
|
||||
id="path1497"
|
||||
style="fill:#444440;fill-opacity:1;stroke-width:1.41171" />
|
||||
</g>
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="title"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-83);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114563,21.963791)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.6667px;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$title</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="subtitle"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7-2);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114563,197.67452)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan>$subtitle</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="id"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.66669999999999874px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7-8-5-9);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114563,926.83834)"><tspan
|
||||
x="69.552734"
|
||||
y="81.862392"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.6667px;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$id</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="personnames"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7-2-3);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114563,375.34616)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan>$personnames</tspan></tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 61 KiB |
144
divoc-hs/artwork/divoc-hs-outro.svg
Normal file
144
divoc-hs/artwork/divoc-hs-outro.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 74 KiB |
127
divoc-ptt/__init__.py
Normal file
127
divoc-ptt/__init__.py
Normal file
|
@ -0,0 +1,127 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://talks.mrmcd.net/ptt/schedule/export/schedule.xml'
|
||||
|
||||
|
||||
def clamp(n, i, a):
|
||||
return max(min(n, a), i)
|
||||
|
||||
|
||||
def introFrames(args):
|
||||
frames = int(.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pttlogo', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
frames = int(.5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('title', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
frames = int(1*fps)
|
||||
for i in range(0, frames):
|
||||
scale = easeInOutQuad(i, 1.0, -0.8, frames-1)
|
||||
dx = easeInOutQuad(i, 0, 1550, frames-1)
|
||||
dy = easeInOutQuad(i, 0, 875, frames-1)
|
||||
yield (
|
||||
('pttlogo', 'attr', 'transform', f'translate({dx}, {dy}) scale({scale},{scale})'),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('personnames', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
step = 0.5
|
||||
steps = step * fps
|
||||
frames = int(4 * steps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pttlogo', 'attr', 'transform', f'translate(1550, 875) scale(.2,.2)'),
|
||||
('title', 'style', 'opacity', easeInQuad(clamp(i, 0, fps), 0, 1, fps)),
|
||||
('personnames', 'style', 'opacity', easeInQuad(clamp(i - 1*steps, 0, fps), 0, 1, fps)),
|
||||
('id', 'style', 'opacity', easeInQuad(clamp(i - 2*steps, 0, fps), 0, 1, fps)),
|
||||
)
|
||||
frames = int(5*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pttlogo', 'attr', 'transform', f'translate(1550, 875) scale(.2,.2)'),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(args):
|
||||
#fadein outro graphics
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(())
|
||||
|
||||
|
||||
def debug():
|
||||
render('divoc-ptt-intro.svg',
|
||||
'../divoc-ptt-intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': 7776,
|
||||
'$title': 'StageWar live! mit vielen Wörtern extra lang das wird jetzt echt zu viel',
|
||||
'$subtitle': 'Metal Konzert mit vielen Wörtern extra lang das wird jetzt echt zu viel',
|
||||
'$personnames': 'www.stagewar.de mit vielen Wörtern extra lang das wird jetzt echt zu viel'
|
||||
}
|
||||
)
|
||||
|
||||
render('divoc-ptt-outro.svg',
|
||||
'../divoc-ptt-outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'background.svg',
|
||||
# '../background.ts',
|
||||
# backgroundFrames
|
||||
# )
|
||||
#
|
||||
# render('pause.svg',
|
||||
# '../pause.ts',
|
||||
# pauseFrames
|
||||
# )
|
||||
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
# if event['room'] not in ('Chirurgie (Saal 1.04)', 'Kreißsaal (Saal 1.11)'):
|
||||
# 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 them into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'divoc-ptt-intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$id': event['id'],
|
||||
'$title': event['title'],
|
||||
'$subtitle': event['subtitle'],
|
||||
'$personnames': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'divoc-ptt-outro.svg',
|
||||
outfile = 'divoc-ptt-outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
BIN
divoc-ptt/artwork/ArchivoBlack-Regular.ttf
Normal file
BIN
divoc-ptt/artwork/ArchivoBlack-Regular.ttf
Normal file
Binary file not shown.
93
divoc-ptt/artwork/OFL.txt
Normal file
93
divoc-ptt/artwork/OFL.txt
Normal file
|
@ -0,0 +1,93 @@
|
|||
Copyright 2017 The Archivo Black Project Authors (https://github.com/Omnibus-Type/ArchivoBlack)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
419
divoc-ptt/artwork/divoc-ptt-intro.svg
Normal file
419
divoc-ptt/artwork/divoc-ptt-intro.svg
Normal file
|
@ -0,0 +1,419 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="wave"
|
||||
viewBox="0 0 1920 1080"
|
||||
version="1.1"
|
||||
sodipodi:docname="divoc-ptt-intro.svg"
|
||||
inkscape:version="1.0.1 (c497b03c, 2020-09-10)">
|
||||
<metadata
|
||||
id="metadata11764">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs11762">
|
||||
<rect
|
||||
x="69.551954"
|
||||
y="42.097235"
|
||||
width="1760.7627"
|
||||
height="183.03146"
|
||||
id="rect11768" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1746.1201"
|
||||
height="212.31649"
|
||||
id="rect11768-7" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect69" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59008"
|
||||
id="rect11768-7-8" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="788.8656"
|
||||
height="320.30505"
|
||||
id="rect101" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect11768-7-8-5" />
|
||||
<rect
|
||||
x="69.551956"
|
||||
y="42.097237"
|
||||
width="1715.0048"
|
||||
height="349.59009"
|
||||
id="rect131" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1959"
|
||||
inkscape:window-height="1235"
|
||||
id="namedview11760"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.54635417"
|
||||
inkscape:cx="945.35748"
|
||||
inkscape:cy="712.04957"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="wave"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-text-baseline="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<sodipodi:guide
|
||||
position="100.6673,869.51382"
|
||||
orientation="1,0"
|
||||
id="guide90" />
|
||||
</sodipodi:namedview>
|
||||
<linearGradient
|
||||
id="gradient"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="6.1731"
|
||||
y1="-9.6922"
|
||||
x2="1898.9858"
|
||||
y2="1083.1237">
|
||||
<stop
|
||||
offset="0"
|
||||
stop-color="#4D99B2"
|
||||
id="stop11682" />
|
||||
<stop
|
||||
offset="0.3765"
|
||||
stop-color="#56A5BA"
|
||||
id="stop11684" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#6DC4CE"
|
||||
id="stop11686" />
|
||||
</linearGradient>
|
||||
<rect
|
||||
fill="url(#gradient)"
|
||||
width="1920"
|
||||
height="1080"
|
||||
id="rect11689"
|
||||
sodipodi:insensitive="true"
|
||||
x="0"
|
||||
y="0" />
|
||||
<g
|
||||
id="pttlogo">
|
||||
<rect
|
||||
x="360"
|
||||
y="340"
|
||||
fill="none"
|
||||
stroke="#f0f0f0"
|
||||
stroke-width="23.3876"
|
||||
width="1200"
|
||||
height="400"
|
||||
id="frame" />
|
||||
<g
|
||||
id="button">
|
||||
<path
|
||||
fill="#1a1a1a"
|
||||
d="m 706.5,581.4 c 0,-0.3 -0.1,-1.8 -1.2,-3.1 -1.2,-1.3 -2.8,-1.4 -3.1,-1.5 -22.3,0.1 -44.6,0.1 -66.9,0.2 -1.3,-2 -3.8,-5.6 -7.9,-8.9 -15.8,-12.9 -42.5,-12.8 -58.3,0 -4.1,3.3 -6.7,6.9 -8,8.8 0,0 0,0 0,0 0,0 0,0 0,0 -23,0 -46.1,0.1 -69.1,0.1 -0.4,0.1 -1.6,0.3 -2.6,1.3 -1.4,1.5 -1.3,3.3 -1.3,3.6 0,17.9 0,35.8 0,53.7 0,0.2 -0.4,4.2 2.8,6.7 2.7,2 5.7,1.4 6.1,1.3 67.5,-0.4 135,-0.8 202.5,-1.1 0.7,-0.1 3.2,-0.6 5.1,-2.8 1.7,-2 1.9,-4.2 2,-5 -0.1,-17.7 -0.1,-35.5 -0.1,-53.3 z"
|
||||
id="path11693" />
|
||||
<path
|
||||
fill="#979694"
|
||||
d="m 705.8,531.6 c -0.6,-3.4 -2.2,-4.5 -5.3,-4.3 -1.7,0 -4.6,-0.1 -7.6,-1.8 0,0 -1.1,-0.6 -2,-1.4 -3,-2.4 -6,-13.1 -7.3,-27.7 -30.4,0.4 -82.1,0.3 -87.9,0.3 0,0 -50.5,1.3 -84,0.5 -0.2,2.8 -0.5,4.9 -0.8,6.5 -2.8,17.1 -3,19 -5.2,20.6 -1,0.8 -3.6,2.2 -6.8,2.9 -4.1,0.8 -5.3,1 -5.3,1 -3.1,0.1 -3.8,1.8 -3.8,4.5 -0.2,12.5 -0.9,25 -0.9,37.5 0,0.4 0,1.9 0.2,3.8 0.2,1.6 0.4,3 0.6,3.9 0.9,-0.7 1.8,-0.8 2.2,-0.9 23,0 46.1,-0.1 69.1,-0.1 0,0 0,0 0,0 0,0 0,0 0,0 1.3,-1.9 3.9,-5.5 8,-8.8 15.9,-12.8 42.6,-12.9 58.3,0 4.1,3.3 6.6,6.9 7.9,8.9 22.3,-0.1 44.6,-0.1 66.9,-0.2 0.3,0 1.9,0.1 3.1,1.5 0.1,0.2 0.3,0.3 0.4,0.5 0.2,-0.9 0.4,-1.9 0.5,-2.9 0.2,-1.5 0.3,-2.9 0.2,-4.2 0,0 0.2,-10.8 -0.1,-24.8 0,-5 0.5,-10.1 -0.4,-15.3 z"
|
||||
id="path11695" />
|
||||
<path
|
||||
id="head"
|
||||
fill="#1a8097"
|
||||
d="m 709,493.8 c 1.7,-2 1.2,-5 1,-6 -5.8,-34.4 -34.8,-57.6 -34.8,-57.6 -31.8,-25.5 -68.4,-26.9 -80.5,-26.8 -11.3,0.1 -48.1,0.8 -78.5,26.8 0,0 -31,26.4 -31.8,60 -0.1,2.5 1.1,3.9 1.1,3.9 1.3,1.5 3.3,1.8 4,1.9 24.2,3 106.2,0.8 106.2,0.8 7.8,0 100.5,0.2 109.2,-1 0.7,-0.1 2.8,-0.4 4.1,-2 z" />
|
||||
</g>
|
||||
<rect
|
||||
width="12"
|
||||
height="32.458065"
|
||||
x="755"
|
||||
y="523.771"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11699" />
|
||||
<rect
|
||||
width="12"
|
||||
height="30.238365"
|
||||
x="780"
|
||||
y="524.8808"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11701" />
|
||||
<rect
|
||||
width="12"
|
||||
height="33.855469"
|
||||
x="805"
|
||||
y="523.07227"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11703" />
|
||||
<rect
|
||||
width="12"
|
||||
height="165.72078"
|
||||
x="830"
|
||||
y="457.13962"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11705" />
|
||||
<rect
|
||||
width="12"
|
||||
height="200"
|
||||
x="855"
|
||||
y="440"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11707" />
|
||||
<rect
|
||||
width="12"
|
||||
height="196.0903"
|
||||
x="880"
|
||||
y="441.95486"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11709" />
|
||||
<rect
|
||||
width="12"
|
||||
height="140.71889"
|
||||
x="905"
|
||||
y="469.64056"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11711" />
|
||||
<rect
|
||||
width="12"
|
||||
height="77.467522"
|
||||
x="930"
|
||||
y="501.26624"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11713" />
|
||||
<rect
|
||||
width="12"
|
||||
height="35.051079"
|
||||
x="955"
|
||||
y="522.47449"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11715" />
|
||||
<rect
|
||||
width="12"
|
||||
height="12.072141"
|
||||
x="980"
|
||||
y="533.96393"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11717" />
|
||||
<rect
|
||||
width="12"
|
||||
height="6.6893682"
|
||||
x="1005"
|
||||
y="536.65533"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11719" />
|
||||
<rect
|
||||
width="12"
|
||||
height="28.553411"
|
||||
x="1030"
|
||||
y="525.72327"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11721" />
|
||||
<rect
|
||||
width="12"
|
||||
height="26.222727"
|
||||
x="1055"
|
||||
y="526.88861"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11723" />
|
||||
<rect
|
||||
width="12"
|
||||
height="173.71169"
|
||||
x="1080"
|
||||
y="453.14417"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11725" />
|
||||
<rect
|
||||
width="12"
|
||||
height="149.7238"
|
||||
x="1105"
|
||||
y="465.13809"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11727" />
|
||||
<rect
|
||||
width="12"
|
||||
height="92.04187"
|
||||
x="1130"
|
||||
y="493.97906"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11729" />
|
||||
<rect
|
||||
width="12"
|
||||
height="43.591877"
|
||||
x="1155"
|
||||
y="518.20404"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11731" />
|
||||
<rect
|
||||
width="12"
|
||||
height="34.264095"
|
||||
x="1180"
|
||||
y="522.86798"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11733" />
|
||||
<rect
|
||||
width="12"
|
||||
height="31.206963"
|
||||
x="1205"
|
||||
y="524.39655"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11735" />
|
||||
<rect
|
||||
width="12"
|
||||
height="35.575733"
|
||||
x="1230"
|
||||
y="522.21216"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11737" />
|
||||
<rect
|
||||
width="12"
|
||||
height="176.81422"
|
||||
x="1255"
|
||||
y="451.5929"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11739" />
|
||||
<rect
|
||||
width="12"
|
||||
height="175.78004"
|
||||
x="1280"
|
||||
y="452.10999"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11741" />
|
||||
<rect
|
||||
width="12"
|
||||
height="174.74586"
|
||||
x="1305"
|
||||
y="452.62708"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11743" />
|
||||
<rect
|
||||
width="12"
|
||||
height="116.45857"
|
||||
x="1330"
|
||||
y="481.77072"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11745" />
|
||||
<rect
|
||||
width="12"
|
||||
height="65.798965"
|
||||
x="1355"
|
||||
y="507.10052"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11747" />
|
||||
<rect
|
||||
width="12"
|
||||
height="36.054989"
|
||||
x="1380"
|
||||
y="521.97253"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11749" />
|
||||
<rect
|
||||
width="12"
|
||||
height="34.763527"
|
||||
x="1405"
|
||||
y="522.61823"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11751" />
|
||||
<rect
|
||||
width="12"
|
||||
height="23.347206"
|
||||
x="1430"
|
||||
y="528.32642"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11753" />
|
||||
<rect
|
||||
width="12"
|
||||
height="15.457183"
|
||||
x="1455"
|
||||
y="532.27142"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11755" />
|
||||
<rect
|
||||
width="12"
|
||||
height="31.47938"
|
||||
x="1480"
|
||||
y="524.26031"
|
||||
fill="#f0f0f0"
|
||||
class="bar"
|
||||
id="rect11757" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="title"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114566,21.963775)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.6667px;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$title</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="personnames"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74.66670000000000584px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114566,197.6745)"><tspan
|
||||
x="69.552734"
|
||||
y="111.68592"><tspan>$personnames</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="id"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.66669999999999874px;line-height:1.25;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect11768-7-8-5);fill:#000000;fill-opacity:1;stroke:none;"
|
||||
transform="translate(31.114566,926.83832)"><tspan
|
||||
x="69.552734"
|
||||
y="81.862392"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.6667px;font-family:'Archivo Black';-inkscape-font-specification:'Archivo Black, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">$id</tspan></tspan></text>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
112
divoc-ptt/artwork/divoc-ptt-outro.svg
Normal file
112
divoc-ptt/artwork/divoc-ptt-outro.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 30 KiB |
Loading…
Add table
Reference in a new issue