Update artwork
thanks to mstrigl!
|
@ -16,99 +16,79 @@ def bounce(i, min, max, frames):
|
|||
return max - easeInOutQuad(i - frames/2, min, max, frames/2)
|
||||
|
||||
def introFrames(parameters):
|
||||
move=50
|
||||
|
||||
# 3 Sekunde Text Fadein
|
||||
frames = 3*fps
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
('textblock', 'attr', 'transform', 'translate(%.4f, 0)' % easeOutQuad(i, -move, move, frames)),
|
||||
)
|
||||
|
||||
# 2 Sekunden stehen lassen
|
||||
frames = 2*fps
|
||||
# 4 Sekunden stehen lassen
|
||||
frames = 4*fps
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
# 3 Sekunde Text Fadeout
|
||||
frames = 3*fps
|
||||
# 1 Sekunde Fade to black layer
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('textblock', 'style', 'opacity', "%.4f" % easeLinear(i, 1, -1, frames)),
|
||||
('textblock', 'attr', 'transform', 'translate(%.4f, 0)' % easeInQuad(i, 0, move, frames)),
|
||||
('fadeout', 'style', 'opacity', "%.4f" % easeLinear(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
def pauseFrames(parameters):
|
||||
frames = 25*3
|
||||
for i in range(0, frames):
|
||||
frames = 3*fps
|
||||
colors = ['#21A4D4', '#73BA25', '#6DA741', '#35B9AB', '#00A489', '#173F4F']
|
||||
yield (
|
||||
('pause_bg', 'style', 'fill', "%s" % '#173F4F'),
|
||||
('pause_bg', 'attr', 'opacity', '%.4f' % 1.0),
|
||||
)
|
||||
for i in range(0, len(colors)):
|
||||
z = 0
|
||||
for z in range(0,frames):
|
||||
yield (
|
||||
('pause_bg_alt', 'style', 'fill', "%s" % colors[i]),
|
||||
('pause_bg_alt', 'attr', 'opacity', '%.4f' % easeLinear(z, 0.0, 1.0, frames)),
|
||||
)
|
||||
yield (
|
||||
('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
|
||||
('pause_bg', 'style', 'fill', "%s" % colors[i]),
|
||||
('pause_bg', 'attr', 'opacity', '%.4f' % 1.0),
|
||||
)
|
||||
|
||||
frames = 25*1
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
|
||||
)
|
||||
|
||||
|
||||
def outroFrames(p):
|
||||
# 5 Sekunden stehen bleiben
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield []
|
||||
|
||||
def backgroundFrames(parameters):
|
||||
frames = 25*3
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('pause', 'attr', 'flood-opacity', '%.4f' % bounce(i, 0.0, 1.0, frames)),
|
||||
)
|
||||
|
||||
frames = 25*1
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('glowFlood', 'attr', 'flood-opacity', '%.4f' % 0),
|
||||
)
|
||||
|
||||
frames = 20*fps
|
||||
for i in range(0, frames):
|
||||
xshift = 300 - ((i+1) * (300/frames))
|
||||
yshift = 150 - ((i+1) * (150/frames))
|
||||
yield(
|
||||
('pillgroup', 'attr', 'transform', 'translate(%.4f, %.4f)' % (xshift, yshift)),
|
||||
)
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$ID': 4711,
|
||||
'$TITLE': "Long Long Long title is LONG",
|
||||
'$SUBTITLE': 'Long Long Long Long subtitle is LONGER',
|
||||
'$SPEAKER': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||
}
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'intro.svg',
|
||||
# '../intro.ts',
|
||||
# introFrames,
|
||||
# {
|
||||
# '$ID': 4711,
|
||||
# '$TITLE': "Long Long Long title is LONG",
|
||||
# '$SUBTITLE': 'Long Long Long Long subtitle is LONGER',
|
||||
# '$SPEAKER': 'Long Name of Dr. Dr. Prof. Dr. Long Long'
|
||||
# }
|
||||
# )
|
||||
#
|
||||
render(
|
||||
'pause.svg',
|
||||
'../pause.ts',
|
||||
pauseFrames
|
||||
)
|
||||
|
||||
render(
|
||||
'outro.svg',
|
||||
'../outro.ts',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
# render(
|
||||
# 'outro.svg',
|
||||
# '../outro.ts',
|
||||
# outroFrames
|
||||
# )
|
||||
#
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
if event['room'] not in ('Galerie', 'Saal (Main Hall)'):
|
||||
if event['room'] not in ('105 (Main)', '155 (Medium)', '107 (Small)'):
|
||||
print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
|
||||
continue
|
||||
if not (idlist==[]):
|
||||
|
@ -147,11 +127,3 @@ def tasks(queue, args, idlist, skiplist):
|
|||
outfile = 'pause.ts',
|
||||
sequence = pauseFrames
|
||||
))
|
||||
|
||||
# place the background-sequence into the queue
|
||||
if not "bg" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'background.svg',
|
||||
outfile = 'background.ts',
|
||||
sequence = backgroundFrames
|
||||
))
|
||||
|
|
BIN
osc18/artwork/hexagons.png
Normal file
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 188 KiB After Width: | Height: | Size: 69 KiB |
19
osc18/artwork/official-logo-monochrome.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.1" viewBox="0 0 340 220.3" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="translate(-232.86 -406.35)">
|
||||
<path id="Geeko" d="m523.71 442.05c-3.3113-.11926-6.4507 1.0506-8.8499 3.3008-2.3993 2.2502-3.8147 5.2984-3.9147 8.5992-.2297 6.8208 5.1108 12.559 11.916 12.81 3.3095.1 6.4647-1.0698 8.878-3.32 2.4098-2.2607 3.7953-5.3107 3.9006-8.5992.2297-6.819-5.109-12.549-11.93-12.791zm2.0205 13.512c-3.0307 0-5.4791-1.6398-5.4791-3.6498 0-2.0292 2.4484-3.6603 5.4791-3.6603 3.0306 0 5.486 1.6311 5.486 3.6603 0 2.0099-2.4571 3.6498-5.486 3.6498zm28.798 14.729c.0887-.0692.29521-.25105.2683-.41918-.68471-4.2787-7.0592-25.029-11.884-30.019-1.3294-1.3592-2.394-2.6992-4.5495-3.9602-17.454-10.171-58.863-16.309-60.803-16.59 0 0-.19473-.0406-.3297.0912-.1048.10237-.1246.29991-.1246.29991s-.1596 8.5799-.1841 9.5392c-4.2286-1.4206-34.972-11.351-63.791-12.351-24.44-.85939-60.033-4.0198-107.2 24.98l-1.3943.86815c-22.19 13.841-37.51 30.91-45.518 50.739-2.5116 6.2402-5.8895 20.32-2.5414 33.569 1.4417 5.7912 4.1304 11.611 7.7556 16.819 8.194 11.77 21.944 19.58 36.749 20.899 20.904 1.8696 36.733-7.5188 42.363-25.099 3.8708-12.13 0-29.928-14.839-39.008-12.07-7.3908-25.049-5.7106-32.578-.7296-6.5313 4.3303-10.23 11.06-10.165 18.451.1508 13.11 11.444 20.078 19.564 20.099 2.3589 0 4.7284-.41041 7.3995-1.2803.9506-.28939 1.845-.64893 2.8307-1.2593l.3087-.18065.1947-.12978-.065.0386c1.8503-1.261 2.964-3.3113 2.964-5.5106 0-.59981-.084-1.2084-.2561-1.8205-.9593-3.32-4.239-5.3282-7.638-4.7091l-.4595.10874-.6209.18942-.9015.31043c-1.8696.45951-3.2692.49985-3.5691.51038-.9506-.0614-5.6246-1.461-5.6246-6.5805v-.0702c0-1.8801.7542-3.199 1.1698-3.9199 1.454-2.28 5.4352-4.5179 10.814-4.0497 7.0593.61034 12.149 4.2303 15.52 11.06 3.1289 6.349 2.3098 14.159-2.1099 19.88-4.3899 5.6685-12.205 8.0783-22.598 6.9593-10.481-1.1593-19.34-7.1908-24.303-16.579-4.8565-9.1779-5.1213-20.059-.6858-28.418 10.609-20.029 30.649-19.82 41.637-17.921 16.26 2.8202 34.758 17.819 41.319 35.139 1.0593 2.7606 1.5995 4.9494 2.0713 6.9505l.7085 2.9903 18.37 8.9692c.39458.19266.52796.25778.6858.14034.18941-.14093.081-.52966.081-.52966-.114-.4104-.3806-.78924-.805-5.9298-.3491-4.5618-1.0594-17.051 5.2282-23.24 2.4414-2.4186 6.1613-4.5776 9.099-5.2686 12.04-2.9412 26.159-.912 39.507 14.539 6.9102 7.98 10.279 11.619 11.97 13.249 0 0 .38494.36349.5893.53142.22331.1835.36878.33789.6945.51914.55786.31042 22.954 10.621 22.954 10.621s.26534.13182.4612-.11049c.19362-.23953.01-.4788.01-.4788-.1491-.17013-14.199-18.328-11.698-33.279 1.9696-11.909 11.447-10.83 24.558-9.3498 4.2794.49984 9.1516 1.0593 14.196 1.1716 14.084.0895 29.254-2.5115 38.604-6.6015 6.049-2.629 9.9093-4.3794 12.328-6.5787.8699-.72084 1.3207-1.8907 1.7907-3.1499l.3297-.83133c.3911-1.0207.9664-3.171 1.219-4.3496.1017-.51914.2208-1.0274-.2087-1.3592-.39265-.30337-1.2944.24027-1.2944.24027-4.1058 2.4712-14.369 7.1505-23.965 7.3504-11.914.24028-36.054-12.061-38.555-13.36-1.6739-3.9857-3.3458-7.9724-5.0438-11.948 17.27 11.379 31.594 17.668 42.559 18.638 12.207 1.0874 21.723-5.5724 25.853-8.3433.54064-.35944 1.0799-.76184 1.5756-1.1486zm-48.992-16.369c.1753-4.7302 2.1554-9.1201 5.6141-12.34 3.4603-3.2306 7.9747-4.9003 12.708-4.7494 9.7602.34902 17.43 8.5886 17.095 18.338-.1841 4.7302-2.1642 9.1201-5.6141 12.33-3.4603 3.2499-7.9642 4.9196-12.719 4.76-9.7497-.35954-17.411-8.5799-17.084-18.338z" clip-rule="evenodd" fill-rule="evenodd"/>
|
||||
<path d="m376.84 556.36c-7.7836 0-12.065 6.5805-12.065 11.13v5.8403c0 6.6997 5.4738 10.851 10.55 10.851h17.819c2.2449 0 2.7149 1.4697 2.7149 2.7097v3.769c0 .39988-.081 4.0198-2.7149 4.0198h-24.303c-2.4151 0-4.1602 1.6802-4.1602 3.9795v1.0418c0 2.2905 1.7451 3.9602 4.1602 3.9602h25.624c6.698 0 11.02-4.66 11.02-11.879v-6.3016c0-6.7786-4.8705-9.8093-9.7058-9.8093h-17.533c-2.6395 0-3.8356-1.9801-3.8356-3.3797v-3.4796c0-2.1906 1.4644-3.4604 4.0251-3.4604h19.408c2.38 0 4.1707-1.71 4.1707-3.9707v-1.04c0-2.2695-1.8205-3.9813-4.2513-3.9813h-20.922z"/>
|
||||
<path d="m449.7 556.36c-2.301 0-4.1548 1.8696-4.1548 4.1707v29.838c0 2.3905-1.9503 4.311-4.311 4.311h-13.545c-2.3694 0-4.3092-1.9205-4.3092-4.311v-29.838c0-2.3011-1.8696-4.1707-4.1689-4.1707h-1.3101c-2.3344 0-4.1707 1.8416-4.1707 4.1707v30.968c0 7.2101 5.6737 12.44 13.489 12.44h14.485c7.8047 0 13.475-5.2282 13.475-12.44v-30.968c0-2.3291-1.8293-4.1707-4.1602-4.1707h-1.3189z"/>
|
||||
<path d="m475.63 556.36c-7.7801 0-12.074 6.5805-12.074 11.13v5.8403c0 6.6997 5.4843 10.851 10.564 10.851h17.814c2.2485 0 2.7203 1.4697 2.7203 2.7097v3.769c0 .39988-.081 4.0198-2.7203 4.0198h-24.314c-2.4045 0-4.1601 1.6802-4.1601 3.9795v1.0418c0 2.2905 1.7556 3.9602 4.1601 3.9602h25.633c6.6998 0 11.041-4.66 11.041-11.879v-6.3016c0-6.7786-4.8845-9.8093-9.7199-9.8093h-17.533c-2.6466 0-3.8392-1.9801-3.8392-3.3797v-3.4796c0-2.1906 1.4645-3.4604 4.0251-3.4604h19.419c2.3747 0 4.1584-1.71 4.1584-3.9707v-1.04c0-2.2695-1.8188-3.9813-4.2601-3.9813h-20.913z"/>
|
||||
<path d="m516.6 556.36c-2.3098 0-4.0549 1.7118-4.0549 3.9813v39.358c0 2.259 1.7047 3.9602 3.9637 3.9602h31.364c2.4151 0 4.1602-1.6697 4.1602-3.9602v-1.0418c0-2.2993-1.7451-3.9795-4.1602-3.9795h-25.687v-10.02h18.822c2.4098 0 4.1602-1.6907 4.1602-3.9813v-1.04c0-2.3011-1.7504-3.9707-4.1602-3.9707h-18.822v-10.32h24.382c2.4063 0 4.1601-1.6591 4.1601-3.9707v-1.04c0-2.3011-1.7538-3.9813-4.1601-3.9813h-29.968z"/>
|
||||
<g transform="matrix(1.7539 0 0 1.7539 -611.6 -134.13)">
|
||||
<path d="m491.25 404.37c-2.241 0-4.065 1.744-4.065 3.894v8.461c0 2.184 1.765 3.963 3.929 3.963h5.473c2.164 0 3.929-1.779 3.929-3.963v-8.461c0-2.149-1.825-3.894-4.065-3.894h-5.201zm-1.184 12.019v-7.726c0-.906.744-1.647 1.654-1.647h4.264c.89 0 1.648.758 1.648 1.647v7.726c0 .912-.738 1.653-1.648 1.653h-4.296c-.912 0-1.622-.725-1.622-1.653z"/>
|
||||
<path d="m512.91 404.27c-1.578 0-2.768.564-3.723 1.026-.582.279-1.086.52-1.477.52-.177 0-.328-.08-.408-.211l-.364-.696c-.091-.183-.456-.541-.907-.541h-.541c-.52 0-.936.467-.936 1.037v21.461c0 .673.531 1.203 1.203 1.203h.468c.667 0 1.209-.536 1.209-1.203v-7.121c0-.211.137-.439.276-.439.391 0 .895.229 1.477.496.955.439 2.145.98 3.723.98h.505c2.794 0 4.532-1.597 4.532-4.162v-8.192c0-2.526-1.775-4.157-4.532-4.157h-.505zm-5.475 11.952v-7.39c0-1.021.798-1.818 1.818-1.818h3.997c1.021 0 1.818.798 1.818 1.818v7.39c0 1.003-.818 1.818-1.818 1.818h-3.997c-1.001 0-1.818-.815-1.818-1.818z"/>
|
||||
<path d="m526.04 404.37c-2.241 0-4.06 1.744-4.06 3.894v8.398c0 2.178 1.768 4.025 3.854 4.025h5.647c.698 0 1.203-.484 1.203-1.141v-.37c0-.661-.505-1.135-1.203-1.135h-4.639c-1.3 0-1.986-.639-1.986-1.854v-2.457h8.369c1.346 0 2.142-.821 2.142-2.212v-3.256c0-2.149-1.822-3.894-4.054-3.894h-5.273zm-1.183 4.265c0-.907.713-1.619 1.621-1.619h4.396c.906 0 1.613.712 1.613 1.619v2.622h-7.631c.001-.342.001-2.622.001-2.622z"/>
|
||||
<path d="m547 404.27c-1.573 0-2.76.564-3.718 1.021-.596.28-1.105.525-1.521.525-.183 0-.257-.023-.399-.269l-.331-.604c-.19-.382-.513-.575-.949-.575h-.465c-.562 0-.972.438-.972 1.037v14.077c0 .667.527 1.203 1.206 1.203h.465c.667 0 1.211-.542 1.211-1.203v-10.65c0-.998.815-1.818 1.813-1.818h3.999c1.001 0 1.816.82 1.816 1.818v10.65c0 .667.53 1.203 1.203 1.203h.47c.667 0 1.209-.542 1.209-1.203v-11.055c0-2.526-1.776-4.157-4.535-4.157h-.502z"/>
|
||||
</g>
|
||||
<g transform="matrix(1.7539 0 0 1.7539 -611.6 -134.13)">
|
||||
<path d="m667.46 415.23c1.218 0 2.188.99 2.188 2.229 0 1.257-.971 2.237-2.198 2.237-1.218 0-2.208-.98-2.208-2.237 0-1.238.99-2.229 2.208-2.229h.01zm-.01.346c-.98 0-1.782.842-1.782 1.882 0 1.06.802 1.891 1.792 1.891.99.011 1.782-.831 1.782-1.881s-.792-1.892-1.782-1.892h-.01zm-.416 3.179h-.396v-2.485c.208-.03.406-.06.703-.06.377 0 .624.079.772.188.149.108.229.276.229.515 0 .326-.218.524-.485.604v.021c.218.039.366.237.416.604.06.387.118.535.158.614h-.416c-.06-.079-.119-.307-.168-.634-.06-.316-.218-.436-.535-.436h-.277v1.069zm0-1.377h.287c.327 0 .604-.118.604-.426 0-.218-.158-.436-.604-.436-.129 0-.218.01-.287.021v.841z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 216 KiB After Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 173 KiB After Width: | Height: | Size: 27 KiB |
BIN
osc18/artwork/video-team.png
Normal file
After Width: | Height: | Size: 21 KiB |
143
osc18/artwork/video-team.svg
Normal file
|
@ -0,0 +1,143 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
viewBox="0 0 180 82.000005"
|
||||
height="82"
|
||||
width="180"
|
||||
sodipodi:docname="video-team.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="713"
|
||||
id="namedview25"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.8183766"
|
||||
inkscape:cx="45.430183"
|
||||
inkscape:cy="54.914672"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(0,-1040.5197)"
|
||||
id="layer1">
|
||||
<path
|
||||
id="rect817-2"
|
||||
d="m 18,1059.3947 v 45 h 1.542969 c 0.08469,-0.2191 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.249663,0 0.458277,0.1559 0.542969,0.375 H 25.5 h 30 1.542969 c 0.08469,-0.2191 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.24966,0 0.458278,0.1559 0.542969,0.375 H 63 v -45 h -1.5 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1060.1447 57,1059.8834 57,1059.5588 v -0.1641 H 55.5 25.5 24 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -0.1641 z m 2.085938,4.125 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1066.8947 57,1066.6334 57,1066.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1073.6447 57,1073.3834 57,1073.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1080.3947 57,1080.1334 57,1079.8088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1087.1447 57,1086.8834 57,1086.5588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1093.8947 57,1093.6334 57,1093.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 h -3.328124 c -0.324609,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1100.6447 57,1100.3834 57,1100.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31813714;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect1349"
|
||||
d="m 18,1058.6447 v 45 h 1.542969 c 0.08469,-0.2192 0.293308,-0.375 0.542969,-0.375 h 3.328124 c 0.249663,0 0.458277,0.1558 0.542969,0.375 H 25.5 h 30 1.542969 c 0.08469,-0.219 0.293307,-0.375 0.542969,-0.375 h 3.328124 c 0.24966,0 0.458278,0.156 0.542969,0.375 H 63 v -45 h -1.5 v 0.1641 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1059.3947 57,1059.1334 57,1058.8088 v -0.1641 H 55.5 25.5 24 v 0.1641 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -0.1641 z m 2.085938,4.125 h 3.328124 c 0.324609,0 0.585938,0.2612 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3247 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2612 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1066.1447 57,1065.8834 57,1065.5588 v -2.2032 c 0,-0.3247 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1072.8947 57,1072.6334 57,1072.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1079.6447 57,1079.3834 57,1079.0588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1086.3947 57,1086.1334 57,1085.8088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1093.1447 57,1092.8834 57,1092.5588 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z m -37.5,6.75 h 3.328124 c 0.324609,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261329,0.5859 -0.585938,0.5859 h -3.328124 c -0.32461,0 -0.585938,-0.2613 -0.585938,-0.5859 v -2.2032 c 0,-0.3246 0.261328,-0.5859 0.585938,-0.5859 z m 37.5,0 h 3.328124 c 0.32461,0 0.585938,0.2613 0.585938,0.5859 v 2.2032 c 0,0.3246 -0.261328,0.5859 -0.585938,0.5859 H 57.585938 C 57.26133,1099.8947 57,1099.6334 57,1099.3088 v -2.2032 c 0,-0.3246 0.261329,-0.5859 0.585938,-0.5859 z"
|
||||
style="opacity:1;fill:#061c2a;fill-opacity:1;stroke:none;stroke-width:1.49999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0"
|
||||
y="1094.2697"
|
||||
x="27.000071"
|
||||
height="20.25"
|
||||
width="26.999998"
|
||||
id="rect1059-9-4-0"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0"
|
||||
y="1071.7695"
|
||||
x="27.000071"
|
||||
height="20.25"
|
||||
width="26.999998"
|
||||
id="rect1059-9-3"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0"
|
||||
y="1049.2698"
|
||||
x="27.000071"
|
||||
height="20.249998"
|
||||
width="26.999998"
|
||||
id="rect1059-6"
|
||||
style="opacity:0.2;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0"
|
||||
y="1048.5198"
|
||||
x="27.000071"
|
||||
height="20.249998"
|
||||
width="26.999998"
|
||||
id="rect1059"
|
||||
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0"
|
||||
y="1071.0195"
|
||||
x="27.000071"
|
||||
height="20.25"
|
||||
width="26.999998"
|
||||
id="rect1059-9"
|
||||
style="opacity:1;fill:#73ba25;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0"
|
||||
y="1093.5197"
|
||||
x="27.000071"
|
||||
height="20.25"
|
||||
width="26.999998"
|
||||
id="rect1059-9-4"
|
||||
style="opacity:1;fill:#173f4f;fill-opacity:1;stroke:none;stroke-width:0.39679703;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path1671"
|
||||
d="m 40.5,1097.5197 a 6.5,6.5 0 0 0 -6.5,6.5 6.5,6.5 0 0 0 6.5,6.5 6.5,6.5 0 0 0 6.5,-6.5 6.5,6.5 0 0 0 -6.5,-6.5 z m -1.875,3.5 5.25,3 -5.25,3 z"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.14482522;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23640315;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 40.503718,1074.0284 c -2.309168,0 -4.488163,1.0692 -5.907649,2.8896 0.915295,0.2443 1.563127,0.4545 1.757146,0.5196 0.003,-0.1185 0.02278,-1.1831 0.02278,-1.1831 0,0 0.0024,-0.025 0.0156,-0.036 0.01666,-0.018 0.04096,-0.018 0.04096,-0.018 0.240737,0.036 5.379185,0.7961 7.545069,2.0574 0.267477,0.156 0.399503,0.3228 0.564469,0.4913 0.598714,0.6189 1.389824,3.1924 1.474792,3.723 0.0035,0.021 -0.02244,0.045 -0.03344,0.051 h -2.49e-4 c -0.0615,0.048 -0.128505,0.097 -0.195588,0.141 -0.512498,0.3438 -1.693168,1.1697 -3.207946,1.0348 -1.360655,-0.12 -3.138328,-0.9003 -5.281378,-2.3116 0.210708,0.493 0.418313,0.9877 0.62603,1.482 0.310351,0.1612 3.305866,1.6866 4.784288,1.6569 1.190774,-0.025 2.464326,-0.6053 2.973818,-0.9117 0,0 0.111961,-0.067 0.16069,-0.03 0.05329,0.041 0.03922,0.1051 0.02593,0.1683 -0.03066,0.1456 -0.102705,0.4126 -0.151241,0.5394 l -0.04096,0.1035 c -0.05832,0.1558 -0.1143,0.3012 -0.222249,0.3907 -0.300137,0.2727 -0.779181,0.4896 -1.529807,0.8159 -1.16025,0.5071 -3.04265,0.8298 -4.790346,0.8185 -0.625965,-0.018 -1.230718,-0.084 -1.761752,-0.1455 -1.089799,-0.123 -1.976515,-0.2227 -2.517206,0.1683 1.422306,1.6336 3.481658,2.573 5.648319,2.5766 4.144494,0 7.50424,-3.358 7.504106,-7.5002 -8.7e-5,-4.1421 -3.359768,-7.4998 -7.504106,-7.4998 z m 1.673775,4.3518 c -0.587361,-0.02 -1.147438,0.1882 -1.576829,0.589 -0.429194,0.3993 -0.674804,0.9438 -0.696557,1.5303 -0.04057,1.2102 0.910119,2.2299 2.119968,2.2746 0.590028,0.019 1.14889,-0.1873 1.57828,-0.5904 0.428101,-0.3982 0.673713,-0.9427 0.696558,-1.5292 0.04156,-1.2093 -0.910269,-2.2311 -2.12142,-2.2743 z m -0.01842,0.6471 c 0.846425,0.03 1.50911,0.7408 1.480606,1.5864 -0.01305,0.4078 -0.185209,0.7858 -0.484242,1.0663 -0.29947,0.279 -0.690873,0.4242 -1.101553,0.4118 -0.844462,-0.033 -1.507172,-0.7425 -1.478668,-1.5885 0.01245,-0.4095 0.187969,-0.7875 0.485698,-1.0665 0.297721,-0.2793 0.687256,-0.4242 1.098159,-0.4095 z m 0.250846,0.7692 c -0.376081,0 -0.679833,0.2022 -0.679833,0.4539 0,0.2493 0.303752,0.4527 0.679833,0.4527 0.375859,0 0.680805,-0.2036 0.680805,-0.4527 0,-0.2517 -0.304735,-0.4539 -0.680805,-0.4539 z"
|
||||
id="path819" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.15259878"
|
||||
id="path2"
|
||||
d="m 40.499843,1051.5415 c -4.141837,0 -7.499774,3.3579 -7.499774,7.5002 a 7.5002298,7.5002298 0 0 0 0.490148,2.6583 c 0.109875,-0.2877 0.235918,-0.5685 0.394772,-0.8322 0.08088,-0.135 0.169843,-0.2645 0.229204,-0.4089 0.05952,-0.1455 0.08698,-0.3086 0.04151,-0.4583 -0.02595,-0.086 -0.07478,-0.162 -0.127575,-0.2334 -0.05295,-0.072 -0.11094,-0.1395 -0.159161,-0.2145 -0.122685,-0.1902 -0.178998,-0.4245 -0.147105,-0.6486 0.03204,-0.2242 0.152905,-0.4363 0.335108,-0.5709 0.162365,-0.12 0.367458,-0.174 0.570109,-0.1663 a 1.0163079,1.0163079 0 0 1 0.199904,0.029 c 0.261859,0.063 0.492894,0.2274 0.664262,0.4348 0.212419,0.258 0.337244,0.5843 0.367763,0.9168 0.03083,0.3327 -0.03051,0.6716 -0.159007,0.9798 -0.230425,0.5523 -0.665636,0.9983 -0.905216,1.5467 -0.195632,0.448 -0.251787,0.9477 -0.225084,1.436 0.0036,0.045 0.0098,0.09 0.0138,0.1365 a 7.5002298,7.5002298 0 0 0 2.093808,1.8399 10.198177,10.198177 0 0 1 -0.07446,-1.2209 c 10e-4,-0.3247 0.01755,-0.6486 0.04883,-0.969 -0.19731,-0.1365 -0.376461,-0.2946 -0.503576,-0.4964 -0.226153,-0.3597 -0.26888,-0.8149 -0.175795,-1.2295 0.09309,-0.4146 0.312828,-0.7923 0.576825,-1.1252 0.435517,-0.5485 1.004405,-0.9924 1.640131,-1.2864 -0.01832,-0.025 -0.03662,-0.051 -0.05188,-0.072 -0.234086,-0.3789 -0.372341,-0.8155 -0.405913,-1.2597 -0.03419,-0.4492 0.03662,-0.8991 0.06638,-1.3485 0.02136,-0.3135 0.02259,-0.6271 0.04089,-0.9408 0.02136,-0.3627 0.06561,-0.7258 0.1674,-1.0746 0.03693,-0.126 0.08209,-0.2526 0.153819,-0.3631 a 0.81029957,0.81029957 0 0 1 0.343805,-0.2982 c 0.158246,-0.063 0.295738,-0.077 0.448642,-0.051 0.127875,0.027 0.246141,0.091 0.349756,0.1708 0.10377,0.08 0.193344,0.176 0.278036,0.2757 a 4.2216454,4.2216454 0 0 1 0.600322,0.935 2.0658824,2.0658824 0 0 1 0.63176,0 4.2152362,4.2152362 0 0 1 0.600628,-0.9351 c 0.08454,-0.1005 0.174421,-0.1961 0.278036,-0.2759 0.10377,-0.08 0.221878,-0.144 0.349909,-0.1705 a 0.73354237,0.73354237 0 0 1 0.451235,0.051 0.81121518,0.81121518 0 0 1 0.343804,0.2991 c 0.07171,0.1095 0.116895,0.2359 0.15382,0.3624 0.101626,0.3487 0.145891,0.7119 0.167248,1.0743 0.01832,0.3138 0.01983,0.6283 0.04119,0.9415 0.02976,0.4496 0.101175,0.8988 0.06715,1.3479 a 2.8085806,2.8085806 0 0 1 -0.407134,1.26 c -0.01832,0.028 -0.04059,0.055 -0.05951,0.084 0.14253,0.1605 0.345941,0.2969 0.519446,0.3552 a 1.1313674,1.1313674 0 0 0 0.606427,0.024 0.95481061,0.95481061 0 0 0 0.30886,-0.1305 0.72484429,0.72484429 0 0 0 0.229661,-0.2418 c 0.06867,-0.12 0.09614,-0.2593 0.111405,-0.3975 0.03891,-0.3522 0,-0.708 -0.029,-1.0611 -0.01983,-0.2292 -0.03585,-0.4624 0.01555,-0.6867 0.0348,-0.1518 0.102855,-0.3003 0.216692,-0.4063 a 0.63969412,0.63969412 0 0 1 0.268878,-0.147 0.75902635,0.75902635 0 0 1 0.306724,-0.016 c 0.219743,0.033 0.425446,0.1578 0.548135,0.3426 0.06974,0.105 0.112156,0.2263 0.137641,0.3499 0.02533,0.123 0.03465,0.2495 0.04151,0.3753 0.0238,0.44 0.02289,0.8805 0.01065,1.3211 -0.0102,0.3846 -0.03204,0.7798 -0.185866,1.1323 -0.197767,0.4524 -0.596051,0.7902 -1.026226,1.0328 a 4.0794233,4.0794233 0 0 1 -0.918035,0.3754 c 0.278798,0.89 0.423919,1.8748 0.423919,2.8735 a 10.180933,10.180933 0 0 1 -0.07782,1.2297 7.4999253,7.4999253 0 0 0 3.69289,-6.4517 c -4.59e-4,-4.1424 -3.358388,-7.5002 -7.500225,-7.5002 z m -2.097624,9.2453 v 0.858 a 1.0875716,1.0875716 0 0 1 0.626723,0.2095 1.0053208,1.0053208 0 0 1 0.321679,0.3938 c 0.07019,0.1564 0.09613,0.3331 0.06714,0.502 a 0.86370916,0.86370916 0 0 1 -0.191969,0.4097 0.95267424,0.95267424 0 0 1 -0.367763,0.2649 1.005626,1.005626 0 0 1 -0.455813,0.071 v 2.1585 l 4.490373,-2.4348 -4.490526,-2.4324 z" />
|
||||
<text
|
||||
id="text1624"
|
||||
y="1080.2151"
|
||||
x="84"
|
||||
style="font-style:normal;font-weight:normal;font-size:31.18781662px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.77969539"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Open Sans Condensed';-inkscape-font-specification:'Open Sans Condensed, ';stroke-width:0.77969539"
|
||||
y="1080.2151"
|
||||
x="84"
|
||||
id="tspan1622">Video</tspan></text>
|
||||
<text
|
||||
id="text1628"
|
||||
y="1108.0905"
|
||||
x="82.962746"
|
||||
style="font-style:normal;font-weight:normal;font-size:35.76750946px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.89418781"
|
||||
xml:space="preserve"><tspan
|
||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';stroke-width:0.89418781"
|
||||
y="1108.0905"
|
||||
x="82.962746"
|
||||
id="tspan1626">Team</tspan></text>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 18 KiB |