Browse Source

added thumbnails to startpage

feature/startup-from-labels
Mario Alegre 5 years ago
parent
commit
6f217fe0ff
  1. 1
      install.sh
  2. 58
      src/postfix/Containerfile
  3. 39
      src/postfix/docs/Build.md
  4. 153
      src/startpage/assets/data.json
  5. 91
      src/startpage/assets/thumbnails/amazon.svg
  6. 130
      src/startpage/assets/thumbnails/amazon_prime_video.svg
  7. BIN
      src/startpage/assets/thumbnails/duckduckgo.png
  8. BIN
      src/startpage/assets/thumbnails/facebook.png
  9. 59
      src/startpage/assets/thumbnails/github.svg
  10. 1525
      src/startpage/assets/thumbnails/google_hangouts.svg
  11. BIN
      src/startpage/assets/thumbnails/google_voice.png
  12. 77
      src/startpage/assets/thumbnails/hbo_now.svg
  13. 244
      src/startpage/assets/thumbnails/hulu.svg
  14. 20
      src/startpage/assets/thumbnails/netflix.svg
  15. 13
      src/startpage/assets/thumbnails/pandora.svg
  16. 36
      src/startpage/assets/thumbnails/reddit.svg
  17. 67
      src/startpage/assets/thumbnails/twitter.svg
  18. BIN
      src/startpage/assets/thumbnails/watch_cartoon_online.gif
  19. 1901
      src/startpage/assets/thumbnails/whatsapp.svg
  20. 327
      src/startpage/assets/thumbnails/wolfram_alpha.svg
  21. 77
      src/startpage/assets/thumbnails/youtube.svg

1
install.sh

@ -15,6 +15,7 @@ if [[ $distro == "Debian" ]]; then
echo "Error: failed to detect release"
exit 1
fi
sudo apt install -y gnupg
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_$release/ /" | sudo tee /etc/apt/sources.list.d/podman.list
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_$release/Release.key | sudo apt-key add -

58
src/postfix/Containerfile

@ -0,0 +1,58 @@
###
### Meta Information
###
FROM localhost/debian
# deploy options
# -p (port) and -v (volume) both go host:container
LABEL deployopts="\
-p 25:25 \
-p 465:465 \
-p 143:143 \
-p 993:993"
# Build Variables
# uid that the files owner user should have
ARG FILESUID=5000
###
### General Setup
###
# install packages we want
RUN apt update -y && apt install -y postfix dovecot-imapd
###
### Apache
###
# enable modules we need
RUN a2enmod php${phpv}
# copy site config
COPY assets/site.conf /etc/apache2/sites-available/
WORKDIR /etc/apache2/sites-enabled
RUN rm 000-default.conf && ln -s ../sites-available/site.conf
###
### browserStartpage
###
# download app
WORKDIR /root
RUN wget https://github.com/saschadiercks/browserStartpage/archive/master.zip && \
echo "Unzipping ..." && \
unzip -q master.zip && \
mv browserStartpage-master/htdocs /var/www/html/startpage && \
chown -R www-data:www-data /var/www/html && \
rm -r browserStartpage-master
# copy config
WORKDIR /var/www/html
COPY --chown=www-data:www-data assets/config.php startpage/config/config.php
COPY --chown=www-data:www-data assets/data.json startpage/data/data.json
# copy thumbnails
COPY --chown=www-data:www-data assets/thumbnails/ startpage/assets/thumbnails/
# copy wallpaper
COPY --chown=www-data:www-data assets/wallpaper/ startpage/assets/wallpaper/

39
src/postfix/docs/Build.md

@ -0,0 +1,39 @@
# build postfix container
## create container
build & launch debian-base container:
```
git clone https://git.brbytes.org/mario/container.git
cd container
./install.sh
cd src/debian
sudo pdm-build
sudo pdm-launch debian postfix
sudo pdm-shell postfix
```
## postfix
install postfix:
```
apt install postfix
```
select `1 (no configuration)` when asked how to configure.
copy default config for postfix:
```
cp /usr/share/postfix/main.cf.dist /etc/postfix/main.cf
```
edit config:
```
cd /etc/postfix/
nano main.cf
```
set the following config parameters:
```
mail_owner = postfix
myhostname = linode.alemor.org
myorigin = $myhostname
mydestination = $myhostname

153
src/startpage/assets/data.json

@ -15,166 +15,183 @@
},
{
"url": "https://www.duckduckgo.com/",
"title": "DuckDuckGo"
"title": "DuckDuckGo",
"image": "assets/thumbnails/duckduckgo.png"
},
{
"url": "https://www.google.com/",
"title": "Google"
"url": "https://en.wikipedia.org/",
"title": "Wikipedia",
"image": "assets/thumbnails/wikipedia.svg"
},
{
"url": "https://www.amazon.com/",
"title": "Amazon"
"title": "Amazon",
"image": "assets/thumbnails/amazon.svg"
},
{
"url": "https://en.wikipedia.org/",
"title": "Wikipedia",
"image": "assets/thumbnails/wikipedia.svg"
},
"url": "https://github.com/",
"title": "Github",
"image": "assets/thumbnails/github.svg"
},
{
"url": "https://www.reddit.com/",
"title": "Reddit"
"url": "https://www.reddit.com/",
"title": "Reddit",
"image": "assets/thumbnails/reddit.svg"
},
{
"url": "https://www.facebook.com/",
"title": "Facebook"
"title": "Facebook",
"image": "assets/thumbnails/facebook.png"
},
{
"url": "https://twitter.com/",
"title": "Twitter"
"url": "https://twitter.com/",
"title": "Twitter",
"image": "assets/thumbnails/twitter.svg"
},
{
"url": "https://web.whatsapp.com/",
"title": "WhatsApp Web",
"image": "assets/thumbnails/whatsapp.svg"
},
{
"url": "https://voice.google.com/u/0/messages",
"title": "Google Voice"
"title": "Google Voice",
"image": "assets/thumbnails/google_voice.png"
},
{
"url": "https://web.whatsapp.com/",
"title": "WhatsApp Web"
"url": "https://hangouts.google.com/",
"title": "Google Hangouts",
"image": "assets/thumbnails/google_hangouts.svg"
}
],
"Work" : [
{
"url": "https://github.com/",
"title": "Github"
},
{
"url": "https://www.wolframalpha.com/",
"title": "WolframAlpha"
"title": "Wolfram Alpha",
"image": "assets/thumbnails/wolfram_alpha.svg"
}
],
"Media" : [
{
"url" : "https://www.youtube.com/",
"title": "YouTube"
"title": "YouTube",
"image": "assets/thumbnails/youtube.svg"
},
{
"url" : "https://www.netflix.com/",
"title": "Netflix"
"title": "Netflix",
"image": "assets/thumbnails/netflix.svg"
},
{
"url" : "https://www.hulu.com/",
"title": "Hulu"
"title": "Hulu",
"image": "assets/thumbnails/hulu.svg"
},
{
"url" : "https://www.amazon.com/Amazon-Video/b?ie=UTF8&node=2858778011",
"title": "Amazon Prime Video"
"title": "Amazon Prime Video",
"image": "assets/thumbnails/amazon_prime_video.svg"
},
{
"url" : "https://play.hbonow.com",
"title": "HBO Now"
"title": "HBO Now",
"image": "assets/thumbnails/hbo_now.svg"
},
{
"url" : "https://www.thewatchcartoononline.tv/",
"title": "WatchCartoonOnline"
"title": "WatchCartoonOnline",
"image": "assets/thumbnails/watch_cartoon_online.gif"
},
{
"url" : "https://www.pandora.com/",
"title": "Pandora"
"title": "Pandora",
"image": "assets/thumbnails/pandora.svg"
}
]
},
"bookmarks" : {
"Downloads" : [
"Downloads" : [
{
"url": "https://www.humblebundle.com/",
"title": "Humble Bundle"
"url": "https://www.humblebundle.com/",
"title": "Humble Bundle"
},
{
"url": "https://www.gog.com/",
"title": "GOG.com"
"url": "https://www.gog.com/",
"title": "GOG.com"
},
{
"url": "https://www.kerbalspaceprogram.com/profile.php?userProf=info",
"title": "KSP Store"
"url": "https://www.kerbalspaceprogram.com/profile.php?userProf=info",
"title": "KSP Store"
},
{
"url": "https://www.steamworkshopdownloader.io/",
"title": "Steam Workshop Downloader"
"url": "https://www.steamworkshopdownloader.io/",
"title": "Steam Workshop Downloader"
},
{
"url": "https://thetrove.net/",
"title": "The Trove"
"url": "https://thetrove.net/",
"title": "The Trove"
},
{
"url": "http://gen.lib.rus.ec/",
"title": "Library Genesis"
"url": "http://gen.lib.rus.ec/",
"title": "Library Genesis"
}
],
],
"Forums" : [
{
"url": "https://artemis.forumchitchat.com/",
"title": "Artemis"
"url": "https://artemis.forumchitchat.com/",
"title": "Artemis"
},
{
"url": "https://eclipsephase.com/forum",
"title": "Eclipse Phase"
"url": "https://eclipsephase.com/forum",
"title": "Eclipse Phase"
},
{
"url": "https://forum.kerbalspaceprogram.com/",
"title": "Kerbal Space Program"
"url": "https://forum.kerbalspaceprogram.com/",
"title": "Kerbal Space Program"
},
{
"url": "https://en-forum.guildwars2.com/",
"title": "Guild Wars 2"
"url": "https://en-forum.guildwars2.com/",
"title": "Guild Wars 2"
}
],
"Webcomics" : [
{
"url": "https://xkcd.com/",
"title": "xkcd"
"url": "https://xkcd.com/",
"title": "xkcd"
},
{
"url": "https://www.smbc-comics.com/",
"title": "SMBC"
"url": "https://www.smbc-comics.com/",
"title": "SMBC"
},
{
"url": "https://questionablecontent.net/",
"title": "Questionable Content"
"url": "https://questionablecontent.net/",
"title": "Questionable Content"
},
{
"url": "https://existentialcomics.com/",
"title": "Existential Comics"
"url": "https://existentialcomics.com/",
"title": "Existential Comics"
},
{
"url": "https://www.giantitp.com/Comics.html",
"title": "The Order of the Stick"
"url": "https://www.giantitp.com/Comics.html",
"title": "The Order of the Stick"
},
{
"url": "https://pbfcomics.com/",
"title": "Perry Bible Fellowship"
"url": "https://pbfcomics.com/",
"title": "Perry Bible Fellowship"
}
],
"Alemor" : [
{
"url": "https://login.linode.com/login",
"title": "Linode"
"url": "https://login.linode.com/login",
"title": "Linode"
},
{
"url": "https://account.dyn.com/",
"title": "Dyn DNS"
"url": "https://account.dyn.com/",
"title": "Dyn DNS"
},
{
"url": "https://portal.vitelity.net/login.php",
"title": "Vitelity"
"url": "https://portal.vitelity.net/login.php",
"title": "Vitelity"
}
]
}

91
src/startpage/assets/thumbnails/amazon.svg

@ -0,0 +1,91 @@
<?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"
version="1.0"
width="1000"
height="301.354"
viewBox="0 0 1000 301.35401"
id="svg1936"
inkscape:version="0.91 r13725"
sodipodi:docname="Amazon II.svg">
<metadata
id="metadata21">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<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="705"
id="namedview19"
showgrid="false"
inkscape:zoom="0.72245926"
inkscape:cx="426.12453"
inkscape:cy="94.816171"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg1936" />
<defs
id="defs1938" />
<path
d="m 620.38044,235.66818 c -58.11169,42.83292 -142.34105,65.68583 -214.86092,65.68583 -101.68461,0 -193.22683,-37.60937 -262.48206,-100.16107 -5.44116,-4.91885 -0.5659,-11.62235 5.96353,-7.79179 74.7399,43.48586 167.15276,69.64701 262.61265,69.64701 64.37988,0 135.20216,-13.32001 200.32209,-40.96113 9.83763,-4.17885 18.06468,6.44234 8.44471,13.58115"
id="path8"
style="fill:#ff9900;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 644.53924,208.02705 c -7.40002,-9.4894 -49.10114,-4.48353 -67.81875,-2.26353 -5.70237,0.69648 -6.57292,-4.26588 -1.43649,-7.83531 33.21291,-23.37526 87.71169,-16.6282 94.06697,-8.79293 6.35527,7.87883 -1.65411,62.5082 -32.86468,88.58226 -4.78823,4.00469 -9.35881,1.87178 -7.22586,-3.43882 7.00822,-17.49881 22.72234,-56.71874 15.27881,-66.25167"
id="path10"
style="fill:#ff9900;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 578.02637,32.908411 0,-22.722322 c 0,-3.4388179 2.61176,-5.7458719 5.74588,-5.7458719 l 101.72809,0 c 3.26472,0 5.87648,2.350589 5.87648,5.7458719 l 0,19.457626 c -0.0435,3.264696 -2.78588,7.530573 -7.66119,14.277622 l -52.71404,75.262273 c 19.58823,-0.47879 40.26468,2.43764 58.02466,12.4494 4.00469,2.26352 5.09293,5.57175 5.39763,8.83648 l 0,24.24586 c 0,3.30822 -3.65647,7.1823 -7.48705,5.17997 -31.29762,-16.41058 -72.86816,-18.19528 -107.474,0.17413 -3.52587,1.9153 -7.22586,-1.91528 -7.22586,-5.22353 l 0,-23.02702 c 0,-3.69999 0.0435,-10.01178 3.74349,-15.62706 l 61.07171,-87.581077 -53.14934,0 c -3.2647,0 -5.87646,-2.307035 -5.87646,-5.702352"
id="path12"
style="fill:#000000;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 206.93856,174.68354 -30.94937,0 c -2.95998,-0.21762 -5.31057,-2.43762 -5.52823,-5.26706 l 0,-158.838596 c 0,-3.1776439 2.6553,-5.7023669 5.96352,-5.7023669 l 28.85996,0 c 3.00356,0.1305 5.39764,2.437637 5.61531,5.3105719 l 0,20.763532 0.56588,0 C 218.9962,10.88256 233.14323,1.5237471 252.2091,1.5237471 c 19.37056,0 31.47173,9.3588129 40.1776,29.4258739 7.48705,-20.067061 24.50702,-29.4258739 42.74584,-29.4258739 12.97175,0 27.16232,5.354111 35.82467,17.3682159 9.7941,13.363512 7.79174,32.777604 7.79174,49.797606 l -0.0435,100.248121 c 0,3.17763 -2.6553,5.74585 -5.96352,5.74585 l -30.90587,0 c -3.09056,-0.21762 -5.57173,-2.69879 -5.57173,-5.74585 l 0,-84.185796 c 0,-6.703515 0.60937,-23.418792 -0.8706,-29.774097 -2.30705,-10.664664 -9.22821,-13.66822 -18.19529,-13.66822 -7.48705,0 -15.32232,5.00588 -18.49997,13.015301 -3.17765,8.009403 -2.87294,21.416417 -2.87294,30.427016 l 0,84.185796 c 0,3.17763 -2.65529,5.74585 -5.96353,5.74585 l -30.90582,0 c -3.13412,-0.21762 -5.57177,-2.69879 -5.57177,-5.74585 l -0.0435,-84.185796 c 0,-17.716441 2.91643,-43.790545 -19.06586,-43.790545 -22.24353,0 -21.37294,25.421136 -21.37294,43.790545 l 0,84.185796 c 0,3.17763 -2.6553,5.74585 -5.96352,5.74585"
id="path14"
style="fill:#000000;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 778.9579,1.5237471 c 45.92348,0 70.77872,39.4376019 70.77872,89.5834349 0,48.448168 -27.46705,86.884588 -70.77872,86.884588 -45.09643,0 -69.647,-39.4376 -69.647,-88.582238 0,-49.449363 24.85527,-87.8857849 69.647,-87.8857849 m 0.26116,32.4293949 c -22.80937,0 -24.24586,31.079935 -24.24586,50.450525 0,19.414093 -0.3047,60.854033 23.9847,60.854033 23.98467,0 25.11645,-33.43052 25.11645,-53.802307 0,-13.407014 -0.56589,-29.425821 -4.61414,-42.136414 -3.48235,-11.056426 -10.40349,-15.365837 -20.24115,-15.365837"
id="path16"
style="fill:#000000;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 909.2848,174.68354 -30.81878,0 c -3.0906,-0.21762 -5.57177,-2.69879 -5.57177,-5.74585 l -0.0435,-158.882188 c 0.26118,-2.9164689 2.82943,-5.1799849 5.96353,-5.1799849 l 28.68587,0 c 2.69879,0.1305 4.91879,1.958823 5.52823,4.439997 l 0,24.2893669 0.56585,0 C 922.2566,11.88374 934.40125,1.5237471 955.77417,1.5237471 c 13.88587,0 27.42351,5.005884 36.12938,18.7176239 C 1000,32.951945 1000,54.324878 1000,69.690715 l 0,99.986975 c -0.34822,2.78585 -2.91647,5.00585 -5.96349,5.00585 l -31.03645,0 c -2.82943,-0.21762 -5.18002,-2.30703 -5.48469,-5.00585 l 0,-86.275201 c 0,-17.368215 2.00234,-42.789384 -19.37059,-42.789384 -7.53056,0 -14.45174,5.049433 -17.89056,12.710576 -4.35292,9.707072 -4.91881,19.37059 -4.91881,30.078808 l 0,85.535201 c -0.0435,3.17763 -2.74234,5.74585 -6.05056,5.74585"
id="path18"
style="fill:#000000;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 496.93116,98.811876 c 0,12.057624 0.3047,22.112904 -5.78941,32.821134 -4.91881,8.7059 -12.75409,14.06 -21.41642,14.06 -11.88352,0 -18.84822,-9.05413 -18.84822,-22.41764 0,-26.378783 23.63643,-31.167007 46.05405,-31.167007 l 0,6.703513 m 31.21056,75.436374 c -2.04586,1.82823 -5.00589,1.95881 -7.31293,0.74001 -10.27295,-8.53175 -12.1447,-12.49291 -17.75998,-20.6329 -16.97646,17.32467 -29.03411,22.50465 -51.01643,22.50465 -26.07409,0 -46.31522,-16.06234 -46.31522,-48.2305 0,-25.11646 13.58118,-42.223499 32.99527,-50.581131 16.80232,-7.400017 40.26461,-8.705874 58.19873,-10.751751 l 0,-4.004701 c 0,-7.356485 0.56589,-16.062359 -3.78705,-22.417613 -3.74352,-5.702369 -10.96942,-8.052955 -17.36822,-8.052955 -11.79647,0 -22.28702,6.050579 -24.85527,18.587033 -0.52235,2.785898 -2.56821,5.528247 -5.39765,5.658834 L 415.53126,53.846031 C 413.00654,53.28018 410.17715,51.23427 410.91715,47.360188 417.79479,10.969646 450.703,2.1708008e-4 480.12882,2.1708008e-4 c 15.06117,0 34.73643,4.00471001992 46.61995,15.40939391992 15.06114,14.059982 13.62469,32.821137 13.62469,53.236424 l 0,48.230525 c 0,14.4953 6.00705,20.85055 11.66586,28.68587 1.95885,2.78585 2.39414,6.13761 -0.13071,8.22702 -6.31175,5.26708 -17.54234,15.06118 -23.7235,20.54587 l -0.0435,-0.0872"
id="path28"
style="fill:#000000;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
d="m 91.194013,98.811876 c 0,12.057624 0.304675,22.112904 -5.789406,32.821134 -4.918845,8.7059 -12.710593,14.06 -21.416467,14.06 -11.883518,0 -18.804673,-9.05413 -18.804673,-22.41764 0,-26.378783 23.636433,-31.167007 46.010546,-31.167007 l 0,6.703513 m 31.210537,75.436374 c -2.04587,1.82823 -5.0059,1.95881 -7.31295,0.74001 -10.2729,-8.53175 -12.10116,-12.49291 -17.759972,-20.6329 C 80.355174,171.68003 68.341102,176.86001 46.315217,176.86001 20.284648,176.86001 -2.141151e-6,160.79767 -2.141151e-6,128.62951 -2.141151e-6,103.51305 13.624684,86.406011 32.995241,78.048379 49.79757,70.648362 73.259897,69.342505 91.194013,67.296628 l 0,-4.004701 c 0,-7.356485 0.565884,-16.062359 -3.743527,-22.417613 -3.78708,-5.702369 -11.012928,-8.052955 -17.368233,-8.052955 -11.796431,0 -22.330559,6.050579 -24.898786,18.587033 -0.522364,2.785898 -2.568242,5.528247 -5.354107,5.658834 L 9.7941042,53.846031 C 7.2693961,53.28018 4.4835138,51.23427 5.1799844,47.360188 12.101156,10.969646 44.965811,2.1708008e-4 74.391681,2.1708008e-4 c 15.061131,0 34.736399,4.00471001992 46.619919,15.40939391992 15.06117,14.059982 13.62468,32.821137 13.62468,53.236424 l 0,48.230525 c 0,14.4953 6.00708,20.85055 11.6659,28.68587 2.00234,2.78585 2.43763,6.13761 -0.0871,8.22702 -6.31175,5.26708 -17.54231,15.06118 -23.72351,20.54587 l -0.087,-0.0872"
id="path30"
style="fill:#000000;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

130
src/startpage/assets/thumbnails/amazon_prime_video.svg

@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Ebene_1"
x="0px"
y="0px"
width="1000"
height="308.41943"
viewBox="0 0 1000 308.41944"
xml:space="preserve"
inkscape:version="0.48.5 r10040"
sodipodi:docname="Prime_Video.svg"><metadata
id="metadata87"><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="defs85" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1025"
inkscape:window-height="1033"
id="namedview83"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="956.05817"
inkscape:cy="114.95485"
inkscape:window-x="904"
inkscape:window-y="-13"
inkscape:window-maximized="0"
inkscape:current-layer="Ebene_1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"><inkscape:grid
type="xygrid"
id="grid3013"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="7.7160425e-005px"
originy="-7.615385e-007px" /></sodipodi:namedview><style
type="text/css"
id="style3">
.st0{fill:#00A8E1;}
.st1{fill:#232F3E;}
.st2{fill:#23303E;}
.st3{fill:#24303F;}
.st4{fill:#FFFFFF;}
.st5{fill:#FEFEFE;}
</style><path
style="fill:#00a8e1"
d="m 56.138861,42.064828 c -9.843885,-0.0294 -18.935072,3.261694 -27.40293,9.565544 -0.878148,0.627249 -1.497557,1.505397 -2.626604,1.881746 -0.2509,-0.12545 -0.50964,-0.26658 -0.50964,-0.39203 -0.376349,-1.254498 -0.64293,-2.508995 -1.019279,-3.763493 -1.003598,-3.136243 -2.258096,-4.273132 -5.645239,-4.273132 -3.763493,0 -7.644595,0.12545 -11.4080869,0 -2.8853444,-0.12545 -5.5197892,0.2509 -7.526985302431,2.508995 0,44.032863 -0.0078406076,87.940282 0.117609142431,131.722242 1.63084686,2.63444 4.13200126,3.14408 7.01734566,3.01863 4.5161904,-0.12545 9.0480634,0 13.5642544,0 7.903334,0 7.919016,0.0157 7.919016,-7.7622 l 0,-35.75318 c 0,-0.87815 -0.407712,-1.87391 0.470436,-2.6266 6.397938,5.14344 13.807314,7.74652 21.836098,8.62467 11.039578,1.12904 21.075559,-1.60733 29.480692,-9.13431 6.397938,-5.77069 10.42017,-12.94485 13.054615,-20.97363 3.387144,-10.16143 3.622362,-20.66785 2.744214,-31.20563 C 95.577128,76.979063 94.103093,70.581125 91.343199,64.684987 86.199759,53.896308 78.296424,45.961611 66.253248,43.201717 62.80338,42.449018 59.420157,42.074629 56.138861,42.064828 z m -9.13431,21.287255 c 1.836662,0.0196 3.685087,0.172494 5.566833,0.548843 5.519789,1.003598 9.534181,4.037914 11.917727,9.055904 2.007196,4.014392 2.877503,8.264003 3.253853,12.780194 0.752698,8.028784 0.768379,16.057566 -1.489716,23.835456 -1.003598,3.88894 -2.791257,7.27608 -5.802051,10.03598 -3.261694,3.01079 -7.260405,4.13984 -11.525696,4.39074 -6.397938,0.37635 -12.537135,-0.98792 -18.307824,-3.99871 -1.505397,-0.7527 -2.156167,-1.77198 -2.156167,-3.52828 l 0,-22.81617 c 0,-7.526986 0.125449,-15.053971 0,-22.580956 0,-2.007196 0.752698,-3.002954 2.508995,-3.881102 5.174802,-2.44627 10.524058,-3.900703 16.034046,-3.841899 z"
id="path5"
inkscape:connector-curvature="0" /><path
class="st0"
d="m 512.46234,308.41943 c -5.01799,-0.12545 -10.03598,-0.12545 -15.05397,0 -6.89973,-0.37635 -13.79947,-0.62725 -20.69921,-1.12905 -18.31566,-1.37995 -36.38042,-4.13984 -54.31974,-8.27968 -61.59583,-14.30127 -115.66467,-43.02927 -162.83378,-84.80404 -4.39074,-3.88894 -8.53058,-7.90333 -12.79587,-11.91772 -1.0036,-1.0036 -1.88175,-2.0072 -2.38355,-3.38715 -0.62725,-1.88174 -0.5018,-3.63804 0.87815,-5.01799 1.37995,-1.50539 3.01079,-1.75629 5.01799,-1.12904 1.12905,0.37635 2.13264,1.0036 3.26169,1.63084 45.28736,28.10075 93.96187,47.92181 145.77262,60.21589 17.31206,4.13984 34.74958,7.15063 52.31254,9.40873 25.2154,3.13624 50.55625,4.26529 76.02255,3.38714 13.67403,-0.37635 27.2226,-1.63085 40.77117,-3.38714 31.73879,-4.01439 62.72488,-11.16503 93.08372,-21.20101 15.93212,-5.26889 31.48789,-11.41593 46.66731,-18.31567 2.38354,-1.12904 4.89254,-1.75629 7.52698,-1.00359 4.89255,1.37994 7.15064,6.39793 5.01799,11.03958 -0.87814,2.00719 -2.38354,3.38714 -4.13984,4.76709 -14.42672,11.41592 -29.98249,21.07555 -46.41641,29.48069 -31.11153,15.80667 -63.97937,26.7208 -98.22715,33.24418 -19.69561,3.63805 -39.51668,5.64524 -59.46319,6.39794 z"
id="path11"
inkscape:connector-curvature="0"
style="fill:#00a8e1" /><path
class="st0"
d="m 326.67126,54.132781 c 3.13624,-1.881746 6.39794,-3.888942 9.78508,-5.645239 8.90693,-4.516191 18.44111,-6.774286 28.47709,-6.272487 7.15064,0.376349 13.67403,2.383545 18.69202,7.652435 4.76709,4.89254 6.52338,10.914128 7.02518,17.437515 0.12545,1.379947 0.12545,2.759895 0.12545,4.265292 0,21.702807 0,43.405613 0,64.982973 0,5.64524 -0.7527,6.39794 -6.39793,6.39794 -5.14344,0 -10.28688,0 -15.30487,0 -1.0036,0 -2.0072,0 -3.0108,-0.12545 -1.63085,-0.2509 -2.75989,-1.2545 -3.01079,-2.88535 -0.2509,-1.37995 -0.2509,-2.75989 -0.2509,-4.13984 0,-19.31926 0,-38.763973 0,-58.083235 0,-2.258096 0,-4.641641 -0.7527,-6.899737 -1.37995,-4.139842 -4.26529,-6.523387 -8.53058,-6.899736 -7.52699,-0.627249 -14.67763,1.129047 -21.57736,4.139842 -1.12905,0.501799 -1.5054,1.129047 -1.5054,2.258095 0,0.752699 0,1.379947 0,2.132646 0,21.326458 0,42.527465 0,63.853925 0,1.2545 0,2.38354 -0.2509,3.63804 -0.37635,2.0072 -1.12905,2.7599 -3.13624,3.0108 -1.88175,0.12545 -3.76349,0.12545 -5.77069,0.12545 -4.39074,0 -8.78148,0 -13.29767,0 -4.64165,0 -5.64524,-1.12905 -5.64524,-5.77069 0,-19.82106 0,-39.516675 0,-59.337736 0,-2.258095 -0.12545,-4.390741 -0.62725,-6.523387 -1.12905,-4.390741 -4.26529,-7.150636 -8.78149,-7.526985 -7.65243,-0.627249 -14.92852,1.129047 -21.9537,4.265291 -1.12905,0.501799 -1.5054,1.129048 -1.37995,2.383546 0,0.752698 0,1.379947 0,2.132646 0,20.950109 0,41.900215 0,62.975775 0,0.62725 0,1.2545 0,1.7563 0,4.64164 -1.0036,5.64524 -5.64524,5.64524 -5.64524,0 -11.29048,0 -16.81027,0 -4.39074,0 -5.51978,-1.2545 -5.51978,-5.51979 0,-28.9789 0,-57.957789 0,-86.936682 0,-1.003598 0,-2.007196 0.37634,-3.010794 0.62725,-1.630847 1.88175,-2.258096 3.5126,-2.383545 5.26889,0 10.41233,0 15.68122,0 2.25809,0 3.63804,1.379947 4.39074,3.512593 0.62725,1.756296 1.0036,3.387143 1.63085,5.268889 1.25449,0 2.00719,-0.878148 2.88534,-1.379947 6.89974,-4.265292 14.17582,-7.903334 22.33006,-9.408731 6.27248,-1.129048 12.54497,-1.379948 18.81746,0 6.14704,1.379947 11.03958,4.64164 14.55217,9.78508 0.2509,0.376349 0.5018,0.627249 0.7527,0.878148 -0.12545,0.12545 0,0.12545 0.12545,0.2509 z"
id="path13"
inkscape:connector-curvature="0"
style="fill:#00a8e1" /><path
style="fill:#232f3e"
d="m 766.4981,0.94083074 c -4.7671,0 -5.64524,0.87814796 -5.64524,5.64523896 l 0,2.116965 0,38.5365963 c 0,0.878148 0.39203,1.748456 -0.23522,2.626604 -1.12905,-0.12545 -1.78766,-0.870308 -2.66581,-1.372107 -13.04677,-7.652435 -26.69728,-9.024541 -40.49675,-2.626604 -9.65963,4.516191 -15.67338,12.646903 -19.56232,22.306534 -3.76349,9.283282 -4.64164,19.060522 -4.39074,28.971053 0.2509,9.408729 2.0072,18.331349 6.27249,26.736479 4.76709,9.15783 11.6433,16.1987 21.67928,19.20949 13.67403,4.26529 26.47774,2.10913 38.14457,-6.54691 0.87815,-0.5018 1.37995,-1.35642 2.50899,-1.60732 0.87815,1.37995 0.99576,3.01079 1.37211,4.39074 0.7527,2.0072 2.0072,3.37146 4.39074,3.37146 l 3.01864,0 c 4.51619,0 8.89909,0.12545 13.28983,0 3.51259,0 4.53971,-1.14473 4.66516,-4.78277 l 0,-2.74421 0,-122.823152 0,-6.6253153 c -0.12545,-3.763493 -1.13689,-4.78277196 -4.90038,-4.78277196 l -17.44535,0 z M 741.99619,63.156068 c 5.78686,-0.142357 11.47865,1.113367 16.85731,3.528274 1.63085,0.752699 2.23457,1.764138 2.23457,3.645884 -0.2509,7.777885 -0.1176,15.398957 -0.1176,23.051392 l 0,22.855372 c 0,1.7563 -0.49396,2.73638 -1.99936,3.48908 -6.14704,3.26169 -12.65474,4.89254 -19.67993,3.76349 -6.14704,-0.87815 -10.68675,-4.01439 -13.44665,-9.40873 -2.13264,-4.01439 -2.98727,-8.27185 -3.48907,-12.66259 -0.7527,-7.903331 -0.64293,-15.783144 1.48972,-23.561029 0.62725,-2.132645 1.37995,-4.147682 2.50899,-6.154878 2.88535,-5.017991 7.40154,-7.926857 13.17223,-8.428656 0.8311,-0.07841 1.6431,-0.09727 2.46979,-0.117609 z"
id="path15"
inkscape:connector-curvature="0" /><path
style="fill:#00a8e1"
d="m 454.83386,42.888092 c -2.10324,0.0392 -4.21824,0.219538 -6.35089,0.470437 -19.82106,2.258096 -32.75807,13.164383 -38.65421,32.107296 -4.13984,12.921325 -3.62236,26.077865 -0.23521,39.124645 4.39074,16.68481 15.42247,26.59534 32.10729,30.10794 9.53418,2.13264 19.20165,1.77982 28.73584,0.27442 5.14344,-0.7527 10.05166,-2.28162 14.81875,-4.03791 2.88534,-1.12905 4.35938,-2.89319 4.23393,-6.15488 -0.12545,-3.0108 0,-6.11568 0,-9.25192 0,-3.7635 -1.49756,-4.91606 -5.1356,-4.03792 -3.51259,0.7527 -7.1428,1.63869 -10.78084,2.39139 -7.77788,1.5054 -15.6969,1.74061 -23.60023,0.23522 -10.66323,-2.13265 -17.56297,-11.29048 -16.93572,-22.58096 1.37995,0.12545 2.65012,0.25874 3.52827,0.50964 9.53418,1.88175 18.92723,1.77198 28.46142,0.39203 5.51978,-0.87815 10.78867,-2.25809 15.68121,-5.017988 5.64524,-3.261693 9.80861,-7.801406 11.5649,-14.073894 4.39075,-15.806669 -2.38354,-31.738788 -18.81746,-37.634926 -6.11567,-2.069921 -12.31171,-2.940229 -18.62145,-2.82262 z m -0.82326,19.366306 c 0.49984,0.0024 0.98792,0.0078 1.48971,0.0392 2.2581,0.12545 4.53188,0.486118 6.66452,1.489716 3.38715,1.630847 5.26105,4.155523 5.76285,7.919016 0.2509,2.258095 0.36067,4.37506 -0.39203,6.507706 -1.5054,4.516191 -5.1356,6.413618 -9.52634,7.291767 -2.88534,0.627248 -5.89614,0.878148 -8.15423,0.627248 -5.51979,0 -10.13791,-0.509639 -14.77955,-1.136888 -1.88175,-0.250899 -1.89743,-0.266581 -1.64653,-2.273777 0.37635,-3.010794 1.26234,-5.864776 2.39138,-8.62467 3.52828,-8.585468 10.69264,-11.874695 18.19022,-11.839321 z"
id="path17"
inkscape:connector-curvature="0" /><path
style="fill:#232f3e"
d="m 854.0777,42.966499 c -21.07555,0.501799 -37.1488,11.149346 -43.67219,32.224905 -4.39074,13.924923 -3.75565,28.100746 0.50964,42.025666 4.39074,14.30127 14.43456,22.96515 28.73583,26.85409 6.14704,1.63085 12.41953,1.88175 18.81747,1.88175 9.28328,0 18.19021,-1.99936 26.97169,-5.1356 3.63805,-1.37995 4.50835,-2.61877 4.50835,-6.50771 l 0,-9.0559 c -0.12545,-3.63805 -1.65437,-4.87686 -5.29241,-3.99871 -2.75989,0.75269 -5.39434,1.3721 -8.15423,1.99935 -8.53059,1.88175 -17.06117,2.49331 -25.7172,0.86247 -8.53058,-1.63085 -14.28559,-6.52339 -16.54369,-15.05397 -0.62725,-2.38355 -1.12121,-4.75925 -1.3721,-7.6446 0.75269,0 1.26233,0.0235 1.76413,0.27442 8.27969,1.63085 16.68482,2.11697 25.08995,1.48972 7.27609,-0.5018 14.52865,-1.89743 21.05204,-5.41002 6.77429,-3.638043 11.15719,-9.13431 12.66258,-16.661296 0.87815,-4.641641 0.88599,-9.283282 -0.1176,-13.799473 -2.63445,-11.290478 -9.79293,-18.315664 -20.5816,-21.953707 -6.02159,-2.007196 -12.26272,-2.516835 -18.66066,-2.391385 z m -1.25449,19.17029 c 1.29673,-0.04769 2.63444,0.01568 3.99871,0.156812 0.62725,0 1.13689,0.235218 1.76413,0.235218 8.78149,1.379948 10.92197,8.397293 9.29113,15.17158 -1.2545,5.01799 -5.39434,6.923258 -10.03598,7.801407 -2.88535,0.501799 -5.79421,0.752698 -7.80141,0.627248 -5.64524,0 -10.40449,-0.627248 -15.17158,-1.254497 -1.12905,-0.12545 -1.62301,-0.635089 -1.37211,-1.764137 0.87815,-4.892541 2.0072,-9.667472 5.01799,-13.681864 3.77134,-4.994469 8.68995,-7.085124 14.30912,-7.291767 z"
id="path19"
inkscape:connector-curvature="0" /><path
class="st1"
d="m 586.7286,116.60676 c 0.7527,-2.509 1.50539,-4.89254 2.25809,-7.40154 5.77069,-19.444709 11.54138,-38.763971 17.31207,-58.208683 0.2509,-0.752698 0.5018,-1.505397 0.7527,-2.258095 0.87815,-2.258096 2.50899,-3.638043 5.01799,-3.638043 1.88174,0 3.76349,0 5.77069,0 4.39074,0 8.78148,0 13.29767,0 4.76709,0 5.77069,1.379947 4.13984,5.896138 -2.50899,6.648837 -5.01799,13.297674 -7.52698,19.946511 -8.40514,21.828257 -16.81027,43.781962 -25.2154,65.610222 -0.2509,0.7527 -0.62725,1.5054 -0.87815,2.25809 -1.12905,2.7599 -3.13625,4.2653 -6.27249,4.13985 -5.51979,-0.12545 -11.03958,-0.12545 -16.55937,0 -3.88894,0.12545 -6.14703,-1.63085 -7.52698,-5.14344 -3.13625,-8.27969 -6.39794,-16.68482 -9.53418,-24.9645 -7.52699,-19.695615 -15.17942,-39.391227 -22.70641,-59.212288 -0.62725,-1.630847 -1.37995,-3.136244 -1.63085,-4.89254 -0.37634,-2.508995 0.5018,-3.763493 3.0108,-3.763493 7.15063,-0.12545 14.30127,0 21.32646,0 3.01079,0 4.39074,2.007196 5.14344,4.641641 1.37994,4.76709 2.75989,9.659631 4.26529,14.426721 5.14344,17.437516 10.16143,35.000482 15.30487,52.437999 -0.12545,0.12545 0,0.12545 0.2509,0.12545 z"
id="path21"
inkscape:connector-curvature="0"
style="fill:#232f3e" /><path
class="st0"
d="m 141.25652,58.899872 c 1.2545,-0.2509 1.63085,-1.003598 2.13265,-1.505398 2.25809,-2.258095 4.64164,-4.390741 7.15063,-6.397937 6.77429,-5.14344 14.30128,-7.401535 22.83186,-6.899736 3.26169,0.12545 4.39074,1.129048 4.64164,4.265291 0.2509,4.265292 0.12545,8.656033 0.12545,12.921325 0,1.756296 0.12545,3.387143 -0.2509,5.14344 -0.5018,2.258095 -1.37995,3.136244 -3.63804,3.387143 -1.7563,0.12545 -3.38715,0 -5.14344,-0.12545 -8.40514,-0.752698 -16.55937,0.878149 -24.4627,3.512594 -1.7563,0.627248 -1.7563,1.881746 -1.7563,3.261693 0,11.792277 0,23.710003 0,35.502283 0,8.27968 0,16.43391 0,24.7136 0,1.12905 0,2.25809 -0.12545,3.26169 -0.2509,1.7563 -1.12905,2.63445 -3.01079,2.88535 -0.87815,0.12545 -1.7563,0.12545 -2.7599,0.12545 -5.39434,0 -10.78868,0 -16.30847,0 -0.87815,0 -1.75629,0 -2.75989,-0.12545 -1.7563,-0.37635 -2.88535,-1.37995 -3.0108,-3.13625 -0.12545,-1.0036 -0.12545,-2.00719 -0.12545,-3.01079 0,-28.35165 0,-56.828739 0,-85.180384 0,-5.770688 0.62725,-6.397937 6.39794,-6.397937 4.01439,0 8.02879,0 12.04318,0 3.26169,0 4.76709,1.129048 5.64524,4.265291 0.87815,3.136244 1.63084,6.272488 2.38354,9.534182 z"
id="path23"
inkscape:connector-curvature="0"
style="fill:#00a8e1" /><path
class="st0"
d="m 728.11047,186.23137 c 8.27968,0.2509 16.43392,0.7527 24.4627,2.88534 2.2581,0.62725 4.39074,1.37995 6.52339,2.38355 3.01079,1.37995 4.64164,3.63804 5.14344,6.89974 0.5018,3.63804 0.7527,7.15063 0.37635,10.78867 -1.88175,21.57736 -8.02879,41.90022 -19.31926,60.46679 -4.0144,6.64883 -8.78149,12.67042 -14.55217,17.93931 -1.2545,1.12905 -2.509,2.13265 -4.0144,2.509 -2.38354,0.62724 -3.88894,-0.62725 -4.01439,-3.0108 0,-1.37995 0.5018,-2.50899 0.87815,-3.76349 4.39074,-11.79228 8.65603,-23.4591 12.04318,-35.62773 1.88174,-6.64884 3.51259,-13.42312 4.26529,-20.32286 0.2509,-2.509 0.37635,-5.01799 0.12545,-7.52699 -0.37635,-4.51619 -2.63445,-7.65243 -7.02519,-9.15783 -3.88894,-1.37995 -8.02878,-2.00719 -12.04318,-2.25809 -11.54137,-0.62725 -23.08275,0.12545 -34.49868,1.50539 -5.01799,0.62725 -10.16143,1.2545 -15.17942,1.88175 -1.63084,0.12545 -3.13624,0 -4.01439,-1.5054 -1.0036,-1.50539 -0.5018,-3.01079 0.37635,-4.51619 0.87815,-1.5054 2.38354,-2.50899 3.76349,-3.51259 9.28328,-6.64884 19.69561,-10.66323 30.73519,-13.29768 8.40513,-1.75629 17.18662,-2.50899 25.9681,-2.75989 z"
id="path25"
inkscape:connector-curvature="0"
style="fill:#00a8e1" /><path
class="st1"
d="m 675.54702,94.025803 c 0,14.301267 0,28.477097 0,42.778367 0,0.7527 0,1.63085 0,2.38354 -0.2509,2.509 -1.37994,3.63805 -3.88894,3.7635 -6.77429,0.12545 -13.42312,0.12545 -20.19741,0 -2.50899,0 -3.63804,-1.2545 -3.88894,-3.63805 -0.12545,-0.7527 -0.12545,-1.63084 -0.12545,-2.38354 0,-28.4771 0,-56.95419 0,-85.431284 0,-0.376349 0,-0.752698 0,-1.254497 0.12545,-3.888943 1.12905,-5.01799 5.01799,-5.01799 6.02159,0 12.04318,0 18.06476,0 3.88895,0 5.01799,1.129047 5.01799,5.01799 0,11.917726 0,23.835453 0,35.75318 0,2.634444 0,5.268889 0,8.028784 z"
id="path27"
inkscape:connector-curvature="0"
style="fill:#232f3e" /><path
class="st0"
d="m 190.18193,93.900353 c 0,-13.924923 0,-27.849846 0,-41.774768 0,-0.878148 0,-1.756296 0,-2.759895 0.12545,-3.010794 1.25449,-4.139841 4.26529,-4.265291 6.52339,-0.12545 13.04677,-0.12545 19.57016,0 2.88534,0 3.76349,0.878148 4.01439,3.763492 0.12545,1.129048 0.12545,2.258096 0.12545,3.261694 0,27.849845 0,55.699695 0,83.549535 0,1.37995 -0.12545,2.7599 -0.2509,4.13984 -0.2509,1.63085 -1.2545,2.63445 -3.01079,2.88535 -0.7527,0.12545 -1.37995,0.12545 -2.13265,0.12545 -5.77069,0 -11.66683,0 -17.43751,0 -0.62725,0 -1.2545,0 -1.7563,-0.12545 -2.0072,-0.37635 -3.01079,-1.2545 -3.38714,-3.2617 -0.12545,-1.00359 -0.12545,-2.00719 -0.12545,-3.01079 0.12545,-14.05037 0.12545,-28.35165 0.12545,-42.527467 z"
id="path29"
inkscape:connector-curvature="0"
style="fill:#00a8e1" /><path
class="st0"
d="m 204.7341,0.06393674 c 1.88174,-0.125449 4.01439,0.2509 5.89614,0.878149 6.77428,2.25809496 10.28688,8.15423396 9.65963,15.80666926 -0.62725,6.648836 -5.26889,11.666827 -11.91773,12.795874 -2.75989,0.501799 -5.51979,0.501799 -8.40513,0 -7.15064,-1.379947 -12.41953,-6.648837 -11.91773,-15.681219 0.7527,-8.9069323 6.64884,-13.79947326 16.68482,-13.79947326 z"
id="path53"
inkscape:connector-curvature="0"
style="fill:#00a8e1" /><path
class="st1"
d="m 661.6221,0.06393674 c 2.509,-0.250899 5.01799,0.2509 7.40154,1.25449796 5.14344,2.258095 8.02878,6.021588 8.53058,11.6668273 1.0036,11.415927 -6.64884,17.186616 -16.81027,16.935717 -1.37994,0 -2.75989,-0.2509 -4.13984,-0.501799 -7.77788,-1.881747 -11.79228,-7.903335 -11.03958,-16.559368 0.62725,-6.8997363 6.02159,-12.04317626 13.42313,-12.67042526 0.87814,-0.12545 1.75629,-0.12545 2.63444,-0.12545 z"
id="path55"
inkscape:connector-curvature="0"
style="fill:#232f3e" /><path
style="fill:#232f3e;fill-opacity:1;stroke:none"
d="m 952.18109,42.953382 c -32.48345,0 -47.27273,21.794827 -47.27273,51.344524 0,38.294734 23.05758,51.667294 48.01757,51.667294 30.21044,0 47.07407,-19.82548 47.07407,-52.163856 0,-27.924509 -13.77887,-50.847962 -47.81891,-50.847962 z m 0.19863,21.178374 c 13.80464,0 20.01144,12.914724 20.01144,29.719244 0,16.82963 -4.8595,30.58822 -19.86248,30.58822 -12.39879,0 -19.96179,-9.23614 -19.96179,-30.861328 0,-18.180753 7.05573,-29.446136 19.81283,-29.446136 z"
id="path3015"
inkscape:connector-curvature="0" /></svg>

After

Width:  |  Height:  |  Size: 18 KiB

BIN
src/startpage/assets/thumbnails/duckduckgo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
src/startpage/assets/thumbnails/facebook.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

59
src/startpage/assets/thumbnails/github.svg

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="438.549px" height="438.549px" viewBox="0 0 438.549 438.549" style="enable-background:new 0 0 438.549 438.549;"
xml:space="preserve">
<g>
<path d="M409.132,114.573c-19.608-33.596-46.205-60.194-79.798-79.8C295.736,15.166,259.057,5.365,219.271,5.365
c-39.781,0-76.472,9.804-110.063,29.408c-33.596,19.605-60.192,46.204-79.8,79.8C9.803,148.168,0,184.854,0,224.63
c0,47.78,13.94,90.745,41.827,128.906c27.884,38.164,63.906,64.572,108.063,79.227c5.14,0.954,8.945,0.283,11.419-1.996
c2.475-2.282,3.711-5.14,3.711-8.562c0-0.571-0.049-5.708-0.144-15.417c-0.098-9.709-0.144-18.179-0.144-25.406l-6.567,1.136
c-4.187,0.767-9.469,1.092-15.846,1c-6.374-0.089-12.991-0.757-19.842-1.999c-6.854-1.231-13.229-4.086-19.13-8.559
c-5.898-4.473-10.085-10.328-12.56-17.556l-2.855-6.57c-1.903-4.374-4.899-9.233-8.992-14.559
c-4.093-5.331-8.232-8.945-12.419-10.848l-1.999-1.431c-1.332-0.951-2.568-2.098-3.711-3.429c-1.142-1.331-1.997-2.663-2.568-3.997
c-0.572-1.335-0.098-2.43,1.427-3.289c1.525-0.859,4.281-1.276,8.28-1.276l5.708,0.853c3.807,0.763,8.516,3.042,14.133,6.851
c5.614,3.806,10.229,8.754,13.846,14.842c4.38,7.806,9.657,13.754,15.846,17.847c6.184,4.093,12.419,6.136,18.699,6.136
c6.28,0,11.704-0.476,16.274-1.423c4.565-0.952,8.848-2.383,12.847-4.285c1.713-12.758,6.377-22.559,13.988-29.41
c-10.848-1.14-20.601-2.857-29.264-5.14c-8.658-2.286-17.605-5.996-26.835-11.14c-9.235-5.137-16.896-11.516-22.985-19.126
c-6.09-7.614-11.088-17.61-14.987-29.979c-3.901-12.374-5.852-26.648-5.852-42.826c0-23.035,7.52-42.637,22.557-58.817
c-7.044-17.318-6.379-36.732,1.997-58.24c5.52-1.715,13.706-0.428,24.554,3.853c10.85,4.283,18.794,7.952,23.84,10.994
c5.046,3.041,9.089,5.618,12.135,7.708c17.705-4.947,35.976-7.421,54.818-7.421s37.117,2.474,54.823,7.421l10.849-6.849
c7.419-4.57,16.18-8.758,26.262-12.565c10.088-3.805,17.802-4.853,23.134-3.138c8.562,21.509,9.325,40.922,2.279,58.24
c15.036,16.18,22.559,35.787,22.559,58.817c0,16.178-1.958,30.497-5.853,42.966c-3.9,12.471-8.941,22.457-15.125,29.979
c-6.191,7.521-13.901,13.85-23.131,18.986c-9.232,5.14-18.182,8.85-26.84,11.136c-8.662,2.286-18.415,4.004-29.263,5.146
c9.894,8.562,14.842,22.077,14.842,40.539v60.237c0,3.422,1.19,6.279,3.572,8.562c2.379,2.279,6.136,2.95,11.276,1.995
c44.163-14.653,80.185-41.062,108.068-79.226c27.88-38.161,41.825-81.126,41.825-128.906
C438.536,184.851,428.728,148.168,409.132,114.573z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

1525
src/startpage/assets/thumbnails/google_hangouts.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 114 KiB

BIN
src/startpage/assets/thumbnails/google_voice.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

77
src/startpage/assets/thumbnails/hbo_now.svg

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1000"
height="781.789"
viewBox="0 0 1000 781.78901"
id="svg4168"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="HBO Now Stacked.svg">
<defs
id="defs4170" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="288.44432"
inkscape:cy="372.13626"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata4173">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-270.57318)">
<g
id="g4728">
<path
inkscape:connector-curvature="0"
id="path5"
d="m 795.27717,556.26436 a 80.661237,80.661237 0 1 0 -80.66124,-80.66123 80.661237,80.661237 0 0 0 80.66124,80.66123 M 692.66658,475.60313 A 102.61059,102.61059 0 1 1 795.27717,578.21372 102.61059,102.61059 0 0 1 692.66658,475.60313 m -142.86169,0 c 12.72427,-1.61175 33.85715,-16.11741 41.35386,-25.39552 -2.61908,11.49426 -2.82054,44.7364 0.24388,56.19884 -8.48284,-13.09539 -28.62959,-29.2234 -41.55533,-30.83514 M 476.04657,366.98032 c 16.1174,0 28.82046,15.90533 28.82046,34.05861 0,18.15329 -12.72427,34.05862 -28.82046,34.05862 l -55.41418,0 0,-68.11723 55.41418,0 z m -0.20147,151.35513 c 16.12801,0 28.82046,15.90533 28.82046,34.05861 0,18.15329 -12.72427,34.05862 -28.82046,34.05862 l -55.4778,0 0,-68.11723 55.42478,0 z m 319.36845,164.00517 c 112.91725,0 204.81825,-93.87326 204.78644,-206.76931 0,-115.32425 -91.8798,-204.91368 -204.78644,-204.99851 C 682.3069,270.488 624.78262,353.47139 610.54205,386.99983 610.66929,336.68596 561.08707,277.30606 503.08563,277.24244 l -186.86644,0 0,403.0623 174.227,0.0636 c 70.24855,0 120.2337,-60.8644 120.31853,-113.05509 16.04318,32.87101 71.65882,115.06977 184.50185,115.02735 m -501.792,-1.88743 -109.56653,0 0,-156.43424 -71.04381,0 0,156.43424 -112.39768,0 L 0,277.27425 l 112.86423,0 0,149.97667 71.04381,0 0,-149.97667 109.51351,0 0,403.17894 z" />
<polygon
transform="matrix(1.0603554,0,0,1.0603554,0,270.53039)"
id="polygon7"
points="205.68,700.06 26.18,455.98 0,456.01 0,732.25 19.35,732.25 19.35,479.88 204.18,732.25 225.03,732.25 225.03,456.01 205.68,456.01 205.68,700.06 " />
<polygon
transform="matrix(1.0603554,0,0,1.0603554,0,270.53039)"
id="polygon9"
points="572.96,458.31 572.22,455.99 551.77,455.99 639.51,732.23 661.21,732.23 731.99,499.86 802.78,732.23 824.05,732.23 912.22,455.99 892.16,455.99 892.16,455.99 814.49,700.26 739.51,458.34 738.79,455.99 724.78,455.99 650.66,700.21 " />
<path
inkscape:connector-curvature="0"
id="path11"
d="m 430.51491,748.64465 c -84.89206,0 -151.38695,63.97124 -151.38695,149.29805 0,86.578 65.08462,154.4195 151.38695,154.4195 86.30232,0 151.38694,-67.8627 151.38694,-154.4195 0,-86.55682 -65.0422,-149.29805 -151.38694,-149.29805 z m 0,286.41255 c -74.59601,0 -130.08441,-61.5006 -130.08441,-137.1145 0,-75.4549 55.4778,-131.99305 130.08441,-131.99305 74.6066,0 130.07379,56.53815 130.07379,131.99305 0,75.6245 -55.47779,137.1145 -130.07379,137.1145 z" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

244
src/startpage/assets/thumbnails/hulu.svg

@ -0,0 +1,244 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1000"
height="328.46115"
version="1.2"
id="svg2"
inkscape:version="0.48.5 r10040"
sodipodi:docname="HtmlToSvg-17.svg">
<metadata
id="metadata73">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1038"
inkscape:window-height="1022"
id="namedview71"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.16001974"
inkscape:cx="732.67056"
inkscape:cy="-572.41863"
inkscape:window-x="875"
inkscape:window-y="-5"
inkscape:window-maximized="0"
inkscape:current-layer="g13">
<inkscape:grid
type="xygrid"
id="grid3065"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-331px"
originy="413.40147px" />
</sodipodi:namedview>
<desc
id="desc4">Created by HiQPdf</desc>
<defs
id="defs6">
<linearGradient
id="linearGradient3067"
y2="21.07"
x2="0.98000002"
y1="20.07"
x1="-0.02"
gradientUnits="userSpaceOnUse">
<stop
id="stop3069"
stop-opacity="1"
stop-color="#2dbd9d"
offset="0.44710872"
style="stop-color:#2fbe9d;stop-opacity:1" />
<stop
id="stop3071"
stop-opacity="1"
stop-color="#72de93"
offset="1"
style="stop-color:#51ce98;stop-opacity:1" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
x1="-0.02"
y1="20.07"
x2="0.98000002"
y2="21.07"
id="gradient1">
<stop
offset="1e-07"
stop-color="#2dbd9d"
stop-opacity="1"
id="stop9" />
<stop
offset="1"
stop-color="#72de93"
stop-opacity="1"
id="stop11" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3067"
id="linearGradient3050"
gradientUnits="userSpaceOnUse"
x1="-0.02"
y1="20.07"
x2="8.437705"
y2="-0.82375771" />
<linearGradient
inkscape:collect="always"
xlink:href="#gradient1"
id="linearGradient3052"
gradientUnits="userSpaceOnUse"
x1="-0.02"
y1="20.07"
x2="0.98000002"
y2="21.07" />
</defs>
<g
id="g13"
transform="matrix(16.423058,0,0,16.423058,-331,-413.40146)"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel">
<g
stroke-miterlimit="2"
id="g15"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g17"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g19"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g21"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g27"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g29"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g31"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g33"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g35"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g37"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g39"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g41"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g43"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g45"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g47"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g49"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g51"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g53"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g55"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g57"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g59"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g61"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g63"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g65"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g67"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
stroke-miterlimit="2"
id="g69"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1" />
<g
id="g23"
style="fill:url(#linearGradient3052);stroke:none"
transform="translate(20.15459,25.172015)">
<path
vector-effect="none"
d="m 9.57,6.24 -3.1,0 C 5.9118,6.21334 5.35475,6.31245 4.84,6.53 L 4.84,0 0,0 l 0,20 4.83,0 0,-8.07 C 4.82999,11.5861 4.96727,11.2565 5.21136,11.0143 5.45545,10.7721 5.78614,10.6373 6.13,10.64 l 2.81,0 C 9.28386,10.6373 9.61455,10.7721 9.85864,11.0143 10.1027,11.2565 10.24,11.5861 10.24,11.93 l 0,8.07 4.84,0 0,-8.7 c 0,-3.66 -2.44,-5.06 -5.5,-5.06 l -0.01,0 m 46.48,0 0,8.07 c 0,0.7124 -0.5776,1.29 -1.29,1.29 l -2.82,0 C 51.5961,15.6027 51.2654,15.4679 51.0214,15.2257 50.7773,14.9835 50.64,14.6539 50.64,14.31 l 0,-8.07 -4.83,0 0,8.47 c 0,3.47 2.19,5.29 5.51,5.29 l 4.73,0 c 3,0 4.84,-2.15 4.84,-5.26 l 0,-8.5 -4.84,0 m -27.28,8.07 c 0,0.3439 -0.1373,0.6735 -0.3814,0.9157 -0.244,0.2422 -0.5747,0.377 -0.9186,0.3743 l -2.81,0 C 24.3161,15.6027 23.9854,15.4679 23.7414,15.2257 23.4973,14.9835 23.36,14.6539 23.36,14.31 l 0,-8.07 -4.83,0 0,8.47 c 0,3.47 2.22,5.29 5.47,5.29 l 4.73,0 c 3,0 4.84,-2.15 4.84,-5.26 l 0,-8.5 -4.8,0 0,8.07 m 8.52,5.69 4.84,0 0,-20 -4.84,0 0,20"
id="path25"
style="fill:url(#linearGradient3050);fill-rule:nonzero"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

20
src/startpage/assets/thumbnails/netflix.svg

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="making_by_NICF-Nettie" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px" width="1000px" height="273.261px" viewBox="0 0 1000 273.261" enable-background="new 0 0 1000 273.261"
xml:space="preserve">
<g id="A_NETFLIX_ORIGINAL_SERIES">
</g>
<g id="NETFLIX">
<path fill="#E52214" d="M137.502,255.644c-15.043,2.668-30.349,3.468-46.184,5.606L43.02,118.218v149.165
c-15.043,1.601-28.765,3.73-43.02,5.878V0h40.116L95.01,155.047V0h42.492V255.644L137.502,255.644z M220.637,100.074
c16.371,0,41.436-0.805,56.482-0.805v42.689c-18.742,0-40.648,0-56.482,0.805v63.505c24.814-1.584,49.619-3.731,74.692-4.54v41.105
l-116.92,9.344V0h116.92v42.698h-74.692V100.074z M452.361,42.698h-43.816v196.404c-14.241,0-28.496,0-42.223,0.528V42.698H322.51
V0h129.851V42.698z M520.979,97.135h57.793v42.689h-57.793v96.867h-41.437V0h117.972v42.698h-76.535V97.135L520.979,97.135z
M666.14,199.339c24.012,0.535,48.298,2.41,71.783,3.734v42.162c-37.748-2.402-75.472-4.797-114.012-5.605V0h42.229V199.339z
M773.552,248.174c13.463,0.81,27.718,1.602,41.436,3.203V0h-41.436V248.174z M1000,0l-53.587,129.957L1000,273.261
c-15.838-2.147-31.678-5.068-47.498-7.753l-30.366-78.981l-30.868,72.585c-15.311-2.675-30.093-3.468-45.387-5.613l54.362-125.148
L851.152,0h45.387l27.718,71.784L953.804,0H1000z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

13
src/startpage/assets/thumbnails/pandora.svg

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="1000pt" height="213pt" viewBox="0 0 1000 213" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path fill="#00a0ee" opacity="1.00" d=" M 550.19 18.97 C 549.88 13.05 554.99 7.48 560.90 7.25 C 565.31 7.11 569.71 7.24 574.12 7.26 C 574.15 59.17 574.10 111.09 574.15 163.00 C 574.09 164.43 573.99 165.86 573.82 167.29 C 565.95 167.17 558.08 167.26 550.21 167.23 C 550.17 163.81 550.16 160.38 550.17 156.95 C 540.28 164.45 528.53 169.78 516.07 170.81 C 498.20 172.75 479.63 166.79 466.38 154.62 C 452.76 142.48 444.56 124.29 445.13 105.99 C 444.89 92.33 449.63 78.74 457.76 67.81 C 468.59 53.21 485.80 43.39 504.00 42.10 C 520.50 40.47 537.18 45.93 550.17 56.06 C 550.20 43.70 550.15 31.33 550.19 18.97 M 500.50 67.82 C 485.01 71.89 472.84 86.00 471.21 101.95 C 469.78 113.54 473.88 125.68 482.01 134.07 C 489.85 142.46 501.49 147.20 512.97 146.55 C 524.58 145.96 535.82 140.02 542.76 130.69 C 547.84 123.92 550.91 115.55 550.86 107.04 C 551.27 93.41 543.88 79.94 532.37 72.71 C 523.06 66.71 511.17 64.75 500.50 67.82 Z" />
<path fill="#00a0ee" opacity="1.00" d=" M 965.45 7.62 C 970.97 6.55 976.92 7.28 981.79 10.20 C 988.74 14.13 993.13 22.08 992.85 30.05 C 992.91 36.28 990.14 42.43 985.50 46.57 C 979.39 52.34 969.92 53.97 962.14 50.92 C 953.31 47.66 947.23 38.38 947.67 28.98 C 947.86 18.91 955.53 9.58 965.45 7.62 M 965.39 10.70 C 955.38 13.01 948.58 24.08 951.12 34.05 C 953.07 43.34 962.44 50.38 971.93 49.41 C 979.27 48.82 985.97 43.76 988.59 36.89 C 991.46 29.80 989.64 21.09 984.11 15.79 C 979.36 10.92 971.95 8.98 965.39 10.70 Z" />
<path fill="#00a0ee" opacity="1.00" d=" M 961.66 16.72 C 966.05 16.94 970.54 16.22 974.87 17.17 C 979.80 18.43 981.86 24.98 979.08 29.08 C 977.97 31.04 975.77 31.84 973.89 32.82 C 976.17 36.10 978.43 39.41 980.66 42.74 C 979.22 42.72 977.79 42.71 976.38 42.69 C 974.14 39.49 972.24 36.05 969.88 32.94 C 968.44 32.30 966.72 32.72 965.20 32.57 C 965.17 35.93 965.15 39.28 965.19 42.63 C 964.30 42.66 962.52 42.72 961.63 42.75 C 961.65 34.07 961.60 25.40 961.66 16.72 M 965.24 19.76 C 965.16 22.99 965.14 26.22 965.18 29.45 C 968.83 29.07 973.72 30.84 976.16 27.13 C 978.18 24.30 975.75 20.08 972.44 19.84 C 970.04 19.65 967.63 19.77 965.24 19.76 Z" />
<path fill="#00a0ee" opacity="1.00" d=" M 30.95 56.12 C 43.56 46.14 59.79 40.74 75.90 42.00 C 92.56 42.92 108.64 50.86 119.69 63.33 C 128.78 73.45 134.62 86.53 135.79 100.11 C 137.64 117.17 132.21 134.88 121.14 148.00 C 110.27 161.09 94.04 169.70 77.03 170.90 C 60.58 172.48 43.84 167.12 30.95 156.87 C 30.94 169.26 30.96 181.65 30.95 194.03 C 31.21 199.73 26.56 205.08 20.92 205.71 C 16.35 205.94 11.76 205.71 7.17 205.78 C 7.24 152.45 7.17 99.12 7.21 45.80 C 15.11 45.72 23.00 45.80 30.90 45.75 C 30.95 49.21 30.97 52.66 30.95 56.12 M 62.24 67.21 C 52.56 69.23 43.68 74.90 37.89 82.94 C 30.81 92.56 28.34 105.49 31.63 117.00 C 34.53 127.97 42.39 137.47 52.58 142.43 C 61.73 147.06 72.73 147.92 82.46 144.62 C 95.16 140.65 105.28 129.83 108.78 117.04 C 113.06 102.16 107.51 85.24 95.53 75.54 C 86.43 67.97 73.84 64.72 62.24 67.21 Z" />
<path fill="#00a0ee" opacity="1.00" d=" M 169.27 61.32 C 180.38 49.79 195.96 42.64 211.97 41.95 C 227.72 40.93 243.51 46.25 255.89 55.94 C 255.85 52.53 255.69 49.11 256.14 45.72 C 264.03 45.85 271.92 45.69 279.81 45.81 C 279.78 86.29 279.86 126.76 279.77 167.24 C 271.98 167.29 264.18 167.09 256.39 167.35 C 255.41 163.99 256.05 160.46 255.74 157.02 C 243.27 167.13 226.91 172.22 210.91 170.98 C 195.04 170.06 179.72 162.74 168.82 151.21 C 158.13 140.22 151.81 125.25 150.97 109.97 C 149.97 92.17 156.68 74.00 169.27 61.32 M 208.32 67.34 C 189.13 71.24 174.83 90.71 177.00 110.20 C 178.06 121.23 183.84 131.65 192.66 138.36 C 202.53 145.93 216.06 148.70 228.01 144.97 C 240.58 141.39 251.00 131.23 254.91 118.76 C 260.30 102.90 254.23 84.14 240.67 74.34 C 231.56 67.53 219.45 64.74 208.32 67.34 Z" />
<path fill="#00a0ee" opacity="1.00" d=" M 356.12 42.27 C 368.94 40.80 382.22 43.17 393.61 49.28 C 414.88 60.33 428.90 83.93 427.95 107.95 C 427.89 127.72 428.01 147.48 427.88 167.24 C 419.29 167.22 410.69 167.22 402.10 167.24 C 401.97 146.83 402.12 126.42 402.02 106.02 C 402.01 91.43 392.86 77.42 379.59 71.43 C 369.56 66.67 357.43 66.69 347.39 71.41 C 336.75 76.26 328.62 86.21 325.97 97.60 C 324.54 103.63 324.97 109.86 324.92 116.00 C 324.88 133.08 324.98 150.16 324.87 167.24 C 316.28 167.23 307.69 167.22 299.10 167.25 C 298.76 147.16 299.05 127.07 298.95 106.98 C 298.90 94.16 302.58 81.34 309.73 70.67 C 320.06 55.06 337.44 44.18 356.12 42.27 Z" />
<path fill="#00a0ee" opacity="1.00" d=" M 644.54 42.74 C 657.30 40.66 670.71 42.23 682.47 47.70 C 696.50 54.13 708.03 65.78 714.35 79.86 C 721.73 96.13 721.92 115.49 714.88 131.92 C 708.39 147.27 695.71 159.89 680.30 166.25 C 670.49 170.37 659.63 171.89 649.06 170.81 C 633.10 169.40 617.91 161.51 607.33 149.54 C 597.66 138.74 591.76 124.58 591.14 110.08 C 590.09 93.90 595.53 77.41 605.99 65.01 C 615.66 53.34 629.58 45.27 644.54 42.74 M 646.57 68.89 C 631.18 72.48 618.76 86.36 617.25 102.14 C 615.06 118.28 624.65 134.87 639.38 141.58 C 648.47 145.87 659.25 146.26 668.68 142.82 C 680.24 138.62 689.48 128.59 692.69 116.71 C 694.12 111.96 694.05 106.93 693.78 102.03 C 692.43 88.87 683.58 76.91 671.62 71.40 C 663.86 67.77 654.88 66.94 646.57 68.89 Z" />
<path fill="#00a0ee" opacity="1.00" d=" M 750.90 62.93 C 764.11 48.44 784.31 42.25 803.47 42.07 C 803.45 50.74 803.50 59.41 803.44 68.09 C 792.44 67.96 780.85 70.94 772.64 78.60 C 765.40 85.28 762.25 95.35 762.24 104.99 C 762.23 125.74 762.26 146.49 762.22 167.24 C 753.62 167.25 745.02 167.16 736.42 167.30 C 736.14 146.54 736.39 125.76 736.30 105.00 C 736.24 89.93 740.52 74.22 750.90 62.93 Z" />
<path fill="#00a0ee" opacity="1.00" d=" M 820.10 67.07 C 830.33 53.63 846.06 44.44 862.85 42.40 C 880.19 39.99 898.20 45.17 911.86 56.05 C 911.85 52.63 911.85 49.20 911.87 45.78 C 919.86 45.75 927.85 45.78 935.84 45.76 C 935.90 86.25 935.89 126.74 935.84 167.23 C 927.85 167.22 919.87 167.24 911.88 167.22 C 911.86 163.79 911.84 160.36 911.85 156.93 C 899.30 166.91 883.09 172.22 867.06 171.00 C 854.20 170.30 841.66 165.43 831.54 157.49 C 818.12 147.04 809.02 131.07 807.24 114.11 C 805.14 97.55 809.88 80.26 820.10 67.07 M 864.25 67.32 C 847.53 70.78 834.13 85.96 832.89 103.01 C 831.65 115.53 836.94 128.38 846.41 136.62 C 855.94 145.11 869.72 148.66 882.12 145.45 C 891.95 143.05 900.76 136.78 906.24 128.27 C 912.03 119.43 914.10 108.23 911.75 97.92 C 909.36 86.68 901.80 76.70 891.69 71.27 C 883.41 66.72 873.47 65.22 864.25 67.32 Z" />
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

36
src/startpage/assets/thumbnails/reddit.svg

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="1000px" viewBox="-194 -104 1000 1000" enable-background="new -194 -104 1000 1000" xml:space="preserve">
<g id="Artwork">
<g>
<circle fill="#FF4500" cx="306" cy="396" r="500"/>
<path fill="#FFFFFF" d="M639.332,396c0-40.351-32.746-73.099-73.101-73.099c-19.88,0-37.425,7.603-50.292,20.467
c-49.705-35.673-118.714-59.065-194.735-61.988l33.333-156.141l108.188,22.809c1.168,27.484,23.976,49.707,52.047,49.707
c28.654,0,52.046-23.392,52.046-52.047c0-28.654-23.392-52.046-52.046-52.046c-20.471,0-38.013,11.696-46.2,29.24L347.521,97.169
c-3.509-0.585-7.017,0-9.941,1.754s-4.68,4.679-5.85,8.188l-36.841,174.269c-77.778,2.339-147.368,25.146-197.66,61.988
C84.362,331.086,66.232,322.9,46.935,322.9c-40.351,0-73.099,32.749-73.099,73.099c0,29.825,17.544,54.971,43.275,66.667
c-1.17,7.017-1.754,14.62-1.754,22.221c0,112.28,130.408,202.924,291.813,202.924c161.402,0,291.812-90.644,291.812-202.924
c0-7.601-0.583-14.62-1.754-21.638C621.203,451.555,639.332,425.824,639.332,396z M139.333,448.046
c0-28.654,23.392-52.046,52.046-52.046c28.655,0,52.046,23.392,52.046,52.046s-23.392,52.047-52.046,52.047
C162.725,500.093,139.333,476.7,139.333,448.046z M429.976,585.473c-35.671,35.675-103.509,38.013-123.393,38.013
c-19.882,0-88.303-2.925-123.391-38.013c-5.263-5.263-5.263-14.034,0-19.297c5.265-5.263,14.036-5.263,19.298,0
c22.223,22.222,70.176,30.409,104.68,30.409c34.501,0,81.872-8.188,104.677-30.409c5.263-5.263,14.037-5.263,19.3,0
C435.238,572.022,435.238,580.21,429.976,585.473z M420.618,500.093c-28.655,0-52.047-23.393-52.047-52.047
S391.963,396,420.618,396c28.657,0,52.05,23.392,52.05,52.046S449.275,500.093,420.618,500.093z"/>
</g>
</g>
<g id="Spacing_Guide" display="none">
<rect y="90" display="inline" fill="none" stroke="#D8D8D8" stroke-width="0.5" stroke-miterlimit="10" width="152.911" height="152.911"/>
<rect y="90" display="inline" fill="none" stroke="#D8D8D8" stroke-width="0.5" stroke-miterlimit="10" width="612" height="152.911"/>
<rect y="548.91" display="inline" fill="none" stroke="#D8D8D8" stroke-width="0.5" stroke-miterlimit="10" width="612" height="152.911"/>
<rect y="90" display="inline" fill="none" stroke="#D8D8D8" stroke-width="0.5" stroke-miterlimit="10" width="152.911" height="612"/>
<rect x="459.09" y="90" display="inline" fill="none" stroke="#D8D8D8" stroke-width="0.5" stroke-miterlimit="10" width="152.91" height="612"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

67
src/startpage/assets/thumbnails/twitter.svg

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1000"
height="812.70801"
viewBox="0 0 264.58333 215.02899"
version="1.1"
id="svg859"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="Twitter 2012.svg">
<defs
id="defs853" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="516.16023"
inkscape:cy="304.72644"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata856">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-81.971008)">
<g
id="layer1-0"
transform="matrix(0.88786335,0,0,0.88786335,-479.60554,-423.98481)">
<path
inkscape:connector-curvature="0"
d="m 633.89823,812.04479 c 112.46038,0 173.95627,-93.16765 173.95627,-173.95625 0,-2.64628 -0.0539,-5.28062 -0.1726,-7.90305 11.93799,-8.63016 22.31446,-19.39999 30.49762,-31.65984 -10.95459,4.86937 -22.74358,8.14741 -35.11071,9.62551 12.62341,-7.56929 22.31446,-19.54304 26.88583,-33.81739 -11.81284,7.00307 -24.89517,12.09297 -38.82383,14.84055 -11.15723,-11.88436 -27.04079,-19.31655 -44.62892,-19.31655 -33.76374,0 -61.14426,27.38052 -61.14426,61.13233 0,4.79784 0.5364,9.46458 1.58538,13.94057 -50.81546,-2.55686 -95.87353,-26.88582 -126.02546,-63.87991 -5.25082,9.03545 -8.27852,19.53111 -8.27852,30.73006 0,21.21186 10.79366,39.93837 27.20766,50.89296 -10.03077,-0.30992 -19.45363,-3.06348 -27.69044,-7.64676 -0.009,0.25652 -0.009,0.50661 -0.009,0.78077 0,29.60957 21.07478,54.3319 49.0513,59.93435 -5.13757,1.40062 -10.54335,2.15158 -16.12196,2.15158 -3.93364,0 -7.76596,-0.38716 -11.49099,-1.1026 7.78383,24.2932 30.35457,41.97073 57.11525,42.46543 -20.92578,16.40207 -47.28712,26.17062 -75.93712,26.17062 -4.92898,0 -9.79834,-0.28036 -14.58427,-0.84634 27.05868,17.34379 59.18936,27.46396 93.72193,27.46396"
style="fill:#1da1f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3611" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
src/startpage/assets/thumbnails/watch_cartoon_online.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

1901
src/startpage/assets/thumbnails/whatsapp.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 138 KiB

327
src/startpage/assets/thumbnails/wolfram_alpha.svg

@ -0,0 +1,327 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 786.1 94.3" enable-background="new 0 0 786.1 94.3" xml:space="preserve">
<g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="44.1787" y1="28.4121" x2="44.1787" y2="0.7495">
<stop offset="0" style="stop-color:#F8ABAD"/>
<stop offset="1" style="stop-color:#F48587"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="44.7,0.7 35.2,16 43.7,28.4 53.2,16.2 "/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="49.6019" y1="31.8223" x2="64.485" y2="6.0439">
<stop offset="0" style="stop-color:#F16365"/>
<stop offset="0.1724" style="stop-color:#F05554"/>
<stop offset="0.3774" style="stop-color:#EF4643"/>
<stop offset="0.5841" style="stop-color:#EF3C38"/>
<stop offset="0.7913" style="stop-color:#EE3431"/>
<stop offset="1" style="stop-color:#EE312F"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="53.2,16.2 43.7,28.4 59.9,21.6 70.4,9.5 "/>
<polygon fill="#F58661" points="59.9,21.6 59.8,39.8 68.8,27.6 70.4,9.5 "/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="59.7514" y1="36.3438" x2="85.8672" y2="36.3438">
<stop offset="0" style="stop-color:#F1ACA1"/>
<stop offset="1" style="stop-color:#F58B79"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="68.8,27.6 59.8,39.8 73.9,45 85.9,30.9 "/>
<polygon fill="#F3736C" points="73.9,45 59.8,39.8 70,53.2 86.3,59.8 "/>
<polygon fill="#982520" points="70,53.2 53.8,57.6 68.7,61.9 86.3,59.8 "/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="60.9131" y1="57.6226" x2="60.9131" y2="80.4507">
<stop offset="0.3" style="stop-color:#E03E3E"/>
<stop offset="1" style="stop-color:#ED1C24"/>
</linearGradient>
<polygon fill="url(#SVGID_4_)" points="68.7,61.9 53.8,57.6 52.8,71.7 69,80.5 "/>
<polygon fill="#F15759" points="43.9,71.9 43.7,88.8 52.8,71.7 53.8,57.6 "/>
<polygon fill="#F4806D" points="35.2,16 18.2,8.9 28,22 43.7,28.4 "/>
<polygon fill="#660E12" points="28,22 18.2,8.9 20.1,27.8 28.6,38.7 "/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="2.4835" y1="33.1641" x2="28.7599" y2="37.7974">
<stop offset="0" style="stop-color:#EF3B56"/>
<stop offset="0.4535" style="stop-color:#E2495B"/>
<stop offset="0.6484" style="stop-color:#DC4F5E"/>
<stop offset="1" style="stop-color:#F2788C"/>
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="20.1,27.8 2.9,30.9 15.5,43.9 28.6,38.7 "/>
<polygon fill="#EB2537" points="15.5,43.9 0.8,57.8 17.8,52.4 28.6,38.7 "/>
<polygon fill="#5F1726" points="17.8,52.4 0.8,57.8 20.3,60.9 34.4,58 "/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="24.6723" y1="81.9628" x2="29.0622" y2="57.0663">
<stop offset="0" style="stop-color:#982326"/>
<stop offset="0.4768" style="stop-color:#9A2327"/>
<stop offset="0.6854" style="stop-color:#A1232A"/>
<stop offset="0.8417" style="stop-color:#AC222F"/>
<stop offset="0.9712" style="stop-color:#BD2038"/>
<stop offset="1" style="stop-color:#C21F3A"/>
</linearGradient>
<polygon fill="url(#SVGID_6_)" points="34.4,58 20.3,60.9 17.2,80.6 34.6,71.6 "/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="39.1496" y1="58.0093" x2="39.1496" y2="88.7691">
<stop offset="0" style="stop-color:#511119"/>
<stop offset="1" style="stop-color:#731D33"/>
</linearGradient>
<polygon fill="url(#SVGID_7_)" points="34.4,58 34.6,71.6 43.7,88.8 43.9,71.9 "/>
<g>
<g>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="41.1988" y1="40.1953" x2="63.2926" y2="27.4394">
<stop offset="0" style="stop-color:#CF4150"/>
<stop offset="1" style="stop-color:#B4333E"/>
</linearGradient>
<polygon fill="url(#SVGID_8_)" points="43.9,44.9 59.8,39.8 59.9,21.6 43.7,28.4 "/>
</g>
</g>
<polygon fill="#F3726B" points="59.8,39.8 43.9,44.9 53.8,57.6 70,53.2 "/>
<polygon fill="#F7A0A0" points="43.9,44.9 34.4,58 43.9,71.9 53.8,57.6 "/>
<g>
<g>
<g>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="35.7882" y1="57.2136" x2="25.9612" y2="40.1926">
<stop offset="0" style="stop-color:#F48889"/>
<stop offset="0.315" style="stop-color:#F58B8B"/>
<stop offset="0.662" style="stop-color:#F69590"/>
<stop offset="1" style="stop-color:#F7A498"/>
</linearGradient>
<polygon fill="url(#SVGID_9_)" points="17.8,52.4 34.4,58 43.9,44.9 28.6,38.7 "/>
</g>
</g>
</g>
<g>
<g>
<g>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="46.6295" y1="37.3259" x2="25.2859" y2="29.5575">
<stop offset="0" style="stop-color:#C44357"/>
<stop offset="0.5659" style="stop-color:#EF3C4A"/>
<stop offset="0.6743" style="stop-color:#EF4150"/>
<stop offset="0.8657" style="stop-color:#F04D60"/>
<stop offset="0.9945" style="stop-color:#F0566C"/>
</linearGradient>
<polygon fill="url(#SVGID_10_)" points="43.9,44.9 43.7,28.4 28,22 28.6,38.7 "/>
</g>
</g>
</g>
<g>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="5.1109" y1="66.8832" x2="81.9031" y2="22.5473">
<stop offset="0" style="stop-color:#841B1D"/>
<stop offset="0.1827" style="stop-color:#8D1D1E"/>
<stop offset="0.4965" style="stop-color:#A91F22"/>
<stop offset="0.901" style="stop-color:#DA1E24"/>
<stop offset="1" style="stop-color:#ED1C24"/>
</linearGradient>
<path fill="url(#SVGID_11_)" d="M69.4,80.4l-0.4-18.2L87,60L74.4,45l12.2-14.4L86,30.5l-16.7-3.2l1.6-18.4l-17.5,6.9L44.7,0
l-9.6,15.5L17.8,8.3l2,19.2L2.2,30.7l0.5,0.5L15,43.8L0,58l19.9,3.2l-3.1,20.1l0.6-0.3L34.5,72l9.2,17.5L53,72.2L69.5,81
L69.4,80.4z M52.5,71.6l-8.4,15.7L44.3,72l9-13.1l-0.5,6.7L52.5,71.6z M34.9,66.7l-0.1-7.5l6.8,10l2,2.9l-0.2,15.2L35,71.4
L34.9,66.7z M20.3,60.5l-18-2.8l15.4-4.9l2.2,0.7l13.1,4.4l-3.9,0.8L20.3,60.5z M22.5,41.5l5-2L17.6,52L2.2,56.9l13.5-12.8
L22.5,41.5z M36.3,18.2l6.5,9.4l-14.4-5.9l-9-12L35,16.3L36.3,18.2z M53.4,16.5l15.9-6.3l-9.4,11l-9.2,3.8l-5.8,2.4l2.7-3.5
L53.4,16.5z M64.6,32.7l-4.5,6l0.1-4.7l0.1-12.1L70,10.6l-1.4,16.8L64.6,32.7z M73.7,45.3L85,58.7L70.4,53l0-0.1l-7.4-9.7
l-2.1-2.7l0.8,0.3L73.7,45.3z M43.9,71.3L43.9,71.3l-2.1-3l-7-10.3l-0.5-0.3l-16-5.4l1.2-1.6l9-11.4l0.4-0.3l0-0.4l-0.4-12.7
l-0.1-3.2l4,1.6l11,4.5l0.6,0l15.6-6.5l-0.1,12.4l-0.1,5.1l0,0.4l0.4,0.4l9.6,12.5c0,0,0,0,0,0l-15.5,4.2l-0.5,0.3L51,61
L43.9,71.3z M69.9,53.6L85,59.5l-16.3,2l-13.6-3.9L69.9,53.6z M27.7,22.1l0.2,6.3l0.3,9.1l-5.6-7.1l-2.1-2.7l-1.8-17.5L27.7,22.1
z M73.8,44.6l-5.5-2l-7.9-2.9L69,28l16.2,3.1L73.8,44.6z M44.7,1.4l8.1,14.7l-6.7,8.6l-2.3,3l-2.9-4.2L35.7,16L44.7,1.4z
M20,28.2l8.1,10.3l-7.9,3.1l-4.5,1.8L3.7,31.1L20,28.2z M20.6,61.2l13.4-2.8l0.2,12.9L17.7,80L20.6,61.2z M53.2,71.5l0.4-6.2
l0.5-7.3l14.2,4.1l0.4,17.7L53.2,71.5z"/>
</g>
<g>
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="44.0236" y1="72.5445" x2="44.0236" y2="21.0533">
<stop offset="0" style="stop-color:#F58B79"/>
<stop offset="9.158665e-02" style="stop-color:#E88070"/>
<stop offset="0.2821" style="stop-color:#DC7364"/>
<stop offset="0.4505" style="stop-color:#D86F60"/>
<stop offset="0.4746" style="stop-color:#D06051"/>
<stop offset="0.5123" style="stop-color:#C74D3F"/>
<stop offset="0.5556" style="stop-color:#C03D31"/>
<stop offset="0.6061" style="stop-color:#BB2F29"/>
<stop offset="0.6687" style="stop-color:#B72423"/>
<stop offset="0.7564" style="stop-color:#B51E21"/>
<stop offset="1" style="stop-color:#B41C21"/>
</linearGradient>
<path fill="url(#SVGID_12_)" d="M70.8,53.3L60.2,39.7l0.2-18.6L43.8,28l-16.1-6.5l0.6,17.1l-11.1,14l17,5.7L44,72.5l0.3-0.4
l9.8-14.2L70.8,53.3z M54,57.2L44.6,45l2.3-0.7l12.8-4.1l9.8,12.7L54,57.2z M59.7,22.1l-0.2,17.4l-15.1,4.8l-0.2-15.7L59.7,22.1z
M43.5,28.6l0,0.8l0.2,14.9l-4.6-1.9l-10-4l-0.6-15.8L43.5,28.6z M28.9,39.1L43.4,45l-3,4.2l-6.1,8.4l-15.9-5.4L28.9,39.1z
M44,71.3L35,58l9-12.6l5.7,7.3l3.7,4.9L44,71.3z"/>
</g>
<g>
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="44.0713" y1="72.8335" x2="44.0713" y2="20.626">
<stop offset="0" style="stop-color:#711F18"/>
<stop offset="1" style="stop-color:#A2342E"/>
</linearGradient>
<path fill="url(#SVGID_13_)" d="M34.2,58.4l-16.5-5.5l0.2-0.6l0.5,0.4l-0.5-0.4l-0.2,0.6L17,52.5l11.2-14.2L27.6,21l16.3,6.6
l16.8-7l-0.2,18.9l10.7,13.9L54.3,58L44.1,72.8L34.2,58.4L34.2,58.4z M35,57.4l9.1,13.4L53.6,57l15.6-4.3l-9.8-12.8l0.2-17.5
l-15.7,6.5l-15.1-6.1l0.6,15.9L18.9,52L35,57.4L35,57.4z"/>
</g>
</g>
<g>
<g>
<path fill="#D71920" d="M176.1,18.9c-6,0.9-6.9,1.7-9.5,8.9c-2,5.7-7.2,22-14.5,46.5h-3.1c-4.8-13.9-10.6-30-15.2-42.9h-0.2
c-4.8,15.1-9.6,28.9-14,42.9h-3.2c-4.6-15.9-9.5-31.1-14.3-46.7c-2.2-7.1-3.5-8-8.8-8.7v-2.5h22.1v2.5c-6.5,0.8-6.6,1.7-5.3,6.1
c3.4,11.5,6.7,23.1,10.4,35h0.2c4.6-14.5,9.5-28.8,13.9-42.9h2.9c4.9,14.2,10,28.3,15.2,43h0.2c3.7-11.5,8.3-28.1,9.6-34.1
c1.2-5.3,0.9-6.3-6-7.1v-2.5h19.6V18.9z"/>
<path fill="#D71920" d="M186.2,33.9c11,0,19,8.9,19,19.5c0,14.2-10.3,21-19.2,21c-12.4,0-19.5-9.7-19.5-19.4
C166.6,40.6,177.8,33.9,186.2,33.9L186.2,33.9z M185,36.9c-5,0-9.5,5.3-9.5,15.3c0,11,4.5,19.3,11.5,19.3c5,0,9.3-3.7,9.3-15.9
C196.3,45,192.3,36.9,185,36.9L185,36.9z"/>
<path fill="#D71920" d="M206.9,73.4V71c5.5-0.6,6.2-1.1,6.2-6.8V22.9c0-5.8-0.5-6-6-6.6v-2.1c4.6-0.5,10.3-2,13.6-3.1v53
c0,5.8,0.7,6.3,6.3,6.8v2.4H206.9z"/>
<path fill="#D71920" d="M235.8,35v-1.9c0-2.5,0.3-5,1-6.9c0.6-1.9,2.2-6.2,6.9-10.3c3.2-2.6,6.2-4.2,9.8-4.6
c3.1,0.1,5.5,1.2,6.9,2.9c0.9,1,1,2.2,0.5,3.2c-0.3,0.7-0.9,1.5-1.8,2.3c-0.9,0.7-1.7,0.6-2.5-0.2c-1.8-1.8-4.4-3.4-7.2-3.4
c-2.1,0-3.4,1-4.3,2.5c-1.1,1.7-1.8,5.7-1.7,13.2V35h10.3c0.4,0.8,0.1,3-1,3.6h-9.4v25.2c0,6.2,0.6,6.6,7.5,7.3v2.3h-21.2V71
c5.5-0.5,6.1-1.1,6.1-6.8V38.6h-6.1l-0.3-1l2.5-2.6H235.8z"/>
<path fill="#D71920" d="M268.9,43.2c2.7-4.6,6.4-9.3,10.4-9.3c3.2,0,5.3,2.4,5.3,4.6c0,2-1.2,3.9-3.1,4.7
c-1.1,0.4-1.8,0.3-2.4-0.3c-1.3-1.2-2.4-1.8-3.9-1.8c-2.1,0-4.7,2.3-6.6,6.9v16.1c0,5.7,0.4,6.2,7.2,6.8v2.4H255V71
c5.3-0.5,6-1.1,6-6.8V45.9c0-5.6-0.4-5.9-5.3-6.7v-2c4.5-0.7,8.5-1.8,13-3.5v9.5H268.9z"/>
<path fill="#D71920" d="M313.3,74.4c-1.5,0-3.3-0.8-4.3-1.8c-1.1-1.1-1.8-2.4-2.1-3.8c-3.5,2.4-7.7,5.5-10.2,5.5
c-6.4,0-10.8-5.3-10.8-10.8c0-4.4,2.3-7,7-8.6c5.3-1.8,11.7-4.2,13.7-5.8v-1.8c0-6.1-2.8-9.6-7-9.6c-1.6,0-2.9,0.6-3.8,1.7
c-1.1,1.2-1.8,3.2-2.5,5.9c-0.4,1.6-1.4,2.2-2.8,2.2c-1.7,0-4.1-1.8-4.1-3.9c0-1.4,1.1-2.4,2.9-3.7c2.5-1.8,8.4-5.2,13.4-6.1
c2.7,0,5.4,0.8,7.4,2.4c3.2,2.6,4.1,6.2,4.1,11v16c0,3.9,1.5,5.2,3,5.2c1.1,0,2.3-0.4,3.2-0.9l0.9,2.4L313.3,74.4z M306.6,52.4
c-1.8,1-5.4,2.6-7.4,3.5c-3.2,1.6-5.1,3.2-5.1,6.4c0,4.6,3.4,6.7,6.1,6.7c2.1,0,4.8-1.3,6.4-2.8V52.4z"/>
<path fill="#D71920" d="M369.7,73.4V71c4.9-0.5,5.8-1,5.8-7V49.3c0-6.4-2.4-9.8-7.4-9.8c-3,0-6.1,1.6-9.3,4.2
c0.2,1.1,0.3,2.1,0.3,3.7v17.2c0,5.4,0.8,6,5.4,6.5v2.4h-19V71c5.2-0.5,5.9-1,5.9-6.6V49.2c0-6.5-2.4-9.8-7.4-9.8
c-3.2,0-6.5,2.2-9,4.3v20.8c0,5.5,0.7,6.1,4.8,6.6v2.4h-18.9V71c5.7-0.5,6.4-1,6.4-6.8V46.1c0-5.5-0.3-6-5.2-6.8v-2.1
c3.9-0.7,8.6-1.8,12.8-3.6v7.1c1.8-1.3,3.7-2.8,6.2-4.4c2.4-1.5,4.5-2.5,7.3-2.5c4.3,0,8,2.7,9.7,7.2c2.5-1.9,5-3.5,7.1-4.9
c1.9-1.2,4.2-2.3,6.7-2.3c7,0,11.3,4.9,11.3,13.5v16.9c0,5.8-0.5,6,4.5,6.7v2.4H369.7z"/>
</g>
<g>
<path fill="#F58120" d="M441.4,73.4V71c5.5-0.6,6.2-1.1,6.2-6.8V22.9c0-5.8-0.5-6-6-6.6v-2.1c4.6-0.5,10.3-2,13.6-3.1v53
c0,5.8,0.7,6.3,6.3,6.8v2.4H441.4z"/>
<path fill="#F58120" d="M482.1,35.3c1.6-1,3.2-1.4,4.4-1.4c9.8,0,15.6,8.1,15.6,16.7c0,13.1-10.4,21.7-21.8,23.8
c-2.5-0.1-4.7-0.9-5.9-1.5v11.5c0,6.3,0.6,6.8,7.4,7.4v2.5h-21.4v-2.5c5.6-0.5,6.3-1.1,6.3-6.7V45.5c0-5.5-0.4-5.8-5.7-6.4v-2.2
c3.9-0.7,8.9-2.2,13.4-3.9v6.8L482.1,35.3z M474.4,66.7c1.8,1.9,5.2,3.4,8,3.4c6.9,0,11.6-6.2,11.6-16c0-9.6-5.4-14.6-11.4-14.6
c-2.6,0-6,1.8-8.2,3.4V66.7z"/>
<path fill="#F58120" d="M527.4,73.4V71c4.9-0.5,5.5-1.1,5.5-6.7V49.7c0-7.2-2.8-10.5-8.2-10.5c-3.2,0-6.3,1.5-8.7,4.1v21
c0,5.5,0.5,6.1,5.4,6.7v2.4h-19V71c5.3-0.5,6-1,6-6.8V22.6c0-5.4-0.3-5.8-5.8-6.3v-2.1c4.3-0.6,9.7-1.9,13.4-3.1v29
c3.2-3.1,7.8-6.2,12.4-6.2c7.2,0,12.1,4.6,12.1,14.9v15.5c0,5.7,0.6,6.1,5.6,6.7v2.4H527.4z"/>
<path fill="#F58120" d="M574.7,74.4c-1.5,0-3.3-0.8-4.3-1.8c-1.1-1.1-1.8-2.4-2.1-3.8c-3.5,2.4-7.7,5.5-10.2,5.5
c-6.4,0-10.8-5.3-10.8-10.8c0-4.4,2.3-7,7-8.6c5.3-1.8,11.7-4.2,13.7-5.8v-1.8c0-6.1-2.8-9.6-7-9.6c-1.6,0-2.9,0.6-3.8,1.7
c-1.1,1.2-1.8,3.2-2.5,5.9c-0.4,1.6-1.4,2.2-2.8,2.2c-1.7,0-4.1-1.8-4.1-3.9c0-1.4,1.1-2.4,2.9-3.7c2.5-1.8,8.4-5.2,13.4-6.1
c2.7,0,5.4,0.8,7.4,2.4c3.2,2.6,4.1,6.2,4.1,11v16c0,3.9,1.5,5.2,3,5.2c1.1,0,2.3-0.4,3.2-0.9l0.9,2.4L574.7,74.4z M568.1,52.4
c-1.8,1-5.4,2.6-7.4,3.5c-3.2,1.6-5.1,3.2-5.1,6.4c0,4.6,3.4,6.7,6,6.7c2.1,0,4.8-1.3,6.4-2.8V52.4z"/>
<path fill="#F58120" d="M433.2,61.8c-5.6-15.2-11.5-31.6-16.9-46.7l-3.1,0.9l-17.1,43.3c-2.5,6.3-5.2,10.4-8.3,11.8v2.4h16.6
v-2.5c-6.6-0.7-7.2-1.6-5.4-6.9c1.1-3.6,2.4-7.2,3.7-11h18.4c1.8,5.1,3.5,9.6,4.6,12.9c1.1,3.5,0.4,4.3-5,5v2.5h22.2v-2.5
C437.1,70.2,435.9,69.4,433.2,61.8z M404,49.1c2.6-7.1,5.3-14.5,8-21.7h0.3l7.4,21.7H404z"/>
</g>
<g>
<g>
<g>
<path fill="#E4894B" d="M602,37.2c0.9,0.7,1.4,1.8,1.5,3.4h-2c-0.1-0.7-0.4-1.4-0.8-1.9c-0.4-0.5-1.1-0.7-2.1-0.7
c-1.3,0-2.2,0.6-2.8,1.9c-0.4,0.8-0.5,1.8-0.5,3c0,1.2,0.3,2.2,0.8,3.1c0.5,0.8,1.3,1.2,2.4,1.2c0.8,0,1.5-0.3,2-0.8
c0.5-0.5,0.8-1.2,1-2.1h2c-0.2,1.6-0.8,2.8-1.7,3.5c-0.9,0.7-2.1,1.1-3.5,1.1c-1.6,0-2.8-0.6-3.8-1.7c-0.9-1.2-1.4-2.6-1.4-4.3
c0-2.1,0.5-3.8,1.5-5c1-1.2,2.3-1.8,3.9-1.8C600,36.2,601.1,36.5,602,37.2z"/>
<path fill="#E4894B" d="M614.5,37.8c1.1,1,1.6,2.6,1.6,4.6c0,1.9-0.5,3.6-1.4,4.8c-0.9,1.3-2.4,1.9-4.4,1.9
c-1.7,0-3-0.6-3.9-1.7c-1-1.1-1.5-2.6-1.5-4.5c0-2,0.5-3.6,1.5-4.9c1-1.2,2.4-1.8,4.1-1.8C612.1,36.2,613.4,36.7,614.5,37.8z
M613.3,45.8c0.5-1,0.7-2.2,0.7-3.4c0-1.1-0.2-2-0.5-2.8c-0.6-1.1-1.5-1.7-2.9-1.7c-1.2,0-2.1,0.5-2.7,1.4
c-0.6,0.9-0.8,2.1-0.8,3.4c0,1.3,0.3,2.4,0.8,3.2c0.6,0.9,1.4,1.3,2.7,1.3C611.8,47.3,612.8,46.8,613.3,45.8z"/>
<path fill="#E4894B" d="M618.8,36.6h2v1.7c0.5-0.6,0.9-1,1.3-1.3c0.7-0.5,1.4-0.7,2.3-0.7c1,0,1.7,0.2,2.3,0.7
c0.3,0.3,0.6,0.7,0.9,1.2c0.5-0.6,1-1.1,1.6-1.4c0.6-0.3,1.3-0.5,2.1-0.5c1.6,0,2.7,0.6,3.3,1.8c0.3,0.6,0.5,1.5,0.5,2.6v8.1
H633v-8.4c0-0.8-0.2-1.4-0.6-1.7c-0.4-0.3-0.9-0.5-1.5-0.5c-0.8,0-1.5,0.3-2.1,0.8c-0.6,0.5-0.9,1.4-0.9,2.7v7h-2.1v-7.9
c0-0.8-0.1-1.4-0.3-1.8c-0.3-0.6-0.9-0.8-1.7-0.8c-0.8,0-1.5,0.3-2.1,0.9c-0.6,0.6-0.9,1.7-0.9,3.2v6.4h-2V36.6z"/>
<path fill="#E4894B" d="M638.1,36.6h2v1.6c0.4-0.5,0.9-1,1.3-1.3c0.7-0.5,1.5-0.7,2.4-0.7c1.4,0,2.5,0.5,3.5,1.6
c1,1.1,1.4,2.6,1.4,4.5c0,2.6-0.7,4.5-2.1,5.6c-0.9,0.7-1.9,1.1-3.1,1.1c-0.9,0-1.7-0.2-2.3-0.6c-0.4-0.2-0.8-0.6-1.2-1.2v6.2
h-2V36.6z M645.8,46.1c0.6-0.8,0.9-2,0.9-3.6c0-1-0.1-1.8-0.4-2.5c-0.5-1.3-1.5-2-2.9-2c-1.4,0-2.4,0.7-2.9,2.1
c-0.3,0.8-0.4,1.7-0.4,2.9c0,0.9,0.1,1.7,0.4,2.4c0.5,1.2,1.5,1.9,2.9,1.9C644.4,47.3,645.1,46.9,645.8,46.1z"/>
<path fill="#E4894B" d="M653.4,36.6v8c0,0.6,0.1,1.1,0.3,1.5c0.4,0.7,1,1.1,2,1.1c1.4,0,2.3-0.6,2.8-1.9
c0.3-0.7,0.4-1.6,0.4-2.8v-5.9h2v12.1H659l0-1.8c-0.3,0.5-0.6,0.8-1,1.2c-0.8,0.6-1.7,0.9-2.8,0.9c-1.7,0-2.8-0.6-3.5-1.7
c-0.3-0.6-0.5-1.4-0.5-2.5v-8.2H653.4z"/>
<path fill="#E4894B" d="M664.9,33.2h2.1v3.4h1.9v1.7h-1.9v7.9c0,0.4,0.1,0.7,0.4,0.8c0.2,0.1,0.4,0.1,0.8,0.1
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.4,0v1.6c-0.2,0.1-0.5,0.1-0.7,0.1c-0.3,0-0.5,0-0.8,0c-1,0-1.6-0.2-1.9-0.7
c-0.3-0.5-0.5-1.1-0.5-1.9v-8h-1.6v-1.7h1.6V33.2z"/>
<path fill="#E4894B" d="M677.6,41.3c0.5-0.1,0.8-0.3,0.9-0.6c0.1-0.2,0.1-0.4,0.1-0.8c0-0.7-0.2-1.2-0.7-1.5
c-0.5-0.3-1.2-0.5-2.1-0.5c-1.1,0-1.8,0.3-2.3,0.9c-0.2,0.3-0.4,0.8-0.5,1.4h-1.9c0-1.5,0.5-2.5,1.4-3.1c0.9-0.6,2-0.9,3.2-0.9
c1.4,0,2.6,0.3,3.5,0.8c0.9,0.5,1.3,1.4,1.3,2.5v7c0,0.2,0,0.4,0.1,0.5c0.1,0.1,0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0
c0.1,0,0.2,0,0.4,0v1.5c-0.3,0.1-0.6,0.1-0.7,0.2c-0.2,0-0.4,0-0.7,0c-0.7,0-1.2-0.2-1.5-0.7c-0.2-0.3-0.3-0.6-0.4-1.1
c-0.4,0.5-1,1-1.8,1.4c-0.8,0.4-1.6,0.6-2.6,0.6c-1.1,0-2-0.3-2.7-1c-0.7-0.7-1.1-1.5-1.1-2.6c0-1.1,0.4-2,1.1-2.6
c0.7-0.6,1.6-1,2.8-1.1L677.6,41.3z M673.3,46.8c0.4,0.3,0.9,0.5,1.5,0.5c0.7,0,1.4-0.2,2.1-0.5c1.1-0.5,1.7-1.4,1.7-2.7v-1.6
c-0.2,0.2-0.6,0.3-1,0.4c-0.4,0.1-0.8,0.2-1.2,0.2l-1.2,0.2c-0.7,0.1-1.3,0.3-1.7,0.5c-0.6,0.4-0.9,0.9-0.9,1.7
C672.7,46,672.9,46.5,673.3,46.8z"/>
<path fill="#E4894B" d="M684.6,33.2h2.1v3.4h1.9v1.7h-1.9v7.9c0,0.4,0.1,0.7,0.4,0.8c0.2,0.1,0.4,0.1,0.8,0.1
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.4,0v1.6c-0.2,0.1-0.5,0.1-0.7,0.1c-0.3,0-0.5,0-0.8,0c-0.9,0-1.6-0.2-1.9-0.7
c-0.3-0.5-0.5-1.1-0.5-1.9v-8h-1.6v-1.7h1.6V33.2z"/>
<path fill="#E4894B" d="M690.8,32.1h2.1v2.3h-2.1V32.1z M690.8,36.6h2.1v12h-2.1V36.6z"/>
<path fill="#E4894B" d="M704.9,37.8c1.1,1,1.6,2.6,1.6,4.6c0,1.9-0.5,3.6-1.4,4.8c-0.9,1.3-2.4,1.9-4.4,1.9
c-1.7,0-3-0.6-3.9-1.7c-1-1.1-1.5-2.6-1.5-4.5c0-2,0.5-3.6,1.5-4.9c1-1.2,2.4-1.8,4.1-1.8C702.6,36.2,703.9,36.7,704.9,37.8z
M703.7,45.8c0.5-1,0.7-2.2,0.7-3.4c0-1.1-0.2-2-0.5-2.8c-0.6-1.1-1.5-1.7-2.9-1.7c-1.2,0-2.1,0.5-2.7,1.4
c-0.6,0.9-0.8,2.1-0.8,3.4c0,1.3,0.3,2.4,0.8,3.2c0.6,0.9,1.4,1.3,2.7,1.3C702.3,47.3,703.2,46.8,703.7,45.8z"/>
<path fill="#E4894B" d="M709.2,36.6h1.9v1.7c0.6-0.7,1.2-1.2,1.8-1.5c0.6-0.3,1.4-0.5,2.1-0.5c1.7,0,2.9,0.6,3.5,1.8
c0.3,0.7,0.5,1.6,0.5,2.8v7.8H717V41c0-0.7-0.1-1.3-0.3-1.8c-0.4-0.8-1-1.1-2-1.1c-0.5,0-0.9,0-1.2,0.1c-0.6,0.2-1,0.5-1.5,1
c-0.3,0.4-0.6,0.8-0.7,1.2c-0.1,0.4-0.2,1-0.2,1.8v6.3h-2V36.6z"/>
<path fill="#E4894B" d="M728.8,41.3c0.5-0.1,0.8-0.3,0.9-0.6c0.1-0.2,0.1-0.4,0.1-0.8c0-0.7-0.2-1.2-0.7-1.5
c-0.5-0.3-1.2-0.5-2.1-0.5c-1.1,0-1.8,0.3-2.3,0.9c-0.2,0.3-0.4,0.8-0.5,1.4h-1.9c0-1.5,0.5-2.5,1.5-3.1c0.9-0.6,2-0.9,3.2-0.9
c1.4,0,2.6,0.3,3.5,0.8c0.9,0.5,1.3,1.4,1.3,2.5v7c0,0.2,0,0.4,0.1,0.5c0.1,0.1,0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0
c0.1,0,0.2,0,0.4,0v1.5c-0.3,0.1-0.6,0.1-0.7,0.2c-0.2,0-0.4,0-0.7,0c-0.7,0-1.2-0.2-1.5-0.7c-0.2-0.3-0.3-0.6-0.4-1.1
c-0.4,0.5-1,1-1.8,1.4c-0.8,0.4-1.6,0.6-2.6,0.6c-1.1,0-2-0.3-2.8-1c-0.7-0.7-1.1-1.5-1.1-2.6c0-1.1,0.3-2,1-2.6
c0.7-0.6,1.6-1,2.8-1.1L728.8,41.3z M724.5,46.8c0.4,0.3,0.9,0.5,1.5,0.5c0.7,0,1.4-0.2,2.1-0.5c1.1-0.5,1.7-1.4,1.7-2.7v-1.6
c-0.2,0.2-0.6,0.3-1,0.4c-0.4,0.1-0.8,0.2-1.1,0.2l-1.2,0.2c-0.7,0.1-1.3,0.3-1.7,0.5c-0.6,0.4-0.9,0.9-0.9,1.7
C723.9,46,724.1,46.5,724.5,46.8z"/>
<path fill="#E4894B" d="M735.5,32.1h2v16.6h-2V32.1z"/>
</g>
<g>
<path fill="#E4894B" d="M593.9,56.5h2v9.6l5.2-5.1h2.6l-4.7,4.5l4.9,7.6h-2.6l-3.8-6.2l-1.7,1.6v4.5h-2V56.5z"/>
<path fill="#E4894B" d="M605.5,61h1.9v1.7c0.6-0.7,1.2-1.2,1.8-1.5c0.6-0.3,1.4-0.5,2.1-0.5c1.7,0,2.9,0.6,3.5,1.8
c0.3,0.7,0.5,1.6,0.5,2.8v7.8h-2.1v-7.6c0-0.7-0.1-1.3-0.3-1.8c-0.4-0.8-1-1.1-2-1.1c-0.5,0-0.9,0-1.2,0.1
c-0.6,0.2-1,0.5-1.5,1c-0.3,0.4-0.6,0.8-0.7,1.2c-0.1,0.4-0.2,1-0.2,1.8v6.3h-2V61z"/>
<path fill="#E4894B" d="M627.2,62.2c1.1,1,1.6,2.6,1.6,4.6c0,1.9-0.5,3.6-1.4,4.8c-0.9,1.3-2.4,1.9-4.4,1.9
c-1.7,0-3-0.6-3.9-1.7c-1-1.1-1.5-2.6-1.5-4.5c0-2,0.5-3.6,1.5-4.9c1-1.2,2.4-1.8,4.1-1.8C624.8,60.6,626.1,61.1,627.2,62.2z
M625.9,70.2c0.5-1,0.7-2.2,0.7-3.4c0-1.1-0.2-2-0.5-2.8c-0.6-1.1-1.5-1.7-2.9-1.7c-1.2,0-2.1,0.5-2.7,1.4
c-0.6,0.9-0.8,2.1-0.8,3.4c0,1.3,0.3,2.4,0.8,3.2c0.6,0.9,1.4,1.3,2.7,1.3C624.5,71.7,625.4,71.2,625.9,70.2z"/>
<path fill="#E4894B" d="M632.2,61l2.3,9.5l2.4-9.5h2.3l2.4,9.5L644,61h2l-3.5,12.1h-2.1l-2.5-9.4l-2.4,9.4h-2.1L630,61H632.2z"
/>
<path fill="#E4894B" d="M648,56.5h2v16.6h-2V56.5z"/>
<path fill="#E4894B" d="M660.6,61.3c0.8,0.4,1.4,0.9,1.8,1.6c0.4,0.6,0.7,1.3,0.8,2.1c0.1,0.6,0.2,1.4,0.2,2.7h-8.8
c0,1.2,0.3,2.2,0.9,3c0.5,0.7,1.4,1.1,2.5,1.1c1.1,0,1.9-0.4,2.5-1.1c0.4-0.4,0.6-0.9,0.7-1.4h2c-0.1,0.4-0.2,0.9-0.5,1.5
c-0.3,0.5-0.6,1-1,1.3c-0.6,0.6-1.4,1-2.3,1.2c-0.5,0.1-1,0.2-1.6,0.2c-1.5,0-2.8-0.5-3.8-1.6c-1-1.1-1.6-2.6-1.6-4.6
c0-1.9,0.5-3.5,1.6-4.7c1-1.2,2.4-1.8,4.1-1.8C659,60.7,659.8,60.9,660.6,61.3z M661.3,66.1c-0.1-0.9-0.3-1.6-0.6-2.1
c-0.6-1-1.5-1.5-2.8-1.5c-0.9,0-1.7,0.3-2.3,1c-0.6,0.7-1,1.5-1,2.6H661.3z"/>
<path fill="#E4894B" d="M672.6,61.3c0.4,0.2,0.8,0.6,1.2,1.2v-6.1h2v16.6H674v-1.7c-0.5,0.7-1,1.3-1.7,1.6
c-0.6,0.3-1.4,0.5-2.2,0.5c-1.3,0-2.5-0.6-3.5-1.7c-1-1.1-1.5-2.6-1.5-4.5c0-1.8,0.4-3.3,1.3-4.6c0.9-1.3,2.2-1.9,3.8-1.9
C671.2,60.8,672,61,672.6,61.3z M668.1,70.4c0.5,0.9,1.4,1.3,2.6,1.3c0.9,0,1.7-0.4,2.3-1.2c0.6-0.8,0.9-2,0.9-3.5
c0-1.5-0.3-2.7-0.9-3.4c-0.6-0.7-1.4-1.1-2.3-1.1c-1,0-1.8,0.4-2.5,1.2c-0.6,0.8-0.9,1.9-0.9,3.5
C667.3,68.5,667.5,69.5,668.1,70.4z"/>
<path fill="#E4894B" d="M685.6,61.5c0.4,0.3,0.8,0.6,1.2,1.2v-1.5h1.9v11c0,1.5-0.2,2.7-0.7,3.6c-0.8,1.6-2.4,2.5-4.8,2.5
c-1.3,0-2.4-0.3-3.3-0.9c-0.9-0.6-1.4-1.5-1.5-2.7h2.1c0.1,0.5,0.3,1,0.6,1.3c0.5,0.5,1.2,0.7,2.2,0.7c1.5,0,2.6-0.5,3-1.6
c0.3-0.6,0.4-1.8,0.4-3.5c-0.4,0.6-0.9,1.1-1.5,1.4s-1.3,0.5-2.3,0.5c-1.3,0-2.4-0.5-3.4-1.4c-1-0.9-1.5-2.5-1.5-4.6
c0-2,0.5-3.6,1.5-4.7c1-1.1,2.2-1.7,3.6-1.7C684,60.8,684.9,61,685.6,61.5z M685.8,63.6c-0.6-0.7-1.4-1.1-2.3-1.1
c-1.4,0-2.4,0.7-2.9,2c-0.3,0.7-0.4,1.7-0.4,2.8c0,1.4,0.3,2.4,0.8,3.1c0.6,0.7,1.3,1.1,2.2,1.1c1.5,0,2.5-0.7,3.1-2
c0.3-0.7,0.5-1.6,0.5-2.6C686.7,65.5,686.4,64.4,685.8,63.6z"/>
<path fill="#E4894B" d="M699.2,61.3c0.8,0.4,1.4,0.9,1.8,1.6c0.4,0.6,0.7,1.3,0.8,2.1c0.1,0.6,0.2,1.4,0.2,2.7h-8.8
c0,1.2,0.3,2.2,0.9,3c0.5,0.7,1.4,1.1,2.5,1.1c1.1,0,1.9-0.4,2.5-1.1c0.4-0.4,0.6-0.9,0.7-1.4h2c-0.1,0.4-0.2,0.9-0.5,1.5
c-0.3,0.5-0.6,1-1,1.3c-0.6,0.6-1.4,1-2.3,1.2c-0.5,0.1-1,0.2-1.6,0.2c-1.5,0-2.8-0.5-3.8-1.6c-1-1.1-1.6-2.6-1.6-4.6
c0-1.9,0.5-3.5,1.6-4.7c1-1.2,2.4-1.8,4.1-1.8C697.5,60.7,698.4,60.9,699.2,61.3z M699.9,66.1c-0.1-0.9-0.3-1.6-0.6-2.1
c-0.6-1-1.5-1.5-2.8-1.5c-0.9,0-1.7,0.3-2.3,1c-0.6,0.7-1,1.5-1,2.6H699.9z"/>
<path fill="#E4894B" d="M718.5,61.3c0.8,0.4,1.4,0.9,1.8,1.6c0.4,0.6,0.7,1.3,0.8,2.1c0.1,0.6,0.2,1.4,0.2,2.7h-8.8
c0,1.2,0.3,2.2,0.9,3c0.5,0.7,1.4,1.1,2.5,1.1c1.1,0,1.9-0.4,2.5-1.1c0.4-0.4,0.6-0.9,0.7-1.4h2c-0.1,0.4-0.2,0.9-0.5,1.5
c-0.3,0.5-0.6,1-1,1.3c-0.6,0.6-1.4,1-2.3,1.2c-0.5,0.1-1,0.2-1.6,0.2c-1.5,0-2.8-0.5-3.8-1.6c-1-1.1-1.6-2.6-1.6-4.6
c0-1.9,0.5-3.5,1.6-4.7c1-1.2,2.4-1.8,4.1-1.8C716.8,60.7,717.7,60.9,718.5,61.3z M719.2,66.1c-0.1-0.9-0.3-1.6-0.6-2.1
c-0.6-1-1.5-1.5-2.8-1.5c-0.9,0-1.7,0.3-2.3,1c-0.6,0.7-1,1.5-1,2.6H719.2z"/>
<path fill="#E4894B" d="M723.9,61h1.9v1.7c0.6-0.7,1.2-1.2,1.8-1.5c0.6-0.3,1.4-0.5,2.1-0.5c1.7,0,2.9,0.6,3.5,1.8
c0.3,0.7,0.5,1.6,0.5,2.8v7.8h-2.1v-7.6c0-0.7-0.1-1.3-0.3-1.8c-0.4-0.8-1-1.1-2-1.1c-0.5,0-0.9,0-1.2,0.1
c-0.6,0.2-1,0.5-1.5,1c-0.3,0.4-0.6,0.8-0.7,1.2c-0.1,0.4-0.2,1-0.2,1.8v6.3h-2V61z"/>
<path fill="#E4894B" d="M743.4,61.5c0.4,0.3,0.8,0.6,1.2,1.2v-1.5h1.9v11c0,1.5-0.2,2.7-0.7,3.6c-0.8,1.6-2.4,2.5-4.8,2.5
c-1.3,0-2.4-0.3-3.3-0.9c-0.9-0.6-1.4-1.5-1.5-2.7h2.1c0.1,0.5,0.3,1,0.6,1.3c0.5,0.5,1.2,0.7,2.2,0.7c1.5,0,2.6-0.5,3-1.6
c0.3-0.6,0.4-1.8,0.4-3.5c-0.4,0.6-0.9,1.1-1.5,1.4s-1.3,0.5-2.3,0.5c-1.3,0-2.4-0.5-3.4-1.4c-1-0.9-1.5-2.5-1.5-4.6
c0-2,0.5-3.6,1.5-4.7c1-1.1,2.2-1.7,3.6-1.7C741.9,60.8,742.7,61,743.4,61.5z M743.7,63.6c-0.6-0.7-1.4-1.1-2.3-1.1
c-1.4,0-2.4,0.7-2.9,2c-0.3,0.7-0.4,1.7-0.4,2.8c0,1.4,0.3,2.4,0.8,3.1c0.5,0.7,1.3,1.1,2.2,1.1c1.5,0,2.5-0.7,3.1-2
c0.3-0.7,0.5-1.6,0.5-2.6C744.6,65.5,744.3,64.4,743.7,63.6z"/>
<path fill="#E4894B" d="M749.6,56.5h2.1v2.3h-2.1V56.5z M749.6,61h2.1v12h-2.1V61z"/>
<path fill="#E4894B" d="M754.7,61h1.9v1.7c0.6-0.7,1.2-1.2,1.8-1.5c0.6-0.3,1.4-0.5,2.1-0.5c1.7,0,2.9,0.6,3.5,1.8
c0.3,0.7,0.5,1.6,0.5,2.8v7.8h-2.1v-7.6c0-0.7-0.1-1.3-0.3-1.8c-0.4-0.8-1-1.1-2-1.1c-0.5,0-0.9,0-1.2,0.1
c-0.6,0.2-1,0.5-1.5,1c-0.3,0.4-0.6,0.8-0.7,1.2c-0.1,0.4-0.2,1-0.2,1.8v6.3h-2V61z"/>
<path fill="#E4894B" d="M775.1,61.3c0.8,0.4,1.4,0.9,1.8,1.6c0.4,0.6,0.7,1.3,0.8,2.1c0.1,0.6,0.2,1.4,0.2,2.7h-8.8
c0,1.2,0.3,2.2,0.9,3c0.5,0.7,1.4,1.1,2.5,1.1c1.1,0,1.9-0.4,2.5-1.1c0.4-0.4,0.6-0.9,0.7-1.4h2c-0.1,0.4-0.2,0.9-0.5,1.5
c-0.3,0.5-0.6,1-1,1.3c-0.6,0.6-1.4,1-2.3,1.2c-0.5,0.1-1,0.2-1.6,0.2c-1.5,0-2.8-0.5-3.8-1.6c-1-1.1-1.6-2.6-1.6-4.6
c0-1.9,0.5-3.5,1.6-4.7c1-1.2,2.4-1.8,4.1-1.8C773.4,60.7,774.3,60.9,775.1,61.3z M775.8,66.1c-0.1-0.9-0.3-1.6-0.6-2.1
c-0.6-1-1.5-1.5-2.8-1.5c-0.9,0-1.7,0.3-2.3,1c-0.6,0.7-1,1.5-1,2.6H775.8z"/>
</g>
</g>
</g>
</g>
</g>
<g>
<path fill="#E4894B" d="M780.3,64.2C780.3,64.2,780.2,64.2,780.3,64.2l-0.1-3.3c0,0,0,0,0,0h-1c0,0-0.1,0-0.1-0.1v-0.5
c0,0,0-0.1,0.1-0.1h2.8c0,0,0.1,0,0.1,0.1v0.5c0,0,0,0.1-0.1,0.1h-1c0,0,0,0,0,0v3.2c0,0,0,0.1-0.1,0.1H780.3z"/>
<path fill="#E4894B" d="M782.6,60.4C782.6,60.3,782.6,60.3,782.6,60.4l0.6-0.1c0.1,0,0.1,0,0.1,0.1l1.1,2.4h0l1.1-2.4
c0,0,0-0.1,0.1-0.1h0.5c0,0,0.1,0,0.1,0.1v3.8c0,0,0,0.1-0.1,0.1h-0.5c0,0-0.1,0-0.1-0.1v-2.4h0l-0.8,1.8c0,0.1-0.1,0.1-0.1,0.1
h-0.3c-0.1,0-0.1,0-0.1-0.1l-0.8-1.8h0v2.4c0,0,0,0.1-0.1,0.1h-0.5c0,0-0.1,0-0.1-0.1V60.4z"/>
</g>
<path fill="#F58120" d="M581.2,28.6c-0.1-0.6-0.2-1.1-0.9-1.2v0c0.7-0.2,1-0.8,1-1.5c0-0.9-0.7-1.5-1.8-1.5h-2.8v5.8h0.8v-2.5h1.9
c0.8,0,0.9,0.5,1,1c0.1,0.6,0,1.2,0.2,1.4h0.9C581.2,29.8,581.2,29.1,581.2,28.6z M579.2,27h-1.6v-2h1.9c0.7,0,1,0.4,1,1
C580.6,26.8,579.9,27,579.2,27z"/>
<g>
<path fill="#F58120" d="M579,21.6c-3,0-5.4,2.4-5.4,5.4c0,3,2.4,5.4,5.4,5.4c3,0,5.4-2.4,5.4-5.4C584.4,24.1,582,21.6,579,21.6z
M579,31.4c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4s4.4,2,4.4,4.4C583.4,29.5,581.4,31.4,579,31.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

77
src/startpage/assets/thumbnails/youtube.svg

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="223.2444px" viewBox="0 0 1000 223.2444" enable-background="new 0 0 1000 223.2444" xml:space="preserve">
<g>
<path fill="#FF0000" d="M312.2563171,34.8599815c-3.6678162-13.7215042-14.4743347-24.5280342-28.1958618-28.1958084
C259.1894226,0,159.4602356,0,159.4602356,0S59.7310257,0,34.8600121,6.6641741
C21.1384773,10.3319483,10.3319483,21.1384773,6.6641588,34.8599815C0,59.7309647,0,111.6222,0,111.6222
s0,51.8912277,6.6641588,76.7622147c3.6677895,13.7214966,14.4743185,24.5280304,28.1958542,28.1958008
C59.7310257,223.2444,159.4602356,223.2444,159.4602356,223.2444s99.729187,0,124.6002197-6.6641846
c13.7215271-3.6677704,24.5280457-14.4743042,28.1958618-28.1958008
c6.6641541-24.8709869,6.6641541-76.7622147,6.6641541-76.7622147S318.9204712,59.7309647,312.2563171,34.8599815z"/>
<polygon fill="#FFFFFF" points="127.5681839,159.4602356 210.4225464,111.6235657 127.5681839,63.7840919 "/>
</g>
<g>
<g>
<path fill="#282828" d="M462.914032,203.0943604c-6.3113098-4.2541046-10.7974243-10.8692017-13.4557495-19.8414154
c-2.6622009-8.9696503-3.9913635-20.9039917-3.9913635-35.806839v-20.2977295
c0-15.0528183,1.5175781-27.1409607,4.5604553-36.2631454c3.0402832-9.1221848,7.7904358-15.7718811,14.254303-19.9554977
c6.4612732-4.1797714,14.9387207-6.2715836,25.4298096-6.2715836c10.338562,0,18.6237793,2.1302643,24.859436,6.3856583
c6.2331543,4.2579575,10.7935791,10.911499,13.68396,19.9554977c2.8864746,9.0478439,4.3335571,21.0962524,4.3335571,36.1490707
v20.2977295c0,14.9028473-1.4073486,26.8769226-4.2194824,35.9209137
c-2.8146973,9.0478363-7.3764648,15.6616516-13.68396,19.8414154c-6.3112793,4.1797791-14.8630981,6.2715912-25.657959,6.2715912
C477.927124,209.4800262,469.2214966,207.349762,462.914032,203.0943604z M498.2645874,181.199585
c1.7457275-4.5604553,2.6224365-12.008667,2.6224365-22.3497925v-43.561409c0-10.03479-0.876709-17.3689346-2.6224365-22.0088577
c-1.7495728-4.6360703-4.8296204-6.9560318-9.2375488-6.9560318c-4.2579651,0-7.2623596,2.3199615-9.0081177,6.9560318
c-1.7495728,4.6399231-2.6224365,11.9740677-2.6224365,22.0088577v43.561409
c0,10.3411255,0.8331299,17.7893372,2.5083618,22.3497925c1.6714172,4.5617371,4.7104187,6.8419647,9.1221924,6.8419647
C493.434967,188.0415497,496.5150146,185.761322,498.2645874,181.199585z"/>
<path fill="#282828" d="M947.3162231,147.7781219v7.0704041c0,8.9729309,0.2615356,15.7010345,0.7974243,20.1842957
c0.5307617,4.4871063,1.6307373,7.7550049,3.3076172,9.8075256c1.671814,2.052536,4.2537842,3.0794525,7.7537231,3.0794525
c4.7102051,0,7.9434814-1.8256226,9.6921997-5.4742737c1.7460938-3.6486664,2.6973877-9.7293396,2.8511963-18.2458649
l27.140625,1.5961151c0.1512451,1.219223,0.2282104,2.8909912,0.2282104,5.0178833
c0,12.9254303-3.5358887,22.5791168-10.6049805,28.96492c-7.0691528,6.3858032-17.0689697,9.5793304-29.9918213,9.5793304
c-15.5074463,0-26.3816528-4.8640137-32.6148682-14.5971985c-6.2358398-9.7280579-9.3511353-24.7803802-9.3511353-45.1569824
v-24.4047394c0-20.98172,3.2307129-36.2981415,9.6947021-45.9556808
c6.4614258-9.6536942,17.5228271-14.4831085,33.184082-14.4831085c10.7947388,0,19.0792236,1.9781723,24.8585815,5.9306793
c5.7768555,3.9550629,9.8434448,10.1126556,12.2023926,18.4727783C998.8205566,97.5276337,1000,109.085144,1000,123.8310623
v23.9470596H947.3162231z M951.3059082,88.9367447c-1.5948486,1.9768906-2.661499,5.2088928-3.1922607,9.6921539
c-0.5358887,4.4871063-0.7974243,11.289566-0.7974243,20.4124985v10.0357361h23.032959v-10.0357361
c0-8.9690933-0.3051147-15.7728271-0.9102173-20.4124985c-0.6102905-4.6358261-1.7102661-7.9037247-3.3076782-9.8062592
c-1.5974121-1.899971-4.0691528-2.8512344-7.4126587-2.8512344
C955.3724976,85.971405,952.9033203,86.9624176,951.3059082,88.9367447z"/>
<path fill="#282828" d="M386.2744751,145.1605835L350.4676208,15.8452682h31.2451172l12.5431824,58.6142273
c3.1940918,14.4465561,5.5486755,26.7615662,7.0700989,36.9463196h0.9125977
c1.062561-7.2982635,3.42099-19.5350876,7.0701294-36.7181702l12.9994507-58.8423767h31.2463989l-36.2631531,129.3153076
v62.0382996h-31.0169678V145.1605835z"/>
<path fill="#282828" d="M634.2089844,67.3932648v139.8051147h-24.6312866l-2.737793-17.1048889h-0.6831665
c-6.6932983,12.9251251-16.7280884,19.3851166-30.1056519,19.3851166c-9.276001,0-16.117981-3.0390167-20.5258789-9.1221771
c-4.4118042-6.0793152-6.6138306-15.5834656-6.6138306-28.5085907V67.3932648h31.4732666v102.6306458
c0,6.2357025,0.6844482,10.6833496,2.052063,13.3416901c1.3688965,2.6621857,3.6491699,3.9913635,6.84198,3.9913635
c2.737793,0,5.3602295-0.8344116,7.8686523-2.5096588c2.5096436-1.671402,4.3694458-3.7978058,5.5883789-6.3856506V67.3932648
H634.2089844z"/>
<path fill="#282828" d="M795.6474609,67.3932648v139.8051147h-24.6312866l-2.737793-17.1048889h-0.6831665
c-6.6932983,12.9251251-16.7280884,19.3851166-30.1056519,19.3851166c-9.276001,0-16.117981-3.0390167-20.5258789-9.1221771
c-4.4117432-6.0793152-6.6138306-15.5834656-6.6138306-28.5085907V67.3932648h31.4732666v102.6306458
c0,6.2357025,0.6844482,10.6833496,2.052124,13.3416901c1.3688965,2.6621857,3.6491089,3.9913635,6.8419189,3.9913635
c2.737793,0,5.3602905-0.8344116,7.8686523-2.5096588c2.5096436-1.671402,4.3694458-3.7978058,5.5883789-6.3856506V67.3932648
H795.6474609z"/>
<path fill="#282828" d="M719.7329712,41.1649666H688.487854v166.0334778h-30.7887573V41.1649666h-31.2451172V15.8492079
h93.2789917V41.1649666z"/>
<path fill="#282828" d="M899.8128052,89.7415543c-1.9035645-8.8157883-4.9821777-15.2015457-9.2375488-19.1569519
c-4.2579346-3.951561-10.1129761-5.9294281-17.5610352-5.9294281c-5.77948,0-11.1756592,1.6356125-16.1924438,4.9029999
c-5.0180054,3.2709122-8.8952637,7.5660019-11.6316528,12.8865662h-0.2310181l0.0028687-73.6671219h-30.3325806v198.419342
h25.9987183l3.1930542-13.2275238h0.6844482c2.4300537,4.7142487,6.0791016,8.4376373,10.9472046,11.1756287
c4.8641968,2.7363892,10.2629395,4.1041107,16.1936646,4.1041107c10.6398315,0,18.4724731-4.9026794,23.4904785-14.7093353
c5.0167847-9.8079224,7.5266113-25.1235504,7.5266113-45.9558563v-22.1227951
C902.6635742,110.8033142,901.7111816,98.5627899,899.8128052,89.7415543z M870.9619751,146.7677612
c0,10.1886292-0.4204102,18.1712341-1.2548828,23.9465179c-0.8370361,5.7810516-2.2442017,9.8861237-4.2194824,12.3164673
c-1.9775391,2.4342041-4.6398926,3.6490479-7.9813232,3.6490479c-2.5877075,0-4.9821777-0.6059723-7.1843262-1.8249969
c-2.2057495-1.2151794-3.991333-3.0392303-5.3599854-5.4730988v-79.3683777
c1.0623169-3.7977448,2.8863525-6.9161148,5.4740601-9.3503113c2.5828857-2.4300308,5.3948975-3.6490479,8.4379883-3.6490479
c3.192688,0,5.6627808,1.2549057,7.4121704,3.7631302c1.7458496,2.5082245,2.9645386,6.7280045,3.6490479,12.6583939
c0.6845093,5.9294281,1.0267334,14.3674011,1.0267334,25.3145447V146.7677612z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

Loading…
Cancel
Save