Fix merge conflict

main
Elbert Alias 9 years ago
commit 97ae3b9211

@ -1,14 +1,21 @@
language: node_js
node_js:
- "4.2.2"
- "4"
sudo: false
before_install:
- export WAPPALYZER_ROOT=$TRAVIS_BUILD_DIR
- export WAPPALYZER_NODE_PATH=$TRAVIS_BUILD_DIR
- export PATH=$PATH:$TRAVIS_BUILD_DIR/bin
install:
- npm install jsonlint jpm imagemin-cli svgo -g
- ln -s docker/node/package.json package.json && npm install
- mkdir phantomjs && curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.8-linux-x86_64.tar.bz2 | tar xvjC phantomjs && ln -s $WAPPALYZER_ROOT/phantomjs/phantomjs-*-linux-x86_64/bin/phantomjs bin/phantomjs
script: wappalyzer build
- export WAPPALYZER_ROOT=$TRAVIS_BUILD_DIR
- export WAPPALYZER_NODE_PATH=$TRAVIS_BUILD_DIR
- export PATH=$PATH:$TRAVIS_BUILD_DIR/bin
- ln -s docker/node/package.json package.json
after_script: ls -l --block-size=kB build
cache:
directories:
- node_modules
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8

@ -24,7 +24,7 @@ This section describes how to set up a development environment. Everything you
need is contained in a [Docker image](https://registry.hub.docker.com/u/wappalyzer/dev/)
which is managed by Vagrant.
Running this environment optional but recommended as it provides some helpful tools.
Running this environment is optional but recommended as it provides some helpful tools.
First, install [Docker](https://www.docker.com/) and [Vagrant](https://www.vagrantup.com/)
on your system.

@ -7,21 +7,28 @@ then
exit 1
fi
if [ -z $WAPPALYZER_NODE_PATH ]
then
echo "\$WAPPALYZER_NODE_PATH not set"
exit 1
fi
set -eu
wappalyzer validate
echo "Prettifying apps.json..."
jsonlint -ist $'\t' $WAPPALYZER_ROOT/src/apps.json
node $WAPPALYZER_NODE_PATH/node_modules/jsonlint/lib/cli.js -ist $'\t' $WAPPALYZER_ROOT/src/apps.json
echo "Compressing PNG icons..."
imagemin $WAPPALYZER_ROOT/src/icons $WAPPALYZER_ROOT/src/icons -o 3
node $WAPPALYZER_NODE_PATH/node_modules/imagemin-cli/cli.js $WAPPALYZER_ROOT/src/icons $WAPPALYZER_ROOT/src/icons -o 7
echo "Compressing SVG icons..."
svgo -f $WAPPALYZER_ROOT/src/icons $WAPPALYZER_ROOT/src/icons
node $WAPPALYZER_NODE_PATH/node_modules/svgo/bin/svgo -q -f $WAPPALYZER_ROOT/src/icons $WAPPALYZER_ROOT/src/icons
wappalyzer links
@ -34,7 +41,7 @@ echo "Building Firefox driver..."
pushd $WAPPALYZER_ROOT/src/drivers/firefox > /dev/null
jpm xpi && mv *.xpi $WAPPALYZER_ROOT/build/wappalyzer_firefox.xpi
node $WAPPALYZER_NODE_PATH/node_modules/jpm/bin/jpm xpi && mv *.xpi $WAPPALYZER_ROOT/build/wappalyzer_firefox.xpi
popd > /dev/null

@ -27,7 +27,7 @@ path="$path/src"
echo "Validating apps.json..."
jsonlint --quiet -V $WAPPALYZER_ROOT/schema.json $path/apps.json
node $WAPPALYZER_NODE_PATH/node_modules/jsonlint/lib/cli.js --quiet -V $WAPPALYZER_ROOT/schema.json $path/apps.json
echo "Validating regular expressions..."

@ -31,7 +31,11 @@ for (app in json.apps) {
if (exists) {
if (type === "PNG") {
var buffer = fileType(readChunk.sync(path, 0, 262));
if (buffer.mime !== 'image/png') {
if (buffer === null) {
var err = new Error('Unknown mimetype or bad file for "' + app + '": src/icons/' + iconPath);
throw err;
}
else if (buffer.mime !== 'image/png') {
var err = new Error('Incorrect mimetype "' + buffer.mime + '" when expected PNG for app "' + app + '": src/icons/' + iconPath);
throw err;
}

@ -32,7 +32,7 @@ RUN su wappalyzer -c "mkdir $WAPPALYZER_NODE_PATH"
ADD node/package.json $WAPPALYZER_NODE_PATH/package.json
RUN npm install jsonlint jpm imagemin-cli svgo -g && su wappalyzer -c "cd $WAPPALYZER_NODE_PATH && npm install"
RUN su wappalyzer -c "cd $WAPPALYZER_NODE_PATH && npm i"
# PhantomJS

@ -1,7 +1,26 @@
{
"name": "wappalyzer-test",
"private": true,
"license": "GPLv3",
"bugs": {
"url": "https://github.com/AliasIO/Wappalyzer/issues"
},
"homepage": "https://github.com/AliasIO/Wappalyzer",
"description": "Build test for Wappalyzer",
"repository": "AliasIO/Wappalyzer",
"scripts": {
"test": "./bin/wappalyzer build"
},
"devDependencies": {
"file-type": "3.1.*",
"file-type": "3.4.*",
"is-svg": "1.1.*",
"read-chunk": "1.0.*"
"read-chunk": "1.0.*",
"jsonlint": "*",
"jpm": "*",
"imagemin-cli": "*",
"svgo": "*"
},
"engines": {
"node": ">= 4"
}
}

File diff suppressed because it is too large Load Diff

@ -45,7 +45,7 @@
"categoryName48" : { "message" : "Сетевое хранилище" },
"categoryName49" : { "message" : "Граббер контента" },
"categoryName50" : { "message" : "Управление документами" },
"categoryName51": { "message": "Landing Page Builder" },
"categoryName51": { "message": "Генератор лендингов" },
"github" : { "message" : "Форкнуть на GitHub!" },
"noAppsDetected" : { "message" : "Нет данных о сайте" },
"nothingToDo" : { "message" : "Тут нечего искать" },

@ -55,7 +55,7 @@
for ( option in defaults ) {
localStorage[option] = defaults[option];
}
} else if ( version !== localStorage['version'] && localStorage['upgradeMessage'] ) {
} else if ( version !== localStorage['version'] && parseInt(localStorage['upgradeMessage'], 10) ) {
upgraded = true;
}

@ -0,0 +1,67 @@
name = Wappalyzer
noAppsDetected = Нет данных о сайте
clickForDetails = Щелкните, чтобы посмотреть детально
preferences = Настройки Wappalyzer
categories = Категории
tracking_title = Слежение
tracking_description = Анонимно отправлять статистику распознанных данных на сервер (для улучшения расширения)
urlbar_title = Отображать иконку в строке URL
urlbar_description = Снимите галочку, чтобы отображать кнопку на панели
feedback = Обратная связь
github = Форкнуть на GitHub!
twitter = Следите за новостями в Твиттере
website = Перейти на Wappalyzer.com
cat1 = CMS
cat2 = Форум
cat3 = Менеджер БД
cat4 = Документация
cat5 = Виджет
cat6 = Электронная коммерция
cat7 = Фотогалерея
cat8 = Wiki
cat9 = Панель хостинга
cat10 = Аналитика
cat11 = Блог
cat12 = JS фреймворк
cat13 = Баг трекер
cat14 = Видео плеер
cat15 = Система комментариев
cat16 = Капча
cat17 = Шрифт
cat18 = Веб фреймворк
cat19 = Прочее
cat20 = HTML редактор
cat21 = LMS
cat22 = Веб сервер
cat23 = Кеширование
cat24 = WYSIWYG редактор
cat25 = JS графика
cat26 = Мобильный фреймворк
cat27 = Язык программирования
cat28 = Операционная система
cat29 = Поисковый движок
cat30 = Веб почта
cat31 = CDN
cat32 = Управление маркетингом
cat33 = Расширение Веб сервера
cat34 = База данных
cat35 = Карта
cat36 = Рекламная сеть
cat37 = Сетевая служба
cat38 = Медиа сервер
cat39 = Вебкамера
cat40 = Принтер
cat41 = Провайдер платежей
cat42 = Менеджер тэгов
cat43 = Paywall
cat44 = Система непрерывной интеграции
cat45 = Система SCADA
cat46 = Удаленное управление
cat47 = Утилита для разработчиков
cat48 = Сетевое хранилище
cat49 = Граббер контента
cat50 = Управление документами
cat51 = Генератор лендингов

@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-10 -10 120 120">
<defs>
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feOffset result="offOut" in="SourceAlpha" dx="0" dy="0"></feOffset>
<feGaussianBlur result="blurOut" in="offOut" stdDeviation="3"></feGaussianBlur>
<feComponentTransfer in="blurOut" result="opacityOut">
<feFuncA type="linear" slope="0.5"></feFuncA>
</feComponentTransfer>
<feBlend in="SourceGraphic" in2="opacityOut" mode="normal"></feBlend>
</filter>
</defs>
<path d=" M 5 18.25 L 50 2.25 L 96 18 L 88.5 77 L 50 98.25 L 12 77.25 Z" fill="black" filter="url(#shadow)" class="outline"></path>
<path d=" M 5 18.25 L 50 2.25 L 50 98.25 L 12 77.25 Z" fill="#de3641" class="left"></path>
<path d=" M 50 2.25 L 96 18 L 88.5 77 L 50 98.25 Z" fill="#b13138" class="right"></path>
<path d=" M 50 13 L 79.25 75.5 L 69.25 75.5 L 63 61.25 L 50 61.25 L 50 52.75 L 59.5 52.75 L 50 33.1 L 42 52.75 L 50 52.75 L 50 61.25 L 38.1 61.25 L 32.5 75.5 L 21.75 75.5 Z" fill="white" class="letter"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,481 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- ========================================================================= -->
<!-- Test description here -->
<!-- -->
<!-- @version $Id: asf-logo.svg 475685 2006-11-16 11:16:05Z cam $ -->
<!-- ========================================================================= -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
<!ENTITY st0 "fill-rule:nonzero;fill:#D9D9D9;stroke:#D9D9D9;stroke-width:0.5956;stroke-miterlimit:4;">
<!ENTITY st1 "fill:url(#AIgd2);">
<!ENTITY st2 "fill:url(#AIgd3);">
<!ENTITY st3 "fill:url(#AIgd4);">
<!ENTITY st4 "fill:url(#AIgd6);">
<!ENTITY st5 "fill:url(#AIgd8);">
<!ENTITY st6 "fill-rule:nonzero;fill:#D9D9D9;stroke:#D9D9D9;stroke-width:0.254;stroke-miterlimit:4;">
<!ENTITY st7 "fill:url(#AIgd1);stroke:#000000;">
<!ENTITY st8 "fill:url(#AIgd10);">
<!ENTITY st9 "fill:url(#AIgd11);">
<!ENTITY st10 "fill:url(#AIgd16);">
<!ENTITY st11 "fill:url(#AIgd18);">
<!ENTITY st12 "fill:url(#AIgd19);">
<!ENTITY st13 "fill:url(#AIgd31);">
<!ENTITY st14 "fill:url(#AIgd35);">
<!ENTITY st15 "fill:url(#AIgd36);">
<!ENTITY st16 "fill:url(#AIgd38);">
<!ENTITY st17 "fill:url(#AIgd41);">
<!ENTITY st18 "fill:url(#AIgd42);">
<!ENTITY st19 "fill:url(#AIgd52);">
<!ENTITY st20 "fill:url(#AIgd69);">
<!ENTITY st21 "fill:url(#AIgd71);">
<!ENTITY st22 "fill:url(#AIgd72);">
<!ENTITY st23 "fill:#000000;stroke-width:0.5956;">
]>
<svg id="body" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" height="51.066" width="168.74" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Feather_x0020_shadow" stroke="#D9D9D9" fill="#D9D9D9">
<path d="m0.281 44.304c13.561-1.867 63.613-4.392 85.943-8.05 17.961-2.937 35.502-8.285 52.242-13.9 4.328-1.453 11.991-4.434 16.896-7.07 3.104-2.373 10.571-5.889 12.606-9.222-32.45 15.407-45.513 19.649-83.582 27.354-15.436 3.169-71.617 7.72-84.105 10.888z" stroke-width=".5956"/>
<path d="m48.301 50.277l1.454 0.498 1.418 0.119 1.417-0.23 1.417-0.574 1.379-0.766 1.38-0.994 1.305-1.145 1.301-1.227 1.228-1.26 1.149-1.266 1.111-1.225 1.035-1.148 0.958-0.957 0.881-0.763 0.766-0.499 0.689-0.228-0.576 0.036-0.611 0.038-0.689 0.077-0.688 0.074-0.69 0.078-0.689 0.076-0.689 0.038-0.612 0.076-0.957 0.88-0.921 0.841-0.805 0.842-0.729 0.844-0.727 0.801-0.688 0.805-0.652 0.764-0.691 0.729-0.688 0.727-0.729 0.65-0.767 0.65-0.882 0.611-0.919 0.576-1.034 0.535-1.149 0.496-1.302 0.42z" stroke-width=".254"/>
<path d="m43.551 50.082l1.688 0.271 1.569 0.037 1.455-0.15 1.377-0.344 1.265-0.535 1.151-0.652 1.148-0.766 1.034-0.879 1.035-0.918 0.957-0.994 0.959-1.072 0.921-1.033 0.956-1.033 0.96-1.033 0.958-0.955 0.995-0.881-0.381 0.037h-0.423l-0.384 0.039-0.419 0.037-0.424 0.037-0.421 0.078-0.42 0.035-0.42 0.041-0.421 0.037-0.461 0.037-0.422 0.078-0.459 0.037-0.459 0.037-0.46 0.037h-0.46l-0.459 0.039-0.347 0.535-0.42 0.652-0.537 0.764-0.575 0.805-0.69 0.881-0.729 0.879-0.766 0.918-0.805 0.879-0.844 0.844-0.84 0.805-0.885 0.727-0.842 0.611-0.844 0.496-0.843 0.346-0.804 0.189h-0.768z" stroke-width=".254"/>
<path d="m40.411 50.119l0.958 0.115 0.919 0.076 0.881-0.037 0.881-0.152 0.882-0.189 0.843-0.344 0.841-0.422 0.883-0.574 0.882-0.65 0.882-0.764 0.882-0.92 0.919-0.994 0.958-1.188 0.997-1.301 1.034-1.416 1.074-1.607-0.651-0.002-0.613 0.039-0.614 0.076-0.612 0.076-0.611 0.078-0.613 0.072h-1.415l-0.616 0.613-0.573 0.65-0.576 0.613-0.574 0.688-0.575 0.65-0.535 0.689-0.576 0.648-0.539 0.691-0.572 0.65-0.574 0.65-0.612 0.65-0.582 0.617-0.65 0.572-0.652 0.574-0.65 0.574-0.729 0.498z" stroke-width=".254"/>
<path d="m37.081 49.96l0.728 0.387 0.802 0.154 0.807-0.117 0.842-0.342 0.844-0.5 0.881-0.689 0.88-0.764 0.884-0.916 0.841-0.959 0.884-0.992 0.804-0.998 0.805-0.957 0.768-0.957 0.729-0.84 0.689-0.729 0.614-0.613-4.099 0.382-0.462 0.611-0.498 0.611-0.458 0.615-0.459 0.609-0.46 0.613-0.5 0.613-0.461 0.611-0.497 0.613-0.537 0.572-0.537 0.611-0.536 0.578-0.613 0.57-0.612 0.574-0.653 0.576-0.688 0.537-0.728 0.531z" stroke-width=".254"/>
<path d="m30.302 49.076l1.188 0.768 1.109 0.5 1.11 0.23h1.074l1.033-0.191 0.995-0.342 0.955-0.539 0.96-0.686 0.919-0.842 0.923-0.881 0.84-1.037 0.884-1.031 0.843-1.109 0.844-1.146 0.805-1.148 0.805-1.111-0.689 0.114-0.536 0.037-0.384 0.037-0.345 0.039-0.343 0.039h-0.346l-0.499 0.037-0.651 0.037-0.729 1.033-0.727 0.955-0.729 0.922-0.805 0.803-0.767 0.727-0.767 0.689-0.804 0.611-0.768 0.537-0.766 0.457-0.768 0.422-0.727 0.305-0.689 0.27-0.689 0.229-0.614 0.152-0.612 0.076-0.537 0.037z" stroke-width=".254"/>
<path d="m26.74 48.843l1.228 0.152 1.186 0.08 1.149-0.078 1.109-0.15 1.036-0.227 1.033-0.346 0.958-0.422 0.92-0.535 0.92-0.572 0.844-0.65 0.843-0.727 0.803-0.805 0.766-0.842 0.73-0.918 0.729-0.959 0.689-0.994-0.767 0.039-0.844 0.074-0.802 0.076-0.806 0.039-0.69 0.076-0.574 0.035-0.42 0.041-0.191 0.037-0.076 0.078-0.191 0.191-0.308 0.305-0.382 0.385-0.422 0.459-0.536 0.537-0.577 0.572-0.648 0.615-0.731 0.607-0.764 0.65-0.768 0.615-0.843 0.611-0.88 0.572-0.881 0.535-0.921 0.461-0.921 0.381z" stroke-width=".254"/>
<path d="m22.031 49.109l1.033 0.191 0.998 0.076 1.033-0.113 1.034-0.191 1.034-0.342 0.994-0.422 0.996-0.498 0.998-0.611 0.919-0.648 0.918-0.689 0.881-0.727 0.845-0.766 0.806-0.803 0.766-0.766 0.69-0.768 0.651-0.766h-0.461l-0.574 0.041-0.611 0.035h-0.651l-0.613 0.074-0.613 0.041-0.496 0.039-0.423 0.074v0.078l-0.154 0.189-0.381 0.346-0.537 0.42-0.653 0.537-0.764 0.613-0.845 0.652-0.882 0.648-0.92 0.686-0.918 0.691-0.881 0.65-0.846 0.574-0.766 0.535-0.689 0.422-0.537 0.305-0.382 0.191z" stroke-width=".254"/>
<path d="m16.822 49.066l0.612 0.613 0.806 0.266 0.996 0.002 1.11-0.266 1.227-0.461 1.262-0.646 1.341-0.768 1.305-0.84 1.302-0.92 1.227-0.916 1.147-0.879 0.999-0.844 0.881-0.688 0.65-0.574 0.423-0.381 0.192-0.154-0.498 0.039-0.538 0.035-0.574 0.037-0.572 0.041-0.614 0.072-0.614 0.039-0.611 0.041-0.652 0.037-0.688 0.42-0.688 0.422-0.693 0.455-0.649 0.426-0.689 0.455-0.653 0.498-0.688 0.459-0.653 0.459-0.69 0.496-0.65 0.461-0.688 0.459-0.651 0.459-0.688 0.42-0.691 0.422-0.651 0.42-0.69 0.383z" stroke-width=".254"/>
<path d="m12.993 49.14l0.652 0.229 0.649 0.115 0.65 0.037 0.653-0.109 0.65-0.195 0.689-0.264 0.727-0.383 0.768-0.461 0.843-0.535 0.881-0.611 0.959-0.688 1.072-0.729 1.187-0.803 1.265-0.881 1.379-0.918 1.534-0.957-0.653 0.039-0.727 0.039h-0.65l-0.65 0.037-0.574 0.037-0.459 0.039-0.307 0.039-0.116 0.035-0.077 0.115-0.229 0.23-0.346 0.307-0.458 0.42-0.574 0.496-0.654 0.58-0.689 0.57-0.805 0.613-0.805 0.611-0.843 0.613-0.843 0.533-0.882 0.537-0.842 0.457-0.842 0.383-0.805 0.268-0.729 0.154z" stroke-width=".254"/>
<path d="m10.198 48.716l0.879 0.344 0.958 0.152 0.998-0.072 1.033-0.268 1.072-0.383 1.033-0.498 1.074-0.607 0.996-0.691 0.958-0.688 0.92-0.729 0.843-0.688 0.728-0.691 0.653-0.572 0.495-0.498 0.383-0.342 0.232-0.232-0.613 0.039-0.577 0.039-0.571 0.037-0.575 0.074-0.535 0.041-0.577 0.037-0.61 0.074-0.613 0.039-0.459 0.42-0.501 0.42-0.458 0.422-0.499 0.459-0.498 0.498-0.497 0.459-0.536 0.459-0.538 0.459-0.536 0.422-0.534 0.422-0.577 0.381-0.534 0.342-0.614 0.309-0.574 0.266-0.613 0.193-0.613 0.152z" stroke-width=".254"/>
<path d="m6.831 47.642l0.765 0.535 0.763 0.346 0.767 0.154 0.767 0.039 0.768-0.152 0.766-0.232 0.766-0.342 0.765-0.459 0.729-0.498 0.766-0.611 0.729-0.613 0.729-0.65 0.727-0.648 0.69-0.689 0.689-0.65 0.69-0.615-0.422 0.041-0.46 0.076-0.497 0.037-0.535 0.039-0.575 0.074-0.612 0.039-0.652 0.074-0.612 0.037-0.192 0.461-0.267 0.459-0.271 0.422-0.346 0.422-0.381 0.383-0.424 0.383-0.42 0.381-0.496 0.307-0.5 0.307-0.537 0.268-0.573 0.268-0.576 0.191-0.612 0.154-0.61 0.15-0.657 0.073-0.649 0.039z" stroke-width=".254"/>
<path d="m3.803 47.066l0.652 0.266 0.69 0.193 0.726 0.115 0.806 0.002 0.767-0.039 0.842-0.115 0.805-0.229 0.803-0.229 0.768-0.344 0.729-0.383 0.65-0.422 0.614-0.494 0.536-0.539 0.46-0.572 0.345-0.65 0.23-0.652-0.46 0.039-0.46 0.037-0.497 0.076-0.5 0.039-0.495 0.037-0.537 0.037-0.574 0.039-0.652 0.037-0.271 0.384-0.307 0.385-0.306 0.344-0.306 0.307-0.307 0.305-0.348 0.229-0.343 0.27-0.347 0.229-0.381 0.191-0.422 0.191-0.421 0.189-0.459 0.154-0.462 0.152-0.495 0.152-0.537 0.115-0.539 0.154z" stroke-width=".254"/>
<path d="m2.233 46.529l0.23 0.229 0.347 0.152 0.42 0.078h0.46l0.536-0.037 0.574-0.114 0.613-0.193 0.612-0.189 0.613-0.27 0.614-0.307 0.612-0.342 0.537-0.385 0.537-0.42 0.458-0.459 0.345-0.459 0.307-0.498-0.343 0.041-0.308 0.037-0.383 0.037-0.344 0.038-0.344 0.039-0.306 0.037h-0.537v0.152l-0.343 0.305-0.576 0.422-0.767 0.498-0.917 0.496-0.922 0.5-0.919 0.381-0.806 0.23z" stroke-width=".254"/>
<path d="m1.124 45.455l0.078 0.535 0.192 0.344 0.305 0.156 0.42 0.076 0.499-0.076 0.574-0.191 0.573-0.229 0.614-0.307 0.613-0.346 0.574-0.381 0.575-0.381 0.461-0.346 0.42-0.307 0.307-0.23 0.191-0.152 0.038-0.076-2.986 0.342-0.229 0.152-0.384 0.192-0.458 0.23-0.5 0.229-0.535 0.27-0.497 0.189-0.461 0.191-0.384 0.115z" stroke-width=".254"/>
<path d="m4.573 43.886l-0.651 0.039-0.574 0.039-0.536 0.036-0.498 0.037-0.46 0.041-0.497 0.035-0.498 0.078-0.577 0.113 0.117 0.729 0.343 0.346h0.537l0.689-0.189 0.689-0.348 0.729-0.381 0.651-0.346 0.536-0.229z" stroke-width=".254"/>
<path d="m4.459 43.505l-0.653 0.113-0.573 0.076-0.497 0.113-0.5 0.076-0.458 0.113-0.459 0.115-0.538 0.119-0.574 0.152-0.038-0.844 0.345-0.535 0.537-0.193 0.727-0.033 0.766 0.15 0.766 0.193 0.651 0.23 0.499 0.154z" stroke-width=".254"/>
<path d="m44.298 27.949l1.684-0.651 1.611-0.419 1.491-0.113 1.417 0.076 1.379 0.309 1.262 0.459 1.227 0.652 1.187 0.729 1.149 0.845 1.11 0.919 1.106 0.959 1.074 0.996 1.071 0.957 1.07 0.921 1.073 0.882 1.109 0.807-0.384 0.073-0.421 0.038-0.421 0.039-0.383 0.076-0.423 0.039-0.421 0.038-0.459 0.036-0.421 0.039-0.422 0.035-0.461 0.041-0.458 0.076-0.422 0.037-0.461 0.04-0.457 0.074-0.498 0.037-0.461 0.077-0.382-0.534-0.495-0.653-0.576-0.766-0.688-0.768-0.727-0.843-0.805-0.843-0.879-0.844-0.881-0.806-0.959-0.766-0.953-0.688-0.957-0.615-0.997-0.497-0.957-0.385-0.958-0.23-0.956-0.039-0.88 0.152z" stroke-width=".254"/>
<path d="m41.423 28.597l0.96-0.345 0.92-0.227 0.878-0.152 0.923-0.077 0.878 0.077 0.919 0.192 0.88 0.268 0.919 0.423 0.956 0.537 0.959 0.691 0.995 0.803 1.033 0.96 1.108 1.11 1.11 1.266 1.186 1.418 1.264 1.57-0.69 0.039-0.611 0.072-0.576 0.039-0.534 0.076-0.537 0.076-0.573 0.076-0.653 0.113-0.765 0.117-0.689-0.574-0.65-0.613-0.689-0.653-0.612-0.653-0.649-0.649-0.649-0.65-0.613-0.653-0.651-0.651-0.651-0.612-0.688-0.574-0.651-0.576-0.688-0.574-0.727-0.498-0.767-0.423-0.766-0.421-0.805-0.347z" stroke-width=".254"/>
<path d="m38.207 29.438l0.727-0.611 0.808-0.307 0.88-0.074 0.879 0.191 0.958 0.383 0.956 0.538 0.995 0.688 0.996 0.805 0.996 0.881 0.993 0.921 0.956 0.921 0.92 0.958 0.841 0.88 0.84 0.805 0.729 0.691 0.69 0.574-4.176 0.496-0.536-0.613-0.536-0.615-0.498-0.613-0.533-0.611-0.537-0.613-0.534-0.651-0.573-0.614-0.535-0.576-0.613-0.574-0.612-0.573-0.652-0.538-0.688-0.498-0.728-0.497-0.766-0.423-0.804-0.383-0.843-0.346z" stroke-width=".254"/>
<path d="m31.926 32.113l1.148-1.111 1.111-0.802 1.073-0.534 1.072-0.307 1.072-0.037 1.034 0.154 1.033 0.385 0.996 0.498 0.994 0.689 0.955 0.804 0.996 0.921 0.919 0.996 0.957 1.035 0.917 1.111 0.918 1.111 0.919 1.11-0.729 0.04-0.611 0.035-0.498 0.039-0.461 0.076-0.458 0.076-0.499 0.075-0.571 0.078-0.692 0.112-0.803-1.034-0.766-0.919-0.803-0.844-0.766-0.728-0.802-0.612-0.766-0.538-0.728-0.461-0.768-0.382-0.728-0.309-0.688-0.229-0.728-0.192-0.689-0.152-0.648-0.08-0.653-0.074h-0.649l-0.612-0.002z" stroke-width=".254"/>
<path d="m27.442 33.145l1.267-0.461 1.187-0.344 1.187-0.189 1.109-0.077 1.111 0.001 1.071 0.155 1.035 0.231 0.996 0.347 0.995 0.419 0.919 0.537 0.957 0.613 0.878 0.689 0.882 0.768 0.84 0.842 0.806 0.922 0.803 0.996-0.803 0.115-0.919 0.111-0.921 0.115-0.921 0.115-0.842 0.113-0.649 0.078-0.499 0.037-0.191-0.002-0.075-0.075-0.192-0.153-0.269-0.268-0.343-0.346-0.423-0.42-0.495-0.424-0.575-0.496-0.65-0.538-0.728-0.499-0.765-0.536-0.844-0.5-0.918-0.495-0.92-0.424-0.993-0.383-1.034-0.348-1.073-0.229z" stroke-width=".254"/>
<path d="m21.775 33.828l1.034-0.418 1.035-0.307 1.108-0.115 1.073 0.001 1.111 0.118 1.108 0.229 1.072 0.346 1.111 0.422 1.033 0.498 1.033 0.537 0.995 0.651 0.994 0.651 0.882 0.693 0.881 0.727 0.802 0.728 0.726 0.729-0.495 0.037-0.612 0.076-0.689 0.075-0.728 0.077-0.729 0.075-0.652 0.076-0.573 0.037h-0.422l-0.001-0.077-0.191-0.191-0.38-0.268-0.574-0.385-0.689-0.42-0.805-0.5-0.919-0.537-0.956-0.533-0.955-0.54-0.996-0.538-0.998-0.496-0.916-0.457-0.846-0.387-0.762-0.307-0.616-0.193-0.495-0.115z" stroke-width=".254"/>
<path d="m16.413 34.936l0.537-0.842 0.805-0.498 0.996-0.188h1.147l1.264 0.268 1.379 0.422 1.455 0.576 1.415 0.651 1.455 0.729 1.339 0.766 1.265 0.73 1.149 0.727 0.954 0.615 0.729 0.459 0.496 0.342 0.23 0.117-0.537 0.116-0.61 0.077-0.653 0.073-0.689 0.038-0.727 0.078-0.729 0.074-0.688 0.115-0.689 0.115-0.729-0.345-0.688-0.348-0.729-0.381-0.688-0.385-0.69-0.346-0.688-0.383-0.728-0.384-0.688-0.382-0.689-0.35-0.688-0.382-0.729-0.343-0.688-0.307-0.689-0.348-0.727-0.305-0.727-0.311-0.729-0.266z" stroke-width=".254"/>
<path d="m9.558 36.768l0.844-0.611 0.956-0.346 0.996-0.149 1.07 0.001 1.113 0.189 1.148 0.348 1.11 0.421 1.108 0.5 1.035 0.574 1.032 0.575 0.919 0.614 0.804 0.536 0.727 0.499 0.574 0.459 0.42 0.307 0.229 0.193-0.612 0.074-0.574 0.076-0.495 0.076-0.501 0.037-0.536 0.037-0.496 0.076-0.576 0.076-0.61 0.074-0.537-0.342-0.536-0.348-0.574-0.419-0.574-0.383-0.611-0.422-0.613-0.421-0.612-0.423-0.612-0.383-0.614-0.384-0.647-0.308-0.652-0.305-0.613-0.232-0.648-0.189-0.615-0.117h-0.615l-0.612 0.037z" stroke-width=".254"/>
<path d="m12.084 35.661l0.653-0.423 0.688-0.305 0.652-0.154 0.688-0.074 0.689 0.037 0.728 0.152 0.807 0.27 0.838 0.308 0.921 0.423 0.959 0.459 1.07 0.576 1.147 0.614 1.265 0.65 1.378 0.692 1.49 0.765 1.648 0.768-0.613 0.039-0.689 0.074-0.688 0.078-0.691 0.111-0.614 0.079-0.457 0.078-0.346 0.035-0.153-0.035-0.075-0.078-0.27-0.191-0.345-0.308-0.459-0.344-0.573-0.422-0.689-0.459-0.729-0.5-0.803-0.499-0.879-0.498-0.882-0.497-0.955-0.425-0.957-0.384-0.958-0.303-0.957-0.196-0.92-0.111-0.919-0.001z" stroke-width=".254"/>
<path d="m6.491 38.719l0.691-0.766 0.726-0.574 0.729-0.382 0.766-0.229 0.767-0.037 0.804 0.076 0.844 0.192 0.804 0.271 0.84 0.422 0.805 0.42 0.842 0.536 0.843 0.539 0.843 0.536 0.803 0.574 0.805 0.578 0.803 0.496-0.459 0.076-0.498 0.039-0.574 0.115-0.613 0.072-0.649 0.08-0.69 0.072-0.65 0.078-0.653 0.076-0.229-0.498-0.269-0.422-0.305-0.422-0.384-0.382-0.383-0.344-0.419-0.27-0.5-0.271-0.497-0.229-0.536-0.191-0.572-0.154-0.576-0.114-0.612-0.079-0.65-0.037-0.652 0.001-0.65 0.073-0.689 0.078z" stroke-width=".254"/>
<path d="m1.778 41.242l0.193-0.307 0.306-0.268 0.422-0.227 0.459-0.155 0.536-0.114 0.612-0.036 0.613 0.001 0.689 0.037 0.65 0.114 0.689 0.155 0.652 0.229 0.61 0.27 0.576 0.307 0.534 0.383 0.422 0.422 0.381 0.461-0.343 0.076-0.419 0.076-0.42 0.076-0.423 0.074-0.382 0.037-0.308 0.041h-0.305l-0.153-0.078-0.381-0.23-0.652-0.307-0.766-0.342-0.881-0.309-0.995-0.27-0.957-0.154-0.959 0.037z" stroke-width=".254"/>
<path d="m0.858 42.81l-0.036-0.609 0.152-0.461 0.271-0.307 0.42-0.191 0.497-0.078 0.575 0.041 0.613 0.076 0.688 0.154 0.65 0.23 0.65 0.23 0.613 0.23 0.535 0.23 0.46 0.23 0.383 0.154 0.191 0.152 0.078 0.037-3.065 0.533-0.27-0.113-0.42-0.117-0.459-0.152-0.534-0.152-0.536-0.115-0.535-0.074-0.499-0.002-0.422 0.074z" stroke-width=".254"/>
<path d="m3.389 40.248l0.612-0.498 0.651-0.383 0.729-0.342 0.805-0.231 0.806-0.153 0.803-0.11 0.844 0.001 0.841 0.072 0.804 0.156 0.804 0.27 0.729 0.307 0.689 0.383 0.649 0.461 0.536 0.535 0.421 0.613 0.344 0.689-0.499 0.039-0.457 0.078-0.5 0.035-0.536 0.076-0.535 0.078-0.574 0.037-0.612 0.115-0.65 0.072-0.231-0.34-0.271-0.308-0.307-0.268-0.343-0.27-0.383-0.23-0.421-0.23-0.422-0.192-0.459-0.152-0.459-0.154-0.497-0.115-0.46-0.076-0.499-0.04-0.497-0.037-0.496-0.001-0.499 0.038-0.46 0.075z" stroke-width=".254"/>
<path d="m139.73 21.932l0.077 0.117 0.192 0.307 0.267 0.497 0.344 0.613 0.386 0.727 0.382 0.806 0.346 0.92 0.303 0.918 0.228 0.959 0.079 0.92-0.041 0.918-0.192 0.842-0.422 0.768-0.651 0.687-0.919 0.535-1.189 0.384 0.193-0.578 0.117-0.611 0.113-0.611 0.076-0.689 0.039-0.689v-0.726l-0.037-0.69-0.037-0.729-0.076-0.729-0.074-0.725-0.116-0.69-0.152-0.651-0.113-0.651-0.154-0.575-0.188-0.574-0.155-0.498 0.191-0.075 0.154-0.04 0.19-0.076 0.156-0.036 0.153-0.077 0.15-0.039 0.191-0.078 0.19-0.076z" stroke-width=".254"/>
<path d="m138.43 22.468l0.534 2.108 0.382 1.914 0.189 1.646 0.037 1.455-0.077 1.264-0.23 1.072-0.307 0.92-0.347 0.764-0.46 0.613-0.497 0.496-0.498 0.347-0.495 0.267-0.54 0.191-0.459 0.076-0.42 0.037h-0.384l0.229-0.613 0.229-0.612 0.192-0.688 0.154-0.689 0.152-0.767 0.118-0.764 0.116-0.767 0.075-0.803 0.041-0.806 0.001-0.843-0.041-0.804-0.073-0.843-0.114-0.804-0.155-0.843-0.188-0.766-0.229-0.805 0.457-0.154 0.463-0.152 0.422-0.152 0.418-0.115 0.348-0.113 0.381-0.115 0.306-0.076 0.27-0.077z" stroke-width=".254"/>
<path d="m135.32 23.424l0.231 0.765 0.227 0.959 0.155 1.073 0.072 1.186 0.041 1.303-0.002 1.301-0.116 1.301-0.192 1.267-0.271 1.187-0.345 1.109-0.499 0.957-0.572 0.766-0.731 0.574-0.84 0.304-0.96 0.04-1.108-0.307 0.422-0.691 0.421-0.727 0.347-0.766 0.307-0.727 0.229-0.803 0.231-0.768 0.152-0.805 0.154-0.805 0.077-0.804 0.038-0.841v-0.805l-0.073-0.842-0.076-0.842-0.152-0.806-0.152-0.845-0.229-0.803 0.383-0.152 0.458-0.152 0.461-0.153 0.46-0.153 0.46-0.151 0.382-0.153 0.346-0.117 0.267-0.074z" stroke-width=".254"/>
<path d="m125.59 39.307l1.036 0.08 0.997-0.154 0.879-0.381 0.805-0.535 0.766-0.73 0.652-0.879 0.536-0.994 0.499-1.109 0.384-1.188 0.309-1.266 0.192-1.3 0.078-1.302 0.001-1.301-0.114-1.303-0.229-1.265-0.343-1.188-0.422 0.152-0.425 0.154-0.456 0.114-0.463 0.152-0.458 0.154-0.497 0.153-0.46 0.152-0.497 0.152v0.804l-0.001 0.879-0.04 0.999-0.039 1.033-0.039 1.033-0.038 1.072-0.116 1.11-0.113 1.032-0.156 1.035-0.152 0.957-0.233 0.919-0.268 0.806-0.308 0.687-0.384 0.577-0.421 0.419-0.461 0.267z" stroke-width=".254"/>
<path d="m128.32 25.715l-0.384 0.153-0.383 0.114-0.343 0.115-0.386 0.077-0.382 0.114-0.347 0.113-0.384 0.116-0.38 0.153-0.077 0.766-0.041 0.84-0.039 0.92-0.038 0.958-0.001 0.958-0.001 1.031-0.04 1.037-0.039 0.994-0.076 0.997-0.115 0.994-0.193 0.919-0.191 0.844-0.305 0.802-0.346 0.727-0.422 0.616-0.536 0.496 1.108-0.267 0.919-0.383 0.767-0.533 0.651-0.614 0.537-0.729 0.423-0.839 0.306-0.919 0.232-0.959 0.156-1.072 0.112-1.11 0.039-1.15 0.042-1.225 0.037-1.225 0.039-1.264 0.001-1.264 0.078-1.303z" stroke-width=".254"/>
<path d="m118.16 42.058l1.531-0.074 1.304-0.305 1.07-0.496 0.882-0.652 0.689-0.841 0.502-0.958 0.419-1.071 0.27-1.188 0.154-1.226 0.114-1.261 0.041-1.305 0.001-1.262 0.001-1.305 0.001-1.223 0.076-1.15 0.078-1.071-0.421 0.114-0.383 0.113-0.343 0.117-0.387 0.113-0.382 0.113-0.343 0.115-0.384 0.077-0.423 0.114 0.039 0.113 0.075 0.269 0.078 0.423 0.114 0.537 0.074 0.688 0.078 0.768 0.039 0.881-0.04 0.996-0.114 1.035-0.195 1.145-0.347 1.189-0.42 1.225-0.614 1.265-0.766 1.339-0.921 1.3-1.15 1.338z" stroke-width=".254"/>
<path d="m112.94 43.703l1.035 0.191 1.035-0.074 0.995-0.346 0.996-0.537 0.956-0.725 0.92-0.881 0.844-1.07 0.769-1.188 0.649-1.265 0.576-1.378 0.462-1.456 0.309-1.489 0.192-1.496 0.041-1.531-0.152-1.454-0.308-1.456-3.638 1.146 0.037 0.613 0.037 0.729-0.038 0.801-0.08 0.92-0.112 0.958-0.192 1.034-0.192 1.072-0.308 1.109-0.347 1.109-0.421 1.073-0.461 1.071-0.575 1.035-0.612 0.996-0.729 0.918-0.805 0.842-0.883 0.727z" stroke-width=".254"/>
<path d="m118.7 28.619l-0.573 0.189-0.73 0.192-0.807 0.268-0.84 0.229-0.806 0.27-0.804 0.227-0.689 0.191-0.537 0.115-0.076 0.881-0.042 0.955-0.075 0.959-0.038 0.995-0.117 0.995-0.077 1.037-0.115 0.994-0.153 0.996-0.19 0.956-0.232 0.921-0.309 0.916-0.344 0.842-0.422 0.807-0.498 0.688-0.536 0.65-0.65 0.576 0.766 0.115 0.803-0.039 0.804-0.189 0.805-0.344 0.804-0.5 0.807-0.611 0.768-0.764 0.766-0.957 0.689-1.035 0.611-1.227 0.578-1.339 0.495-1.528 0.388-1.65 0.307-1.758 0.194-1.955 0.077-2.066z" stroke-width=".254"/>
<path d="m104.02 45.226l1.725 0.08 1.455-0.154 1.265-0.418 0.998-0.652 0.841-0.803 0.691-0.957 0.497-1.072 0.386-1.224 0.308-1.225 0.19-1.343 0.116-1.3 0.117-1.302 0.038-1.303 0.078-1.188 0.075-1.11 0.117-0.995-0.535 0.114-0.463 0.115-0.419 0.153-0.418 0.112-0.463 0.117-0.422 0.111-0.496 0.154-0.576 0.151-0.116 1.038-0.112 0.992-0.116 0.996-0.156 0.955-0.116 0.961-0.153 0.918-0.189 0.879-0.194 0.881-0.269 0.844-0.308 0.841-0.382 0.805-0.422 0.805-0.536 0.801-0.576 0.768-0.69 0.729-0.77 0.727z" stroke-width=".254"/>
<path d="m99.389 46.066l1.532 0.078 1.34-0.193 1.188-0.418 1.036-0.65 0.88-0.805 0.766-0.957 0.615-1.107 0.537-1.188 0.458-1.226 0.347-1.3 0.269-1.266 0.194-1.299 0.19-1.226 0.116-1.15 0.116-1.073 0.079-0.919-0.539 0.117-0.459 0.112-0.42 0.115-0.423 0.077-0.38 0.113-0.425 0.074-0.495 0.152-0.576 0.115-0.192 1.496-0.229 1.417-0.27 1.301-0.269 1.226-0.31 1.109-0.345 1.071-0.383 0.918-0.384 0.883-0.383 0.803-0.425 0.727-0.459 0.613-0.422 0.574-0.459 0.535-0.461 0.42-0.498 0.383-0.459 0.346z" stroke-width=".254"/>
<path d="m95.021 46.636l1.457 0.078 1.302-0.189 1.151-0.424 1.071-0.611 0.881-0.801 0.805-0.92 0.69-1.072 0.614-1.145 0.535-1.189 0.422-1.263 0.347-1.264 0.308-1.262 0.271-1.188 0.192-1.149 0.152-1.031 0.155-0.922-0.459 0.076-0.46 0.116-0.462 0.114-0.459 0.115-0.462 0.115-0.458 0.112-0.46 0.114-0.497 0.117-0.038 0.725-0.116 0.805-0.153 0.843-0.269 0.918-0.27 0.995-0.382 0.957-0.385 1.033-0.422 0.998-0.499 0.996-0.537 0.957-0.534 0.879-0.577 0.84-0.574 0.807-0.614 0.689-0.649 0.572-0.617 0.459z" stroke-width=".254"/>
<path d="m90.237 47.513l1.49 0.193 1.38-0.191 1.264-0.496 1.15-0.766 1.073-0.955 0.921-1.148 0.84-1.301 0.77-1.34 0.613-1.416 0.537-1.381 0.46-1.302 0.384-1.262 0.23-1.074 0.192-0.88 0.114-0.65 0.001-0.381-0.573 0.111-0.537 0.115-0.535 0.152-0.536 0.115-0.536 0.152-0.5 0.113-0.497 0.115-0.499 0.078-0.191 0.651-0.19 0.765-0.229 0.879-0.271 0.996-0.308 1.035-0.343 1.071-0.384 1.069-0.424 1.115-0.461 1.07-0.497 0.994-0.537 0.959-0.574 0.842-0.653 0.725-0.65 0.574-0.728 0.422-0.765 0.229z" stroke-width=".254"/>
<path d="m86.752 47.32l1.377 0.307 1.223 0.002 1.113-0.268 1.034-0.535 0.882-0.729 0.805-0.881 0.727-1.068 0.652-1.15 0.539-1.225 0.498-1.262 0.384-1.264 0.385-1.227 0.307-1.147 0.231-1.035 0.23-0.918 0.189-0.727-0.419 0.076-0.423 0.038-0.38 0.075-0.347 0.076-0.384 0.076-0.346 0.078-0.305 0.074-0.345 0.041-0.118 0.879-0.189 0.919-0.232 0.917-0.228 0.883-0.309 0.918-0.347 0.881-0.382 0.843-0.461 0.842-0.46 0.842-0.537 0.805-0.615 0.764-0.61 0.689-0.729 0.689-0.727 0.611-0.806 0.574-0.879 0.535z" stroke-width=".254"/>
<path d="m82.385 48.005l1.147 0.002 1.112-0.115 1.07-0.268 1.037-0.383 0.956-0.533 0.959-0.65 0.842-0.764 0.841-0.842 0.73-0.959 0.69-1.033 0.614-1.15 0.573-1.185 0.461-1.264 0.385-1.34 0.347-1.379 0.23-1.414-0.498 0.113-0.499 0.076-0.536 0.115-0.496 0.074-0.497 0.078-0.459 0.112-0.5 0.077-0.459 0.115-0.231 0.805-0.191 0.842-0.231 0.805-0.194 0.803-0.23 0.804-0.228 0.803-0.307 0.766-0.346 0.805-0.42 0.766-0.463 0.803-0.576 0.766-0.688 0.766-0.768 0.729-0.918 0.766-1.073 0.766-1.188 0.725z" stroke-width=".254"/>
<path d="m76.18 48.728l1.495 0.117 1.454-0.076 1.34-0.229 1.266-0.383 1.187-0.496 1.112-0.65 1.033-0.768 0.918-0.916 0.844-0.955 0.767-1.074 0.693-1.148 0.573-1.221 0.496-1.304 0.425-1.34 0.307-1.377 0.233-1.381-0.423 0.076-0.46 0.117-0.456 0.074-0.461 0.075-0.459 0.078-0.5 0.114-0.497 0.076-0.5 0.115-0.152 0.955-0.23 0.957-0.31 0.96-0.383 0.917-0.457 0.917-0.502 0.918-0.574 0.883-0.648 0.842-0.691 0.844-0.767 0.762-0.808 0.727-0.879 0.689-0.921 0.611-0.995 0.576-0.997 0.496-1.072 0.42z" stroke-width=".254"/>
<path d="m72.772 49.107l1.264-0.074 1.226-0.189 1.228-0.307 1.186-0.457 1.112-0.537 1.109-0.648 1.034-0.729 0.958-0.842 0.881-0.916 0.843-0.994 0.73-1.076 0.65-1.109 0.536-1.183 0.46-1.226 0.348-1.267 0.229-1.299-0.419 0.074-0.385 0.037-0.346 0.039-0.343 0.039-0.346 0.037-0.382 0.077-0.458 0.075-0.539 0.075-0.537 1.112-0.459 1.031-0.46 0.997-0.422 0.918-0.46 0.881-0.424 0.805-0.461 0.764-0.498 0.727-0.537 0.729-0.613 0.65-0.688 0.689-0.765 0.611-0.884 0.65-0.996 0.611-1.108 0.613-1.265 0.609z" stroke-width=".254"/>
<path d="m66.645 49.488l1.877 0.076 1.763-0.072 1.57-0.268 1.455-0.422 1.34-0.572 1.187-0.691 1.113-0.801 0.993-0.92 0.921-0.992 0.844-1.072 0.729-1.109 0.688-1.189 0.652-1.184 0.577-1.187 0.538-1.227 0.496-1.187-0.343 0.036-0.461 0.078-0.573 0.076-0.575 0.076-0.613 0.115-0.537 0.076-0.456 0.076-0.347 0.035-0.46 1.074-0.499 1.074-0.577 0.994-0.573 0.955-0.652 0.881-0.688 0.879-0.729 0.805-0.804 0.807-0.804 0.727-0.885 0.688-0.917 0.688-0.96 0.613-0.995 0.572-1.072 0.535-1.072 0.496-1.149 0.461z" stroke-width=".254"/>
<path d="m63.006 50.019l1.034-0.037 1.071-0.152 1.15-0.268 1.186-0.42 1.188-0.494 1.189-0.613 1.188-0.727 1.187-0.803 1.149-0.918 1.111-0.957 1.035-1.07 0.999-1.15 0.879-1.188 0.804-1.261 0.691-1.34 0.576-1.38-0.575 0.079-0.575 0.074-0.611 0.037-0.612 0.077-0.536 0.037-0.461 0.077-0.382 0.076-0.192 0.115-0.69 0.535-0.689 0.575-0.729 0.688-0.729 0.688-0.727 0.765-0.767 0.803-0.767 0.844-0.768 0.844-0.766 0.879-0.804 0.842-0.805 0.842-0.845 0.84-0.842 0.844-0.845 0.762-0.842 0.768-0.882 0.688z" stroke-width=".254"/>
<path d="m57.415 50.015l0.997 0.654 1.032 0.268 1.034 0.002 1.073-0.268 1.071-0.537 1.073-0.729 1.111-0.916 1.11-1.033 1.112-1.188 1.148-1.225 1.189-1.301 1.188-1.299 1.188-1.264 1.226-1.263 1.228-1.148 1.226-1.031h-0.425l-0.494 0.074-0.576 0.038-0.573 0.116-0.614 0.076-0.612 0.113-0.572 0.115-0.5 0.075-0.956 0.88-0.957 0.88-0.923 0.918-0.919 0.92-0.881 0.916-0.883 0.92-0.88 0.92-0.845 0.84-0.844 0.84-0.842 0.768-0.805 0.688-0.804 0.613-0.805 0.535-0.767 0.459-0.766 0.344-0.767 0.229z" stroke-width=".254"/>
<path d="m53.086 50.511l1.572 0.002 1.492-0.152 1.342-0.385 1.304-0.494 1.187-0.613 1.109-0.766 1.075-0.84 0.995-0.92 0.997-0.994 0.956-1.033 0.921-1.035 0.959-1.07 0.959-1.07 0.994-1.034 1.035-0.957 1.072-0.918-0.382 0.04-0.458 0.037-0.577 0.074-0.572 0.041-0.577 0.073-0.459 0.038-0.382 0.041-0.229-0.001-0.651 0.151-0.651 0.306-0.649 0.423-0.692 0.573-0.689 0.686-0.729 0.805-0.766 0.844-0.769 0.916-0.88 0.957-0.883 0.955-0.997 0.996-1.032 0.959-1.111 0.955-1.188 0.881-1.264 0.801-1.381 0.729z" stroke-width=".254"/>
<path d="m138.31 18.982v-0.153l0.04-0.42 0.038-0.649 0.04-0.807 0.039-0.957-0.037-1.033-0.038-1.072-0.111-1.111-0.229-1.033-0.309-0.996-0.38-0.882-0.572-0.728-0.654-0.537-0.843-0.307-1.034-0.039-1.186 0.306 0.385 0.384 0.343 0.459 0.345 0.574 0.306 0.613 0.305 0.689 0.27 0.689 0.264 0.767 0.271 0.804 0.228 0.767 0.19 0.806 0.194 0.803 0.188 0.766 0.155 0.768 0.152 0.727 0.114 0.65 0.113 0.613 0.19-0.037 0.154-0.037 0.189-0.078 0.155-0.037 0.151-0.079 0.155-0.075 0.192-0.037 0.226-0.078z" stroke-width=".254"/>
<path d="m136.9 19.558l-0.497-2.489-0.535-2.108-0.535-1.801-0.532-1.492-0.539-1.188-0.534-0.958-0.533-0.689-0.499-0.497-0.536-0.347-0.458-0.153-0.502-0.039-0.42 0.078-0.419 0.152-0.382 0.191-0.348 0.229-0.306 0.23 0.536 0.497 0.533 0.573 0.462 0.538 0.494 0.611 0.424 0.615 0.422 0.648 0.382 0.652 0.344 0.691 0.344 0.727 0.306 0.766 0.307 0.768 0.268 0.805 0.227 0.842 0.23 0.842 0.227 0.882 0.194 0.919 0.457-0.077 0.345-0.036 0.232-0.077 0.153-0.077 0.151-0.037 0.156-0.076 0.153-0.039 0.229-0.075z" stroke-width=".254"/>
<path d="m134.98 20.283l-0.113-0.918-0.194-1.035-0.305-1.15-0.379-1.226-0.5-1.264-0.571-1.227-0.611-1.187-0.688-1.111-0.729-0.996-0.765-0.843-0.803-0.65-0.842-0.425-0.9-0.151-0.882 0.152-0.842 0.499-0.882 0.878 0.688 0.498 0.65 0.576 0.613 0.574 0.574 0.576 0.574 0.611 0.496 0.689 0.459 0.691 0.42 0.688 0.423 0.769 0.343 0.767 0.345 0.805 0.267 0.842 0.267 0.879 0.193 0.92 0.189 0.959 0.155 0.994 0.416-0.114 0.461-0.152 0.499-0.153 0.498-0.191 0.461-0.189 0.421-0.154 0.344-0.151 0.23-0.077z" stroke-width=".254"/>
<path d="m120.06 10.239l0.919-0.612 0.92-0.344 0.957-0.115 0.919 0.115 0.958 0.307 0.919 0.5 0.882 0.689 0.843 0.805 0.762 0.919 0.766 1.073 0.65 1.188 0.572 1.226 0.496 1.305 0.384 1.376 0.306 1.38 0.151 1.416-0.47 0.114-0.459 0.116-0.46 0.15-0.46 0.154-0.497 0.191-0.499 0.113-0.457 0.154-0.498 0.075-0.346-0.88-0.305-0.959-0.383-0.957-0.348-0.957-0.379-0.996-0.419-0.998-0.423-0.956-0.421-0.918-0.456-0.884-0.499-0.805-0.533-0.766-0.539-0.651-0.609-0.575-0.615-0.459-0.648-0.346-0.69-0.19z" stroke-width=".254"/>
<path d="m115.84 11.383l1.455-0.648 1.302-0.344 1.149-0.038 1.034 0.193 0.919 0.421 0.806 0.65 0.724 0.807 0.65 0.957 0.575 1.072 0.495 1.188 0.5 1.229 0.457 1.225 0.457 1.264 0.421 1.264 0.459 1.188 0.497 1.111-0.421 0.037-0.384 0.115-0.383 0.113-0.385 0.152-0.381 0.118-0.384 0.151-0.421 0.114-0.422 0.074-0.038-0.151-0.038-0.383-0.114-0.498-0.114-0.689-0.189-0.803-0.27-0.92-0.306-0.996-0.42-1.034-0.494-1.034-0.574-1.035-0.728-1.035-0.803-0.958-0.96-0.918-1.07-0.767-1.228-0.691-1.375-0.5z" stroke-width=".254"/>
<path d="m110.41 12.185l0.882-0.651 0.997-0.42 1.069-0.153 1.072 0.04 1.149 0.229 1.148 0.461 1.108 0.615 1.111 0.768 1.07 0.956 0.997 1.075 0.878 1.225 0.805 1.342 0.687 1.416 0.537 1.533 0.342 1.57 0.19 1.687-3.945 1.029-0.228-0.649-0.307-0.77-0.306-0.803-0.382-0.881-0.461-0.92-0.457-0.956-0.537-0.961-0.573-0.956-0.652-0.957-0.725-0.92-0.766-0.842-0.803-0.808-0.878-0.728-0.959-0.613-0.996-0.537-1.07-0.421z" stroke-width=".254"/>
<path d="m120.54 25.02l-0.572 0.115-0.727 0.152-0.729 0.23-0.808 0.229-0.764 0.267-0.729 0.191-0.649 0.189-0.536 0.152-0.382-0.957-0.421-0.995-0.422-0.996-0.42-1.036-0.421-1.032-0.458-0.997-0.498-0.995-0.497-0.997-0.533-0.918-0.573-0.845-0.614-0.804-0.651-0.727-0.65-0.652-0.728-0.537-0.804-0.423-0.804-0.306 0.692-0.459 0.764-0.344 0.806-0.23 0.88-0.075 0.918 0.076 0.959 0.231 0.957 0.383 0.992 0.576 0.999 0.728 0.993 0.92 0.995 1.149 0.954 1.304 0.919 1.532 0.917 1.723 0.843 1.992 0.802 2.184z" stroke-width=".254"/>
<path d="m101.33 14.973l1.571-0.841 1.415-0.498 1.304-0.114 1.187 0.193 1.032 0.458 0.996 0.691 0.841 0.883 0.805 1.073 0.688 1.188 0.649 1.265 0.573 1.341 0.534 1.34 0.536 1.302 0.498 1.265 0.458 1.148 0.456 1.035-0.534 0.076-0.459 0.112-0.422 0.079-0.422 0.114-0.421 0.114-0.459 0.115-0.498 0.076-0.572 0.112-0.5-1.033-0.458-1.036-0.46-0.994-0.458-0.958-0.459-0.958-0.495-0.88-0.5-0.881-0.495-0.806-0.575-0.807-0.61-0.727-0.612-0.688-0.688-0.652-0.769-0.615-0.801-0.536-0.92-0.498-0.956-0.46z" stroke-width=".254"/>
<path d="m96.577 16.348l1.419-0.765 1.339-0.383 1.265-0.075 1.225 0.191 1.111 0.461 1.069 0.689 0.996 0.844 0.921 0.998 0.841 1.149 0.802 1.187 0.726 1.227 0.652 1.264 0.611 1.266 0.537 1.148 0.455 1.111 0.423 0.957-0.574 0.113-0.5 0.115-0.46 0.113-0.421 0.076-0.458 0.115-0.461 0.115-0.536 0.076-0.613 0.115-0.688-1.533-0.688-1.417-0.646-1.302-0.651-1.188-0.614-1.071-0.573-0.961-0.61-0.84-0.574-0.807-0.612-0.651-0.613-0.575-0.611-0.498-0.65-0.421-0.653-0.308-0.685-0.269-0.731-0.155-0.765-0.113z" stroke-width=".254"/>
<path d="m92.977 17.379l1.378-0.65 1.307-0.308 1.222 0.001 1.19 0.233 1.07 0.458 1.033 0.654 0.956 0.844 0.92 0.957 0.802 1.072 0.766 1.148 0.726 1.188 0.613 1.188 0.609 1.189 0.5 1.15 0.456 1.033 0.421 0.959-0.459 0.113-0.42 0.113-0.424 0.076-0.383 0.116-0.421 0.077-0.42 0.075-0.462 0.113-0.496 0.077-0.231-0.765-0.342-0.845-0.42-0.842-0.497-0.919-0.535-0.919-0.651-0.921-0.649-0.92-0.728-0.92-0.765-0.841-0.805-0.846-0.803-0.766-0.804-0.652-0.843-0.613-0.805-0.498-0.802-0.383-0.806-0.23z" stroke-width=".254"/>
<path d="m88.648 18.484l1.417-0.762 1.38-0.345 1.379 0.039 1.301 0.385 1.264 0.612 1.226 0.879 1.149 1.038 1.069 1.147 0.995 1.229 0.881 1.264 0.8 1.227 0.65 1.187 0.536 1.036 0.422 0.879 0.23 0.652 0.113 0.383-0.574 0.115-0.498 0.113-0.498 0.115-0.5 0.115-0.496 0.115-0.459 0.074-0.499 0.077-0.497 0.076-0.344-0.651-0.384-0.804-0.458-0.882-0.537-0.921-0.571-1.033-0.614-1.034-0.646-0.997-0.691-1.034-0.727-0.959-0.762-0.88-0.802-0.804-0.803-0.652-0.844-0.537-0.844-0.345-0.878-0.152-0.882 0.035z" stroke-width=".254"/>
<path d="m85.508 19.709l1.266-0.842 1.224-0.459 1.149-0.113 1.149 0.19 1.071 0.461 1.033 0.692 0.958 0.842 0.915 1.035 0.844 1.113 0.805 1.184 0.727 1.229 0.687 1.225 0.574 1.15 0.535 1.073 0.421 0.918 0.383 0.766-0.46 0.077-0.382 0.114-0.344 0.115-0.308 0.113-0.347 0.114-0.305 0.115-0.307 0.079-0.343 0.073-0.344-0.955-0.421-0.958-0.422-0.921-0.46-0.918-0.537-0.919-0.531-0.844-0.613-0.844-0.65-0.805-0.689-0.767-0.764-0.688-0.765-0.614-0.844-0.574-0.919-0.5-0.919-0.421-0.996-0.308-1.071-0.229z" stroke-width=".254"/>
<path d="m81.523 20.625l1.113-0.422 1.109-0.266 1.148-0.077 1.074 0.078 1.109 0.231 1.032 0.345 1.034 0.536 1.034 0.652 0.956 0.768 0.918 0.92 0.881 0.996 0.842 1.112 0.802 1.226 0.689 1.34 0.688 1.418 0.571 1.491-0.498 0.077-0.495 0.076-0.501 0.115-0.497 0.153-0.496 0.115-0.498 0.153-0.497 0.115-0.5 0.074-0.343-0.842-0.343-0.882-0.347-0.843-0.342-0.883-0.422-0.842-0.419-0.805-0.501-0.842-0.534-0.767-0.649-0.729-0.688-0.728-0.805-0.652-0.88-0.613-0.996-0.537-1.11-0.498-1.261-0.424-1.381-0.344z" stroke-width=".254"/>
<path d="m75.855 21.961l1.455-0.609 1.457-0.385 1.34-0.189 1.34-0.037 1.265 0.191 1.226 0.346 1.147 0.498 1.111 0.652 0.992 0.805 0.994 0.919 0.884 1.036 0.84 1.15 0.764 1.264 0.652 1.34 0.611 1.381 0.535 1.491-0.459 0.077-0.46 0.076-0.536 0.078-0.501 0.074-0.533 0.078-0.538 0.074-0.535 0.076-0.535 0.076-0.269-1.072-0.383-0.994-0.42-0.996-0.533-0.959-0.575-0.881-0.651-0.843-0.688-0.805-0.766-0.729-0.842-0.689-0.916-0.574-0.959-0.539-0.995-0.459-1.071-0.346-1.113-0.307-1.146-0.191-1.188-0.078z" stroke-width=".254"/>
<path d="m73.062 22.265l1.302-0.19 1.262-0.113 1.262 0.038 1.228 0.154 1.224 0.307 1.15 0.385 1.109 0.498 1.073 0.613 0.995 0.729 0.954 0.844 0.844 0.919 0.803 1.034 0.688 1.15 0.611 1.226 0.499 1.341 0.38 1.419-0.46 0.035-0.383 0.038-0.382 0.077-0.384 0.077-0.384 0.074-0.382 0.078-0.46 0.114-0.496 0.076-0.651-1.111-0.613-1.073-0.532-0.958-0.5-0.956-0.535-0.844-0.498-0.804-0.497-0.767-0.572-0.69-0.612-0.651-0.688-0.575-0.768-0.535-0.842-0.498-0.995-0.425-1.071-0.383-1.264-0.346-1.415-0.308z" stroke-width=".254"/>
<path d="m66.973 23.064l1.914-0.457 1.8-0.268 1.646-0.075 1.531 0.154 1.417 0.307 1.302 0.461 1.187 0.573 1.074 0.77 1.03 0.842 0.917 0.96 0.844 1.034 0.802 1.112 0.728 1.147 0.688 1.227 0.612 1.226 0.611 1.265-0.307 0.037-0.42 0.037-0.459 0.115-0.501 0.076-0.496 0.115-0.462 0.114-0.419 0.036-0.346 0.039-0.571-1.148-0.613-1.035-0.689-0.996-0.726-0.918-0.766-0.883-0.805-0.806-0.878-0.725-0.919-0.69-0.956-0.616-0.996-0.573-1.034-0.498-1.07-0.498-1.111-0.423-1.147-0.383-1.189-0.346-1.222-0.309z" stroke-width=".254"/>
<path d="m63.335 23.443l1.068-0.189 1.113-0.037 1.225 0.038 1.263 0.192 1.267 0.271 1.3 0.384 1.303 0.497 1.302 0.614 1.3 0.729 1.224 0.845 1.186 0.92 1.147 1.035 1.035 1.149 0.956 1.225 0.841 1.342 0.728 1.455-0.537 0.039-0.533 0.076-0.538 0.115-0.536 0.113-0.459 0.113-0.385 0.117-0.306 0.036-0.19-0.037-0.769-0.46-0.763-0.537-0.804-0.613-0.843-0.689-0.843-0.729-0.878-0.768-0.92-0.768-0.916-0.802-0.959-0.806-0.956-0.807-0.995-0.803-0.996-0.729-1.033-0.729-0.995-0.652-1.071-0.613-1.031-0.537z" stroke-width=".254"/>
<path d="m58.237 24.895l0.958-0.955 1.034-0.572 1.074-0.23 1.109 0.077 1.148 0.308 1.225 0.575 1.227 0.769 1.3 0.879 1.301 1.074 1.341 1.11 1.34 1.19 1.34 1.188 1.377 1.188 1.377 1.112 1.376 1.035 1.381 0.92-0.421 0.074-0.499 0.037-0.612 0.041-0.613 0.037-0.648 0.037h-1.227l-0.497-0.002-1.034-0.766-0.993-0.804-0.996-0.808-0.918-0.842-0.919-0.805-0.883-0.807-0.878-0.805-0.88-0.767-0.919-0.688-0.879-0.651-0.92-0.575-0.956-0.5-0.996-0.422-1.034-0.345-1.073-0.192-1.11-0.117z" stroke-width=".254"/>
<path d="m54.408 25.352l1.61-0.381 1.493-0.152 1.415 0.076 1.343 0.271 1.262 0.461 1.226 0.575 1.186 0.729 1.148 0.805 1.11 0.919 1.109 0.922 1.071 0.995 1.111 0.996 1.109 0.958 1.107 0.959 1.188 0.843 1.185 0.807-0.38 0.037-0.498 0.075-0.576 0.078-0.576 0.036-0.572 0.079-0.5 0.072-0.38 0.041-0.231 0.037-0.688-0.002-0.69-0.189-0.727-0.348-0.766-0.496-0.766-0.614-0.843-0.728-0.879-0.807-0.919-0.844-0.959-0.881-1.031-0.918-1.109-0.882-1.148-0.844-1.262-0.808-1.302-0.728-1.379-0.651-1.494-0.5z" stroke-width=".254"/>
<path d="m49.583 26.689l1.417-0.804 1.495-0.342h1.455l1.49 0.309 1.495 0.576 1.494 0.804 1.454 0.96 1.415 1.034 1.339 1.149 1.302 1.15 1.263 1.075 1.148 0.993 1.033 0.844 0.956 0.65 0.843 0.385 0.726 0.116-0.61 0.077-0.653 0.113-0.727 0.113-0.765 0.117-0.767 0.074-0.767 0.115-0.728 0.038-0.652 0.037-1.07-0.806-0.958-0.766-0.879-0.767-0.84-0.728-0.767-0.73-0.725-0.723-0.767-0.691-0.726-0.651-0.729-0.612-0.804-0.576-0.841-0.537-0.919-0.496-0.996-0.461-1.071-0.383-1.226-0.348-1.34-0.307z" stroke-width=".254"/>
<g stroke-width=".254">
<path d="m142.34 10.982l0.191-0.383 0.153-0.42 0.152-0.423 0.113-0.421 0.117-0.459 0.115-0.496 0.077-0.459 0.042-0.5 0.036-0.459 0.035-0.498 0.001-0.499-0.035-0.46-0.036-0.459-0.08-0.457-0.112-0.461-0.114-0.42 0.611 0.804 0.459 0.882 0.345 0.842 0.189 0.88 0.076 0.919v0.92l-0.116 0.918-0.194 0.92-0.228 0.918-0.31 0.883-0.343 0.879-0.343 0.88-0.385 0.843-0.347 0.842-0.346 0.765-0.343 0.767 0.074-0.152 0.037-0.269 0.042-0.266v-0.345l0.037-0.424v-0.881l0.001-0.496 0.038-0.499v-0.498l0.039-0.534 0.04-0.498 0.038-0.461 0.078-0.461 0.075-0.42 0.116-0.383z"/>
<path d="m154.01 26.885l-0.729-0.422-0.729-0.462-0.687-0.421-0.688-0.422-0.65-0.383-0.651-0.422-0.616-0.385-0.609-0.42-0.64-0.383-0.607-0.384-0.614-0.422-0.652-0.382-0.611-0.386-0.654-0.342-0.686-0.386-0.689-0.382 0.61 0.61 0.613 0.616 0.613 0.611 0.612 0.576 0.65 0.611 0.651 0.536 0.65 0.539 0.688 0.497 0.651 0.461 0.689 0.383 0.651 0.346 0.688 0.269 0.688 0.229 0.688 0.115 0.691 0.037 0.691-0.035z"/>
<path d="m148.32 11.561l-0.536 0.308-0.5 0.345-0.495 0.345-0.461 0.344-0.46 0.343-0.419 0.383-0.424 0.421-0.423 0.383-0.384 0.422-0.384 0.422-0.382 0.421-0.345 0.457-0.383 0.422-0.346 0.459-0.344 0.459-0.346 0.459 0.153-0.496 0.192-0.499 0.191-0.537 0.229-0.534 0.231-0.536 0.265-0.499 0.31-0.498 0.346-0.495 0.382-0.46 0.461-0.381 0.498-0.385 0.537-0.344 0.612-0.269 0.652-0.229 0.765-0.152 0.805-0.076z"/>
<path d="m142.61 6.961l-0.153 0.767-0.114 0.767-0.154 0.766-0.116 0.689-0.08 0.726-0.114 0.689-0.079 0.689-0.115 0.689-0.075 0.688-0.117 0.689-0.074 0.651-0.118 0.689-0.116 0.689-0.115 0.689-0.15 0.689-0.157 0.727-0.076-0.842-0.113-0.805-0.077-0.843-0.076-0.841-0.037-0.807-0.038-0.805 0.039-0.805 0.039-0.764 0.076-0.767 0.116-0.688 0.194-0.689 0.229-0.651 0.269-0.573 0.384-0.537 0.422-0.46 0.497-0.421z"/>
<path d="m146.71 5.703l0.692 0.648 0.416 0.729 0.189 0.766 0.04 0.805-0.153 0.804-0.307 0.843-0.424 0.844-0.498 0.841-0.575 0.804-0.611 0.805-0.653 0.764-0.65 0.689-0.614 0.689-0.534 0.572-0.463 0.539-0.383 0.418 0.077-1.147 0.154-0.995 0.191-0.844 0.307-0.764 0.306-0.65 0.386-0.574 0.382-0.535 0.424-0.501 0.383-0.496 0.424-0.495 0.382-0.538 0.307-0.613 0.307-0.688 0.23-0.766 0.194-0.919 0.075-1.032z"/>
<path d="m141.8 17.951v-0.805l-0.039-0.765-0.034-0.765-0.04-0.768-0.036-0.729-0.077-0.727-0.076-0.727-0.073-0.691-0.117-0.688-0.114-0.728-0.189-0.689-0.152-0.689-0.193-0.689-0.268-0.689-0.229-0.689-0.306-0.689 1.111 1.073 0.918 1.034 0.649 0.959 0.457 0.92 0.309 0.879 0.151 0.805 0.037 0.806-0.077 0.727-0.195 0.689-0.187 0.651-0.27 0.613-0.271 0.533-0.23 0.537-0.229 0.459-0.152 0.459-0.078 0.383z"/>
<path d="m153.02 20.603l-0.613 0.114-0.614 0.116-0.611 0.075-0.613 0.075-0.609 0.038-0.616 0.037h-1.188l-0.612-0.039h-0.574l-0.613-0.077-0.573-0.038-0.613-0.04-0.575-0.075-0.612-0.079-0.574-0.075 0.498 0.229 0.498 0.192 0.535 0.231 0.537 0.19 0.574 0.193 0.576 0.151 0.61 0.156 0.61 0.076 0.612 0.039h0.651l0.651-0.039 0.654-0.15 0.651-0.191 0.651-0.27 0.648-0.381 0.654-0.46z"/>
<path d="m149.46 23.702l0.461 0.078 0.419 0.075 0.461 0.115 0.457 0.115 0.463 0.194 0.456 0.151 0.421 0.191 0.46 0.23 0.421 0.23 0.421 0.267 0.383 0.271 0.386 0.268 0.343 0.307 0.308 0.307 0.304 0.307 0.27 0.344-0.269-0.917-0.422-0.808-0.494-0.688-0.615-0.651-0.688-0.536-0.768-0.5-0.84-0.421-0.882-0.347-0.919-0.306-0.919-0.307-0.955-0.231-0.958-0.23-0.957-0.193-0.919-0.189-0.843-0.154-0.842-0.192 0.42 0.153 0.574 0.306 0.69 0.463 0.841 0.497 0.843 0.535 0.879 0.499 0.842 0.46 0.768 0.308z"/>
<path d="m151.21 30.559l0.345-0.881 0.117-0.844-0.116-0.842-0.307-0.766-0.457-0.729-0.612-0.727-0.728-0.69-0.804-0.614-0.843-0.613-0.879-0.536-0.919-0.538-0.884-0.459-0.801-0.42-0.767-0.387-0.651-0.344-0.496-0.309 0.532 1.113 0.538 0.919 0.573 0.728 0.536 0.652 0.574 0.498 0.574 0.459 0.574 0.346 0.574 0.346 0.571 0.346 0.577 0.382 0.572 0.384 0.536 0.46 0.537 0.573 0.535 0.691 0.497 0.806 0.498 0.995z"/>
<path d="m141.57 21.129l0.422 0.652 0.42 0.652 0.421 0.65 0.38 0.613 0.346 0.613 0.345 0.649 0.346 0.614 0.305 0.613 0.304 0.652 0.268 0.65 0.271 0.613 0.229 0.65 0.19 0.689 0.192 0.65 0.152 0.689 0.152 0.73 0.384-1.455 0.191-1.265 0.041-1.149-0.115-0.994-0.229-0.844-0.346-0.766-0.42-0.652-0.458-0.537-0.538-0.499-0.535-0.421-0.573-0.346-0.537-0.306-0.496-0.306-0.46-0.268-0.342-0.307-0.31-0.271z"/>
</g>
</g><!-- Feather_x0020_shadow -->
<g id="Layer_x0020_1">
<defs>
<linearGradient id="AIgd1" y2="4153.3" gradientUnits="userSpaceOnUse" x2="-3520.4" gradientTransform="matrix(.5318 .0004 -.0004 .5318 -2022.6 2980.7)" y1="4186.3" x1="-3510.4">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<g stroke="#000" stroke-width=".254" fill="url(#AIgd1)">
<path stroke-width=".5956" d="m0.241 40.672c13.561-1.867 63.613-4.393 85.943-8.051 17.961-2.937 35.502-8.285 52.242-13.9 4.328-1.453 11.991-4.434 16.896-7.07 3.104-2.373 10.571-5.889 12.606-9.222-32.45 15.407-45.513 19.649-83.582 27.354-15.436 3.169-71.617 7.721-84.105 10.889z" fill="#000"/>
<defs>
<linearGradient id="AIgd2" y2="-3479.4" gradientUnits="userSpaceOnUse" x2="-3789.2" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3507.6" x1="-3788.1">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m48.261 46.645l1.454 0.498 1.418 0.118 1.417-0.229 1.417-0.574 1.379-0.766 1.38-0.994 1.305-1.146 1.301-1.226 1.228-1.26 1.149-1.267 1.111-1.224 1.035-1.148 0.958-0.957 0.881-0.763 0.767-0.501 0.689-0.228-0.576 0.036-0.611 0.038-0.689 0.077-0.688 0.074-0.69 0.078-0.689 0.076-0.689 0.038-0.612 0.076-0.957 0.88-0.921 0.842-0.805 0.842-0.729 0.844-0.727 0.801-0.688 0.805-0.652 0.764-0.691 0.729-0.688 0.727-0.729 0.65-0.767 0.65-0.882 0.61-0.919 0.576-1.034 0.535-1.149 0.496-1.302 0.421z" fill="url(#AIgd2)"/>
<defs>
<linearGradient id="AIgd3" y2="-3475.5" gradientUnits="userSpaceOnUse" x2="-3818.3" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3498.7" x1="-3817.4">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m43.511 46.45l1.688 0.271 1.569 0.038 1.455-0.15 1.377-0.345 1.265-0.534 1.151-0.652 1.148-0.766 1.034-0.879 1.035-0.918 0.957-0.995 0.959-1.072 0.921-1.032 0.956-1.033 0.96-1.033 0.958-0.955 0.995-0.881-0.381 0.037h-0.423l-0.384 0.039-0.419 0.037-0.424 0.037-0.421 0.078-0.42 0.035-0.42 0.041-0.421 0.037-0.461 0.037-0.422 0.078-0.459 0.037-0.459 0.037-0.46 0.037h-0.46l-0.459 0.039-0.347 0.535-0.42 0.651-0.537 0.765-0.575 0.805-0.69 0.881-0.729 0.879-0.766 0.918-0.805 0.879-0.844 0.844-0.84 0.805-0.885 0.726-0.842 0.612-0.844 0.496-0.843 0.346-0.804 0.189h-0.768z" fill="url(#AIgd3)"/>
<defs>
<linearGradient id="AIgd4" y2="-3480.6" gradientUnits="userSpaceOnUse" x2="-3807.8" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3505.3" x1="-3806.9">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m40.371 46.487l0.958 0.115 0.919 0.076 0.881-0.037 0.881-0.152 0.882-0.19 0.843-0.344 0.841-0.421 0.883-0.574 0.882-0.65 0.882-0.764 0.882-0.921 0.919-0.993 0.958-1.188 0.997-1.3 1.034-1.416 1.074-1.607-0.651-0.002-0.613 0.039-0.614 0.076-0.612 0.076-0.611 0.078-0.613 0.072h-1.415l-0.616 0.612-0.573 0.65-0.576 0.614-0.574 0.688-0.575 0.65-0.535 0.689-0.576 0.648-0.539 0.691-0.572 0.65-0.574 0.65-0.612 0.65-0.577 0.613-0.65 0.572-0.652 0.574-0.65 0.573-0.729 0.499z" fill="url(#AIgd4)"/>
<path d="m37.041 46.329l0.728 0.387 0.802 0.153 0.807-0.116 0.842-0.342 0.844-0.5 0.881-0.689 0.88-0.764 0.884-0.917 0.841-0.958 0.884-0.993 0.804-0.997 0.805-0.957 0.768-0.957 0.729-0.84 0.689-0.729 0.614-0.613-4.099 0.382-0.462 0.612-0.498 0.61-0.458 0.616-0.459 0.608-0.46 0.614-0.5 0.612-0.461 0.612-0.497 0.612-0.537 0.573-0.537 0.611-0.536 0.578-0.613 0.57-0.612 0.574-0.653 0.576-0.688 0.536-0.728 0.532z" fill="url(#AIgd3)"/>
<defs>
<linearGradient id="AIgd6" y2="-3480.1" gradientUnits="userSpaceOnUse" x2="-3826.3" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3503.9" x1="-3825.4">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m30.262 45.444l1.188 0.767 1.109 0.5 1.11 0.231h1.074l1.033-0.191 0.995-0.343 0.955-0.538 0.96-0.687 0.919-0.841 0.923-0.881 0.84-1.037 0.884-1.031 0.843-1.109 0.844-1.146 0.805-1.148 0.805-1.111-0.688 0.115-0.536 0.037-0.384 0.037-0.345 0.039-0.343 0.039-0.346-0.001-0.499 0.037-0.651 0.037-0.729 1.034-0.727 0.955-0.729 0.921-0.805 0.804-0.767 0.727-0.767 0.689-0.804 0.611-0.768 0.536-0.766 0.458-0.768 0.421-0.727 0.306-0.689 0.269-0.689 0.229-0.614 0.152-0.612 0.075-0.537 0.038z" fill="url(#AIgd6)"/>
<path d="m26.7 45.21l1.228 0.153 1.186 0.08 1.149-0.078 1.109-0.151 1.036-0.227 1.033-0.345 0.958-0.422 0.92-0.535 0.92-0.572 0.844-0.651 0.843-0.727 0.803-0.804 0.766-0.842 0.73-0.918 0.729-0.959 0.689-0.994-0.767 0.039-0.844 0.074-0.802 0.076-0.806 0.038-0.69 0.077-0.574 0.035-0.421 0.039-0.191 0.037-0.076 0.078-0.191 0.19-0.308 0.306-0.382 0.385-0.422 0.459-0.536 0.536-0.577 0.573-0.648 0.614-0.731 0.608-0.764 0.65-0.768 0.615-0.843 0.611-0.88 0.572-0.881 0.535-0.921 0.46-0.92 0.385z" fill="url(#AIgd3)"/>
<defs>
<linearGradient id="AIgd8" y2="-3482.3" gradientUnits="userSpaceOnUse" x2="-3842.4" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3502.4" x1="-3841.7">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m21.991 45.476l1.033 0.192 0.998 0.076 1.033-0.113 1.034-0.191 1.034-0.342 0.994-0.423 0.996-0.497 0.998-0.611 0.919-0.648 0.918-0.69 0.881-0.726 0.845-0.766 0.806-0.804 0.766-0.765 0.69-0.768 0.651-0.766h-0.461l-0.574 0.04-0.611 0.036h-0.651l-0.613 0.073-0.613 0.041-0.496 0.039-0.423 0.075v0.077l-0.154 0.189-0.381 0.347-0.537 0.42-0.652 0.535-0.764 0.613-0.845 0.652-0.882 0.647-0.92 0.687-0.918 0.691-0.881 0.65-0.846 0.574-0.765 0.539-0.69 0.421-0.537 0.305-0.382 0.191z" fill="url(#AIgd8)"/>
<path d="m16.782 45.434l0.612 0.612 0.806 0.267 0.996 0.001 1.11-0.266 1.227-0.46 1.262-0.646 1.341-0.768 1.305-0.841 1.302-0.919 1.227-0.916 1.147-0.879 0.999-0.844 0.881-0.688 0.65-0.574 0.423-0.381 0.192-0.154-0.498 0.038-0.538 0.036-0.574 0.037-0.572 0.041-0.614 0.072-0.614 0.039-0.611 0.04-0.652 0.038-0.688 0.419-0.688 0.422-0.693 0.456-0.649 0.425-0.689 0.456-0.653 0.498-0.688 0.459-0.653 0.459-0.69 0.496-0.65 0.461-0.688 0.459-0.651 0.458-0.688 0.421-0.691 0.422-0.651 0.419-0.69 0.384z" fill="url(#AIgd3)"/>
<defs>
<linearGradient id="AIgd10" y2="-3493.2" gradientUnits="userSpaceOnUse" x2="-3872.4" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3504" x1="-3872.2">
<stop stop-color="#F7EE5F" offset="0"/>
<stop stop-color="#F5D65D" offset=".186"/>
<stop stop-color="#F4C35B" offset=".3825"/>
<stop stop-color="#F4BC5A" offset=".5198"/>
<stop stop-color="#F5DA5D" offset=".7809"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m12.953 45.507l0.652 0.229 0.649 0.115 0.65 0.037 0.653-0.11 0.65-0.194 0.689-0.265 0.727-0.383 0.768-0.46 0.843-0.535 0.881-0.612 0.959-0.688 1.072-0.728 1.187-0.803 1.265-0.881 1.379-0.918 1.534-0.957-0.653 0.039-0.727 0.039-0.65-0.001-0.65 0.038-0.574 0.037-0.459 0.038-0.307 0.039-0.116 0.036-0.077 0.115-0.229 0.23-0.346 0.307-0.458 0.42-0.575 0.499-0.653 0.577-0.689 0.571-0.805 0.613-0.805 0.611-0.843 0.612-0.843 0.534-0.882 0.537-0.842 0.457-0.842 0.383-0.805 0.267-0.729 0.154z" fill="url(#AIgd10)"/>
<defs>
<linearGradient id="AIgd11" y2="-3484.9" gradientUnits="userSpaceOnUse" x2="-3874.5" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3508.4" x1="-3878.1">
<stop stop-color="#F7EE5F" offset="0"/>
<stop stop-color="#F5D65D" offset=".186"/>
<stop stop-color="#F4C35B" offset=".3825"/>
<stop stop-color="#F4BC5A" offset=".5198"/>
<stop stop-color="#F5DA5D" offset=".7809"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m10.158 45.084l0.879 0.344 0.958 0.152 0.998-0.072 1.033-0.268 1.072-0.383 1.033-0.498 1.074-0.608 0.996-0.69 0.958-0.688 0.92-0.728 0.843-0.688 0.728-0.691 0.653-0.572 0.495-0.499 0.383-0.341 0.232-0.232-0.613 0.038-0.577 0.04-0.571 0.037-0.575 0.074-0.535 0.041-0.577 0.037-0.61 0.074-0.613 0.038-0.459 0.421-0.501 0.42-0.458 0.421-0.499 0.46-0.498 0.498-0.497 0.459-0.536 0.459-0.538 0.458-0.536 0.423-0.534 0.421-0.577 0.381-0.534 0.343-0.614 0.309-0.574 0.266-0.613 0.193-0.613 0.152z" fill="url(#AIgd11)"/>
<path d="m6.791 44.01l0.765 0.535 0.763 0.345 0.767 0.154 0.767 0.039 0.768-0.151 0.766-0.232 0.766-0.343 0.765-0.458 0.729-0.498 0.766-0.611 0.729-0.613 0.729-0.65 0.727-0.648 0.69-0.69 0.689-0.649 0.69-0.615-0.422 0.041-0.46 0.076-0.497 0.037-0.535 0.039-0.575 0.074-0.612 0.039-0.652 0.074-0.612 0.037-0.192 0.461-0.27 0.457-0.271 0.422-0.346 0.422-0.381 0.383-0.424 0.383-0.42 0.381-0.496 0.306-0.5 0.308-0.537 0.268-0.573 0.268-0.576 0.189-0.612 0.154-0.61 0.15-0.654 0.077-0.649 0.039z" fill="url(#AIgd10)"/>
<path d="m3.763 43.434l0.652 0.266 0.69 0.193 0.726 0.115 0.806 0.001 0.767-0.038 0.842-0.115 0.805-0.229 0.803-0.229 0.768-0.344 0.729-0.384 0.65-0.421 0.614-0.495 0.536-0.538 0.46-0.572 0.345-0.651 0.23-0.652-0.46 0.04-0.46 0.037-0.497 0.076-0.5 0.038-0.495 0.038-0.537 0.037-0.574 0.039-0.652 0.036-0.271 0.385-0.307 0.384-0.306 0.345-0.306 0.306-0.307 0.306-0.348 0.229-0.343 0.27-0.347 0.229-0.381 0.191-0.422 0.19-0.421 0.19-0.456 0.153-0.462 0.152-0.495 0.152-0.537 0.116-0.539 0.154z" fill="url(#AIgd11)"/>
<path d="m2.193 42.896l0.23 0.229 0.347 0.152 0.42 0.078h0.46l0.536-0.038 0.573-0.112 0.613-0.193 0.612-0.189 0.613-0.27 0.614-0.307 0.612-0.342 0.537-0.385 0.537-0.42 0.458-0.459 0.345-0.46 0.307-0.498-0.343 0.041-0.308 0.037-0.383 0.038-0.343 0.038-0.344 0.039-0.307 0.036-0.268 0.001-0.269-0.001v0.153l-0.342 0.306-0.576 0.422-0.767 0.498-0.917 0.496-0.922 0.499-0.919 0.381-0.806 0.23z" fill="url(#AIgd10)"/>
<path d="m1.084 41.822l0.078 0.536 0.192 0.344 0.305 0.155 0.42 0.076 0.499-0.075 0.574-0.192 0.573-0.229 0.614-0.306 0.613-0.346 0.574-0.381 0.575-0.381 0.461-0.347 0.42-0.307 0.307-0.229 0.191-0.152 0.038-0.076-2.986 0.341-0.229 0.152-0.386 0.192-0.458 0.23-0.5 0.229-0.535 0.269-0.497 0.189-0.461 0.192-0.384 0.114z" fill="url(#AIgd10)"/>
<defs>
<linearGradient id="AIgd16" y2="-3490.1" gradientUnits="userSpaceOnUse" x2="-3892.7" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3497" x1="-3892.6">
<stop stop-color="#F7EE5F" offset="0"/>
<stop stop-color="#F5D65D" offset=".186"/>
<stop stop-color="#F4C35B" offset=".3825"/>
<stop stop-color="#F4BC5A" offset=".5198"/>
<stop stop-color="#F5DA5D" offset=".7809"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m4.533 40.253l-0.651 0.039-0.574 0.039-0.536 0.036-0.498 0.037-0.46 0.04-0.497 0.036-0.498 0.077-0.577 0.114 0.117 0.729 0.343 0.345 0.537 0.001 0.689-0.19 0.689-0.347 0.729-0.382 0.651-0.345 0.536-0.229z" fill="url(#AIgd16)"/>
<path d="m4.419 39.874l-0.653 0.112-0.573 0.076-0.497 0.114-0.5 0.075-0.458 0.114-0.459 0.115-0.537 0.116-0.575 0.154-0.038-0.844 0.345-0.536 0.537-0.192 0.727-0.034 0.766 0.151 0.766 0.193 0.651 0.23 0.499 0.154z" fill="url(#AIgd10)"/>
<defs>
<linearGradient id="AIgd18" y2="-3555.2" gradientUnits="userSpaceOnUse" x2="-3726.8" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3522.2" x1="-3716.8">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m44.258 24.317l1.684-0.651 1.611-0.419 1.491-0.113 1.417 0.076 1.379 0.309 1.262 0.459 1.227 0.652 1.187 0.729 1.149 0.845 1.11 0.919 1.106 0.959 1.074 0.996 1.071 0.957 1.07 0.921 1.073 0.882 1.109 0.807-0.384 0.073-0.421 0.038-0.421 0.039-0.383 0.076-0.423 0.039-0.421 0.038-0.459 0.036-0.421 0.039-0.422 0.035-0.461 0.041-0.458 0.076-0.422 0.037-0.461 0.04-0.457 0.074-0.498 0.037-0.461 0.077-0.382-0.534-0.495-0.653-0.576-0.766-0.688-0.768-0.727-0.843-0.805-0.843-0.879-0.844-0.881-0.806-0.959-0.766-0.953-0.688-0.957-0.615-0.997-0.497-0.957-0.385-0.958-0.23-0.956-0.039-0.88 0.152z" fill="url(#AIgd18)"/>
<defs>
<linearGradient id="AIgd19" y2="-3532.4" gradientUnits="userSpaceOnUse" x2="-3836.3" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3506.2" x1="-3818.3">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m41.383 24.964l0.96-0.345 0.92-0.227 0.878-0.152 0.923-0.077 0.878 0.077 0.919 0.192 0.88 0.268 0.919 0.423 0.956 0.537 0.959 0.691 0.995 0.803 1.033 0.96 1.108 1.11 1.11 1.266 1.186 1.418 1.264 1.57-0.69 0.039-0.611 0.072-0.576 0.039-0.534 0.076-0.537 0.076-0.573 0.076-0.653 0.113-0.765 0.117-0.689-0.574-0.65-0.613-0.689-0.653-0.612-0.653-0.649-0.649-0.649-0.65-0.613-0.653-0.651-0.651-0.651-0.612-0.688-0.574-0.651-0.576-0.688-0.574-0.727-0.498-0.767-0.423-0.766-0.421-0.805-0.347z" fill="url(#AIgd19)"/>
<path d="m38.167 25.805l0.727-0.611 0.808-0.307 0.88-0.074 0.879 0.191 0.958 0.383 0.956 0.538 0.995 0.688 0.996 0.805 0.996 0.881 0.993 0.921 0.956 0.921 0.92 0.958 0.841 0.88 0.84 0.805 0.729 0.691 0.69 0.574-4.176 0.496-0.536-0.613-0.536-0.615-0.498-0.613-0.533-0.611-0.537-0.613-0.534-0.651-0.573-0.614-0.535-0.576-0.613-0.574-0.612-0.573-0.652-0.538-0.688-0.498-0.728-0.497-0.766-0.423-0.804-0.383-0.843-0.346z" fill="url(#AIgd18)"/>
<path d="m31.886 28.481l1.148-1.111 1.111-0.802 1.073-0.534 1.072-0.307 1.072-0.037 1.034 0.154 1.033 0.385 0.996 0.498 0.994 0.689 0.955 0.804 0.996 0.921 0.919 0.996 0.957 1.035 0.917 1.111 0.918 1.111 0.919 1.11-0.729 0.04-0.611 0.035-0.498 0.039-0.461 0.076-0.458 0.076-0.499 0.075-0.571 0.078-0.692 0.112-0.803-1.034-0.766-0.919-0.803-0.844-0.766-0.728-0.802-0.612-0.766-0.538-0.728-0.461-0.768-0.382-0.728-0.309-0.688-0.229-0.728-0.192-0.689-0.152-0.648-0.08-0.653-0.074h-0.649l-0.612-0.002z" fill="url(#AIgd19)"/>
<path d="m27.402 29.512l1.267-0.461 1.187-0.344 1.187-0.189 1.109-0.077 1.111 0.001 1.071 0.155 1.035 0.231 0.996 0.347 0.995 0.419 0.919 0.537 0.957 0.613 0.878 0.689 0.882 0.768 0.84 0.842 0.806 0.922 0.803 0.996-0.803 0.115-0.919 0.111-0.921 0.115-0.921 0.115-0.842 0.113-0.649 0.08-0.499 0.037-0.191-0.002-0.075-0.075-0.192-0.153-0.269-0.268-0.343-0.346-0.423-0.42-0.495-0.424-0.575-0.496-0.65-0.538-0.728-0.499-0.765-0.536-0.844-0.5-0.918-0.495-0.92-0.424-0.993-0.383-1.034-0.348-1.073-0.229z" fill="url(#AIgd18)"/>
<path d="m21.735 30.196l1.034-0.418 1.035-0.307 1.108-0.115 1.073 0.001 1.111 0.118 1.108 0.229 1.072 0.346 1.111 0.422 1.033 0.498 1.033 0.537 0.995 0.651 0.994 0.651 0.882 0.693 0.881 0.727 0.802 0.728 0.726 0.729-0.495 0.037-0.612 0.076-0.689 0.075-0.728 0.077-0.729 0.075-0.652 0.076-0.573 0.037h-0.422l-0.001-0.077-0.191-0.191-0.38-0.268-0.574-0.385-0.689-0.42-0.805-0.5-0.919-0.537-0.956-0.533-0.955-0.54-0.996-0.538-0.998-0.496-0.916-0.457-0.846-0.387-0.762-0.307-0.616-0.193-0.495-0.115z" fill="url(#AIgd19)"/>
<path d="m16.373 31.303l0.537-0.842 0.805-0.498 0.996-0.188h1.147l1.264 0.268 1.379 0.422 1.455 0.576 1.415 0.651 1.455 0.729 1.339 0.766 1.265 0.73 1.149 0.727 0.954 0.615 0.729 0.459 0.496 0.342 0.23 0.117-0.537 0.116-0.61 0.077-0.653 0.073-0.689 0.038-0.727 0.078-0.729 0.074-0.688 0.115-0.689 0.115-0.729-0.346-0.688-0.348-0.729-0.381-0.688-0.385-0.69-0.346-0.688-0.383-0.728-0.384-0.688-0.382-0.689-0.35-0.688-0.382-0.729-0.343-0.688-0.307-0.689-0.348-0.727-0.305-0.727-0.311-0.729-0.266z" fill="url(#AIgd18)"/>
<path d="m9.518 33.135l0.844-0.611 0.956-0.346 0.996-0.149 1.07 0.001 1.113 0.189 1.148 0.348 1.11 0.421 1.108 0.5 1.035 0.574 1.032 0.575 0.919 0.614 0.804 0.536 0.727 0.499 0.574 0.46 0.42 0.306 0.229 0.193-0.612 0.074-0.574 0.077-0.495 0.076-0.501 0.037-0.536 0.037-0.496 0.076-0.576 0.078-0.61 0.074-0.537-0.342-0.536-0.348-0.574-0.42-0.574-0.383-0.612-0.421-0.613-0.421-0.612-0.423-0.612-0.383-0.614-0.384-0.647-0.308-0.652-0.305-0.613-0.232-0.648-0.189-0.615-0.117h-0.614l-0.612 0.037z" fill="url(#AIgd10)"/>
<path d="m12.044 32.029l0.653-0.423 0.688-0.305 0.652-0.154 0.688-0.074 0.689 0.037 0.728 0.152 0.807 0.27 0.838 0.308 0.921 0.423 0.959 0.459 1.07 0.576 1.147 0.614 1.265 0.65 1.378 0.692 1.49 0.765 1.648 0.768-0.613 0.04-0.689 0.073-0.688 0.078-0.691 0.112-0.613 0.078-0.457 0.078-0.346 0.035-0.153-0.035-0.075-0.079-0.27-0.19-0.345-0.309-0.459-0.344-0.573-0.422-0.689-0.459-0.729-0.5-0.803-0.499-0.879-0.498-0.882-0.497-0.955-0.425-0.957-0.384-0.959-0.304-0.957-0.196-0.92-0.111-0.919-0.001z" fill="url(#AIgd11)"/>
<path d="m6.451 35.086l0.691-0.766 0.726-0.574 0.729-0.382 0.766-0.229 0.767-0.037 0.804 0.076 0.844 0.192 0.804 0.271 0.84 0.422 0.805 0.42 0.842 0.536 0.843 0.539 0.843 0.536 0.803 0.574 0.805 0.578 0.803 0.496-0.459 0.076-0.498 0.038-0.574 0.116-0.613 0.072-0.649 0.079-0.69 0.073-0.65 0.078-0.653 0.075-0.229-0.497-0.269-0.422-0.305-0.422-0.384-0.383-0.383-0.344-0.419-0.27-0.5-0.271-0.497-0.229-0.536-0.191-0.572-0.154-0.58-0.112-0.612-0.079-0.65-0.037-0.652 0.001-0.65 0.073-0.689 0.078z" fill="url(#AIgd11)"/>
<path d="m1.738 37.609l0.193-0.306 0.306-0.268 0.422-0.228 0.459-0.154 0.536-0.114 0.612-0.036 0.613 0.001 0.689 0.037 0.65 0.114 0.689 0.155 0.652 0.229 0.61 0.269 0.576 0.308 0.534 0.383 0.422 0.422 0.381 0.461-0.343 0.076-0.419 0.076-0.42 0.076-0.423 0.074-0.382 0.037-0.308 0.041h-0.305l-0.153-0.078-0.381-0.23-0.652-0.307-0.766-0.343-0.881-0.309-0.995-0.269-0.957-0.154-0.959 0.036z" fill="url(#AIgd11)"/>
<path d="m0.818 39.178l-0.036-0.609 0.152-0.461 0.271-0.307 0.42-0.191 0.497-0.078 0.575 0.041 0.613 0.076 0.688 0.154 0.65 0.229 0.65 0.231 0.613 0.23 0.535 0.23 0.46 0.23 0.383 0.154 0.191 0.152 0.078 0.036-3.065 0.533-0.27-0.112-0.42-0.117-0.459-0.153-0.534-0.152-0.536-0.115-0.535-0.074-0.499-0.001-0.422 0.074z" fill="url(#AIgd10)"/>
<path d="m3.349 36.616l0.612-0.498 0.651-0.383 0.729-0.342 0.805-0.231 0.806-0.153 0.803-0.11 0.844 0.001 0.841 0.072 0.804 0.156 0.804 0.27 0.729 0.307 0.689 0.383 0.649 0.461 0.536 0.535 0.421 0.613 0.344 0.689-0.499 0.039-0.457 0.077-0.5 0.036-0.536 0.076-0.535 0.078-0.574 0.037-0.615 0.115-0.65 0.072-0.231-0.341-0.268-0.308-0.307-0.267-0.343-0.27-0.382-0.23-0.421-0.23-0.423-0.192-0.459-0.151-0.459-0.154-0.497-0.116-0.46-0.076-0.499-0.04-0.497-0.037-0.496-0.001-0.499 0.038-0.46 0.075z" fill="url(#AIgd10)"/>
<defs>
<linearGradient id="AIgd31" y2="-3508.4" gradientUnits="userSpaceOnUse" x2="-3636.6" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3531.6" x1="-3644.5">
<stop stop-color="#681083" offset="0"/>
<stop stop-color="#681083" offset=".0006"/>
<stop stop-color="#8D0F6D" offset=".072"/>
<stop stop-color="#AD0D5A" offset=".1459"/>
<stop stop-color="#C80A4A" offset=".2229"/>
<stop stop-color="#DE083E" offset=".3041"/>
<stop stop-color="#ED0335" offset=".3913"/>
<stop stop-color="#F60030" offset=".4884"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m139.69 18.299l0.077 0.117 0.192 0.307 0.267 0.497 0.344 0.613 0.386 0.727 0.382 0.806 0.346 0.92 0.303 0.918 0.228 0.959 0.079 0.92-0.05 0.917-0.192 0.842-0.422 0.768-0.651 0.687-0.919 0.535-1.189 0.384 0.193-0.578 0.117-0.611 0.113-0.611 0.076-0.689 0.039-0.689v-0.728l-0.037-0.69-0.037-0.729-0.076-0.729-0.074-0.725-0.116-0.69-0.152-0.651-0.113-0.651-0.154-0.575-0.188-0.574-0.155-0.498 0.191-0.075 0.154-0.04 0.19-0.076 0.156-0.036 0.153-0.077 0.15-0.039 0.191-0.078 0.19-0.076z" fill="url(#AIgd31)"/>
<path d="m138.39 18.835l0.534 2.108 0.382 1.914 0.189 1.646 0.037 1.455-0.077 1.264-0.23 1.072-0.307 0.92-0.347 0.764-0.46 0.613-0.497 0.496-0.498 0.347-0.495 0.267-0.54 0.191-0.459 0.076-0.42 0.037h-0.384l0.229-0.613 0.229-0.612 0.192-0.688 0.154-0.689 0.152-0.767 0.118-0.764 0.116-0.767 0.075-0.803 0.041-0.806 0.001-0.843-0.041-0.804-0.073-0.843-0.114-0.804-0.155-0.843-0.188-0.766-0.229-0.805 0.457-0.154 0.463-0.152 0.422-0.152 0.418-0.115 0.348-0.113 0.381-0.115 0.306-0.076 0.27-0.077z" fill="url(#AIgd31)"/>
<path d="m135.28 19.792l0.231 0.765 0.227 0.959 0.155 1.073 0.072 1.186 0.041 1.303-0.002 1.301-0.116 1.301-0.192 1.267-0.271 1.187-0.345 1.109-0.499 0.957-0.572 0.766-0.731 0.574-0.84 0.304-0.96 0.04-1.108-0.307 0.422-0.691 0.421-0.727 0.347-0.766 0.307-0.727 0.229-0.803 0.231-0.768 0.152-0.805 0.154-0.805 0.077-0.804 0.038-0.841v-0.805l-0.073-0.842-0.076-0.842-0.152-0.806-0.152-0.845-0.229-0.803 0.383-0.152 0.458-0.152 0.461-0.153 0.46-0.153 0.46-0.151 0.382-0.153 0.346-0.117 0.267-0.074z" fill="url(#AIgd31)"/>
<path d="m125.55 35.674l1.036 0.08 0.997-0.154 0.879-0.381 0.805-0.535 0.766-0.73 0.652-0.879 0.536-0.994 0.499-1.109 0.384-1.188 0.309-1.266 0.192-1.3 0.078-1.302 0.001-1.301-0.114-1.303-0.229-1.265-0.343-1.188-0.422 0.152-0.425 0.154-0.456 0.114-0.463 0.152-0.458 0.154-0.497 0.153-0.46 0.152-0.497 0.152v0.804l-0.001 0.879-0.04 0.999-0.039 1.033-0.039 1.033-0.038 1.072-0.116 1.11-0.113 1.032-0.156 1.035-0.17 0.961-0.233 0.919-0.268 0.806-0.308 0.687-0.384 0.577-0.421 0.419-0.461 0.267z" fill="url(#AIgd31)"/>
<defs>
<linearGradient id="AIgd35" y2="-3424.1" gradientUnits="userSpaceOnUse" x2="-3733.1" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2110.5 1859.4)" y1="-3453.4" x1="-3738.2">
<stop stop-color="#681083" offset="0"/>
<stop stop-color="#6F1182" offset=".0752"/>
<stop stop-color="#831380" offset=".1935"/>
<stop stop-color="#A3157B" offset=".3399"/>
<stop stop-color="#D11975" offset=".5088"/>
<stop stop-color="#F21B71" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m128.28 22.083l-0.384 0.153-0.383 0.114-0.343 0.115-0.386 0.077-0.382 0.114-0.347 0.113-0.384 0.116-0.38 0.153-0.077 0.766-0.041 0.84-0.039 0.92-0.038 0.958-0.001 0.958-0.001 1.031-0.04 1.037-0.039 0.994-0.076 0.997-0.115 0.994-0.193 0.919-0.191 0.844-0.305 0.802-0.346 0.727-0.422 0.616-0.536 0.496 1.108-0.268 0.919-0.383 0.767-0.533 0.651-0.614 0.537-0.729 0.423-0.839 0.306-0.919 0.232-0.959 0.156-1.072 0.112-1.11 0.039-1.15 0.042-1.225 0.037-1.225 0.039-1.264 0.001-1.264 0.078-1.303z" fill="url(#AIgd35)"/>
<defs>
<linearGradient id="AIgd36" y2="-3491.7" gradientUnits="userSpaceOnUse" x2="-3713.7" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3509.7" x1="-3716.3">
<stop stop-color="#681083" offset="0"/>
<stop stop-color="#681083" offset=".0006"/>
<stop stop-color="#8D0F6D" offset=".072"/>
<stop stop-color="#AD0D5A" offset=".1459"/>
<stop stop-color="#C80A4A" offset=".2229"/>
<stop stop-color="#DE083E" offset=".3041"/>
<stop stop-color="#ED0335" offset=".3913"/>
<stop stop-color="#F60030" offset=".4884"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m118.12 38.426l1.531-0.074 1.304-0.305 1.07-0.497 0.882-0.651 0.689-0.842 0.502-0.958 0.419-1.071 0.27-1.188 0.154-1.226 0.114-1.261 0.041-1.305 0.001-1.262 0.001-1.305 0.001-1.223 0.076-1.15 0.078-1.071-0.421 0.114-0.383 0.113-0.343 0.117-0.387 0.113-0.382 0.113-0.343 0.115-0.384 0.077-0.423 0.114 0.039 0.113 0.075 0.269 0.078 0.423 0.114 0.537 0.074 0.688 0.078 0.768 0.039 0.881-0.04 0.996-0.114 1.035-0.195 1.145-0.347 1.189-0.42 1.225-0.614 1.265-0.766 1.339-0.921 1.3-1.15 1.339z" fill="url(#AIgd36)"/>
<path d="m112.9 40.07l1.035 0.191 1.035-0.073 0.995-0.346 0.996-0.537 0.956-0.725 0.92-0.881 0.844-1.07 0.769-1.188 0.649-1.265 0.576-1.378 0.462-1.456 0.309-1.489 0.192-1.496 0.041-1.531-0.152-1.454-0.308-1.456-3.638 1.146 0.037 0.613 0.037 0.729-0.038 0.801-0.08 0.92-0.112 0.958-0.192 1.034-0.192 1.072-0.308 1.109-0.347 1.109-0.421 1.073-0.461 1.071-0.575 1.035-0.612 0.995-0.729 0.919-0.805 0.841-0.883 0.727z" fill="url(#AIgd36)"/>
<defs>
<linearGradient id="AIgd38" y2="-3473.3" gradientUnits="userSpaceOnUse" x2="-3712.4" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3513" x1="-3716.5">
<stop stop-color="#681083" offset="0"/>
<stop stop-color="#681083" offset=".0006"/>
<stop stop-color="#8D0F6D" offset=".072"/>
<stop stop-color="#AD0D5A" offset=".1459"/>
<stop stop-color="#C80A4A" offset=".2229"/>
<stop stop-color="#DE083E" offset=".3041"/>
<stop stop-color="#ED0335" offset=".3913"/>
<stop stop-color="#F60030" offset=".4884"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m118.66 24.987l-0.573 0.189-0.729 0.191-0.807 0.268-0.84 0.229-0.806 0.27-0.804 0.227-0.689 0.191-0.537 0.115-0.076 0.881-0.042 0.955-0.075 0.959-0.038 0.995-0.117 0.995-0.077 1.037-0.115 0.994-0.153 0.996-0.19 0.956-0.232 0.921-0.309 0.916-0.344 0.842-0.422 0.807-0.498 0.688-0.536 0.65-0.65 0.576 0.766 0.114 0.803-0.038 0.804-0.19 0.805-0.343 0.804-0.5 0.807-0.612 0.768-0.763 0.766-0.958 0.689-1.034 0.611-1.227 0.578-1.339 0.495-1.528 0.388-1.65 0.307-1.758 0.194-1.955 0.077-2.066z" fill="url(#AIgd38)"/>
<path d="m103.98 41.593l1.725 0.081 1.455-0.154 1.265-0.418 0.998-0.653 0.841-0.802 0.691-0.958 0.497-1.072 0.386-1.224 0.308-1.225 0.19-1.343 0.116-1.3 0.117-1.302 0.038-1.303 0.078-1.188 0.075-1.11 0.117-0.995-0.535 0.114-0.463 0.115-0.419 0.153-0.418 0.112-0.463 0.117-0.422 0.111-0.496 0.154-0.576 0.151-0.116 1.038-0.112 0.992-0.116 0.996-0.156 0.955-0.116 0.961-0.153 0.918-0.189 0.879-0.194 0.881-0.269 0.844-0.308 0.841-0.382 0.805-0.422 0.806-0.536 0.801-0.576 0.767-0.689 0.728-0.77 0.726z" fill="url(#AIgd36)"/>
<path d="m99.349 42.433l1.532 0.078 1.34-0.192 1.188-0.418 1.036-0.65 0.88-0.805 0.766-0.957 0.615-1.107 0.537-1.188 0.458-1.227 0.347-1.3 0.269-1.266 0.194-1.299 0.19-1.226 0.116-1.15 0.116-1.073 0.079-0.919-0.539 0.117-0.459 0.112-0.42 0.115-0.423 0.077-0.38 0.113-0.425 0.074-0.495 0.152-0.576 0.115-0.192 1.496-0.229 1.417-0.27 1.301-0.269 1.226-0.31 1.109-0.345 1.071-0.383 0.919-0.384 0.883-0.383 0.803-0.425 0.727-0.459 0.613-0.422 0.573-0.459 0.536-0.461 0.42-0.498 0.383-0.459 0.345z" fill="url(#AIgd38)"/>
<defs>
<linearGradient id="AIgd41" y2="-3493.5" gradientUnits="userSpaceOnUse" x2="-3709.7" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3514" x1="-3711.2">
<stop stop-color="#681083" offset="0"/>
<stop stop-color="#681083" offset=".0006"/>
<stop stop-color="#8D0F6D" offset=".072"/>
<stop stop-color="#AD0D5A" offset=".1459"/>
<stop stop-color="#C80A4A" offset=".2229"/>
<stop stop-color="#DE083E" offset=".3041"/>
<stop stop-color="#ED0335" offset=".3913"/>
<stop stop-color="#F60030" offset=".4884"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m94.98 43.004l1.457 0.078 1.302-0.189 1.151-0.424 1.071-0.611 0.881-0.802 0.805-0.919 0.69-1.072 0.614-1.146 0.535-1.189 0.422-1.263 0.347-1.264 0.308-1.262 0.271-1.188 0.192-1.149 0.152-1.031 0.155-0.922-0.459 0.076-0.46 0.116-0.462 0.114-0.459 0.115-0.462 0.115-0.458 0.112-0.46 0.114-0.497 0.117-0.038 0.725-0.116 0.805-0.153 0.843-0.269 0.918-0.27 0.995-0.382 0.957-0.385 1.033-0.422 0.998-0.499 0.996-0.537 0.957-0.534 0.879-0.577 0.84-0.574 0.806-0.614 0.69-0.649 0.572-0.617 0.459z" fill="url(#AIgd41)"/>
<defs>
<linearGradient id="AIgd42" y2="-3483" gradientUnits="userSpaceOnUse" x2="-3716.7" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3510.1" x1="-3718.5">
<stop stop-color="#681083" offset="0"/>
<stop stop-color="#681083" offset=".0006"/>
<stop stop-color="#8D0F6D" offset=".072"/>
<stop stop-color="#AD0D5A" offset=".1459"/>
<stop stop-color="#C80A4A" offset=".2229"/>
<stop stop-color="#DE083E" offset=".3041"/>
<stop stop-color="#ED0335" offset=".3913"/>
<stop stop-color="#F60030" offset=".4884"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m90.197 43.881l1.49 0.193 1.38-0.191 1.264-0.496 1.15-0.766 1.073-0.955 0.921-1.148 0.84-1.301 0.77-1.341 0.613-1.415 0.537-1.381 0.46-1.302 0.384-1.262 0.23-1.074 0.192-0.88 0.114-0.65 0.001-0.381-0.573 0.111-0.537 0.115-0.535 0.152-0.536 0.115-0.536 0.152-0.5 0.113-0.497 0.115-0.499 0.078-0.191 0.651-0.19 0.765-0.229 0.879-0.271 0.996-0.308 1.035-0.343 1.071-0.384 1.069-0.424 1.114-0.461 1.07-0.497 0.995-0.537 0.959-0.574 0.842-0.653 0.725-0.65 0.574-0.728 0.422-0.765 0.229z" fill="url(#AIgd42)"/>
<path d="m86.712 43.688l1.377 0.307 1.223 0.001 1.113-0.267 1.034-0.535 0.882-0.729 0.805-0.881 0.727-1.068 0.652-1.15 0.539-1.226 0.498-1.261 0.384-1.265 0.385-1.227 0.307-1.147 0.231-1.035 0.23-0.918 0.189-0.727-0.419 0.076-0.423 0.038-0.38 0.075-0.347 0.076-0.384 0.076-0.346 0.078-0.305 0.074-0.345 0.041-0.118 0.879-0.189 0.919-0.232 0.917-0.228 0.883-0.309 0.918-0.347 0.881-0.382 0.844-0.461 0.842-0.46 0.842-0.537 0.804-0.615 0.765-0.61 0.688-0.729 0.69-0.727 0.611-0.806 0.574-0.879 0.535z" fill="url(#AIgd42)"/>
<path d="m82.345 44.374l1.147 0.002 1.112-0.115 1.07-0.268 1.037-0.384 0.956-0.533 0.959-0.65 0.842-0.763 0.841-0.842 0.73-0.96 0.69-1.032 0.614-1.15 0.573-1.186 0.461-1.264 0.385-1.34 0.347-1.379 0.23-1.414-0.498 0.113-0.499 0.076-0.536 0.115-0.496 0.074-0.497 0.078-0.459 0.112-0.5 0.077-0.459 0.115-0.231 0.805-0.191 0.842-0.231 0.805-0.194 0.803-0.23 0.804-0.228 0.804-0.307 0.766-0.346 0.804-0.42 0.767-0.463 0.803-0.576 0.766-0.688 0.766-0.768 0.729-0.918 0.765-1.073 0.766-1.188 0.726z" fill="url(#AIgd38)"/>
<path d="m76.14 45.095l1.495 0.118 1.454-0.076 1.34-0.229 1.266-0.382 1.187-0.497 1.112-0.649 1.033-0.768 0.918-0.917 0.844-0.955 0.767-1.073 0.693-1.148 0.573-1.222 0.496-1.304 0.425-1.34 0.307-1.377 0.233-1.381-0.423 0.076-0.46 0.117-0.456 0.074-0.461 0.075-0.459 0.078-0.5 0.114-0.497 0.076-0.5 0.115-0.152 0.955-0.23 0.957-0.31 0.96-0.383 0.917-0.457 0.918-0.502 0.918-0.574 0.882-0.648 0.843-0.691 0.844-0.767 0.762-0.808 0.727-0.879 0.689-0.921 0.611-0.995 0.575-0.997 0.497-1.072 0.419z" fill="url(#AIgd38)"/>
<path d="m72.732 45.475l1.264-0.075 1.226-0.189 1.228-0.306 1.186-0.458 1.112-0.536 1.109-0.648 1.034-0.729 0.958-0.842 0.881-0.917 0.843-0.993 0.73-1.076 0.65-1.109 0.536-1.184 0.46-1.226 0.348-1.267 0.229-1.299-0.419 0.074-0.385 0.037-0.346 0.039-0.343 0.039-0.346 0.037-0.382 0.077-0.456 0.076-0.539 0.075-0.537 1.112-0.459 1.031-0.46 0.997-0.422 0.919-0.46 0.881-0.424 0.805-0.461 0.764-0.498 0.727-0.537 0.729-0.613 0.649-0.688 0.69-0.765 0.611-0.884 0.65-0.996 0.611-1.108 0.612-1.265 0.61z" fill="url(#AIgd36)"/>
<path d="m66.604 45.855l1.877 0.077 1.763-0.073 1.57-0.267 1.455-0.422 1.34-0.572 1.187-0.691 1.113-0.801 0.993-0.92 0.921-0.993 0.844-1.072 0.729-1.109 0.688-1.189 0.652-1.184 0.577-1.187 0.538-1.227 0.496-1.187-0.343 0.036-0.461 0.078-0.573 0.076-0.575 0.076-0.613 0.115-0.537 0.076-0.456 0.076-0.347 0.035-0.46 1.074-0.499 1.074-0.577 0.994-0.573 0.955-0.652 0.881-0.688 0.879-0.729 0.804-0.804 0.807-0.804 0.727-0.885 0.688-0.917 0.688-0.96 0.613-0.995 0.572-1.072 0.535-1.072 0.496-1.149 0.46z" fill="url(#AIgd38)"/>
<path d="m62.966 46.387l1.034-0.037 1.071-0.152 1.15-0.269 1.186-0.419 1.188-0.495 1.189-0.613 1.188-0.726 1.187-0.803 1.149-0.918 1.111-0.957 1.035-1.07 0.999-1.15 0.879-1.188 0.804-1.262 0.691-1.34 0.576-1.38-0.575 0.079-0.575 0.074-0.611 0.037-0.612 0.077-0.536 0.037-0.461 0.077-0.382 0.076-0.192 0.115-0.69 0.535-0.689 0.575-0.729 0.688-0.729 0.688-0.727 0.766-0.767 0.802-0.767 0.844-0.768 0.845-0.766 0.879-0.804 0.842-0.805 0.842-0.845 0.84-0.842 0.843-0.845 0.763-0.838 0.768-0.882 0.688z" fill="url(#AIgd36)"/>
<path d="m57.375 46.383l0.997 0.654 1.032 0.268 1.034 0.001 1.073-0.268 1.071-0.536 1.073-0.729 1.111-0.916 1.11-1.033 1.112-1.188 1.148-1.225 1.189-1.301 1.188-1.299 1.188-1.264 1.226-1.264 1.228-1.148 1.226-1.031h-0.425l-0.494 0.074-0.576 0.038-0.573 0.116-0.613 0.079-0.612 0.113-0.572 0.115-0.5 0.075-0.956 0.88-0.957 0.88-0.923 0.919-0.919 0.919-0.881 0.916-0.883 0.921-0.88 0.92-0.845 0.84-0.844 0.84-0.842 0.768-0.805 0.688-0.804 0.613-0.805 0.535-0.767 0.459-0.766 0.343-0.767 0.229z" fill="url(#AIgd38)"/>
<path d="m53.046 46.879l1.572 0.001 1.492-0.151 1.342-0.385 1.304-0.494 1.187-0.614 1.109-0.765 1.075-0.84 0.995-0.92 0.997-0.994 0.956-1.033 0.921-1.035 0.959-1.07 0.959-1.07 0.994-1.034 1.035-0.957 1.072-0.918-0.382 0.04-0.458 0.037-0.577 0.074-0.572 0.041-0.577 0.073-0.459 0.038-0.382 0.041-0.229-0.001-0.651 0.151-0.652 0.306-0.649 0.423-0.692 0.573-0.689 0.687-0.729 0.805-0.766 0.844-0.769 0.915-0.88 0.958-0.883 0.955-0.997 0.996-1.032 0.959-1.111 0.955-1.188 0.88-1.264 0.802-1.381 0.729z" fill="url(#AIgd36)"/>
<path d="m138.27 15.35v-0.153l0.04-0.42 0.038-0.649 0.04-0.807 0.039-0.957-0.037-1.033-0.038-1.072-0.111-1.111-0.229-1.033-0.309-0.996-0.38-0.882-0.572-0.728-0.654-0.537-0.843-0.307-1.034-0.039-1.186 0.306 0.385 0.384 0.343 0.459 0.345 0.574 0.306 0.613 0.305 0.689 0.27 0.689 0.264 0.767 0.271 0.804 0.228 0.767 0.19 0.806 0.194 0.803 0.188 0.766 0.155 0.768 0.152 0.727 0.114 0.65 0.113 0.613 0.19-0.037 0.154-0.037 0.189-0.078 0.155-0.037 0.151-0.079 0.155-0.075 0.192-0.037 0.226-0.078z" fill="url(#AIgd18)"/>
<defs>
<linearGradient id="AIgd52" y2="-3558.3" gradientUnits="userSpaceOnUse" x2="-3702.7" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3526.3" x1="-3690.9">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m136.86 15.925l-0.497-2.489-0.535-2.108-0.535-1.801-0.532-1.492-0.539-1.188-0.534-0.958-0.533-0.689-0.499-0.497-0.536-0.347-0.458-0.153-0.502-0.039-0.42 0.078-0.419 0.152-0.382 0.191-0.348 0.229-0.306 0.23 0.536 0.497 0.533 0.573 0.462 0.538 0.494 0.611 0.424 0.615 0.422 0.648 0.382 0.652 0.344 0.691 0.344 0.727 0.306 0.766 0.307 0.768 0.268 0.805 0.227 0.842 0.23 0.842 0.227 0.882 0.194 0.919 0.457-0.077 0.345-0.036 0.232-0.077 0.153-0.077 0.151-0.037 0.156-0.076 0.18-0.04 0.229-0.075z" fill="url(#AIgd52)"/>
<path d="m134.94 16.651l-0.113-0.918-0.194-1.035-0.305-1.15-0.379-1.226-0.5-1.264-0.571-1.227-0.611-1.187-0.688-1.111-0.729-0.996-0.765-0.843-0.803-0.65-0.842-0.425-0.881-0.152-0.882 0.152-0.842 0.499-0.882 0.878 0.688 0.498 0.65 0.576 0.613 0.574 0.574 0.576 0.574 0.611 0.496 0.689 0.459 0.691 0.42 0.688 0.423 0.769 0.343 0.767 0.345 0.805 0.267 0.842 0.267 0.879 0.193 0.92 0.189 0.959 0.155 0.994 0.416-0.114 0.461-0.152 0.499-0.153 0.498-0.191 0.461-0.189 0.421-0.154 0.344-0.151 0.23-0.077z" fill="url(#AIgd18)"/>
<path d="m120.02 6.607l0.919-0.612 0.92-0.344 0.957-0.115 0.919 0.115 0.958 0.307 0.919 0.5 0.882 0.689 0.843 0.805 0.762 0.919 0.766 1.073 0.65 1.188 0.572 1.226 0.496 1.305 0.384 1.376 0.306 1.38 0.151 1.416-0.46 0.115-0.459 0.116-0.46 0.15-0.46 0.154-0.497 0.191-0.499 0.113-0.457 0.154-0.498 0.075-0.346-0.88-0.305-0.959-0.383-0.957-0.348-0.957-0.379-0.996-0.419-0.998-0.423-0.956-0.421-0.918-0.456-0.884-0.499-0.805-0.533-0.766-0.539-0.651-0.609-0.575-0.615-0.459-0.648-0.346-0.69-0.19z" fill="url(#AIgd52)"/>
<path d="m115.8 7.75l1.455-0.648 1.302-0.344 1.149-0.038 1.034 0.193 0.919 0.421 0.806 0.65 0.724 0.807 0.65 0.957 0.575 1.072 0.495 1.188 0.5 1.229 0.457 1.225 0.457 1.264 0.421 1.264 0.459 1.188 0.497 1.111-0.421 0.037-0.384 0.115-0.383 0.113-0.385 0.152-0.381 0.118-0.384 0.151-0.421 0.114-0.422 0.074-0.038-0.151-0.038-0.383-0.114-0.498-0.114-0.689-0.189-0.803-0.27-0.92-0.306-0.996-0.42-1.034-0.494-1.034-0.574-1.035-0.728-1.035-0.803-0.958-0.96-0.918-1.07-0.767-1.228-0.691-1.375-0.5z" fill="url(#AIgd18)"/>
<path d="m110.37 8.552l0.882-0.651 0.997-0.42 1.069-0.153 1.072 0.04 1.149 0.229 1.148 0.461 1.108 0.615 1.111 0.768 1.07 0.956 0.997 1.075 0.878 1.225 0.805 1.342 0.687 1.416 0.537 1.533 0.342 1.57 0.19 1.687-3.945 1.029-0.228-0.649-0.307-0.77-0.306-0.803-0.382-0.881-0.461-0.92-0.457-0.956-0.537-0.961-0.573-0.956-0.652-0.957-0.725-0.92-0.766-0.842-0.803-0.808-0.878-0.728-0.959-0.613-0.996-0.537-1.07-0.421z" fill="url(#AIgd52)"/>
<path d="m120.5 21.387l-0.572 0.115-0.727 0.152-0.729 0.23-0.808 0.229-0.764 0.267-0.729 0.191-0.649 0.189-0.536 0.152-0.382-0.957-0.421-0.995-0.422-0.996-0.42-1.036-0.421-1.032-0.458-0.997-0.498-0.995-0.497-0.997-0.533-0.918-0.573-0.845-0.614-0.804-0.651-0.727-0.65-0.652-0.728-0.537-0.804-0.423-0.804-0.306 0.692-0.459 0.764-0.344 0.806-0.23 0.88-0.075 0.918 0.076 0.959 0.231 0.957 0.383 0.992 0.576 0.999 0.728 0.993 0.92 0.995 1.149 0.954 1.304 0.919 1.532 0.917 1.723 0.843 1.992 0.802 2.184z" fill="url(#AIgd18)"/>
<path d="m101.29 11.34l1.571-0.841 1.415-0.498 1.304-0.114 1.187 0.193 1.032 0.458 0.996 0.691 0.841 0.883 0.805 1.073 0.688 1.188 0.649 1.265 0.573 1.341 0.534 1.34 0.536 1.302 0.498 1.265 0.458 1.148 0.456 1.035-0.534 0.076-0.459 0.112-0.422 0.079-0.422 0.114-0.421 0.114-0.459 0.115-0.498 0.076-0.572 0.112-0.5-1.033-0.458-1.036-0.46-0.994-0.458-0.958-0.459-0.958-0.495-0.88-0.5-0.881-0.495-0.806-0.575-0.807-0.61-0.727-0.612-0.688-0.688-0.652-0.769-0.615-0.801-0.536-0.92-0.498-0.956-0.46z" fill="url(#AIgd18)"/>
<path d="m96.537 12.715l1.419-0.765 1.339-0.383 1.265-0.075 1.225 0.191 1.111 0.461 1.069 0.689 0.996 0.844 0.921 0.998 0.841 1.149 0.802 1.187 0.726 1.227 0.652 1.264 0.611 1.266 0.537 1.148 0.455 1.111 0.423 0.957-0.574 0.113-0.5 0.115-0.46 0.113-0.421 0.076-0.458 0.115-0.461 0.115-0.536 0.076-0.613 0.115-0.688-1.533-0.688-1.417-0.646-1.302-0.651-1.188-0.614-1.071-0.573-0.961-0.61-0.84-0.574-0.807-0.612-0.651-0.613-0.575-0.611-0.498-0.65-0.421-0.653-0.308-0.685-0.269-0.731-0.155-0.765-0.113z" fill="url(#AIgd52)"/>
<path d="m92.937 13.747l1.378-0.65 1.307-0.308 1.222 0.001 1.19 0.233 1.07 0.458 1.033 0.654 0.956 0.844 0.92 0.957 0.802 1.072 0.766 1.148 0.726 1.188 0.613 1.188 0.609 1.189 0.5 1.15 0.456 1.033 0.421 0.959-0.459 0.113-0.42 0.113-0.424 0.076-0.383 0.116-0.421 0.077-0.42 0.075-0.462 0.113-0.496 0.077-0.231-0.765-0.342-0.845-0.42-0.842-0.497-0.919-0.535-0.919-0.651-0.921-0.649-0.92-0.728-0.92-0.765-0.841-0.805-0.846-0.803-0.766-0.804-0.652-0.843-0.613-0.805-0.498-0.802-0.383-0.806-0.23z" fill="url(#AIgd18)"/>
<path d="m88.608 14.852l1.417-0.762 1.38-0.345 1.379 0.039 1.301 0.385 1.264 0.612 1.226 0.879 1.149 1.038 1.069 1.147 0.995 1.229 0.881 1.264 0.8 1.227 0.65 1.187 0.536 1.036 0.422 0.879 0.23 0.652 0.113 0.383-0.574 0.115-0.498 0.113-0.498 0.115-0.5 0.115-0.496 0.115-0.459 0.074-0.499 0.077-0.497 0.076-0.344-0.651-0.384-0.804-0.458-0.882-0.537-0.921-0.571-1.033-0.614-1.034-0.646-0.997-0.691-1.034-0.727-0.959-0.767-0.881-0.802-0.804-0.803-0.652-0.844-0.537-0.844-0.345-0.878-0.152-0.882 0.035z" fill="url(#AIgd52)"/>
<path d="m85.468 16.077l1.266-0.842 1.224-0.459 1.149-0.113 1.149 0.19 1.071 0.461 1.033 0.692 0.958 0.842 0.915 1.035 0.844 1.113 0.805 1.184 0.727 1.229 0.687 1.225 0.574 1.15 0.535 1.073 0.421 0.918 0.383 0.766-0.46 0.077-0.382 0.114-0.344 0.115-0.308 0.113-0.347 0.114-0.305 0.115-0.308 0.078-0.343 0.073-0.344-0.955-0.421-0.958-0.422-0.921-0.46-0.918-0.537-0.919-0.531-0.844-0.613-0.844-0.65-0.805-0.689-0.767-0.764-0.688-0.765-0.614-0.844-0.574-0.919-0.5-0.919-0.421-0.996-0.308-1.071-0.229z" fill="url(#AIgd18)"/>
<path d="m81.483 16.993l1.113-0.422 1.109-0.266 1.148-0.077 1.074 0.078 1.109 0.231 1.032 0.345 1.034 0.536 1.034 0.652 0.956 0.768 0.918 0.92 0.881 0.996 0.842 1.112 0.802 1.226 0.689 1.34 0.688 1.418 0.571 1.491-0.498 0.077-0.495 0.076-0.501 0.115-0.497 0.153-0.496 0.115-0.498 0.153-0.497 0.115-0.5 0.074-0.343-0.842-0.343-0.882-0.347-0.843-0.342-0.883-0.422-0.842-0.419-0.805-0.501-0.842-0.534-0.767-0.649-0.729-0.688-0.728-0.805-0.652-0.88-0.613-0.996-0.537-1.11-0.498-1.261-0.424-1.381-0.344z" fill="url(#AIgd52)"/>
<path d="m75.815 18.329l1.455-0.609 1.457-0.385 1.34-0.189 1.34-0.037 1.265 0.191 1.226 0.346 1.147 0.498 1.111 0.652 0.992 0.805 0.994 0.919 0.884 1.036 0.84 1.15 0.764 1.264 0.652 1.34 0.611 1.381 0.535 1.491-0.459 0.077-0.46 0.076-0.536 0.078-0.501 0.074-0.533 0.078-0.538 0.074-0.535 0.076-0.535 0.076-0.269-1.072-0.383-0.994-0.42-0.996-0.533-0.959-0.575-0.881-0.651-0.843-0.688-0.805-0.766-0.729-0.842-0.689-0.916-0.574-0.959-0.539-0.995-0.459-1.071-0.346-1.112-0.307-1.146-0.191-1.188-0.078z" fill="url(#AIgd18)"/>
<path d="m73.021 18.632l1.302-0.19 1.262-0.113 1.263 0.039 1.228 0.154 1.224 0.307 1.15 0.385 1.109 0.498 1.073 0.613 0.995 0.729 0.954 0.844 0.844 0.919 0.803 1.034 0.688 1.149 0.611 1.226 0.499 1.341 0.38 1.419-0.46 0.035-0.383 0.038-0.382 0.077-0.384 0.077-0.384 0.074-0.382 0.078-0.46 0.114-0.496 0.076-0.651-1.111-0.613-1.073-0.532-0.958-0.5-0.956-0.535-0.844-0.498-0.804-0.497-0.767-0.572-0.69-0.612-0.651-0.688-0.575-0.768-0.535-0.842-0.498-0.995-0.425-1.072-0.382-1.264-0.346-1.415-0.308z" fill="url(#AIgd52)"/>
<path d="m66.933 19.432l1.914-0.457 1.8-0.268 1.646-0.075 1.531 0.154 1.417 0.307 1.302 0.461 1.187 0.573 1.074 0.77 1.03 0.842 0.917 0.96 0.844 1.034 0.802 1.112 0.728 1.147 0.688 1.227 0.612 1.226 0.611 1.265-0.307 0.037-0.42 0.037-0.459 0.115-0.501 0.076-0.496 0.115-0.462 0.114-0.419 0.036-0.346 0.039-0.571-1.148-0.613-1.035-0.689-0.996-0.726-0.918-0.766-0.883-0.805-0.806-0.879-0.726-0.919-0.69-0.956-0.616-0.996-0.573-1.034-0.498-1.07-0.498-1.111-0.423-1.147-0.383-1.189-0.346-1.222-0.309z" fill="url(#AIgd18)"/>
<path d="m63.295 19.811l1.068-0.189 1.113-0.037 1.225 0.038 1.263 0.192 1.267 0.271 1.3 0.384 1.303 0.497 1.302 0.614 1.3 0.729 1.224 0.845 1.186 0.92 1.147 1.035 1.035 1.149 0.956 1.225 0.841 1.342 0.728 1.455-0.537 0.039-0.533 0.076-0.538 0.115-0.536 0.113-0.459 0.113-0.385 0.117-0.306 0.036-0.19-0.037-0.769-0.46-0.763-0.537-0.804-0.613-0.843-0.689-0.843-0.729-0.878-0.768-0.92-0.768-0.916-0.802-0.959-0.806-0.956-0.807-0.995-0.803-0.996-0.729-1.033-0.729-0.995-0.652-1.071-0.613-1.031-0.537z" fill="url(#AIgd18)"/>
<path d="m58.197 21.262l0.958-0.955 1.034-0.572 1.074-0.23 1.109 0.077 1.148 0.308 1.225 0.575 1.227 0.769 1.3 0.879 1.301 1.074 1.341 1.11 1.34 1.19 1.34 1.188 1.377 1.188 1.377 1.112 1.376 1.035 1.381 0.92-0.421 0.074-0.499 0.037-0.612 0.041-0.613 0.037-0.648 0.037h-1.227l-0.497-0.002-1.034-0.766-0.993-0.804-0.996-0.808-0.918-0.842-0.919-0.805-0.883-0.807-0.878-0.805-0.88-0.767-0.919-0.688-0.879-0.651-0.92-0.575-0.956-0.5-0.996-0.422-1.034-0.345-1.073-0.192-1.11-0.117z" fill="url(#AIgd18)"/>
<defs>
<linearGradient id="AIgd69" y2="-3537.7" gradientUnits="userSpaceOnUse" x2="-3797.3" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2070.8 1900.1)" y1="-3509.7" x1="-3772.4">
<stop stop-color="#4F0C81" offset="0"/>
<stop stop-color="#690C73" offset=".0701"/>
<stop stop-color="#9A0A5B" offset=".209"/>
<stop stop-color="#C20748" offset=".3368"/>
<stop stop-color="#E0053A" offset=".4512"/>
<stop stop-color="#F20032" offset=".5481"/>
<stop stop-color="#FA002F" offset=".6158"/>
<stop stop-color="#F7EE5F" offset="1"/>
</linearGradient>
</defs>
<path d="m54.368 21.719l1.61-0.381 1.493-0.152 1.415 0.076 1.343 0.271 1.262 0.461 1.226 0.575 1.186 0.729 1.148 0.805 1.11 0.919 1.109 0.922 1.071 0.995 1.111 0.996 1.109 0.958 1.107 0.959 1.188 0.843 1.185 0.807-0.38 0.037-0.498 0.075-0.576 0.078-0.576 0.036-0.572 0.079-0.5 0.072-0.38 0.041-0.231 0.037-0.688-0.002-0.69-0.189-0.727-0.348-0.766-0.496-0.766-0.614-0.843-0.728-0.879-0.807-0.919-0.844-0.959-0.881-1.031-0.918-1.109-0.882-1.148-0.844-1.262-0.808-1.302-0.728-1.379-0.651-1.494-0.5z" fill="url(#AIgd69)"/>
<path d="m49.543 23.057l1.417-0.805 1.495-0.342h1.455l1.49 0.309 1.495 0.576 1.494 0.804 1.454 0.96 1.415 1.034 1.339 1.149 1.302 1.15 1.263 1.075 1.148 0.993 1.033 0.844 0.956 0.65 0.843 0.385 0.726 0.116-0.61 0.077-0.653 0.113-0.727 0.113-0.765 0.117-0.767 0.074-0.767 0.115-0.728 0.038-0.651 0.04-1.07-0.806-0.958-0.766-0.879-0.767-0.84-0.728-0.767-0.73-0.726-0.725-0.767-0.691-0.726-0.651-0.729-0.612-0.804-0.576-0.841-0.537-0.919-0.496-0.996-0.461-1.071-0.383-1.226-0.348-1.34-0.307z" fill="url(#AIgd69)"/>
<defs>
<linearGradient id="AIgd71" y2="4209.6" gradientUnits="userSpaceOnUse" x2="-3482.4" gradientTransform="matrix(.5318 .0004 -.0004 .5318 -1982.9 3021.4)" y1="4158" x1="-3498.5">
<stop stop-color="#D8E7EB" offset="0"/>
<stop stop-color="#C9D9DE" offset=".0849"/>
<stop stop-color="#A5B8C2" offset=".2184"/>
<stop stop-color="#728896" offset=".3836"/>
<stop stop-color="#405766" offset=".5537"/>
<stop stop-color="#667D8B" offset=".6417"/>
<stop stop-color="#92A7B1" offset=".742"/>
<stop stop-color="#B7C8D0" offset=".8374"/>
<stop stop-color="#CFDFE4" offset=".9257"/>
<stop stop-color="#D8E7EB" offset="1"/>
</linearGradient>
</defs>
<g fill="url(#AIgd71)">
<defs>
<linearGradient id="AIgd72" y2="-3442.3" gradientUnits="userSpaceOnUse" x2="-3688.8" gradientTransform="matrix(.5318 .0004 -.0004 .5318 2110.5 1859.4)" y1="-3493.9" x1="-3704.9">
<stop stop-color="#D8E7EB" offset="0"/>
<stop stop-color="#C9D9DE" offset=".0849"/>
<stop stop-color="#A5B8C2" offset=".2184"/>
<stop stop-color="#728896" offset=".3836"/>
<stop stop-color="#405766" offset=".5537"/>
<stop stop-color="#667D8B" offset=".6417"/>
<stop stop-color="#92A7B1" offset=".742"/>
<stop stop-color="#B7C8D0" offset=".8374"/>
<stop stop-color="#CFDFE4" offset=".9257"/>
<stop stop-color="#D8E7EB" offset="1"/>
</linearGradient>
</defs>
<path d="m142.3 7.35l0.191-0.383 0.153-0.42 0.152-0.423 0.113-0.421 0.117-0.459 0.115-0.496 0.077-0.459 0.042-0.5 0.036-0.459 0.035-0.498 0.001-0.499-0.035-0.46-0.036-0.459-0.08-0.457-0.112-0.461-0.114-0.42 0.611 0.804 0.459 0.882 0.345 0.842 0.189 0.88 0.076 0.919v0.92l-0.116 0.918-0.194 0.92-0.228 0.918-0.31 0.883-0.343 0.879-0.343 0.88-0.385 0.843-0.347 0.842-0.346 0.765-0.343 0.767 0.074-0.152 0.037-0.269 0.042-0.266v-0.345l0.037-0.424v-0.882l0.001-0.496 0.038-0.499v-0.498l0.039-0.534 0.04-0.498 0.038-0.461 0.078-0.461 0.075-0.42 0.116-0.383z" fill="url(#AIgd72)"/>
<path d="m153.97 23.252l-0.729-0.422-0.729-0.462-0.687-0.421-0.688-0.422-0.65-0.383-0.651-0.422-0.616-0.385-0.609-0.42-0.653-0.384-0.607-0.384-0.614-0.422-0.652-0.382-0.611-0.386-0.654-0.342-0.686-0.386-0.689-0.382 0.61 0.61 0.613 0.616 0.613 0.611 0.612 0.576 0.65 0.611 0.651 0.536 0.65 0.539 0.688 0.497 0.651 0.461 0.689 0.383 0.651 0.346 0.688 0.269 0.688 0.229 0.688 0.115 0.691 0.037 0.691-0.035z" fill="url(#AIgd72)"/>
<path d="m148.28 7.928l-0.536 0.308-0.5 0.345-0.495 0.345-0.461 0.344-0.46 0.343-0.419 0.383-0.424 0.421-0.423 0.383-0.384 0.422-0.384 0.422-0.382 0.421-0.345 0.457-0.383 0.422-0.346 0.459-0.344 0.459-0.346 0.459 0.153-0.496 0.192-0.499 0.191-0.537 0.229-0.534 0.231-0.536 0.265-0.499 0.31-0.498 0.346-0.495 0.382-0.46 0.461-0.381 0.498-0.385 0.537-0.344 0.612-0.269 0.652-0.229 0.765-0.152 0.805-0.076z" fill="url(#AIgd72)"/>
<path d="m142.57 3.329l-0.153 0.767-0.114 0.767-0.154 0.766-0.116 0.689-0.076 0.727-0.114 0.689-0.079 0.689-0.115 0.689-0.08 0.688-0.117 0.689-0.074 0.651-0.118 0.689-0.116 0.689-0.115 0.689-0.15 0.689-0.157 0.727-0.076-0.842-0.113-0.805-0.077-0.843-0.076-0.841-0.037-0.807-0.038-0.805 0.039-0.805 0.039-0.764 0.076-0.767 0.116-0.688 0.194-0.689 0.229-0.651 0.269-0.573 0.384-0.537 0.422-0.46 0.497-0.421z" fill="url(#AIgd72)"/>
<path d="m146.67 2.071l0.692 0.648 0.416 0.729 0.189 0.766 0.04 0.805-0.153 0.804-0.307 0.843-0.424 0.844-0.498 0.841-0.575 0.804-0.611 0.805-0.653 0.764-0.65 0.689-0.614 0.689-0.534 0.572-0.463 0.539-0.383 0.418 0.077-1.147 0.154-0.995 0.191-0.844 0.307-0.764 0.306-0.65 0.386-0.574 0.382-0.535 0.424-0.501 0.383-0.496 0.424-0.495 0.382-0.538 0.307-0.613 0.307-0.688 0.23-0.766 0.194-0.919 0.075-1.032z" fill="url(#AIgd72)"/>
<path d="m141.76 14.319v-0.805l-0.039-0.765-0.034-0.765-0.04-0.768-0.036-0.729-0.077-0.727-0.076-0.727-0.073-0.691-0.117-0.688-0.114-0.728-0.189-0.689-0.152-0.689-0.19-0.688-0.268-0.689-0.229-0.689-0.306-0.689 1.111 1.073 0.918 1.034 0.649 0.959 0.457 0.92 0.309 0.879 0.151 0.805 0.037 0.806-0.077 0.727-0.195 0.689-0.187 0.651-0.27 0.613-0.271 0.533-0.23 0.537-0.229 0.459-0.152 0.459-0.078 0.383z" fill="url(#AIgd72)"/>
<path d="m152.98 16.97l-0.613 0.114-0.614 0.116-0.611 0.075-0.613 0.075-0.609 0.038-0.616 0.037h-1.188l-0.612-0.039h-0.574l-0.613-0.077-0.573-0.038-0.613-0.04-0.575-0.075-0.612-0.079-0.574-0.075 0.498 0.229 0.498 0.192 0.535 0.231 0.537 0.19 0.574 0.193 0.576 0.151 0.61 0.156 0.61 0.076 0.612 0.039h0.651l0.651-0.039 0.654-0.15 0.651-0.191 0.651-0.27 0.648-0.381 0.654-0.46z" fill="url(#AIgd72)"/>
<path d="m149.42 20.07l0.461 0.078 0.419 0.075 0.461 0.115 0.457 0.115 0.463 0.194 0.456 0.151 0.421 0.191 0.46 0.23 0.421 0.23 0.421 0.267 0.383 0.271 0.386 0.268 0.343 0.307 0.308 0.307 0.304 0.307 0.27 0.344-0.269-0.917-0.422-0.808-0.494-0.688-0.615-0.651-0.688-0.536-0.768-0.5-0.85-0.42-0.882-0.347-0.919-0.306-0.919-0.307-0.955-0.231-0.958-0.23-0.957-0.193-0.919-0.189-0.843-0.154-0.842-0.192 0.42 0.153 0.574 0.306 0.69 0.463 0.841 0.497 0.843 0.535 0.879 0.499 0.842 0.46 0.768 0.308z" fill="url(#AIgd72)"/>
<path d="m151.17 26.926l0.345-0.881 0.117-0.844-0.116-0.842-0.307-0.766-0.457-0.729-0.612-0.727-0.728-0.69-0.804-0.614-0.843-0.613-0.879-0.536-0.919-0.538-0.884-0.459-0.801-0.42-0.767-0.387-0.651-0.344-0.496-0.309 0.532 1.113 0.538 0.919 0.573 0.728 0.536 0.652 0.574 0.498 0.574 0.459 0.574 0.346 0.574 0.346 0.571 0.346 0.577 0.382 0.572 0.384 0.536 0.46 0.537 0.573 0.535 0.691 0.497 0.806 0.498 0.995z" fill="url(#AIgd72)"/>
<path d="m141.53 17.497l0.422 0.652 0.42 0.652 0.421 0.65 0.38 0.613 0.346 0.613 0.345 0.649 0.346 0.614 0.305 0.613 0.304 0.652 0.268 0.65 0.271 0.613 0.229 0.65 0.19 0.689 0.192 0.65 0.152 0.689 0.152 0.73 0.384-1.455 0.191-1.265 0.041-1.149-0.115-0.994-0.229-0.844-0.346-0.766-0.42-0.652-0.458-0.537-0.538-0.499-0.535-0.421-0.573-0.346-0.537-0.306-0.496-0.306-0.46-0.268-0.342-0.307-0.31-0.271z" fill="url(#AIgd72)"/>
</g>
</g>
</g><!-- Layer_x0020_1 -->
</svg>

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1,304 @@
<?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"
version="1.1"
id="svg2"
viewBox="0 0 534.00001 242"
height="242"
width="534">
<defs
id="defs4">
<radialGradient
id="radialGradient114"
spreadMethod="pad"
gradientTransform="matrix(135.27,0,0,135.27,337.87,976.06965)"
gradientUnits="userSpaceOnUse"
r="1"
cy="0"
cx="0"
fy="-0.181299"
fx="0.62031102">
<stop
id="stop116"
offset="0"
style="stop-opacity:1;stop-color:#ffffff" />
<stop
id="stop118"
offset="0.00115317"
style="stop-opacity:1;stop-color:#ffffff" />
<stop
id="stop120"
offset="0.133397"
style="stop-opacity:1;stop-color:#f6eb08" />
<stop
id="stop122"
offset="0.859272"
style="stop-opacity:1;stop-color:#eb821a" />
<stop
id="stop124"
offset="1"
style="stop-opacity:1;stop-color:#eb821a" />
</radialGradient>
<clipPath
id="clipPath100"
clipPathUnits="userSpaceOnUse">
<path
id="path102"
d="m 5212.8,939.52 -18,36.011 -20,33.999 -28,44 -28,36 -34,42 -34,35.99 -40,38.01 -38,31.99 -42,30 -42,26.01 -46.5,26 -39.5,20 -40,16 -36,10 -36,8 -36,6 -42,4 -2748,-6 -44,-2 -44,-2 -48,-6.01 -40,-7.99 -52,-12.01 -36,-11.99 -38,-14 -38,-13.5 -48,-24.5 -36,-18 -46,-30 -42,-32 -44,-36.01 -38,-37.99 -30,-36 -32,-42 -24,-42 -18,-35.999 -10,-34.011 -6.64,-28.211 4074.25,0 -11.61,28.211 z" />
</clipPath>
<linearGradient
id="linearGradient104"
spreadMethod="pad"
gradientTransform="matrix(0,-468.741,-468.741,0,3187.29,1381.09)"
gradientUnits="userSpaceOnUse"
y2="0"
x2="1"
y1="0"
x1="0">
<stop
id="stop106"
offset="0"
style="stop-opacity:1;stop-color:#f57c14" />
<stop
id="stop108"
offset="0.06066242"
style="stop-opacity:1;stop-color:#f57c14" />
<stop
id="stop110"
offset="1"
style="stop-opacity:1;stop-color:#9e3539" />
</linearGradient>
<clipPath
id="clipPath82"
clipPathUnits="userSpaceOnUse">
<path
id="path84"
d="m 5192.46,1066.59 c 0,268.02 -217.19,485.3 -485.11,485.3 -267.91,0 -485.1,-217.28 -485.1,-485.3 0,-37.78 4.45,-74.5 12.61,-109.789 l 944.98,0 c 8.17,35.289 12.62,72.009 12.62,109.789 z" />
</clipPath>
<linearGradient
id="linearGradient86"
spreadMethod="pad"
gradientTransform="matrix(-146.347,-428.944,-428.944,146.347,4880.13,1577.06)"
gradientUnits="userSpaceOnUse"
y2="0"
x2="1"
y1="0"
x1="0">
<stop
id="stop88"
offset="0"
style="stop-opacity:1;stop-color:#ffffff" />
<stop
id="stop90"
offset="0.803291"
style="stop-opacity:1;stop-color:#f57d14" />
<stop
id="stop92"
offset="1"
style="stop-opacity:1;stop-color:#f57d14" />
</linearGradient>
<clipPath
id="clipPath64"
clipPathUnits="userSpaceOnUse">
<path
id="path66"
d="m 2223.9,947.762 c 0,293.878 -238.14,532.128 -531.91,532.128 -293.77,0 -531.92,-238.25 -531.92,-532.128 0,-1.043 0.08,-2.051 0.08,-3.082 l 1063.67,0 c 0.01,1.031 0.08,2.039 0.08,3.082 z" />
</clipPath>
<linearGradient
id="linearGradient68"
spreadMethod="pad"
gradientTransform="matrix(953.781,-1468.52,-1468.52,-953.781,1093.23,1947.08)"
gradientUnits="userSpaceOnUse"
y2="0"
x2="1"
y1="0"
x1="0">
<stop
id="stop70"
offset="0"
style="stop-opacity:1;stop-color:#ffffff" />
<stop
id="stop72"
offset="0.803291"
style="stop-opacity:1;stop-color:#f57d14" />
<stop
id="stop74"
offset="1"
style="stop-opacity:1;stop-color:#f57d14" />
</linearGradient>
<clipPath
id="clipPath44"
clipPathUnits="userSpaceOnUse">
<path
id="path46"
d="m 2443.21,1615.69 c -49.44,-179.67 -235.17,-285.23 -414.85,-235.79 -179.67,49.44 -285.23,235.18 -235.79,414.83 49.44,179.68 235.16,285.26 414.83,235.82 179.68,-49.45 285.26,-235.19 235.81,-414.86 z" />
</clipPath>
<linearGradient
id="linearGradient48"
spreadMethod="pad"
gradientTransform="matrix(176.245,-310.049,-310.049,-176.245,1936.12,2024.98)"
gradientUnits="userSpaceOnUse"
y2="0"
x2="1"
y1="0"
x1="0">
<stop
id="stop50"
offset="0"
style="stop-opacity:1;stop-color:#ffffff" />
<stop
id="stop52"
offset="0.803291"
style="stop-opacity:1;stop-color:#f57d14" />
<stop
id="stop54"
offset="1"
style="stop-opacity:1;stop-color:#f57d14" />
</linearGradient>
<linearGradient
id="linearGradient30"
spreadMethod="pad"
gradientTransform="matrix(0,-99.126375,99.126375,0,287.81625,910.90087)"
gradientUnits="userSpaceOnUse"
y2="0"
x2="1"
y1="0"
x1="0">
<stop
id="stop32"
offset="0"
style="stop-opacity:1;stop-color:#f57d14" />
<stop
id="stop34"
offset="1"
style="stop-opacity:1;stop-color:#ffffff" />
</linearGradient>
<radialGradient
id="radialGradient14"
spreadMethod="pad"
gradientTransform="matrix(101.06288,0,0,101.06288,422.72,945.97585)"
gradientUnits="userSpaceOnUse"
r="1"
cy="0"
cx="0"
fy="0.051440898"
fx="-0.0244783">
<stop
id="stop16"
offset="0"
style="stop-opacity:1;stop-color:#ffffff" />
<stop
id="stop18"
offset="0.00164407"
style="stop-opacity:1;stop-color:#ffffff" />
<stop
id="stop20"
offset="0.190184"
style="stop-opacity:1;stop-color:#f6eb08" />
<stop
id="stop22"
offset="0.859272"
style="stop-opacity:1;stop-color:#eb821a" />
<stop
id="stop24"
offset="1"
style="stop-opacity:1;stop-color:#eb821a" />
</radialGradient>
</defs>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-810.36218)"
id="layer1">
<g
transform="translate(0.500001,2e-5)"
id="g5030">
<path
id="path26"
style="fill:url(#radialGradient14);fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 414.3825,881.29837 12.00125,-42 1.74875,0.25 1.25,44 22.5,-37.25 2.00125,1 -10.5,42.25 31.875,-30.25 1.62375,1.5 -21.49875,38.25 38.75,-20.5 1.25,1.5 -30.75,31.5 42.75,-9.75 1,1.75 -38,22.25 43.99875,1.625 0,1.875 -42.5,11.74998 42.25125,12.5 0,1.75 -44,0.75 37.25,23.25 -1,2 -42.375,-10.75 29.875,31.74875 -1,1.7512 -38,-21.74995 20.375,38.49995 -1.875,1.4988 -31.25,-30.74875 10.25,42.24975 -2,1.25 -22.25125,-37.75095 -0.68625,43.50095 -2.3125,0.5 -12.00125,-41.99975 -12.5,41.99975 -2.24875,-0.5 0,-43.50095 -1.25,-0.4988 -24.25,36.49975 10.5,-42.25095 -32,29.99995 -1.75,-1.4988 21.75,-37.99995 -39,20.24995 -1.25,-1.5 30.74875,-30.99995 -42.99875,9.5 -0.5,-1.75 38,-22.25 -43.5,-1.75 -0.75,-1.75 42.1875,-12 -41.6875,-12.24998 0.25,-2 43.75,-0.75 -37,-22.5 0.25,-2 42.875,10.75 -30.375,-32 1.5,-1.75 38.5,21 -21,-38 1.25,-1.5 32.25,30.75 -10.50125,-42.75 -0.35875,-0.75 25.2975,38 0.5625,-44.25 2.5,0 11.99875,42" />
<path
id="path28"
style="fill:#f57c14;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 533.0625,1022.8246 c 0,-41.93875 -33.9975,-75.93745 -75.9375,-75.93745 -16.94,0 -32.5825,5.5512 -45.21375,14.9287 1.57,-7.9637 2.40125,-16.1925 2.40125,-24.61623 0,-69.8975 -56.66375,-126.5625 -126.5625,-126.5625 -55.66125,0 -102.92875,35.9325 -119.875,85.86625 -9.51375,-7.13625 -21.33375,-11.36625 -34.14125,-11.36625 -31.45375,0 -56.952502,25.49875 -56.952502,56.95373 0,4.87 0.61375,9.595 1.76375,14.1075 -43.625,1.2688 -78.6075,37.00749 -78.6075,80.93865 0,5.1098 0.495,10.1026 1.4,14.9502 l 525.873752,0 c 3.765,-9.0064 5.85125,-18.8901 5.85125,-29.2626" />
<path
id="path36"
style="fill:url(#linearGradient30);fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 399.445,937.26587 c 0,61.65128 -50.14375,100.65233 -111.795,100.65233 -61.65125,0 -111.4625,-39.00105 -111.4625,-100.65233 0,-61.65125 49.9775,-111.62875 111.62875,-111.62875 61.65125,0 111.62875,49.9775 111.62875,111.62875" />
<path
id="path38"
style="fill:#f57c14;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 382.3475,937.96965 c 0,37.7025 -42.64125,68.26615 -95.23875,68.26615 -52.59875,0 -95.2375,-30.56365 -95.2375,-68.26615 0,-37.70253 42.63875,-68.26628 95.2375,-68.26628 52.5975,0 95.23875,30.56375 95.23875,68.26628" />
<g
id="g40"
transform="matrix(0.125,0,0,-0.125,-130.69625,1155.4983)">
<g
clip-path="url(#clipPath44)"
id="g42">
<path
id="path56"
style="fill:url(#linearGradient48);fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2443.21,1615.69 c -49.44,-179.67 -235.17,-285.23 -414.85,-235.79 -179.67,49.44 -285.23,235.18 -235.79,414.83 49.44,179.68 235.16,285.26 414.83,235.82 179.68,-49.45 285.26,-235.19 235.81,-414.86" />
</g>
</g>
<path
id="path58"
style="fill:#f57c14;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 168.3,926.26587 c 7.15125,12.38498 -1.79,30.93498 -19.97,41.43128 -18.18,10.4975 -38.71625,8.96499 -45.86625,-3.42 -7.151252,-12.3863 1.78875,-30.93503 19.97,-41.43129 18.18,-10.49749 38.715,-8.96624 45.86625,3.42" />
<g
id="g60"
transform="matrix(0.125,0,0,-0.125,-130.69625,1155.4983)">
<g
clip-path="url(#clipPath64)"
id="g62">
<path
id="path76"
style="fill:url(#linearGradient68);fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2223.9,947.762 c 0,293.878 -238.14,532.128 -531.91,532.128 -293.77,0 -531.92,-238.25 -531.92,-532.128 0,-1.043 0.08,-2.051 0.08,-3.082 l 1063.67,0 c 0.01,1.031 0.08,2.039 0.08,3.082" />
</g>
</g>
<g
id="g78"
transform="matrix(0.125,0,0,-0.125,-130.69625,1155.4983)">
<g
clip-path="url(#clipPath82)"
id="g80">
<path
id="path94"
style="fill:url(#linearGradient86);fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 5192.46,1066.59 c 0,268.02 -217.19,485.3 -485.11,485.3 -267.91,0 -485.1,-217.28 -485.1,-485.3 0,-37.78 4.45,-74.5 12.61,-109.789 l 944.98,0 c 8.17,35.289 12.62,72.009 12.62,109.789" />
</g>
</g>
<g
id="g96"
transform="matrix(0.125,0,0,-0.125,-130.69625,1155.4983)">
<g
clip-path="url(#clipPath100)"
id="g98">
<path
id="path112"
style="fill:url(#linearGradient104);fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 5212.8,939.52 -18,36.011 -20,33.999 -28,44 -28,36 -34,42 -34,35.99 -40,38.01 -38,31.99 -42,30 -42,26.01 -46.5,26 -39.5,20 -40,16 -36,10 -36,8 -36,6 -42,4 -2748,-6 -44,-2 -44,-2 -48,-6.01 -40,-7.99 -52,-12.01 -36,-11.99 -38,-14 -38,-13.5 -48,-24.5 -36,-18 -46,-30 -42,-32 -44,-36.01 -38,-37.99 -30,-36 -32,-42 -24,-42 -18,-35.999 -10,-34.011 -6.64,-28.211 4074.25,0 -11.61,28.211" />
</g>
</g>
<path
id="path126"
style="fill:url(#radialGradient114);fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 421.92375,951.74835 45.99875,60.24995 -1.74875,1.25 -53.75,-48.24995 -206.25,37.49875 -0.25,-1.9988 191.75,-43.99995 -105.5,-35.99998 1.25,-1.5 128.5,32.74998" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

@ -0,0 +1 @@
<?xml version="1.0"?><svg viewBox="0 0 8 8" version="1.1" xmlns="http://www.w3.org/2000/svg"><circle cx="4" cy="4" r="4" fill="#F58F35"/></svg>

After

Width:  |  Height:  |  Size: 144 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 320 B

@ -0,0 +1,11 @@
<?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="200px" height="200px" viewBox="0 0 200 200" enable-background="new 0 0 200 200" xml:space="preserve">
<g id="background">
<rect fill="#2E9FFF" width="200" height="200"/>
</g>
<g id="Layer_2">
</g>
<path fill="#FFFFFF" d="M102.535,167.5c-16.518,0-31.621-6.036-43.298-16.021L30.5,155.405l11.102-27.401 c-3.868-8.535-6.038-18.01-6.038-28.004c0-37.277,29.984-67.5,66.971-67.5c36.984,0,66.965,30.223,66.965,67.5 C169.5,137.284,139.52,167.5,102.535,167.5z M139.102,99.807v-0.188c0-19.479-13.736-33.367-37.42-33.367h-25.58v67.5h25.201 C125.171,133.753,139.102,119.284,139.102,99.807L139.102,99.807z M101.964,117.168h-7.482V82.841h7.482 c10.989,0,18.283,6.265,18.283,17.07v0.188C120.247,110.995,112.953,117.168,101.964,117.168z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,12 @@
<?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="64px" height="64px" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<g>
<g>
<path fill="#3DA8CC" d="M28.012,27.998H0.004v8h28.008V27.998z M32,7.998H0.004v8h32.01L32,7.998z M52.02,7.998H40.016
l11.293,22.312L40.016,47.998H0.004L0,56.002h48.879L64,30.311L52.02,7.998z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 689 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="494px" height="455px" viewBox="0 0 494 455" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.2.2 (9983) - http://www.bohemiancoding.com/sketch -->
<title>logo</title>
<desc>Created with Sketch.</desc>
<defs>
<path id="path-1" d="M0,1173.3333 L1999.99995,1173.3333 L1999.99995,0 L0,0 L0,1173.3333 L0,1173.3333 Z"></path>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="gitlab_logo" sketch:type="MSLayerGroup" transform="translate(-359.000000, -360.000000)">
<g id="g10" transform="translate(999.999975, 587.666648) scale(1, -1) translate(-999.999975, -587.666648) translate(0.000000, 0.999996)">
<g id="g16">
<g id="g18-Clipped">
<mask id="mask-2" sketch:name="path22" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="path22"></g>
<g id="g18" mask="url(#mask-2)">
<g transform="translate(358.666658, 358.666658)">
<g id="g44" transform="translate(0.532000, 0.774933)">
<path d="M491.999988,194.666662 L464.441322,279.481326 L409.82399,447.578655 C407.014656,456.226655 394.778657,456.226655 391.96799,447.578655 L337.349325,279.481326 L155.982663,279.481326 L101.362664,447.578655 C98.5533309,456.226655 86.3173312,456.226655 83.5066646,447.578655 L28.8893326,279.481326 L1.33199997,194.666662 C-1.18266664,186.930662 1.57199996,178.455996 8.1519998,173.674662 L246.665327,0.385333324 L485.179988,173.674662 C491.759988,178.455996 494.513321,186.930662 491.999988,194.666662" id="path46" fill="#FC6D26" sketch:type="MSShapeGroup"></path>
</g>
<g id="g48" transform="translate(155.197863, 1.160267)">
<path d="M91.9999977,0 L91.9999977,0 L182.683995,279.095993 L1.31599997,279.095993 L91.9999977,0 L91.9999977,0 Z" id="path50" fill="#E24329" sketch:type="MSShapeGroup"></path>
</g>
<g id="g52" transform="translate(247.197860, 1.160267)">
<g id="path54"></g>
</g>
<g id="g56" transform="translate(28.531199, 1.160800)">
<path d="M218.666661,0 L127.982663,279.09466 L0.890666644,279.09466 L218.666661,0 L218.666661,0 Z" id="path58" fill="#FC6D26" sketch:type="MSShapeGroup"></path>
</g>
<g id="g60" transform="translate(247.197860, 1.160800)">
<g id="path62"></g>
</g>
<g id="g64" transform="translate(0.088533, 0.255867)">
<path d="M29.3333326,279.999993 L29.3333326,279.999993 L1.77466662,195.185328 C-0.738666648,187.449329 2.01466662,178.974662 8.59599979,174.194662 L247.109327,0.905333311 L29.3333326,279.999993 L29.3333326,279.999993 Z" id="path66" fill="#FCA326" sketch:type="MSShapeGroup"></path>
</g>
<g id="g68" transform="translate(247.197860, 1.160267)">
<g id="path70"></g>
</g>
<g id="g72" transform="translate(29.421866, 280.255593)">
<path d="M0,0 L127.091997,0 L72.4733315,168.097329 C69.6626649,176.746662 57.4266652,176.746662 54.617332,168.097329 L0,0 L0,0 Z" id="path74" fill="#E24329" sketch:type="MSShapeGroup"></path>
</g>
<g id="g76" transform="translate(247.197860, 1.160800)">
<path d="M0,0 L90.6839977,279.09466 L217.775995,279.09466 L0,0 L0,0 Z" id="path78" fill="#FC6D26" sketch:type="MSShapeGroup"></path>
</g>
<g id="g80" transform="translate(246.307061, 0.255867)">
<path d="M218.666661,279.999993 L218.666661,279.999993 L246.225327,195.185328 C248.73866,187.449329 245.985327,178.974662 239.403994,174.194662 L0.890666644,0.905333311 L218.666661,279.999993 L218.666661,279.999993 Z" id="path82" fill="#FCA326" sketch:type="MSShapeGroup"></path>
</g>
<g id="g84" transform="translate(336.973725, 280.255593)">
<path d="M127.999997,0 L0.907999977,0 L55.5266653,168.097329 C58.3373319,176.746662 70.5733316,176.746662 73.3826648,168.097329 L127.999997,0 L127.999997,0 Z" id="path86" fill="#E24329" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="256px" height="252px" viewBox="0 0 256 252" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<defs>
<linearGradient x1="0.0407161537%" y1="50.0909506%" x2="100.078192%" y2="50.0909506%" id="linearGradient-1">
<stop stop-color="#4284F0" offset="0%"></stop>
<stop stop-color="#4487F4" offset="100%"></stop>
</linearGradient>
<linearGradient x1="28.4480596%" y1="81.5611444%" x2="55.4742329%" y2="42.2373747%" id="linearGradient-2">
<stop stop-color="#F5B406" offset="0%"></stop>
<stop stop-color="#F4B913" offset="100%"></stop>
</linearGradient>
</defs>
<g>
<g transform="translate(102.000000, 126.000000)">
<path d="M152.2,28.4 L107.4,126 L0.3,126 L58.9,0 L133.9,0 C148.5,0 158.2,15.1 152.2,28.4 L152.2,28.4 L152.2,28.4 Z" fill="#437DE6"></path>
<path d="M133.9,1.8 C140.2,1.8 145.9,4.9 149.3,10.2 C152.7,15.5 153.1,22 150.5,27.7 L106.3,124.3 L5.2,124.3 L62.1,1.8 L133.9,1.8 L133.9,1.8 Z M133.9,0 L61,0 L2.4,126 L107.4,126 L152.1,28.4 C158.2,15.1 148.5,0 133.9,0 L133.9,0 L133.9,0 Z" fill="#196CEA"></path>
<path d="M62.1,1.8 C62.1,1.8 118.3,62.8 131.5,69.1 L149.8,29 C156.2,16.3 148,1.5 132.7,1.7 L62.1,1.8 L62.1,1.8 Z" fill="url(#linearGradient-1)"></path>
</g>
<g>
<path d="M112.9,10.9 L0,252 L104.4,252 L165,121.7 L221.6,0 L130,0 C122.7,0 116,4.2 112.9,10.9 L112.9,10.9 L112.9,10.9 Z" fill="url(#linearGradient-2)"></path>
<path d="M218.8,1.8 L163.4,121 L103.3,250.3 L2.8,250.3 L114.5,11.6 C117.3,5.6 123.4,1.7 130,1.7 L218.8,1.7 L218.8,1.8 L218.8,1.8 Z M221.6,0 L130,0 C122.7,0 116,4.2 112.9,10.9 L0,252 L104.4,252 L165,121.7 L221.6,0 L221.6,0 Z" fill="#F3AA00"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 829 B

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="256px" height="256px" viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<defs>
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-1">
<feOffset dx="0" dy="16" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="9" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.214965466 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
</defs>
<g>
<path d="M127.978667,155.386667 L256,27.9306667 L256,20.608 C256,9.22666667 246.773333,0 235.392,0 L20.608,0 C9.22666667,0 0,9.22666667 0,20.608 L0,170.912 L71.0666667,100.256 L127.978667,155.386667" fill="#FF9C0B"></path>
<path d="M71.088,157.829333 L0,228.768 L0,235.392 C0,246.773333 9.22666667,256 20.608,256 L235.392,256 C246.773333,256 256,246.773333 256,235.392 L256,86.5973333 L127.978667,214.053333 L71.088,157.829333" fill="#FB5722"></path>
<path d="M0,170.912 L71.0666667,100.256 L127.978667,155.386667 L256,27.9306667 L255.978667,86.6133333 L127.978667,214.053333 L71.088,157.829333 L0,228.768 L0,170.912" fill="#F2F2F2" filter="url(#filter-1)"></path>
<path d="M99.552,185.968 L99.5573333,127.850667 L71.088,157.829333 L99.552,185.968" fill="#FF9B07"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 589 B

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="433.701" height="433.701" viewBox="0 0 433.701 433.701"><path fill="#4987CE" d="M216.85 432.85c-2.147 0-4.285-.038-6.42-.1l44.144-121.318h60.75c10.663 0 22.368-8.197 26.015-18.212l47.89-131.546c7.833-21.537-4.5-39.157-27.42-39.157h-84.28l-70.71 194.316h-.028l-40.09 110.153C71.592 404.376.85 318.878.85 216.85c0-99.085 66.72-182.58 157.683-208.026l-41.365 113.693h-.012L48.39 311.432l45.777.004 58.48-160.53h34.405l-58.48 160.53 45.76.008 54.498-149.77c7.84-21.537-4.497-39.157-27.393-39.157h-38.48L207.14 1.077c3.22-.143 6.454-.227 9.708-.227 119.294 0 216 96.706 216 216 0 119.293-96.706 216-216 216zm130.692-282.06h-34.395L264.98 282.948h34.396l48.166-132.158z"/></svg>

After

Width:  |  Height:  |  Size: 719 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 789 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 B

@ -0,0 +1,5 @@
<?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 xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="400">
<path d="M 0,0 0,27.367 194.64844,27.367 194.64844,0 0,0 z M 222.22657,0 222.22657,27.367 499.60937,27.367 C 499.60936,27.367 471.27625,0 433.75,0 L 222.22657,0 z M 554.02344,0 554.02344,27.367 721.83594,27.367 711.875,0 554.02344,0 z M 842.14844,0 832.1875,27.367 998.47656,27.367 998.47656,0 842.14844,0 z M 0,53.22221 0,80.589202 194.64844,80.589202 194.64844,53.22221 0,53.22221 z M 222.22657,53.260975 222.22657,80.589202 531.79688,80.589202 C 531.79688,80.589214 528.18125,59.526386 521.875,53.260975 L 222.22657,53.260975 z M 554.02344,53.260975 554.02344,80.589202 740.23438,80.589202 731.01562,53.260975 554.02344,53.260975 z M 822.22656,53.260975 813.00781,80.589202 998.47656,80.589202 998.47656,53.260975 822.22656,53.260975 z M 55.937496,106.44442 55.937496,133.85017 140.23437,133.85017 140.23437,106.44442 55.937496,106.44442 z M 278.16407,106.44442 278.16407,133.85017 362.46093,133.85017 362.46093,106.44442 278.16407,106.44442 z M 444.45313,106.44442 444.45313,133.85017 528.75,133.85017 C 528.75001,133.85017 534.10156,119.37715 534.10156,106.44442 L 444.45313,106.44442 z M 609.96094,106.44442 609.96094,133.85017 759.41407,133.85017 749.45313,106.44442 609.96094,106.44442 z M 803.86719,106.44442 793.86719,133.85017 944.0625,133.85017 944.0625,106.44442 803.86719,106.44442 z M 55.937496,159.7054 55.937496,187.07238 140.23437,187.07238 140.23437,159.7054 55.937496,159.7054 z M 278.16407,159.7054 278.16407,187.07238 493.47657,187.07238 C 493.47658,187.07237 511.48781,173.0301 517.22656,159.7054 L 278.16407,159.7054 z M 609.96094,159.7054 609.96094,187.07238 694.25781,187.07238 694.25781,171.83835 699.60937,187.07238 854.02344,187.07238 859.76563,171.83835 859.76563,187.07238 944.0625,187.07238 944.0625,159.7054 785.82031,159.7054 777.42187,182.88593 768.98438,159.7054 609.96094,159.7054 z M 55.937496,212.92761 55.937496,240.29459 140.23437,240.29459 140.23437,212.92761 55.937496,212.92761 z M 278.16407,212.92761 278.16407,240.29459 517.22656,240.29459 C 511.48657,227.01331 493.47657,212.92761 493.47657,212.92761 L 278.16407,212.92761 z M 609.96094,212.92761 609.96094,240.29459 694.25781,240.29459 694.25781,212.92761 609.96094,212.92761 z M 709.57031,212.92761 719.76563,240.29459 835.54688,240.29459 845.23438,212.92761 709.57031,212.92761 z M 859.76563,212.92761 859.76563,240.29459 944.0625,240.29459 944.0625,212.92761 859.76563,212.92761 z M 55.937496,266.14982 55.937496,293.5168 140.23437,293.5168 140.23437,266.14982 55.937496,266.14982 z M 278.16407,266.14982 278.16407,293.5168 362.46093,293.5168 362.46093,266.14982 278.16407,266.14982 z M 444.45313,266.14982 444.45313,293.5168 534.10156,293.5168 C 534.10158,280.60147 528.75,266.14982 528.75,266.14982 L 444.45313,266.14982 z M 609.96094,266.14982 609.96094,293.5168 694.25781,293.5168 694.25781,266.14982 609.96094,266.14982 z M 728.71093,266.14982 738.59375,293.5168 816.21093,293.5168 826.17187,266.14982 728.71093,266.14982 z M 859.76563,266.14982 859.76563,293.5168 944.0625,293.5168 944.0625,266.14982 859.76563,266.14982 z M 1.52343,319.37203 1.52343,346.77778 196.17187,346.77778 196.17187,319.37203 1.52343,319.37203 z M 222.22657,319.37203 222.22657,346.77778 521.875,346.77778 C 528.18125,340.50245 531.79688,319.37203 531.79688,319.37203 L 222.22657,319.37203 z M 555.54687,319.37203 555.54687,346.77778 694.25781,346.77778 694.25781,319.37203 555.54687,319.37203 z M 747.89062,319.37203 758.04687,346.77778 797.53906,346.77778 807.07031,319.37203 747.89062,319.37203 z M 859.76563,319.37203 859.76563,346.77778 1000,346.77778 1000,319.37203 859.76563,319.37203 z M 1.52343,372.633 1.52343,400 196.17187,400 196.17187,372.633 1.52343,372.633 z M 222.22657,372.633 222.22657,399.96124 433.75,399.96124 C 471.27624,399.96122 499.60937,372.633 499.60937,372.633 L 222.22657,372.633 z M 555.54687,372.633 555.54687,400 694.25781,400 694.25781,372.633 555.54687,372.633 z M 767.14844,372.633 776.91407,399.92246 778.59375,399.96124 788.51563,372.633 767.14844,372.633 z M 859.76563,372.633 859.76563,400 1000,400 1000,372.633 859.76563,372.633 z" fill="#1f70c1"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="177" height="188" viewBox="0 0 177 188"><title>marionette</title><g transform="translate(13.344)"><path fill="#939598" d="M87.743 82.508l16.89-39.95c.2-.48.76-.707 1.244-.506a.94.94 0 0 1 .51 1.233L91.502 78.487l-3.76 4.02z"/><path fill="#931A2B" d="M102.313 62.177S94.23 72.77 88.525 78.89c-5.71 6.122-14.03 15.774-14.03 15.774v21.58c.06-.004.115-.016.175-.016 1.38 0 2.498 1.105 2.498 2.47 0 1.366-1.12 2.473-2.498 2.473-.06 0-.115-.01-.175-.012v21.772s10.478-7.12 18.068-14.01c8.558-7.767 18.07-19.895 18.07-19.895l-8.32-46.842z"/><path fill="#A7A9AC" d="M68.562 22.69l-.078 8.413-30.533 12.23.54-7.475 30.08-13.17v.002z"/><path fill="#BCBEC0" d="M110.98 35.564l.595 7.472-30.687-11.984-.145-8.41 30.237 12.922zM74.64 20.03l.032 8.593-44.665-17.445.927-9.832L74.64 20.03zM30.934 1.346l-.927 9.832-5.923 3.495 1.024-9.6 5.826-3.727z"/><path fill="#A7A9AC" d="M118.147.98l1 9.826-44.475 17.817-.033-8.594L118.14.98z"/><path fill="#BCBEC0" d="M124.017 4.66l1.1 9.593-5.97-3.447-1-9.825 5.87 3.68z"/><path fill="#808285" d="M44.03 45.052l-6.08-1.718 30.534-12.23-44.4-16.43 5.923-3.496 44.665 17.445 44.476-17.817 5.968 3.447-44.228 16.8 30.687 11.983-6.065 1.768-30.81-11.4L44.03 45.05v.002z"/><path fill="#939598" d="M24.566 69.727c-.032 0-.064 0-.095-.005a.943.943 0 0 1-.85-1.03l5.448-54.31a.942.942 0 0 1 1.04-.843.94.94 0 0 1 .852 1.02l-5.443 54.31a.948.948 0 0 1-.944.85h-.002zm97.87 0a.947.947 0 0 1-.948-.885l-3.29-54.683a.945.945 0 0 1 .892-1 .94.94 0 0 1 1.008.88l3.287 54.68a.943.943 0 0 1-.89 1l-.06.002zM58.9 80.657l-15.745-37.12a.942.942 0 0 1 .507-1.236.957.957 0 0 1 1.246.51l17.476 41.2-3.484-3.35z"/><path fill="#A81E2C" d="M72.176 118.7c0-1.306 1.024-2.364 2.32-2.455v-21.58s-8.323-9.653-14.03-15.775c-5.706-6.12-13.79-16.713-13.79-16.713l-8.32 46.848s9.51 12.127 18.068 19.894c7.59 6.88 18.07 14 18.07 14v-21.77c-1.293-.09-2.318-1.15-2.318-2.453z"/><path fill="#939598" d="M74.67 120.11a.952.952 0 0 1-.646-.25l-32.77-30.126-.01-2.578 33.42 30.72L107.66 86.79l.133 2.472-32.468 30.588a.945.945 0 0 1-.657.262h.002z"/><path fill="#CE2227" d="M143.21 68.768l-40.896-6.59s3.804 21.657 3.804 57.91c0 36.257-4.993 60.975-4.993 60.975l41.373-4.474s5.23-19.78 5.23-53.92c-.003-34.134-4.52-53.91-4.52-53.91h.003zm-18.904 95.58a2.01 2.01 0 0 1-2.02-2c0-1.102.903-2 2.02-2a2.01 2.01 0 0 1 2.02 2c0 1.104-.902 2-2.02 2zm-81.434-44.26c0-36.254 3.804-57.91 3.804-57.91L5.78 68.768s-4.517 19.774-4.517 53.91c0 34.136 5.23 53.912 5.23 53.912l41.372 4.477c0-.005-4.993-24.72-4.993-60.98zm-18.948 44.13a1.877 1.877 0 0 1-1.885-1.868c0-1.03.84-1.867 1.88-1.867s1.88.836 1.88 1.865a1.876 1.876 0 0 1-1.883 1.866v.003z"/><ellipse fill="#A51724" cx="124.306" cy="80.657" rx="1.869" ry="1.85"/><path fill="#939598" d="M124.308 163.29a.96.96 0 0 1-.223-.028.94.94 0 0 1-.705-1.134c.03-.116 2.827-12.15 2.827-40.017 0-27.92-2.804-41.12-2.83-41.25a.952.952 0 1 1 1.86-.396c.027.13 2.872 13.535 2.872 41.653 0 28.135-2.768 39.962-2.88 40.452a.95.95 0 0 1-.93.73v-.003z"/><ellipse fill="#A51724" cx="23.924" cy="80.657" rx="2.192" ry="2.17"/><path fill="#939598" d="M23.922 163.29a.952.952 0 0 1-.94-.804c-.023-.156-2.388-16.012-2.388-40.866 0-24.855 2.365-40.94 2.388-41.1a.95.95 0 0 1 1.08-.793c.52.075.88.555.803 1.068-.025.16-2.368 16.12-2.368 40.827 0 24.717 2.345 40.435 2.367 40.586.08.51-.28.995-.8 1.072-.048.004-.096.01-.142.01z"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="177" height="188" viewBox="0 0 177 188"><title>marionette</title><g transform="translate(13.344)"><path fill="#939598" d="M87.743 82.508l16.89-39.95c.2-.48.76-.707 1.244-.506a.94.94 0 0 1 .51 1.233L91.502 78.487l-3.76 4.02z"/><path fill="#931A2B" d="M102.313 62.177S94.23 72.77 88.525 78.89c-5.71 6.122-14.03 15.774-14.03 15.774v21.58c.06-.004.115-.016.175-.016 1.38 0 2.498 1.105 2.498 2.47 0 1.366-1.12 2.473-2.498 2.473-.06 0-.115-.01-.175-.01v21.77s10.478-7.12 18.068-14.01c8.558-7.765 18.07-19.893 18.07-19.893l-8.32-46.842z"/><path fill="#A7A9AC" d="M68.562 22.69l-.078 8.413-30.533 12.23.54-7.475 30.08-13.17v.002z"/><path fill="#BCBEC0" d="M110.98 35.564l.595 7.472-30.687-11.984-.145-8.41 30.237 12.922zM74.64 20.03l.032 8.593-44.665-17.445.927-9.832L74.64 20.03zM30.934 1.346l-.927 9.832-5.923 3.495 1.024-9.6 5.826-3.727z"/><path fill="#A7A9AC" d="M118.147.98l1 9.826-44.475 17.817-.033-8.594L118.14.98z"/><path fill="#BCBEC0" d="M124.017 4.66l1.1 9.593-5.97-3.447-1-9.825 5.87 3.68z"/><path fill="#808285" d="M44.03 45.052l-6.08-1.718 30.534-12.23-44.4-16.43 5.923-3.496 44.665 17.445 44.476-17.817 5.968 3.447-44.228 16.8 30.687 11.983-6.065 1.768-30.81-11.4L44.03 45.05v.002z"/><path fill="#939598" d="M24.566 69.727c-.032 0-.064 0-.095-.005a.943.943 0 0 1-.85-1.03l5.45-54.31a.942.942 0 0 1 1.04-.843.94.94 0 0 1 .85 1.02l-5.44 54.31a.948.948 0 0 1-.944.85h-.002zm97.87 0a.947.947 0 0 1-.948-.885l-3.29-54.683a.945.945 0 0 1 .892-1 .94.94 0 0 1 1.008.88l3.287 54.68a.943.943 0 0 1-.89 1h-.06zM58.9 80.657l-15.745-37.12a.942.942 0 0 1 .507-1.236.957.957 0 0 1 1.246.51l17.476 41.2-3.484-3.35z"/><path fill="#A81E2C" d="M72.176 118.7c0-1.306 1.024-2.364 2.32-2.455v-21.58s-8.323-9.653-14.03-15.775c-5.706-6.12-13.79-16.713-13.79-16.713l-8.32 46.848s9.51 12.127 18.068 19.894c7.59 6.88 18.07 14 18.07 14v-21.77c-1.293-.09-2.318-1.15-2.318-2.455z"/><path fill="#939598" d="M74.67 120.11a.952.952 0 0 1-.646-.25l-32.77-30.126-.01-2.578 33.42 30.72L107.66 86.79l.133 2.472-32.468 30.588a.945.945 0 0 1-.657.262h.002z"/><path fill="#CE2227" d="M143.21 68.768l-40.896-6.59s3.804 21.657 3.804 57.91c0 36.257-4.993 60.975-4.993 60.975l41.373-4.474s5.23-19.78 5.23-53.92c-.003-34.136-4.52-53.91-4.52-53.91h.003zm-18.904 95.58a2.01 2.01 0 0 1-2.02-2c0-1.102.903-2 2.02-2a2.01 2.01 0 0 1 2.02 2c0 1.104-.902 2-2.02 2zm-81.434-44.26c0-36.254 3.804-57.91 3.804-57.91L5.78 68.768s-4.517 19.774-4.517 53.91c0 34.136 5.23 53.912 5.23 53.912l41.372 4.477c0-.005-4.993-24.72-4.993-60.98zm-18.948 44.13a1.877 1.877 0 0 1-1.885-1.868c0-1.03.84-1.867 1.88-1.867s1.88.836 1.88 1.865a1.876 1.876 0 0 1-1.885 1.866v.003z"/><ellipse fill="#A51724" cx="124.306" cy="80.657" rx="1.869" ry="1.85"/><path fill="#939598" d="M124.308 163.29a.96.96 0 0 1-.223-.028.94.94 0 0 1-.705-1.134c.03-.116 2.827-12.15 2.827-40.017 0-27.92-2.804-41.12-2.83-41.25a.952.952 0 1 1 1.86-.394c.027.13 2.872 13.535 2.872 41.653 0 28.134-2.77 39.96-2.88 40.45a.95.95 0 0 1-.93.73v-.002z"/><ellipse fill="#A51724" cx="23.924" cy="80.657" rx="2.192" ry="2.17"/><path fill="#939598" d="M23.922 163.29a.952.952 0 0 1-.94-.804c-.023-.156-2.388-16.012-2.388-40.866 0-24.855 2.365-40.94 2.388-41.1a.95.95 0 0 1 1.08-.793c.52.075.88.555.803 1.068-.025.16-2.368 16.12-2.368 40.827 0 24.717 2.345 40.435 2.367 40.586.08.51-.28.995-.8 1.072-.048.004-.096.01-.142.01z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 B

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="439" width="439">
<rect height="439" width="439" fill="#f3f3f3"/>
<rect height="194" width="194" x="17" y="17" fill="#f8682c"/>
<rect height="194" width="194" x="228" y="17" fill="#91c300"/>
<rect height="194" width="194" x="17" y="228" fill="#00b4f1"/>
<rect height="194" width="194" x="228" y="228" fill="#ffc300"/>
</svg>

After

Width:  |  Height:  |  Size: 540 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="108" height="108" viewBox="0 0 108 108"><path fill="#FF9600" d="M54 108l54-43.199v-43.2L81 0 54 21.601 27 0 0 21.601v43.2"/><path fill="#BC1B00" d="M26.861 86.29L54 108l27.139-21.71L54 64.801"/><g><path fill="#FFC600" d="M27 0v43.2L0 21.601"/><path fill="#FF9000" d="M27 43.2v43.2L0 64.801"/><path fill="#FF7200" d="M54 21.601v43.2L27 43.2"/><path fill="#FFCE25" d="M81 0v43.2L54 21.601"/><path fill="#E12D1A" d="M81 43.2v43.2L54 64.801"/><path fill="#BC1B00" d="M54 64.801V108L27 86.4"/><path fill="#FFC600" d="M108 21.601v43.2L81 43.2"/><path fill="#FF8A00" d="M81 43.2v43.2l27-21.599"/><path fill="#FFE748" d="M81 0v43.2l27-21.599"/><path fill="#FF9600" d="M54 21.601v43.2L81 43.2"/><path fill="#FF9C00" d="M27 0v43.2l27-21.599"/><path fill="#DD2A00" d="M27 43.2v43.2l27-21.599"/><path fill="#B1150A" d="M54 64.801V108l27-21.6"/><path fill="#FFA800" d="M0 21.601v43.2L27 43.2"/></g></svg>

After

Width:  |  Height:  |  Size: 938 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 620 B

@ -0,0 +1,42 @@
<?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"
version="1.1"
id="svg2"
viewBox="0 0 86.017999 84.438005"
height="84.438004"
width="86.017998">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-967.92418)"
id="layer1">
<g
id="g4740">
<path
id="path26"
style="fill:#5d87a1;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 79.231723,1033.2325 c -4.6825,-0.1171 -8.30875,0.3502 -11.35,1.6383 -0.8775,0.3506 -2.28,0.3506 -2.4,1.4624 0.47125,0.4672 0.5275,1.227 0.94,1.8735 0.7,1.17 1.92625,2.7471 3.04,3.5683 1.22875,0.9365 2.4575,1.8692 3.74625,2.688 2.28,1.4102 4.855,2.2257 7.075,3.6304 1.29125,0.8179 2.57375,1.8701 3.865,2.75 0.64125,0.4678 1.0475,1.2295 1.87,1.519 l 0,-0.1772 c -0.4125,-0.5249 -0.5275,-1.2857 -0.935,-1.874 -0.58375,-0.5805 -1.17,-1.1104 -1.75625,-1.6929 -1.6975,-2.2813 -3.80625,-4.2685 -6.0825,-5.9068 -1.87375,-1.2905 -5.97125,-3.0458 -6.72875,-5.204 0,0 -0.06125,-0.062 -0.11875,-0.1196 1.2875,-0.1187 2.81125,-0.5875 4.03875,-0.9424 1.98625,-0.525 3.8,-0.4062 5.8475,-0.9312 0.9375,-0.2358 1.87375,-0.5303 2.81375,-0.8179 l 0,-0.5302 c -1.05875,-1.0508 -1.81625,-2.457 -2.9275,-3.4507 -2.98125,-2.5732 -6.26125,-5.087 -9.65375,-7.1963 -1.81625,-1.1704 -4.15625,-1.9273 -6.0875,-2.9243 -0.69875,-0.3516 -1.8675,-0.5249 -2.27875,-1.1132 -1.05375,-1.2867 -1.64125,-2.981 -2.4,-4.5045 -1.695,-3.2142 -3.33625,-6.7817 -4.79625,-10.1804 -1.0525,-2.28 -1.69625,-4.56 -2.98375,-6.66752 -6.02875,-9.9475 -12.57875,-15.97 -22.64125,-21.88 -2.165,-1.23 -4.73875,-1.75625 -7.48625,-2.4 -1.465,-0.0613 -2.92625,-0.175 -4.38875,-0.2325 -0.9375,-0.41125 -1.875,-1.52375 -2.6925,-2.05 -3.33625,-2.105 -11.9325007,-6.6675 -14.39125069,-0.6425 -1.57999991,3.805 2.33999999,7.5475 3.68624999,9.47875 0.99375,1.34375 2.2825,2.8675 2.98125,4.38625 0.41,0.995 0.5275,2.05 0.93875,3.10125 0.935,2.57375 1.81125,5.44125 3.0425007,7.84125 0.64125,1.22875 1.3425,2.5175 2.16125,3.62375 0.4725,0.64747 1.28875,0.93627 1.465,1.99247 -0.81625,1.1688 -0.88,2.9238 -1.3475,4.3875 -2.105,6.6113 -1.2875,14.8018 1.6975,19.6568 0.93375,1.4624 3.16,4.6811 6.14375,3.4496 2.6325,-1.0512 2.0475,-4.3861 2.8075,-7.3095 0.175,-0.707 0.0575,-1.1709 0.4075,-1.6382 l 0,0.1182 c 0.81875,1.6358 1.64,3.2114 2.4,4.855 1.81625,2.8638 4.9725,5.8481 7.6075,7.8354 1.4,1.0571 2.5125,2.8677 4.2675,3.5132 l 0,-0.1767 -0.115,0 c -0.3525,-0.525 -0.8775,-0.7608 -1.34625,-1.1685 -1.0525,-1.0538 -2.22,-2.3414 -3.0425,-3.5108 -2.45625,-3.2748 -4.62375,-6.9042 -6.55,-10.648 -0.93875,-1.8178 -1.75625,-3.8051 -2.5175,-5.6176 -0.35,-0.6987 -0.35,-1.7549 -0.93625,-2.105 -0.88,1.2856 -2.16375,2.3989 -2.80625,3.9736 -1.1125,2.5187 -1.22875,5.6187 -1.64125,8.8379 -0.2325,0.061 -0.115,0 -0.2325,0.1163 -1.87,-0.4678 -2.51375,-2.398 -3.2175,-4.0308 -1.755,-4.1592 -2.05,-10.8284 -0.52625,-15.6259 0.4075,-1.2262 2.1675,-5.0875 1.4625,-6.2575 -0.35375,-1.11622 -1.5225,-1.75372 -2.165,-2.63497 -0.75875,-1.11125 -1.5825,-2.5125 -2.10375,-3.74375 -1.405,-3.275 -2.11125,-6.90375 -3.6275007,-10.17875 -0.7025,-1.52375 -1.93375,-3.10375 -2.925,-4.505 -1.11375,-1.58 -2.34125,-2.69125 -3.22,-4.56125 -0.29,-0.645 -0.6999999,-1.69875 -0.23375,-2.39875 0.115,-0.46875 0.3525,-0.645 0.82125,-0.7625 0.75625,-0.64375 2.92375,0.17375 3.6825,0.525 2.16625,0.875 3.9800007,1.69875 5.7912507,2.925 0.82,0.58625 1.6975,1.6975 2.74875,1.9925 l 1.23125,0 c 1.87125,0.40625 3.97875,0.11375 5.735,0.6425 3.09875,0.99375 5.90625,2.45625 8.42375,4.03625 7.66125,4.85625 13.98,11.76125 18.24875,20.00872 0.70375,1.3438 0.99875,2.5738 1.64125,3.975 1.22875,2.8725 2.75125,5.7975 3.9775,8.6029 1.2275,2.75 2.4,5.5558 4.1575,7.8409 0.875,1.2265 4.38625,1.8701 5.96625,2.5141 1.1675,0.5249 2.98375,0.9936 4.0375,1.6363 1.98875,1.2265 3.97375,2.6327 5.84875,3.9805 0.93375,0.7021 3.86,2.163 4.03625,3.3348" />
<path
id="path28"
style="fill:#5d87a1;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 19.557973,982.39053 c -0.9925,0 -1.6925,0.12 -2.39875,0.29375 l 0,0.1175 0.11375,0 c 0.4725,0.93375 1.2925,1.5825 1.8725,2.4 0.47125,0.93625 0.88125,1.86875 1.34875,2.80625 0.0575,-0.0575 0.11375,-0.11875 0.11375,-0.11875 0.825,-0.5825 1.23375,-1.5175 1.23375,-2.92375 -0.35375,-0.4125 -0.40875,-0.81875 -0.70375,-1.23 -0.35,-0.58375 -1.11125,-0.87625 -1.58,-1.345" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 738 B

@ -0,0 +1,35 @@
<?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"
version="1.1"
id="svg2"
viewBox="0 0 120.305 106.693"
height="106.693"
width="120.305">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-945.66918)"
id="layer1">
<path
d="m 29.727295,945.66933 -3.05408,5.69917 -23.6190998,42.92604 -3.054080047412,5.4191 3.054080047412,5.41466 23.6190998,41.539 3.19189,5.6947 61.82399,0 3.05407,-6.2504 17.644315,-35.5642 7.91749,-16.11505 -17.91993,0 -45.148805,0.13781 c -5.87255,-0.08 -11.27386,5.24128 -11.27386,11.11384 0,5.8725 5.40131,11.1983 11.27386,11.1138 l 27.22887,-0.1378 -6.6683,13.4744 -35.00854,0 -17.36869,-30.56302 17.5065,-31.6744 37.2402,0 8.68212,17.81769 22.369915,0 -14.101225,-33.79047 -3.05853,-6.25487 -64.33126,0"
id="path8"
style="fill:#009900" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 873 B

Before

Width:  |  Height:  |  Size: 873 B

After

Width:  |  Height:  |  Size: 873 B

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64"><path d="M4.836.49l27.26 4.083L59.164.49 54.68 57.804 32.096 63.51 8.312 57.806z" fill="#e5e7e8" stroke="#ccc"/><path d="M32.096 10.746l21.83-3.916-2.91 46.99-18.92 4.698z" fill="#fff"/><path fill="#ff2600" d="M3.756 22.432h34.027v19.136H3.756z"/><path fill="#ff501a" d="M36.764 22.432h23.48v19.136h-23.48z"/><path d="M7.056 24.472v15.053H9.85v-5.093h3.797l1.778-1.59v-6.606L13.62 24.47H7.056zm2.794 2.915h2.66v4.37H9.85v-4.37zm6.79-2.915v15.053h6.9l1.604-1.55V26.01l-1.698-1.538H16.64zm2.916 2.915h2.914v9.224h-2.914v-9.22zm7.04-2.91h7.04v2.912h-4.37v3.17c1.254.04 2.51-.05 3.763 0v2.88c-1.26.04-2.51-.05-3.77 0v6.08h-2.67V24.47zM40.273 38.74l-.934-.79V35.4h2.79v1.214h2.43V24.476h2.79V37.95l-1.87 1.578H41.2l-.933-.79zm9.226 0l-.91-.79v-2.558c.88 0 1.88.01 2.76.01v1.212h2.91V33.46h-4.1l-1.6-1.58v-5.826l1.6-1.578h4.96l1.82 1.578-.005 2.307h-2.67v-.97h-2.91v3.16h3.838l1.746 1.55v5.85l-.89.796-.897.796h-4.72z" fill="#fff"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64"><path d="M4.836.49l27.26 4.083L59.164.49 54.68 57.804 32.096 63.51 8.312 57.806z" fill="#e5e7e8" stroke="#ccc"/><path d="M32.096 10.746l21.83-3.916-2.91 46.99-18.92 4.698z" fill="#fff"/><path fill="#ff2600" d="M3.756 22.432h34.027v19.136H3.756z"/><path fill="#ff501a" d="M36.764 22.432h23.48v19.136h-23.48z"/><path d="M7.056 24.472v15.053H9.85v-5.093h3.797l1.778-1.59v-6.606L13.62 24.47H7.056zm2.794 2.915h2.66v4.37H9.85v-4.37zm6.79-2.915v15.053h6.9l1.604-1.55V26.01l-1.698-1.538H16.64zm2.916 2.915h2.914v9.224h-2.914v-9.22zm7.04-2.91h7.04v2.912h-4.37v3.17c1.254.04 2.51-.05 3.763 0v2.88c-1.26.04-2.51-.05-3.77 0v6.08h-2.67V24.47zM40.273 38.74l-.934-.79V35.4h2.79v1.214h2.43V24.476h2.79V37.95l-1.87 1.578H41.2l-.933-.79zm9.226 0l-.91-.79v-2.558c.88 0 1.88.01 2.76.01v1.212h2.91V33.46h-4.1l-1.6-1.58v-5.826l1.6-1.578h4.96l1.82 1.578-.007 2.307h-2.67v-.97h-2.91v3.16h3.838l1.747 1.55v5.85l-.89.798-.897.796h-4.72z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 995 B

After

Width:  |  Height:  |  Size: 995 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1 @@
<svg viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg"><title>penguin 2</title><path d="M52.65 61.364h2.767a2.81 2.81 0 0 1 2.803 2.803 2.81 2.81 0 0 1-2.803 2.803h-.024c0 .04.024.073.024.113 0 1.613-1.3 2.917-2.917 2.917-7.578 0-13.04-.543-16.234-1.61-.476-.157-.89-.33-1.266-.51-.373.18-.79.353-1.266.51C30.534 69.457 25.072 70 17.5 70a2.916 2.916 0 0 1-2.917-2.917c0-.04.02-.073.024-.113h-.024a2.806 2.806 0 0 1-2.803-2.803 2.806 2.806 0 0 1 2.803-2.803h2.768c-3.97-3.42-6.582-8.25-8-14.166-.88.545-5.54 3.138-9.34.393-.214-2.78 5.526-7.04 8.34-14.52 0 .01.003.017.003.026.74-2.856 2.518-7.62 2.69-9.025C11.04 7.488 24.206 0 35 0c10.795 0 23.96 7.487 23.96 24.068.175 1.406 1.95 6.172 2.692 9.03.006-.008.006-.017.006-.03 2.815 7.48 8.552 11.735 8.336 14.523-3.806 2.75-8.46.15-9.342-.39-1.41 5.918-4.028 10.748-8.003 14.167z" fill="#303048"/><path d="M51.19 29.517S56.365 10.1 41.75 10.1c-3.116 0-5.528 3.46-6.744 3.46-1.216 0-3.11-3.46-6.746-3.46-14.62 0-9.445 19.417-9.445 19.417s-2.698 3.433-2.698 10.59c0 14.893 10.38 18.926 18.89 18.926 8.507 0 18.887-4.033 18.887-18.926 0-7.157-2.704-10.59-2.704-10.59z" fill="#FFF"/><path d="M32.083 23.333a2.918 2.918 0 0 0-5.833 0 2.918 2.918 0 0 0 5.833 0zm11.667 0c0 1.61-1.3 2.917-2.917 2.917a2.916 2.916 0 0 1 0-5.833 2.914 2.914 0 0 1 2.917 2.916z" fill="#303048"/><path d="M29.588 28.853c1.692 4.42 5.717 5.452 5.717 5.452s4.025-1.032 5.718-5.452c-3.282-.95-5.718-2.724-5.718-2.724s-2.433 1.77-5.717 2.72z" fill="#F15A40"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1 @@
<svg viewBox="0 0 257 257" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M126.043 193.035c-4.806.12-8.765 4.12-8.816 8.89-.04 4.895 4.256 9.196 9.14 9.17 4.998-.064 9.017-4.195 8.952-9.273-.086-5.142-4.045-8.902-9.277-8.787M97.752 193.035c-4.8.12-8.765 4.12-8.81 8.89-.044 4.895 4.25 9.196 9.132 9.17 5.007-.064 9.018-4.195 8.94-9.273-.064-5.142-4.03-8.902-9.262-8.787" fill-rule="nonzero"/><path d="M256.354 128.174c0 70.793-57.384 128.176-128.18 128.176C57.385 256.35 0 198.967 0 128.174 0 57.384 57.383 0 128.175 0c70.795 0 128.18 57.383 128.18 128.174" fill="#eb1974"/><path d="M88.98 186.125h.092l-.11-.115c.005.04.013.076.018.115" fill="#fff" fill-rule="nonzero"/><path d="M182.202 66.463c-.103-1.37-.258-2.582-.478-3.643-.245-.01-.49-.025-.736-.04-16.728-.58-18.614-.036-18.614-.036-3.967.606-11.317 5.774-13.59 13.137-3.682 11.886-9.703 34.286-14.75 53.417-4.205-4.637-6.414-10.797-6.796-11.924l-.057-.232L111.72 64.32c-3.967-.66-7.887-.994-11.756-.994-1.977 0-7.377-.4-13.022.27l7.655 23.088 1.13 3.422c3.345 10.322 11.47 35.86 11.47 35.86 5.26 15.645 14.108 22.157 21.193 24.843-1.905 7.248-3.158 12.015-3.307 12.312-.962 2.027-1.955 3.202-3.235 4.015-1.266.84-2.247 1.267-4.21 1.37-.596.026-28.925.155-28.925.155-.336 1.668-.556 3.164-.67 4.483-.117 1.343-.164 2.726-.164 4.172 0 1.55.047 3.05.163 4.482.114 1.447.334 3.062.67 4.834h28.756c3.313 0 6.407-.298 9.276-.907 2.867-.606 5.458-1.69 7.782-3.227 2.316-1.55 4.39-3.71 6.21-6.46 1.822-2.764 3.4-6.24 4.716-10.438l22.866-78.787c.477-1.15 3.023-6.42 8.643-6.42.45 0 .81-.027 1.084-.066h3.384c.414-1.912.71-3.927.865-6.056.154-2.106.064-1.707.064-3.502 0-1.487-.04-2.918-.155-4.303M125.766 193.553c-4.8.104-8.765 4.11-8.817 8.875-.04 4.896 4.255 9.21 9.145 9.174 5-.055 9.004-4.2 8.94-9.264-.078-5.154-4.038-8.914-9.27-8.785M97.474 193.553c-4.8.104-8.765 4.11-8.81 8.875-.04 4.896 4.257 9.21 9.14 9.174 5-.055 9.018-4.2 8.94-9.264-.072-5.154-4.038-8.914-9.27-8.785" fill="#fff" fill-rule="nonzero"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

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

Loading…
Cancel
Save