Add public website to private repo

This commit is contained in:
Willem Dantuma 2023-08-31 09:57:49 +02:00
parent 7a7936c4ed
commit f93eaa667c
341 changed files with 23390 additions and 3 deletions

View File

@ -7,11 +7,13 @@ RUN apk update \
openjdk8-jre-base openjdk8-jre-base
RUN mkdir /opt/tomcat \ RUN mkdir /opt/tomcat \
&& wget https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.75/bin/apache-tomcat-9.0.75.tar.gz \ && wget https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.75/bin/apache-tomcat-9.0.75.tar.gz \
&& tar xvzf apache-tomcat-9.0.75.tar.gz --strip-components 1 --directory /opt/tomcat && tar xvzf apache-tomcat-9.0.75.tar.gz --strip-components 1 --directory /opt/tomcat
RUN sed -i 's/TLSv1, TLSv1.1,//g' /usr/lib/jvm/java-1.8-openjdk/jre/lib/security/java.security
COPY re3gistry/dist /opt/re3gistry COPY re3gistry/dist /opt/re3gistry
COPY start.sh /opt/re3gistry/ COPY start.sh /opt/re3gistry/
COPY httpd-vhosts.conf /etc/apache2/conf.d/ COPY httpd-vhosts.conf /etc/apache2/conf.d/
COPY httpd.conf /etc/apache2/ COPY httpd.conf /etc/apache2/
COPY public_html /var/www/localhost/htdocs/
WORKDIR /opt/re3gistry WORKDIR /opt/re3gistry
RUN chmod +x start.sh RUN chmod +x start.sh
ENTRYPOINT [ "/opt/re3gistry/start.sh" ] ENTRYPOINT [ "/opt/re3gistry/start.sh" ]

40
public_html/README.md Normal file
View File

@ -0,0 +1,40 @@
# Re3gistry 2 public front-end web-app
## Description
The Re3gistry web-app consumes the Re3gistry 2 Rest API to create a HTML version of the service.
The web-app contains test files to get the service running and test the correct installation and functionalities.
The test files are stored in `<webapp_root>/service-test`. The files are described below.
1. `test.json`: it is an example of the expected data service output from the Re3gistry 2 Rest API
2. `test.php`: it is a testing file that can help in the development and the installation of the system.
3. `test_commented.json`: it is the same file at point 1 but with some line commented to understand the meaning of each field (and in some cases how to retrieve it)
4. `test_error_commented.json`: it is an example of the json format returned in case of errors.
## Installing the Re3gistry web-app
To install the web-app you should have a xampp environment (or equivalent) installed on your system.
In the development environment the web app base URL is set as `inspire.ec.europa.eu` to match the URI of the element in the system.
In order for the system to work the hosts file in your system needs to be updated with the following entry.
127.0.0.1 inspire.ec.europa.eu
The following steps let you install the Apache httpd configuration file for the web-app.
This file contains the virtual host, the basic configuration for the web-app, the proxy pass for the Re3gistry 2 Rest API.
### Install the web-app configuration file in xampp
1. Paste the example configuration file `re3gistry2-webapp.conf` in `<xamp_root>\apache\conf\extra`
2. Open the configuration file with a text editor and make sure the paths are reflecting your environment/installation
3. Open the file `<xamp_root>\apache\conf\httpd.conf` with a text editor
4. Add the following line at the very bottom of the file: `Include "conf/extra/re3gistry2-webapp.conf"`
5. Restart the Apache HTTPD from the xampp control panel.
### Setup the web-app
1. Open the configuration file `<webapp_root>/conf/conf.js`
2. Have a look at the configuration. In particular, the `registryApp.dataServiceURL` property is set to the URL of the Re3gistry 2 Rest API configured in the Apache HTTPD file.
3. If the Re3gistry 2 Rest API is not available, you can test the system by uncommenting the reference to the testing file (`registryApp.dataServiceURL = '//inspire.ec.europa.eu/registry/service-test/test.php';`).
4. Once done, calling the HTML web-app at the URL http://inspire.ec.europa.eu/registry should return the HTML page of the registry.
## Notes
Depending on your version of xampp the folders may be different then the ones specified in this installation manual.

461
public_html/api.html Normal file
View File

@ -0,0 +1,461 @@
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<title>Registry</title>
<meta content="width=device-width,initial-scale=1" name="viewport" />
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<script>
var cl = document.querySelector('html').classList;
cl.remove('no-js');
cl.add('has-js');
</script>
<link
rel="stylesheet"
href="/registry/js-ecl-v2/package/dist/styles/ecl-ec-preset-website.css"
crossorigin="anonymous"
media="screen"
/>
<link
rel="stylesheet"
href="/registry/js-ecl-v2/package/dist/styles/ecl-ec-preset-website-print.css"
crossorigin="anonymous"
media="print"
/>
<link
rel="stylesheet"
href="/registry/libs/DataTables_v1.10.20/css/jquery.dataTables.min.css"
/>
<link
rel="stylesheet"
href="/registry/css/style_netrual.css"
/>
<script src="https://inspire.ec.europa.eu/cdn/1.0/js/jquery.min.js" integrity="sha384-vk5WoKIaW/vJyUAd9n/wmopsmNhiy+L2Z+SBxGYnUkunIxVxAv/UtMOhba/xskxh" crossorigin="anonymous"></script>
<script defer src="https://europa.eu/webtools/load.js" type="text/javascript"></script>
<script src="/registry/conf/conf.js"></script>
<script src="/registry/js-ecl-v2/app_api.js" defer></script>-->
<script src="/registry/libs/DataTables_v1.10.20/js/jquery.dataTables.min.js" defer></script>
</head>
<body>
<!--just for sandbox-integration-preproduction-->
<div class="ecl-message ecl-message--info" style="padding-bottom: 0.1em; padding-top: 0.5em" data-ecl-message="" role="alert" data-ecl-auto-init="Message">
<div class="ecl-message__content" style="text-align: center">
<div class="ecl-message__title" style="max-width: 100%">Re3gistry sandboxing Instance frontend view</div>
<div class="ecl-message__title" style="max-width: 100%">Access the admin panel <a class="ecl-link" href="https://inspire-sandbox.jrc.ec.europa.eu/re3gistry">here</a></div>
</div>
</div>
<header class="ecl-site-header" data-ecl-site-header="true" data-ecl-auto-init="SiteHeader">
<div class="ecl-site-header__container ecl-container">
<div class="ecl-site-header__banner">
<a data-i18n-link="l-ec-website" class="ecl-link ecl-link--standalone" href="https://inspire-sandbox.jrc.ec.europa.eu/registry"
aria-label="European Commission">
<img class="mb-2" src="/registry/ecl-v2/static/logo/logo-1.png" alt="" width="50%" height="50%">
</a>
<div class="ecl-site-header__selector"><a class="ecl-link ecl-link--standalone ecl-site-header__selector-link"
href="#" data-ecl-language-selector="true">English<span class="ecl-site-header__language-icon"><svg
focusable="false" aria-hidden="true" class="ecl-icon ecl-icon--m">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#general--language"></use>
</svg><span class="ecl-site-header__language-code">en</span></span></a>
<div hidden="" class="ecl-language-list ecl-language-list--overlay" aria-labelledby="ecl-language-list__title"
role="dialog" data-ecl-language-list-overlay="true">
<div class="ecl-language-list__container ecl-container">
<div class="ecl-row">
<div class="ecl-language-list__close ecl-col-12 ecl-col-lg-8 ecl-offset-lg-2"><button
data-ecl-language-list-close="true" type="submit"
class="ecl-language-list__close-button ecl-button ecl-button--ghost"><span
class="ecl-button__container"><span class="ecl-button__label" data-ecl-label="true" data-i18n="c-close">Close</span><svg
focusable="false" aria-hidden="true" data-ecl-icon="true"
class="ecl-button__icon ecl-button__icon--after ecl-icon ecl-icon--s">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#ui--close"></use>
</svg></span></button></div>
<div class="ecl-language-list__title ecl-col-12 ecl-col-lg-8 ecl-offset-lg-2"
id="ecl-language-list__title"><svg focusable="false" aria-hidden="true"
class="ecl-language-list__title-icon ecl-icon ecl-icon--m">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#general--generic-lang"></use>
</svg>Select your language</div>
</div>
<div class="ecl-row">
<div class="ecl-language-list__column ecl-col-12 ecl-col-lg-4 ecl-offset-lg-2">
<ul class="ecl-language-list__list">
<li class="ecl-language-list__item "><a lang="bg" hrefLang="bg" rel="alternate"
href="#language_bg"
class="ecl-language-list__link ecl-link ecl-link--standalone">български</a></li>
<li class="ecl-language-list__item "><a lang="es" hrefLang="es" rel="alternate"
href="#language_es"
class="ecl-language-list__link ecl-link ecl-link--standalone">español</a></li>
<li class="ecl-language-list__item "><a lang="cs" hrefLang="cs" rel="alternate"
href="#language_cs"
class="ecl-language-list__link ecl-link ecl-link--standalone">čeština</a></li>
<li class="ecl-language-list__item "><a lang="da" hrefLang="da" rel="alternate"
href="#language_da"
class="ecl-language-list__link ecl-link ecl-link--standalone">dansk</a></li>
<li class="ecl-language-list__item "><a lang="de" hrefLang="de" rel="alternate"
href="#language_de"
class="ecl-language-list__link ecl-link ecl-link--standalone">Deutsch</a></li>
<li class="ecl-language-list__item "><a lang="et" hrefLang="et" rel="alternate"
href="#language_et"
class="ecl-language-list__link ecl-link ecl-link--standalone">eesti</a></li>
<li class="ecl-language-list__item "><a lang="el" hrefLang="el" rel="alternate"
href="#language_el"
class="ecl-language-list__link ecl-link ecl-link--standalone">ελληνικά</a></li>
<li class="ecl-language-list__item ecl-language-list__item--is-active"><a lang="en" hrefLang="en"
rel="alternate" href="#language_en"
class="ecl-language-list__link ecl-link ecl-link--standalone ecl-link--icon ecl-link--icon-after"><span
class="ecl-link__label">English</span> <svg focusable="false" aria-hidden="true"
class="ecl-link__icon ecl-icon ecl-icon--xs">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#ui--check"></use>
</svg></a></li>
<li class="ecl-language-list__item "><a lang="fr" hrefLang="fr" rel="alternate"
href="#language_fr"
class="ecl-language-list__link ecl-link ecl-link--standalone">français</a></li>
<li class="ecl-language-list__item "><a lang="ga" hrefLang="ga" rel="alternate"
href="#language_ga"
class="ecl-language-list__link ecl-link ecl-link--standalone">Gaeilge</a></li>
<li class="ecl-language-list__item "><a lang="hr" hrefLang="hr" rel="alternate"
href="#language_hr"
class="ecl-language-list__link ecl-link ecl-link--standalone">hrvatski</a></li>
<li class="ecl-language-list__item "><a lang="it" hrefLang="it" rel="alternate"
href="#language_it"
class="ecl-language-list__link ecl-link ecl-link--standalone">italiano</a></li>
</ul>
</div>
<div class="ecl-language-list__column ecl-col-12 ecl-col-lg-4">
<ul class="ecl-language-list__list">
<li class="ecl-language-list__item "><a lang="lv" hrefLang="lv" rel="alternate"
href="#language_lv"
class="ecl-language-list__link ecl-link ecl-link--standalone">latviešu</a></li>
<li class="ecl-language-list__item "><a lang="lt" hrefLang="lt" rel="alternate"
href="#language_lt"
class="ecl-language-list__link ecl-link ecl-link--standalone">lietuvių</a></li>
<li class="ecl-language-list__item "><a lang="hu" hrefLang="hu" rel="alternate"
href="#language_hu"
class="ecl-language-list__link ecl-link ecl-link--standalone">magyar</a></li>
<li class="ecl-language-list__item "><a lang="mt" hrefLang="mt" rel="alternate"
href="#language_mt"
class="ecl-language-list__link ecl-link ecl-link--standalone">Malti</a></li>
<li class="ecl-language-list__item "><a lang="nl" hrefLang="nl" rel="alternate"
href="#language_nl"
class="ecl-language-list__link ecl-link ecl-link--standalone">Nederlands</a></li>
<li class="ecl-language-list__item "><a lang="pl" hrefLang="pl" rel="alternate"
href="#language_pl"
class="ecl-language-list__link ecl-link ecl-link--standalone">polski</a></li>
<li class="ecl-language-list__item "><a lang="pt" hrefLang="pt" rel="alternate"
href="#language_pt"
class="ecl-language-list__link ecl-link ecl-link--standalone">português</a></li>
<li class="ecl-language-list__item "><a lang="ro" hrefLang="ro" rel="alternate"
href="#language_ro"
class="ecl-language-list__link ecl-link ecl-link--standalone">română</a></li>
<li class="ecl-language-list__item "><a lang="sk" hrefLang="sk" rel="alternate"
href="#language_sk"
class="ecl-language-list__link ecl-link ecl-link--standalone">slovenčina</a></li>
<li class="ecl-language-list__item "><a lang="sl" hrefLang="sl" rel="alternate"
href="#language_sl"
class="ecl-language-list__link ecl-link ecl-link--standalone">slovenščina</a></li>
<li class="ecl-language-list__item "><a lang="fi" hrefLang="fi" rel="alternate"
href="#language_fi"
class="ecl-language-list__link ecl-link ecl-link--standalone">suomi</a></li>
<li class="ecl-language-list__item "><a lang="sv" hrefLang="sv" rel="alternate"
href="#language_sv"
class="ecl-language-list__link ecl-link ecl-link--standalone">svenska</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<form class="ecl-site-header__search ecl-search-form" role="search">
<div class="ecl-form-group ecl-form-group--text-input"><label class="ecl-search-form__label ecl-form-label"
for="search-form" data-i18n="c-search">Search</label><input type="search" id="search-form"
class="ecl-search-form__text-input ecl-text-input" /></div><button id="btn-search" aria-label="Search" type="submit"
class="ecl-search-form__button ecl-button ecl-button--search"><span class="ecl-button__container"><span
class="ecl-button__label" data-ecl-label="true" data-i18n="c-search">Search</span><svg focusable="false" aria-hidden="true"
data-ecl-icon="true" class="ecl-button__icon ecl-button__icon--after ecl-icon ecl-icon--xs">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#general--search"></use>
</svg></span></button>
</form>
</div>
</header>
<div class="ecl-page-header" style="background-color: #343a40">
<div class="ecl-container">
<nav class="ecl-page-header__breadcrumb ecl-breadcrumb" aria-label="You are here:" data-ecl-breadcrumb="true">
<ol class="ecl-breadcrumb__container" style="background-color: #343a40">
<li class="ecl-breadcrumb__segment" data-ecl-breadcrumb-item="static" aria-hidden="false">
<a href="https://inspire-sandbox.jrc.ec.europa.eu/registry" class="ecl-breadcrumb__link ecl-link ecl-link--standalone">
Re3gistry sandbox
</a>
<svg focusable="false" aria-hidden="true" role="presentation" class="ecl-breadcrumb__icon ecl-icon ecl-icon--xs ecl-icon--rotate-90">
<use xlink:href="//testinspire.ec.europa.eu/registry/ecl-v2/static/media/icons.svg#ui--corner-arrow"></use>
</svg>
</li>
<li class="ecl-breadcrumb__segment ecl-breadcrumb__current-page" aria-current="page" data-ecl-breadcrumb-item="static" aria-hidden="false">API Documentation</li>
</ol>
</nav>
<h1 class="ecl-page-header__title" data-i18n="s-site-title">Re3gistry sandbox</h1>
</div>
</div>
<main class="ecl-u-pv-xl">
<div class="ecl-container">
<div class="ecl-row">
<div class="ecl-col-md-12">
<h2 class="ecl-u-type-heading-2 ecl-u-mt-none ecl-u-mb-l" id="page-title">API Documentation</h2>
<div class="ecl-row ecl-u-mt-m">
<div class="ecl-col-sm-12 ecl-editor">
<p class="ecl-card__description">
The content of the registry is available in different formats and languages.
</p>
<p class="ecl-card__description">
All the resources available in the registry can be accessed in a number of formats listed below.
</p>
</div>
</div>
<div class="ecl-accordion2" data-ecl-accordion2="true">
<div class="ecl-accordion2__item">
<h3 class="ecl-accordion2__title"><button type="button" class="ecl-accordion2__toggle"
data-ecl-accordion2-toggle="true" aria-controls="accordion-example-content"><span
class="ecl-accordion2__toggle-flex"><svg focusable="false" aria-hidden="true" data-ecl-accordion2-icon="true"
class="ecl-accordion2__toggle-icon ecl-icon ecl-icon--m">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#ui--plus"></use>
</svg><span class="ecl-accordion2__toggle-title">Formats</span></span></button></h3>
<div class="ecl-accordion2__content" id="accordion-example-content" hidden="" role="region">
<ul class="ecl-unordered-list">
<li class="ecl-unordered-list__item">XML Registry - .xml</li>
<li class="ecl-unordered-list__item">XML ISO 19135 (beta) - .iso19135xml</li>
<li class="ecl-unordered-list__item">JSON - .json</li>
<li class="ecl-unordered-list__item">RDF/XML - .rdf</li>
<li class="ecl-unordered-list__item">CSV (beta) - .csv</li>
</ul>
</div>
</div>
<div class="ecl-accordion2__item">
<h3 class="ecl-accordion2__title"><button type="button" class="ecl-accordion2__toggle"
data-ecl-accordion2-toggle="true" aria-controls="accordion-example2-content"><span
class="ecl-accordion2__toggle-flex"><svg focusable="false" aria-hidden="true" data-ecl-accordion2-icon="true"
class="ecl-accordion2__toggle-icon ecl-icon ecl-icon--m">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#ui--plus"></use>
</svg><span class="ecl-accordion2__toggle-title">The languages currently available are</span></span></button></h3>
<div class="ecl-accordion2__content" id="accordion-example2-content" hidden="" role="region">
<div class="ecl-row">
<div class="ecl-col-lg-4 ecl-col-sm-12">
<ul class="ecl-unordered-list">
<li class="ecl-unordered-list__item">English - en</li>
<li class="ecl-unordered-list__item">Bulgarian - bg</li>
<li class="ecl-unordered-list__item">Czech - cs</li>
<li class="ecl-unordered-list__item">Croatian - hr</li>
<li class="ecl-unordered-list__item">Danish - da</li>
<li class="ecl-unordered-list__item">German - de</li>
<li class="ecl-unordered-list__item">Greek - el</li>
<li class="ecl-unordered-list__item">Spanish - es</li>
</ul>
</div>
<div class="ecl-col-lg-4 ecl-col-sm-12">
<ul class="ecl-unordered-list">
<li class="ecl-unordered-list__item">Estonian - et</li>
<li class="ecl-unordered-list__item">Finnish - fi</li>
<li class="ecl-unordered-list__item">French - fr</li>
<li class="ecl-unordered-list__item">Hungarian - hu</li>
<li class="ecl-unordered-list__item">Italian - it</li>
<li class="ecl-unordered-list__item">Lithuanian - lt</li>
<li class="ecl-unordered-list__item">Latvian - lv</li>
<li class="ecl-unordered-list__item">Maltese - mt</li>
</ul>
</div>
<div class="ecl-col-lg-4 ecl-col-sm-12">
<ul class="ecl-unordered-list">
<li class="ecl-unordered-list__item">Dutch - nl</li>
<li class="ecl-unordered-list__item">Polish - pl</li>
<li class="ecl-unordered-list__item">Portuguese - pt</li>
<li class="ecl-unordered-list__item">Romanian - ro</li>
<li class="ecl-unordered-list__item">Slovak - sk</li>
<li class="ecl-unordered-list__item">Slovenian - sl</li>
<li class="ecl-unordered-list__item">Swedish - sv</li>
</ul>
</div>
</div>
<blockquote class="ecl-blockquote ecl-u-mt-m">
<p class="ecl-blockquote__body">
Some of the content is not yet available in all languages. Where this is the case, the English translation will be provided. The GUI translations are provisional and may be improved in future releases.
</p>
<footer class="ecl-blockquote__attribution"><cite class="ecl-blockquote__author">Note</cite></footer>
</blockquote>
</div>
</div>
</div>
<p class="ecl-card__description ecl-u-mt-m">
If you want to get the resource in a particular format or language you can:
</p>
<ul class="ecl-unordered-list">
<li class="ecl-unordered-list__item">Use the language selector in the web interface;</li>
<li class="ecl-unordered-list__item">Directly call the resources using its name.</li>
</ul>
<p class="ecl-u-type-heading-4 ecl-u-mt-l">
Direct call
</p>
<p class="ecl-card__description ecl-u-mt-m">
If you want to directly call the resources using its name you have to follow the naming convention explained in the example below:
</p>
<blockquote class="ecl-blockquote ecl-u-mt-m">
<footer class="ecl-blockquote__attribution ecl-u-mt-xs">
<cite class="ecl-blockquote__author">http://{base_uri}/{register_uriname}/{register_uriname}.{language_code}.{format}</cite><br/>
<cite class="ecl-blockquote__author ecl-u-mt-l">http://{base_uri}/{itemclass}/{itemclass}.{language_code}.{format}</cite><br/>
<cite class="ecl-blockquote__author ecl-u-mt-l">http://{base_uri}/{itemclass_collection}/{collection_uriname}/{item_uriname}/{item_uriname}.{language_code}.{format}</cite>
</footer>
</blockquote>
<p class="ecl-card__description ecl-u-mt-m">
You can find the specific "language_code" and "format" in the list above (the codes are highlighted in bold).
</p>
<blockquote class="ecl-blockquote ecl-u-mt-m">
<footer class="ecl-blockquote__attribution"><cite class="ecl-blockquote__author">Examples</cite></footer>
<div class="ecl-blockquote__body">
<ul class="ecl-unordered-list">
<li class="ecl-unordered-list__item"><a class="link-ecl-unordered-list" href="_registryApp_domainURL_/codelist/codelist.en.xml">_registryApp_domainURL_/codelist/codelist.en.xml</a></li>
<li class="ecl-unordered-list__item"><a class="link-ecl-unordered-list" href="_registryApp_domainURL_/codelist/AgeBy5YearsValue/AgeBy5YearsValue.fr.csv">_registryApp_domainURL_/codelist/AgeBy5YearsValue/AgeBy5YearsValue.fr.csv</a></li>
<li class="ecl-unordered-list__item"><a class="link-ecl-unordered-list" href="_registryApp_domainURL_/codelist/AgeBy5YearsValue/15-20/15-20.sl.xml">_registryApp_domainURL_/codelist/AgeBy5YearsValue/15-20/15-20.sl.xml</a></li>
<li class="ecl-unordered-list__item"><a class="link-ecl-unordered-list" href="_registryApp_domainURL_/applicationschema/applicationschema.it.xml">_registryApp_domainURL_/applicationschema/applicationschema.it.xml</a></li>
<li class="ecl-unordered-list__item"><a class="link-ecl-unordered-list" href="_registryApp_domainURL_/theme/mf/mf.ro.json">_registryApp_domainURL_/theme/mf/mf.ro.json</a></li>
<li class="ecl-unordered-list__item"><a class="link-ecl-unordered-list" href="_registryApp_domainURL_/document/SCDWHO">_registryApp_domainURL_/document/SCDWHO/SCDWHO.es.rdf</a></li>
</ul>
</div>
</blockquote>
<p class="ecl-u-type-heading-4 ecl-u-mt-l">
How to call the APIs
</p>
<p class="ecl-card__description ecl-u-mt-m">
Each above links is calling the API in the following way:
</p>
<blockquote class="ecl-blockquote ecl-u-mt-m">
<footer class="ecl-blockquote__attribution ecl-u-mt-xs">
<cite class="ecl-blockquote__author">http://{base_uri}/{register_uriname}/rest?uri=https://{base_uri}/{register_uriname}&format={format}&lang={language_code}</cite><br/>
<cite class="ecl-blockquote__author ecl-u-mt-l">http://{base_uri}/{register_uriname}/rest?uri=https://{base_uri}/{itemclass}.&format={format}&lang={language_code}</cite><br/>
<cite class="ecl-blockquote__author ecl-u-mt-l">http://{base_uri}/{register_uriname}/rest?uri=https://{base_uri}/{itemclass_collection}/{collection_uriname}/{item_uriname}&format={format}&lang={language_code}</cite>
</footer>
</blockquote>
<p class="ecl-card__description ecl-u-mt-m">
Let's consider the example above:
</p>
<p class="ecl-u-type-heading-5 ecl-u-mt-m">
<a class="link-ecl-unordered-list" href="_registryApp_domainURL_/codelist/AgeBy5YearsValue/15-20/15-20.sl.xml">_registryApp_domainURL_/codelist/AgeBy5YearsValue/15-20/15-20.sl.xml</a>
</p>
<p class="ecl-card__description ecl-u-mt-m">
this is calling the API in following way:
</p>
<p class="ecl-u-type-heading-5 ecl-u-mt-m">
<a class="link-ecl-unordered-list" href="_registryApp_domainURL_/registry/rest?uri=_registryApp_domainURL_/codelist/AgeBy5YearsValue/15-20&format=xml&lang=sl">_registryApp_domainURL_/registry/rest?uri=_registryApp_domainURL_/codelist/AgeBy5YearsValue/15-20&format=xml&lang=sl</a>
</p>
</div>
</div>
</div>
</main>
<footer class="ecl-footer-core" style="background-color: #343a40; margin-top: 15px">
<div class="ecl-container ecl-footer-standardised__container">
<section class="ecl-footer-core__section ecl-footer-core__section1">
<a href="https://github.com/ec-jrc/re3gistry/releases"
class="ecl-footer-core__title ecl-link ecl-link--standalone">Re3gistry version 2.3.0</a>
<div class="ecl-footer-core__description"><a data-i18n-link="l-ec-website" class="ecl-link ecl-link--standalone"
href="https://inspire-sandbox.jrc.ec.europa.eu/registry"
aria-label="European Commission">
<img class="mt-2" src="/registry/ecl-v2/static/logo/logo-2.png" alt="" width="30%" height="50%">
</a></div>
<div class="ecl-footer-core__description">Reference codes management tool</div>
</section>
<div class="ecl-footer-standardised__section2">
<section class="ecl-footer-standardised__section">
<div class="ecl-footer-standardised__title ecl-footer-standardised__title--separator">About</div>
<ul class="ecl-footer-standardised__list">
<li class="ecl-footer-standardised__list-item"><a href="https://joinup.ec.europa.eu/collection/are3na/solution/re3gistry/about" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Re3gistry features</a></li>
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry/releases" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Get the code</a></li>
<li class="ecl-footer-standardised__list-item"><a href="https://joinup.ec.europa.eu/collection/are3na/solution/re3gistry/best-practices-registers-and-registries" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Best practices</a></li>
</ul>
</section>
<section class="ecl-footer-standardised__section">
<div class="ecl-footer-standardised__title ecl-footer-standardised__title--separator">
Re3gistry API
</div>
<ul class="ecl-footer-standardised__list ecl-footer-standardised__list--inline">
<li class="ecl-footer-standardised__list-item"><a href="/registry/api.html" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Access API</a></li>
</ul>
</section>
</div>
<div class="ecl-footer-standardised__section3">
<section class="ecl-footer-standardised__section">
<div class="ecl-footer-standardised__title ecl-footer-standardised__title--separator">Documentation</div>
<ul class="ecl-footer-standardised__list">
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry/blob/master/documentation/user-manual.md" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">User manual</a></li>
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry/blob/master/documentation/administrator-manual.md" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Administrator manual</a></li>
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry/blob/master/documentation/developer-manual.md" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Developer manual</a></li>
</ul>
</section>
<section class="ecl-footer-standardised__section">
<div class="ecl-footer-standardised__title ecl-footer-standardised__title--separator">Stay tuned</div>
<ul class="ecl-footer-standardised__list">
<li class="ecl-footer-standardised__list-item">
<a href="/registry/release-note.xml" class="ecl-footer-standardised__link ecl-link ecl-link--standalone ecl-link--icon ecl-link--icon-before">
<svg focusable="false" aria-hidden="true" class="ecl-link__icon ecl-icon ecl-icon--xs">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#branded--rss"></use>
</svg>&nbsp;<span class="ecl-link__label">Re3gistry sandbox RSS feed</span>
</a>
</li>
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Join the Re3gistry community</a></li>
</ul>
</section>
</div>
</div>
</footer>
<div class="overlay-loader">
<div class="load-feedback">
<svg focusable="false" aria-hidden="true" class="ecl-icon ecl-icon--m ecl-icon--inverted custom-spinner">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#general--spinner"></use>
</svg> <span class="ecl-u-type-m ecl-u-type-color-white">Loading ...</span>
</div>
</div>
<script
src="/registry/js-ecl-v2/package/dist/scripts/ecl-ec-preset-website.js"
crossorigin="anonymous"
></script>
<script>
ECL.autoInit();
var elt = document.querySelector('[data-ecl-accordion2]');
var accordion = new ECL.Accordion2(elt);
accordion.init();
</script>
<script type="application/json">
{
"utility" : "cck",
"url": {
"en": "https://my.ec.europa.eu/cookie-policy_en"
}
}
</script>
</body>
</html>

26
public_html/conf/conf.js Normal file
View File

@ -0,0 +1,26 @@
"use strict";
/// *** App configuration file ***///
var registryApp = {};
// The default language of the app (used as a fallback if the language is not
// passed by URL or cannot be retrieved by Browser language)
registryApp.defaultLanguage = 'en';
// Search maximum results per page
registryApp.maxSearchResultsPerPage = 10;
// Force http URIs (even if the original call has https URIs)
registryApp.forceHttpURIs = true;
// Default Error message parameters (Change if needed to your own repository or link)
registryApp.errorMessageDefinition = "Re3gistry Software repository";
registryApp.errorMessageURL = "https://github.com/ec-jrc/re3gistry";
// The app's base URLs
registryApp.domainURL = '//agroconnect.test.farmmaps.eu';
registryApp.hostURL = '//agroconnect.test.farmmaps.eu/registry';
registryApp.searchURL = '//agroconnect.test.farmmaps.eu/registry/search';
registryApp.searchApiURL = '//agroconnect.test.farmmaps.eu/registry/searchapi';
registryApp.dataServiceURL = '//agroconnect.test.farmmaps.eu/registry/rest';

View File

@ -0,0 +1 @@
{"version":"1.2.0"}

59
public_html/css/style.css Normal file
View File

@ -0,0 +1,59 @@
/* *** INSPIRE Registry service webapp *** */
/* Custom CSS */
/* DataTable ECL fixes */
.ecl-pagination ul li a{
cursor:pointer;
}
table.dataTable{
border-collapse: collapse
}
.ecl-table__head .ecl-table__row:first-child {
border-bottom: 1px solid #404040;
}
.ecl-form-label:last-child{
text-align: right
}
/* Loading overlay */
div.overlay-loader {
display:none;
opacity: 0.5;
background: #000;
width: 100%;
height: 100%;
z-index: 10;
top: 0;
left: 0;
position: fixed;
}
div.overlay-loader .load-feedback{
margin: auto;
margin-top: auto;
width: 25%;
height: 50%;
position: relative;
height: 100%;
vertical-align: middle;
text-align: center;
margin-top: 19%;
}
.custom-spinner {
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.dataTable{
width: 100%;
}
[type="search"] {
width: 85%;
}
.ecl-pagination__item {
display: block;
}

View File

@ -0,0 +1,59 @@
/* *** INSPIRE Registry service webapp *** */
/* Custom CSS */
/* DataTable ECL fixes */
.ecl-pagination ul li a{
cursor:pointer;
}
table.dataTable{
border-collapse: collapse
}
.ecl-table__head .ecl-table__row:first-child {
border-bottom: 1px solid #404040;
}
.ecl-form-label:last-child{
text-align: right
}
/* Loading overlay */
div.overlay-loader {
display:none;
opacity: 0.5;
background: #000;
width: 100%;
height: 100%;
z-index: 10;
top: 0;
left: 0;
position: fixed;
}
div.overlay-loader .load-feedback{
margin: auto;
margin-top: auto;
width: 25%;
height: 50%;
position: relative;
height: 100%;
vertical-align: middle;
text-align: center;
margin-top: 19%;
}
.custom-spinner {
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.dataTable{
width: 100%;
}
[type="search"] {
width: 85%;
}
.ecl-pagination__item {
display: block;
}

View File

@ -0,0 +1,233 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{filter:url(#Adobe_OpacityMaskFilter);}
.st1{fill:#FFFFFF;}
.st2{mask:url(#mask-4);}
.st3{fill:#BBBDBF;}
.st4{fill:#034DA1;}
.st5{fill:#FFF100;}
.st6{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<defs>
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="0" y="0" width="134.4" height="66.3">
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
</filter>
</defs>
<mask maskUnits="userSpaceOnUse" x="0" y="0" width="134.4" height="66.3" id="mask-4">
<g class="st0">
<path id="path-3" class="st1" d="M0,0h253.5v66.5H0V0z"/>
</g>
</mask>
<g id="Group-18-Copy" sketch:type="MSShapeGroup" class="st2">
<path id="Fill-40" class="st3" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3
c-2.5,1.6-5.4,2.9-8.5,3.7c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st3" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st3" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st3" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st3" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6c11.6-0.9,22.9-1.8,34.3-2.6l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5v0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st3" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st3" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6l33.6-1.8
l4.4-0.2c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1
c-2.4,1.4-4.7,2.5-7,3.4C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st3" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6l33.3-1.4
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st3" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st3" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6l15.9-0.4c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3c3.1-0.2,5.9-0.5,8.6-0.9
c2.4-0.4,4.9-0.9,7.4-1.5v-0.9c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st3" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st3" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st3" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st3" d="M94.2,0c0,0,11.9,18.9,14.1,22.4c2.2,3.5,4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9V0z"/>
<path id="Fill-54" class="st3" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13V21.6z"/>
<path id="Fill-55" class="st3" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1c-6-1-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st3" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st3" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7c-4.1-2.3-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st3" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st3" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8V48z"/>
<path id="Fill-60" class="st3" d="M94.2,53.4c0,0,8.3,2.6,14,4.1c5.7,1.5,10.9,2.1,13.5,2.3c2.6,0.2,12.7,1,12.7,1v0.6
c0,0-5.7-0.4-12.7-0.9c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st3" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5c0.8,0,12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st3" d="M94.2,64.3c0,0,10.7,0.4,14,0.5c3.3,0.1,26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st3" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8c-1.6-2.2-13.9-20.2-13.9-20.2v4.1
c0.5,0.6,11,14.4,14,18.2c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st3" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8c5.6,1,12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st3" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st4" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st5" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st5" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"
/>
<path id="Fill-69" class="st5" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st5" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38L62,36l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st5" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st5" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st5" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st5" d="M50.5,34.8h2l-1.6,1.2l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st5" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st5" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st5" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st5" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g>
<path class="st6" d="M143.4,33.7c0-0.3,0.1-0.4,0.4-0.4h7.1c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.3-0.4,0.3h-5.2v3.3h4.6
c0.3,0,0.4,0.1,0.4,0.3V40c0,0.2-0.1,0.3-0.4,0.3h-4.6v3.8h5.4c0.2,0,0.3,0.1,0.3,0.4v1.2c0,0.2-0.1,0.3-0.4,0.3h-7.2
c-0.3,0-0.4-0.1-0.4-0.3V33.7z"/>
<path class="st6" d="M153.6,46.1c-0.2,0-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V37c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1
h4.1c1.1,0,1.9,0.2,2.4,0.7s0.8,1.1,0.8,1.9c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.4-0.4,0.7-0.9,0.9c0.3,0.1,0.5,0.3,0.7,0.5
c0.2,0.2,0.3,0.4,0.4,0.6c0.1,0.2,0.2,0.4,0.2,0.6s0.1,0.4,0.1,0.6c0,0.4-0.1,0.8-0.3,1.2s-0.4,0.6-0.7,0.9
c-0.3,0.2-0.6,0.4-1,0.6c-0.4,0.1-0.8,0.2-1.2,0.2H153.6z M158.7,39.4c0-0.1,0-0.2-0.1-0.4s-0.1-0.2-0.2-0.3
c-0.1-0.1-0.2-0.2-0.4-0.2c-0.2-0.1-0.4-0.1-0.6-0.1h-2.2v2.1h2.3c0.4,0,0.7-0.1,0.9-0.3S158.7,39.6,158.7,39.4z M159,43.1
c0-0.3-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.4-1-0.4h-2.5v2.4h2.2c0.3,0,0.6,0,0.8-0.1s0.4-0.2,0.5-0.3s0.2-0.2,0.2-0.4
C159,43.4,159,43.3,159,43.1z"/>
<path class="st6" d="M171.2,41.3c0,0.8-0.1,1.5-0.2,2.1s-0.3,1.1-0.6,1.6c-0.3,0.4-0.7,0.7-1.2,1c-0.5,0.2-1.1,0.3-1.9,0.3
c-0.3,0-0.7,0-1.1-0.1c-0.4-0.1-0.8-0.2-1.3-0.3l0,0v3.4c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V37c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
s0.5-0.3,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3c0.4,0.2,0.7,0.6,1,1
c0.2,0.4,0.4,0.9,0.5,1.5S171.2,40.6,171.2,41.3z M169,41.3c0-0.6,0-1.1-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.3-0.5-0.4s-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.5,0.3v4.8c0.4,0.1,0.8,0.2,1.2,0.3c0.4,0,0.7,0.1,1,0.1c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.3,0.6-0.5
c0.1-0.2,0.3-0.6,0.3-1C169,42.4,169,41.9,169,41.3z"/>
<path class="st6" d="M181.1,41.2c0,0.5,0,1.1-0.1,1.7s-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.9-1.3,1.2s-1.3,0.5-2.3,0.5
c-1,0-1.7-0.2-2.3-0.5s-1-0.7-1.2-1.2s-0.4-1-0.5-1.6c-0.1-0.6-0.1-1.2-0.1-1.7c0-0.4,0-0.9,0.1-1.5c0.1-0.5,0.3-1.1,0.5-1.5
c0.3-0.5,0.7-0.9,1.2-1.2c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.7,0.1,2.2,0.4s1,0.6,1.3,1.1c0.3,0.5,0.5,1,0.6,1.5
C181,40.1,181.1,40.6,181.1,41.2z M178.9,41.3c0-0.5,0-1-0.1-1.3s-0.2-0.7-0.3-0.9c-0.2-0.2-0.4-0.4-0.6-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.3-0.2,0.6-0.3,1c-0.1,0.4-0.1,0.8-0.1,1.3
c0,0.5,0,1,0.1,1.3s0.2,0.7,0.3,0.9c0.1,0.2,0.3,0.4,0.6,0.6s0.6,0.2,1,0.2c0.4,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.6-0.6
c0.2-0.2,0.3-0.6,0.3-1C178.9,42.3,178.9,41.8,178.9,41.3z"/>
<path class="st6" d="M191.2,45.7c0,0.2-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4l0-7.3h-4v7.3c0,0.1,0,0.2-0.1,0.3
c-0.1,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4V37c0-0.2,0.1-0.4,0.4-0.4h7.5c0.1,0,0.2,0,0.3,0.1
c0.1,0.1,0.1,0.1,0.1,0.3V45.7z"/>
<path class="st6" d="M195.2,41.9c0,0.5,0.1,0.9,0.2,1.2c0.1,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1,0.1
c0.3,0,0.8,0,1.2-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.1,0.3l0.1,0.6c0,0.1,0,0.3,0,0.3
c0,0.1-0.1,0.2-0.3,0.2c-0.2,0.1-0.4,0.1-0.7,0.2s-0.5,0.1-0.8,0.1c-0.3,0-0.6,0.1-0.8,0.1c-0.3,0-0.5,0-0.8,0
c-0.9,0-1.7-0.1-2.2-0.4c-0.6-0.3-1-0.6-1.3-1.1c-0.3-0.4-0.5-1-0.6-1.5c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
s0.3-1.1,0.5-1.6c0.3-0.5,0.7-0.9,1.2-1.3c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.6,0.1,2.1,0.4s0.9,0.6,1.2,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1,0.2,1.5c0,0.3,0,0.6-0.2,0.8c-0.1,0.2-0.4,0.3-0.8,0.3H195.2z M197.1,38.2c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.1,0.2-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,1h3.8c0-0.3,0-0.6-0.1-0.8c-0.1-0.3-0.1-0.5-0.3-0.7
c-0.1-0.2-0.3-0.4-0.6-0.5C197.8,38.3,197.5,38.2,197.1,38.2z"/>
<path class="st6" d="M202.9,37.1c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.2c0.2,0,0.3,0,0.3,0.1s0.1,0.2,0.1,0.3v5.6h0l2.5-3.4
l1.7-2.3c0.1-0.1,0.2-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.4-0.1h1c0.2,0,0.3,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v8.6
c0,0.3-0.1,0.4-0.4,0.4h-1.2c-0.3,0-0.4-0.1-0.4-0.4v-5.9h0c-0.4,0.6-0.9,1.2-1.3,1.8s-0.9,1.2-1.3,1.8c-0.3,0.4-0.6,0.8-0.8,1.1
c-0.3,0.4-0.6,0.8-0.9,1.1c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0.1-0.2,0.1-0.4,0.1h-0.8c-0.2,0-0.3,0-0.3-0.1
c-0.1-0.1-0.1-0.2-0.1-0.3V37.1z M207.1,35.8c-0.6,0-1.2-0.2-1.8-0.5c-0.6-0.3-1-0.8-1.4-1.5c-0.1-0.1-0.1-0.2-0.1-0.3
c0-0.1,0-0.2,0.1-0.3l0.5-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.1,0.1,0.2,0.2c0.4,0.5,0.7,0.8,1,1c0.3,0.2,0.7,0.3,1.2,0.3
c0.2,0,0.4,0,0.6-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.2-0.1,0.3-0.3,0.5-0.4c0.2-0.2,0.4-0.4,0.6-0.6c0.2-0.2,0.3-0.2,0.5-0.1l0.5,0.3
c0.1,0.1,0.2,0.2,0.1,0.3s-0.1,0.2-0.1,0.4c-0.3,0.7-0.8,1.2-1.3,1.5C208.4,35.6,207.8,35.8,207.1,35.8z"/>
<path class="st6" d="M220.5,45.2c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.2-0.3,0.2c-0.4,0.2-0.8,0.3-1.4,0.3c-0.6,0.1-1.1,0.1-1.5,0.1
c-0.9,0-1.6-0.1-2.2-0.4c-0.5-0.3-1-0.6-1.2-1.1c-0.3-0.4-0.5-1-0.6-1.6c-0.1-0.6-0.1-1.2-0.1-1.9c0-0.6,0-1.2,0.1-1.8
c0.1-0.6,0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.8,1.2-1.1c0.5-0.3,1.3-0.4,2.1-0.4c0.2,0,0.5,0,0.7,0c0.3,0,0.5,0,0.8,0.1
c0.3,0,0.5,0.1,0.8,0.1c0.2,0.1,0.5,0.1,0.7,0.2c0.2,0.1,0.3,0.3,0.3,0.5l-0.1,0.8c0,0.1-0.1,0.2-0.2,0.2c-0.1,0-0.2,0-0.4,0
c-0.4,0-0.8-0.1-1.2-0.1s-0.8-0.1-1.1-0.1c-0.8,0-1.3,0.2-1.6,0.7c-0.3,0.4-0.5,1.2-0.5,2.3c0,0.6,0,1.1,0.1,1.5
c0.1,0.4,0.2,0.7,0.4,1c0.2,0.2,0.4,0.4,0.6,0.5c0.3,0.1,0.6,0.1,1,0.1c0.3,0,0.7,0,1.2,0c0.5,0,0.9-0.1,1.3-0.1
c0.2,0,0.3,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3L220.5,45.2z"/>
<path class="st6" d="M224,45.7c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3-0.1-0.3-0.3V37c0-0.2,0.1-0.3,0.3-0.3
h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.1,0.1,0.3v3.4h1c0.2,0,0.3,0,0.5,0c0.2,0,0.3-0.1,0.4-0.2c0.1-0.1,0.3-0.2,0.4-0.4
c0.1-0.2,0.2-0.4,0.4-0.7l0.8-2.1c0.1-0.1,0.1-0.2,0.2-0.2c0.1,0,0.2-0.1,0.3-0.1h1.2c0.2,0,0.3,0,0.3,0.1s0,0.2,0,0.3l-0.7,2
c-0.2,0.6-0.4,1.1-0.7,1.4s-0.5,0.6-0.9,0.7v0c0.4,0.2,0.8,0.4,1,0.7s0.4,0.7,0.6,1.2l0.8,2.6c0,0.1,0,0.2,0,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.3c-0.1,0-0.3,0-0.3-0.1s-0.1-0.1-0.2-0.2l-0.7-2.2c-0.2-0.6-0.5-1-0.8-1.2c-0.3-0.2-0.7-0.3-1-0.3h-1
V45.7z"/>
<path class="st6" d="M237.2,45c-0.5,0.4-1,0.7-1.6,0.9c-0.6,0.2-1.2,0.3-1.9,0.3c-0.5,0-0.9-0.1-1.3-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.1c0-1.1,0.3-1.9,0.9-2.4s1.5-0.8,2.7-0.8h2.5v-0.5c0-0.3,0-0.5-0.1-0.7
s-0.2-0.4-0.3-0.5s-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.3,0-0.6,0c-0.2,0-0.5,0-0.7,0s-0.5,0-0.7,0.1
c-0.2,0-0.5,0-0.6,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.1-0.2l-0.2-0.7c0-0.1,0-0.2,0-0.3c0.1-0.1,0.2-0.2,0.4-0.3
c0.2-0.1,0.4-0.1,0.7-0.2c0.3-0.1,0.6-0.1,0.9-0.1c0.3,0,0.6-0.1,0.9-0.1c0.3,0,0.5,0,0.8,0c0.8,0,1.5,0.1,2,0.2
c0.5,0.2,0.9,0.4,1.1,0.7c0.3,0.3,0.4,0.7,0.5,1.1c0.1,0.4,0.1,0.9,0.1,1.5v3.7c0,0.2,0,0.3,0,0.5c0,0.1,0.1,0.2,0.1,0.2
c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4
c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.4,0c-0.4,0-0.8-0.1-1.1-0.2S237.3,45.4,237.2,45L237.2,45z M237.1,41.8h-2.3
c-0.5,0-0.9,0.1-1.2,0.3c-0.3,0.2-0.4,0.6-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.2,0.9,0.2c0.2,0,0.4,0,0.7-0.1s0.5-0.1,0.7-0.2
c0.2-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.6-0.3V41.8z"/>
<path class="st6" d="M145.1,66c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3-0.1-0.3-0.3v-8.7
c0-0.2,0.1-0.3,0.3-0.3h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.1,0.1,0.3v3.4h1c0.2,0,0.3,0,0.5,0c0.2,0,0.3-0.1,0.4-0.2
c0.1-0.1,0.3-0.2,0.4-0.4c0.1-0.2,0.2-0.4,0.4-0.7l0.8-2.1c0.1-0.1,0.1-0.2,0.2-0.2c0.1,0,0.2-0.1,0.3-0.1h1.2
c0.2,0,0.3,0,0.3,0.1s0,0.2,0,0.3l-0.7,2c-0.2,0.6-0.4,1.1-0.7,1.4s-0.5,0.6-0.9,0.7v0c0.4,0.2,0.8,0.4,1,0.7s0.4,0.7,0.6,1.2
l0.8,2.6c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.3c-0.1,0-0.3,0-0.3-0.1s-0.1-0.1-0.2-0.2l-0.7-2.2c-0.2-0.6-0.5-1-0.8-1.2
c-0.3-0.2-0.7-0.3-1-0.3h-1V66z"/>
<path class="st6" d="M160.5,61.5c0,0.5,0,1.1-0.1,1.7s-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.9-1.3,1.2s-1.3,0.5-2.3,0.5
c-1,0-1.7-0.2-2.3-0.5s-1-0.7-1.2-1.2s-0.4-1-0.5-1.6c-0.1-0.6-0.1-1.2-0.1-1.7c0-0.4,0-0.9,0.1-1.5c0.1-0.5,0.3-1.1,0.5-1.5
c0.3-0.5,0.7-0.9,1.2-1.2c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.7,0.1,2.2,0.4s1,0.6,1.3,1.1c0.3,0.5,0.5,1,0.6,1.5
C160.5,60.4,160.5,60.9,160.5,61.5z M158.4,61.6c0-0.5,0-1-0.1-1.3s-0.2-0.7-0.3-0.9c-0.2-0.2-0.4-0.4-0.6-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.3-0.2,0.6-0.3,1c-0.1,0.4-0.1,0.8-0.1,1.3
c0,0.5,0,1,0.1,1.3s0.2,0.7,0.3,0.9c0.1,0.2,0.3,0.4,0.6,0.6s0.6,0.2,1,0.2c0.4,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.6-0.6
c0.2-0.2,0.3-0.6,0.3-1C158.4,62.6,158.4,62.1,158.4,61.6z"/>
<path class="st6" d="M170.2,60.9l-0.8,1.6c-0.2,0.3-0.4,0.7-0.5,1c-0.2,0.3-0.4,0.7-0.6,1.1c-0.1,0.2-0.3,0.3-0.6,0.3H167
c-0.2,0-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.1-0.2-0.2c-0.2-0.3-0.4-0.6-0.5-0.9c-0.2-0.3-0.3-0.6-0.5-0.9c-0.2-0.3-0.3-0.6-0.5-1
c-0.2-0.3-0.3-0.7-0.5-1h0v5c0,0.3-0.1,0.4-0.4,0.4h-1.2c-0.3,0-0.4-0.1-0.4-0.4v-8.6c0-0.3,0.1-0.4,0.4-0.4h1.1
c0.2,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.4,0.4,0.7,0.6,1.1c0.2,0.4,0.4,0.7,0.6,1.1c0.3,0.5,0.6,1.1,0.8,1.6
c0.3,0.5,0.5,1,0.8,1.6l1.5-2.8l1.4-2.5c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1c0.3,0,0.4,0.1,0.4,0.4V66
c0,0.3-0.1,0.4-0.4,0.4h-1.2c-0.3,0-0.4-0.1-0.4-0.4L170.2,60.9L170.2,60.9z"/>
<path class="st6" d="M174.3,57.4c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.2c0.2,0,0.3,0,0.3,0.1s0.1,0.2,0.1,0.3V63h0l2.5-3.4
l1.7-2.3c0.1-0.1,0.2-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.4-0.1h1c0.2,0,0.3,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v8.6
c0,0.3-0.1,0.4-0.4,0.4H181c-0.3,0-0.4-0.1-0.4-0.4v-5.9h0c-0.4,0.6-0.9,1.2-1.3,1.8s-0.9,1.2-1.3,1.8c-0.3,0.4-0.6,0.8-0.8,1.1
c-0.3,0.4-0.6,0.8-0.9,1.1c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0.1-0.2,0.1-0.4,0.1h-0.8c-0.2,0-0.3,0-0.3-0.1
c-0.1-0.1-0.1-0.2-0.1-0.3V57.4z"/>
<path class="st6" d="M191.9,65.5c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.2-0.3,0.2c-0.4,0.2-0.8,0.3-1.4,0.3c-0.6,0.1-1.1,0.1-1.5,0.1
c-0.9,0-1.6-0.1-2.2-0.4c-0.5-0.3-1-0.6-1.2-1.1c-0.3-0.4-0.5-1-0.6-1.6c-0.1-0.6-0.1-1.2-0.1-1.9c0-0.6,0-1.2,0.1-1.8
c0.1-0.6,0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.8,1.2-1.1c0.5-0.3,1.3-0.4,2.1-0.4c0.2,0,0.5,0,0.7,0c0.3,0,0.5,0,0.8,0.1
c0.3,0,0.5,0.1,0.8,0.1c0.2,0.1,0.5,0.1,0.7,0.2c0.2,0.1,0.3,0.3,0.3,0.5l-0.1,0.8c0,0.1-0.1,0.2-0.2,0.2c-0.1,0-0.2,0-0.4,0
c-0.4,0-0.8-0.1-1.2-0.1s-0.8-0.1-1.1-0.1c-0.8,0-1.3,0.2-1.6,0.7c-0.3,0.4-0.5,1.2-0.5,2.3c0,0.6,0,1.1,0.1,1.5
c0.1,0.4,0.2,0.7,0.4,1c0.2,0.2,0.4,0.4,0.6,0.5c0.3,0.1,0.6,0.1,1,0.1c0.3,0,0.7,0,1.2,0c0.5,0,0.9-0.1,1.3-0.1
c0.2,0,0.3,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3L191.9,65.5z"/>
<path class="st6" d="M193.3,57.4c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.2c0.2,0,0.3,0,0.3,0.1s0.1,0.2,0.1,0.3V63h0l2.5-3.4
l1.7-2.3c0.1-0.1,0.2-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.4-0.1h1c0.2,0,0.3,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v8.6
c0,0.3-0.1,0.4-0.4,0.4H200c-0.3,0-0.4-0.1-0.4-0.4v-5.9h0c-0.4,0.6-0.9,1.2-1.3,1.8s-0.9,1.2-1.3,1.8c-0.3,0.4-0.6,0.8-0.8,1.1
c-0.3,0.4-0.6,0.8-0.9,1.1c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0.1-0.2,0.1-0.4,0.1h-0.8c-0.2,0-0.3,0-0.3-0.1
c-0.1-0.1-0.1-0.2-0.1-0.3V57.4z"/>
<path class="st6" d="M211.1,56.9c0.2,0,0.3,0,0.4,0.1c0.1,0.1,0.1,0.2,0.1,0.3v8.6c0,0.3-0.2,0.4-0.5,0.4h-1.2
c-0.2,0-0.3,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-3.3h-1.9c-0.3,0-0.6,0.1-0.8,0.3s-0.4,0.5-0.6,1.1l-0.6,1.9
c-0.1,0.2-0.1,0.3-0.2,0.3s-0.2,0.1-0.4,0.1h-1.3c-0.2,0-0.3,0-0.3-0.1c0-0.1,0-0.2,0-0.3l0.7-2.1c0.1-0.4,0.3-0.7,0.4-1
c0.2-0.3,0.4-0.5,0.7-0.7c-0.3-0.1-0.5-0.2-0.7-0.4c-0.2-0.2-0.3-0.4-0.4-0.6c-0.1-0.2-0.2-0.4-0.2-0.7c0-0.2-0.1-0.5-0.1-0.7
c0-0.5,0.1-0.9,0.3-1.3c0.2-0.4,0.4-0.7,0.7-0.9c0.3-0.2,0.7-0.4,1.1-0.6s0.9-0.2,1.3-0.2H211.1z M205.8,59.9
c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.6,0.3,1.1,0.3h2.2v-2.4h-2.1c-0.5,0-0.8,0.1-1.1,0.3C205.9,59.2,205.8,59.5,205.8,59.9z"/>
</g>
<rect x="249.2" y="28" class="st4" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,233 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{filter:url(#Adobe_OpacityMaskFilter);}
.st1{fill:#FFFFFF;}
.st2{mask:url(#mask-4);}
.st3{fill:#BBBDBF;}
.st4{fill:#034DA1;}
.st5{fill:#FFF100;}
.st6{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<defs>
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="0" y="0" width="134.4" height="66.3">
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
</filter>
</defs>
<mask maskUnits="userSpaceOnUse" x="0" y="0" width="134.4" height="66.3" id="mask-4">
<g class="st0">
<path id="path-3" class="st1" d="M0,0h253.5v66.5H0V0z"/>
</g>
</mask>
<g id="Group-18-Copy" sketch:type="MSShapeGroup" class="st2">
<path id="Fill-40" class="st3" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3
c-2.5,1.6-5.4,2.9-8.5,3.7c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st3" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st3" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st3" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st3" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6c11.6-0.9,22.9-1.8,34.3-2.6l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5v0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st3" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st3" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6l33.6-1.8
l4.4-0.2c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1
c-2.4,1.4-4.7,2.5-7,3.4C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st3" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6l33.3-1.4
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st3" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st3" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6l15.9-0.4c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3c3.1-0.2,5.9-0.5,8.6-0.9
c2.4-0.4,4.9-0.9,7.4-1.5v-0.9c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st3" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st3" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st3" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st3" d="M94.2,0c0,0,11.9,18.9,14.1,22.4c2.2,3.5,4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9V0z"/>
<path id="Fill-54" class="st3" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13V21.6z"/>
<path id="Fill-55" class="st3" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1c-6-1-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st3" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st3" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7c-4.1-2.3-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st3" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st3" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8V48z"/>
<path id="Fill-60" class="st3" d="M94.2,53.4c0,0,8.3,2.6,14,4.1c5.7,1.5,10.9,2.1,13.5,2.3c2.6,0.2,12.7,1,12.7,1v0.6
c0,0-5.7-0.4-12.7-0.9c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st3" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5c0.8,0,12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st3" d="M94.2,64.3c0,0,10.7,0.4,14,0.5c3.3,0.1,26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st3" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8c-1.6-2.2-13.9-20.2-13.9-20.2v4.1
c0.5,0.6,11,14.4,14,18.2c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st3" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8c5.6,1,12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st3" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st4" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st5" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st5" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"
/>
<path id="Fill-69" class="st5" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st5" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38L62,36l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st5" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st5" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st5" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st5" d="M50.5,34.8h2l-1.6,1.2l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st5" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st5" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st5" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st5" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g>
<path class="st6" d="M143.4,33.7c0-0.3,0.1-0.4,0.4-0.4h7.1c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.3-0.4,0.3h-5.2v3.3h4.6
c0.3,0,0.4,0.1,0.4,0.3V40c0,0.2-0.1,0.3-0.4,0.3h-4.6v3.8h5.4c0.2,0,0.3,0.1,0.3,0.4v1.2c0,0.2-0.1,0.3-0.4,0.3h-7.2
c-0.3,0-0.4-0.1-0.4-0.3V33.7z"/>
<path class="st6" d="M153.6,46.1c-0.2,0-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V37c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1
h4.1c1.1,0,1.9,0.2,2.4,0.7s0.8,1.1,0.8,1.9c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.4-0.4,0.7-0.9,0.9c0.3,0.1,0.5,0.3,0.7,0.5
c0.2,0.2,0.3,0.4,0.4,0.6c0.1,0.2,0.2,0.4,0.2,0.6s0.1,0.4,0.1,0.6c0,0.4-0.1,0.8-0.3,1.2s-0.4,0.6-0.7,0.9
c-0.3,0.2-0.6,0.4-1,0.6c-0.4,0.1-0.8,0.2-1.2,0.2H153.6z M158.7,39.4c0-0.1,0-0.2-0.1-0.4s-0.1-0.2-0.2-0.3
c-0.1-0.1-0.2-0.2-0.4-0.2c-0.2-0.1-0.4-0.1-0.6-0.1h-2.2v2.1h2.3c0.4,0,0.7-0.1,0.9-0.3S158.7,39.6,158.7,39.4z M159,43.1
c0-0.3-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.4-1-0.4h-2.5v2.4h2.2c0.3,0,0.6,0,0.8-0.1s0.4-0.2,0.5-0.3s0.2-0.2,0.2-0.4
C159,43.4,159,43.3,159,43.1z"/>
<path class="st6" d="M171.2,41.3c0,0.8-0.1,1.5-0.2,2.1s-0.3,1.1-0.6,1.6c-0.3,0.4-0.7,0.7-1.2,1c-0.5,0.2-1.1,0.3-1.9,0.3
c-0.3,0-0.7,0-1.1-0.1c-0.4-0.1-0.8-0.2-1.3-0.3l0,0v3.4c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V37c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
s0.5-0.3,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3c0.4,0.2,0.7,0.6,1,1
c0.2,0.4,0.4,0.9,0.5,1.5S171.2,40.6,171.2,41.3z M169,41.3c0-0.6,0-1.1-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.3-0.5-0.4s-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.5,0.3v4.8c0.4,0.1,0.8,0.2,1.2,0.3c0.4,0,0.7,0.1,1,0.1c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.3,0.6-0.5
c0.1-0.2,0.3-0.6,0.3-1C169,42.4,169,41.9,169,41.3z"/>
<path class="st6" d="M181.1,41.2c0,0.5,0,1.1-0.1,1.7s-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.9-1.3,1.2s-1.3,0.5-2.3,0.5
c-1,0-1.7-0.2-2.3-0.5s-1-0.7-1.2-1.2s-0.4-1-0.5-1.6c-0.1-0.6-0.1-1.2-0.1-1.7c0-0.4,0-0.9,0.1-1.5c0.1-0.5,0.3-1.1,0.5-1.5
c0.3-0.5,0.7-0.9,1.2-1.2c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.7,0.1,2.2,0.4s1,0.6,1.3,1.1c0.3,0.5,0.5,1,0.6,1.5
C181,40.1,181.1,40.6,181.1,41.2z M178.9,41.3c0-0.5,0-1-0.1-1.3s-0.2-0.7-0.3-0.9c-0.2-0.2-0.4-0.4-0.6-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.3-0.2,0.6-0.3,1c-0.1,0.4-0.1,0.8-0.1,1.3
c0,0.5,0,1,0.1,1.3s0.2,0.7,0.3,0.9c0.1,0.2,0.3,0.4,0.6,0.6s0.6,0.2,1,0.2c0.4,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.6-0.6
c0.2-0.2,0.3-0.6,0.3-1C178.9,42.3,178.9,41.8,178.9,41.3z"/>
<path class="st6" d="M191.2,45.7c0,0.2-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4l0-7.3h-4v7.3c0,0.1,0,0.2-0.1,0.3
c-0.1,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4V37c0-0.2,0.1-0.4,0.4-0.4h7.5c0.1,0,0.2,0,0.3,0.1
c0.1,0.1,0.1,0.1,0.1,0.3V45.7z"/>
<path class="st6" d="M195.2,41.9c0,0.5,0.1,0.9,0.2,1.2c0.1,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1,0.1
c0.3,0,0.8,0,1.2-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.1,0.3l0.1,0.6c0,0.1,0,0.3,0,0.3
c0,0.1-0.1,0.2-0.3,0.2c-0.2,0.1-0.4,0.1-0.7,0.2s-0.5,0.1-0.8,0.1c-0.3,0-0.6,0.1-0.8,0.1c-0.3,0-0.5,0-0.8,0
c-0.9,0-1.7-0.1-2.2-0.4c-0.6-0.3-1-0.6-1.3-1.1c-0.3-0.4-0.5-1-0.6-1.5c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
s0.3-1.1,0.5-1.6c0.3-0.5,0.7-0.9,1.2-1.3c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.6,0.1,2.1,0.4s0.9,0.6,1.2,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1,0.2,1.5c0,0.3,0,0.6-0.2,0.8c-0.1,0.2-0.4,0.3-0.8,0.3H195.2z M197.1,38.2c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.1,0.2-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,1h3.8c0-0.3,0-0.6-0.1-0.8c-0.1-0.3-0.1-0.5-0.3-0.7
c-0.1-0.2-0.3-0.4-0.6-0.5C197.8,38.3,197.5,38.2,197.1,38.2z"/>
<path class="st6" d="M202.9,37.1c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.2c0.2,0,0.3,0,0.3,0.1s0.1,0.2,0.1,0.3v5.6h0l2.5-3.4
l1.7-2.3c0.1-0.1,0.2-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.4-0.1h1c0.2,0,0.3,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v8.6
c0,0.3-0.1,0.4-0.4,0.4h-1.2c-0.3,0-0.4-0.1-0.4-0.4v-5.9h0c-0.4,0.6-0.9,1.2-1.3,1.8s-0.9,1.2-1.3,1.8c-0.3,0.4-0.6,0.8-0.8,1.1
c-0.3,0.4-0.6,0.8-0.9,1.1c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0.1-0.2,0.1-0.4,0.1h-0.8c-0.2,0-0.3,0-0.3-0.1
c-0.1-0.1-0.1-0.2-0.1-0.3V37.1z M207.1,35.8c-0.6,0-1.2-0.2-1.8-0.5c-0.6-0.3-1-0.8-1.4-1.5c-0.1-0.1-0.1-0.2-0.1-0.3
c0-0.1,0-0.2,0.1-0.3l0.5-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.1,0.1,0.2,0.2c0.4,0.5,0.7,0.8,1,1c0.3,0.2,0.7,0.3,1.2,0.3
c0.2,0,0.4,0,0.6-0.1c0.2-0.1,0.3-0.1,0.5-0.2c0.2-0.1,0.3-0.3,0.5-0.4c0.2-0.2,0.4-0.4,0.6-0.6c0.2-0.2,0.3-0.2,0.5-0.1l0.5,0.3
c0.1,0.1,0.2,0.2,0.1,0.3s-0.1,0.2-0.1,0.4c-0.3,0.7-0.8,1.2-1.3,1.5C208.4,35.6,207.8,35.8,207.1,35.8z"/>
<path class="st6" d="M220.5,45.2c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.2-0.3,0.2c-0.4,0.2-0.8,0.3-1.4,0.3c-0.6,0.1-1.1,0.1-1.5,0.1
c-0.9,0-1.6-0.1-2.2-0.4c-0.5-0.3-1-0.6-1.2-1.1c-0.3-0.4-0.5-1-0.6-1.6c-0.1-0.6-0.1-1.2-0.1-1.9c0-0.6,0-1.2,0.1-1.8
c0.1-0.6,0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.8,1.2-1.1c0.5-0.3,1.3-0.4,2.1-0.4c0.2,0,0.5,0,0.7,0c0.3,0,0.5,0,0.8,0.1
c0.3,0,0.5,0.1,0.8,0.1c0.2,0.1,0.5,0.1,0.7,0.2c0.2,0.1,0.3,0.3,0.3,0.5l-0.1,0.8c0,0.1-0.1,0.2-0.2,0.2c-0.1,0-0.2,0-0.4,0
c-0.4,0-0.8-0.1-1.2-0.1s-0.8-0.1-1.1-0.1c-0.8,0-1.3,0.2-1.6,0.7c-0.3,0.4-0.5,1.2-0.5,2.3c0,0.6,0,1.1,0.1,1.5
c0.1,0.4,0.2,0.7,0.4,1c0.2,0.2,0.4,0.4,0.6,0.5c0.3,0.1,0.6,0.1,1,0.1c0.3,0,0.7,0,1.2,0c0.5,0,0.9-0.1,1.3-0.1
c0.2,0,0.3,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3L220.5,45.2z"/>
<path class="st6" d="M224,45.7c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3-0.1-0.3-0.3V37c0-0.2,0.1-0.3,0.3-0.3
h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.1,0.1,0.3v3.4h1c0.2,0,0.3,0,0.5,0c0.2,0,0.3-0.1,0.4-0.2c0.1-0.1,0.3-0.2,0.4-0.4
c0.1-0.2,0.2-0.4,0.4-0.7l0.8-2.1c0.1-0.1,0.1-0.2,0.2-0.2c0.1,0,0.2-0.1,0.3-0.1h1.2c0.2,0,0.3,0,0.3,0.1s0,0.2,0,0.3l-0.7,2
c-0.2,0.6-0.4,1.1-0.7,1.4s-0.5,0.6-0.9,0.7v0c0.4,0.2,0.8,0.4,1,0.7s0.4,0.7,0.6,1.2l0.8,2.6c0,0.1,0,0.2,0,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.3c-0.1,0-0.3,0-0.3-0.1s-0.1-0.1-0.2-0.2l-0.7-2.2c-0.2-0.6-0.5-1-0.8-1.2c-0.3-0.2-0.7-0.3-1-0.3h-1
V45.7z"/>
<path class="st6" d="M237.2,45c-0.5,0.4-1,0.7-1.6,0.9c-0.6,0.2-1.2,0.3-1.9,0.3c-0.5,0-0.9-0.1-1.3-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.1c0-1.1,0.3-1.9,0.9-2.4s1.5-0.8,2.7-0.8h2.5v-0.5c0-0.3,0-0.5-0.1-0.7
s-0.2-0.4-0.3-0.5s-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.3,0-0.6,0c-0.2,0-0.5,0-0.7,0s-0.5,0-0.7,0.1
c-0.2,0-0.5,0-0.6,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.1-0.2l-0.2-0.7c0-0.1,0-0.2,0-0.3c0.1-0.1,0.2-0.2,0.4-0.3
c0.2-0.1,0.4-0.1,0.7-0.2c0.3-0.1,0.6-0.1,0.9-0.1c0.3,0,0.6-0.1,0.9-0.1c0.3,0,0.5,0,0.8,0c0.8,0,1.5,0.1,2,0.2
c0.5,0.2,0.9,0.4,1.1,0.7c0.3,0.3,0.4,0.7,0.5,1.1c0.1,0.4,0.1,0.9,0.1,1.5v3.7c0,0.2,0,0.3,0,0.5c0,0.1,0.1,0.2,0.1,0.2
c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4
c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.4,0c-0.4,0-0.8-0.1-1.1-0.2S237.3,45.4,237.2,45L237.2,45z M237.1,41.8h-2.3
c-0.5,0-0.9,0.1-1.2,0.3c-0.3,0.2-0.4,0.6-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.2,0.9,0.2c0.2,0,0.4,0,0.7-0.1s0.5-0.1,0.7-0.2
c0.2-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.6-0.3V41.8z"/>
<path class="st6" d="M145.1,66c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3-0.1-0.3-0.3v-8.7
c0-0.2,0.1-0.3,0.3-0.3h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.1,0.1,0.3v3.4h1c0.2,0,0.3,0,0.5,0c0.2,0,0.3-0.1,0.4-0.2
c0.1-0.1,0.3-0.2,0.4-0.4c0.1-0.2,0.2-0.4,0.4-0.7l0.8-2.1c0.1-0.1,0.1-0.2,0.2-0.2c0.1,0,0.2-0.1,0.3-0.1h1.2
c0.2,0,0.3,0,0.3,0.1s0,0.2,0,0.3l-0.7,2c-0.2,0.6-0.4,1.1-0.7,1.4s-0.5,0.6-0.9,0.7v0c0.4,0.2,0.8,0.4,1,0.7s0.4,0.7,0.6,1.2
l0.8,2.6c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.3c-0.1,0-0.3,0-0.3-0.1s-0.1-0.1-0.2-0.2l-0.7-2.2c-0.2-0.6-0.5-1-0.8-1.2
c-0.3-0.2-0.7-0.3-1-0.3h-1V66z"/>
<path class="st6" d="M160.5,61.5c0,0.5,0,1.1-0.1,1.7s-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.9-1.3,1.2s-1.3,0.5-2.3,0.5
c-1,0-1.7-0.2-2.3-0.5s-1-0.7-1.2-1.2s-0.4-1-0.5-1.6c-0.1-0.6-0.1-1.2-0.1-1.7c0-0.4,0-0.9,0.1-1.5c0.1-0.5,0.3-1.1,0.5-1.5
c0.3-0.5,0.7-0.9,1.2-1.2c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.7,0.1,2.2,0.4s1,0.6,1.3,1.1c0.3,0.5,0.5,1,0.6,1.5
C160.5,60.4,160.5,60.9,160.5,61.5z M158.4,61.6c0-0.5,0-1-0.1-1.3s-0.2-0.7-0.3-0.9c-0.2-0.2-0.4-0.4-0.6-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.3-0.2,0.6-0.3,1c-0.1,0.4-0.1,0.8-0.1,1.3
c0,0.5,0,1,0.1,1.3s0.2,0.7,0.3,0.9c0.1,0.2,0.3,0.4,0.6,0.6s0.6,0.2,1,0.2c0.4,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.6-0.6
c0.2-0.2,0.3-0.6,0.3-1C158.4,62.6,158.4,62.1,158.4,61.6z"/>
<path class="st6" d="M170.2,60.9l-0.8,1.6c-0.2,0.3-0.4,0.7-0.5,1c-0.2,0.3-0.4,0.7-0.6,1.1c-0.1,0.2-0.3,0.3-0.6,0.3H167
c-0.2,0-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.1-0.2-0.2c-0.2-0.3-0.4-0.6-0.5-0.9c-0.2-0.3-0.3-0.6-0.5-0.9c-0.2-0.3-0.3-0.6-0.5-1
c-0.2-0.3-0.3-0.7-0.5-1h0v5c0,0.3-0.1,0.4-0.4,0.4h-1.2c-0.3,0-0.4-0.1-0.4-0.4v-8.6c0-0.3,0.1-0.4,0.4-0.4h1.1
c0.2,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.2,0.2c0.2,0.4,0.4,0.7,0.6,1.1c0.2,0.4,0.4,0.7,0.6,1.1c0.3,0.5,0.6,1.1,0.8,1.6
c0.3,0.5,0.5,1,0.8,1.6l1.5-2.8l1.4-2.5c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1c0.3,0,0.4,0.1,0.4,0.4V66
c0,0.3-0.1,0.4-0.4,0.4h-1.2c-0.3,0-0.4-0.1-0.4-0.4L170.2,60.9L170.2,60.9z"/>
<path class="st6" d="M174.3,57.4c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.2c0.2,0,0.3,0,0.3,0.1s0.1,0.2,0.1,0.3V63h0l2.5-3.4
l1.7-2.3c0.1-0.1,0.2-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.4-0.1h1c0.2,0,0.3,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v8.6
c0,0.3-0.1,0.4-0.4,0.4H181c-0.3,0-0.4-0.1-0.4-0.4v-5.9h0c-0.4,0.6-0.9,1.2-1.3,1.8s-0.9,1.2-1.3,1.8c-0.3,0.4-0.6,0.8-0.8,1.1
c-0.3,0.4-0.6,0.8-0.9,1.1c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0.1-0.2,0.1-0.4,0.1h-0.8c-0.2,0-0.3,0-0.3-0.1
c-0.1-0.1-0.1-0.2-0.1-0.3V57.4z"/>
<path class="st6" d="M191.9,65.5c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.2-0.3,0.2c-0.4,0.2-0.8,0.3-1.4,0.3c-0.6,0.1-1.1,0.1-1.5,0.1
c-0.9,0-1.6-0.1-2.2-0.4c-0.5-0.3-1-0.6-1.2-1.1c-0.3-0.4-0.5-1-0.6-1.6c-0.1-0.6-0.1-1.2-0.1-1.9c0-0.6,0-1.2,0.1-1.8
c0.1-0.6,0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.8,1.2-1.1c0.5-0.3,1.3-0.4,2.1-0.4c0.2,0,0.5,0,0.7,0c0.3,0,0.5,0,0.8,0.1
c0.3,0,0.5,0.1,0.8,0.1c0.2,0.1,0.5,0.1,0.7,0.2c0.2,0.1,0.3,0.3,0.3,0.5l-0.1,0.8c0,0.1-0.1,0.2-0.2,0.2c-0.1,0-0.2,0-0.4,0
c-0.4,0-0.8-0.1-1.2-0.1s-0.8-0.1-1.1-0.1c-0.8,0-1.3,0.2-1.6,0.7c-0.3,0.4-0.5,1.2-0.5,2.3c0,0.6,0,1.1,0.1,1.5
c0.1,0.4,0.2,0.7,0.4,1c0.2,0.2,0.4,0.4,0.6,0.5c0.3,0.1,0.6,0.1,1,0.1c0.3,0,0.7,0,1.2,0c0.5,0,0.9-0.1,1.3-0.1
c0.2,0,0.3,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3L191.9,65.5z"/>
<path class="st6" d="M193.3,57.4c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.2c0.2,0,0.3,0,0.3,0.1s0.1,0.2,0.1,0.3V63h0l2.5-3.4
l1.7-2.3c0.1-0.1,0.2-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.4-0.1h1c0.2,0,0.3,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3v8.6
c0,0.3-0.1,0.4-0.4,0.4H200c-0.3,0-0.4-0.1-0.4-0.4v-5.9h0c-0.4,0.6-0.9,1.2-1.3,1.8s-0.9,1.2-1.3,1.8c-0.3,0.4-0.6,0.8-0.8,1.1
c-0.3,0.4-0.6,0.8-0.9,1.1c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0.1-0.2,0.1-0.4,0.1h-0.8c-0.2,0-0.3,0-0.3-0.1
c-0.1-0.1-0.1-0.2-0.1-0.3V57.4z"/>
<path class="st6" d="M211.1,56.9c0.2,0,0.3,0,0.4,0.1c0.1,0.1,0.1,0.2,0.1,0.3v8.6c0,0.3-0.2,0.4-0.5,0.4h-1.2
c-0.2,0-0.3,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-3.3h-1.9c-0.3,0-0.6,0.1-0.8,0.3s-0.4,0.5-0.6,1.1l-0.6,1.9
c-0.1,0.2-0.1,0.3-0.2,0.3s-0.2,0.1-0.4,0.1h-1.3c-0.2,0-0.3,0-0.3-0.1c0-0.1,0-0.2,0-0.3l0.7-2.1c0.1-0.4,0.3-0.7,0.4-1
c0.2-0.3,0.4-0.5,0.7-0.7c-0.3-0.1-0.5-0.2-0.7-0.4c-0.2-0.2-0.3-0.4-0.4-0.6c-0.1-0.2-0.2-0.4-0.2-0.7c0-0.2-0.1-0.5-0.1-0.7
c0-0.5,0.1-0.9,0.3-1.3c0.2-0.4,0.4-0.7,0.7-0.9c0.3-0.2,0.7-0.4,1.1-0.6s0.9-0.2,1.3-0.2H211.1z M205.8,59.9
c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.6,0.3,1.1,0.3h2.2v-2.4h-2.1c-0.5,0-0.8,0.1-1.1,0.3C205.9,59.2,205.8,59.5,205.8,59.9z"/>
</g>
<rect x="249.2" y="28" class="st4" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,207 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9S94.2,0,94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.7c0-0.3,0.1-0.4,0.4-0.4h7.1c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.3-0.4,0.3h-5.2v3.3h4.6
c0.3,0,0.4,0.1,0.4,0.3V40c0,0.2-0.1,0.3-0.4,0.3h-4.6v3.8h5.4c0.2,0,0.3,0.1,0.3,0.4v1.2c0,0.2-0.1,0.3-0.4,0.3h-7.2
c-0.3,0-0.4-0.1-0.4-0.3V33.7z"/>
<path class="st4" d="M157,43.7c0,0,0-0.2,0.1-0.4c0.1-0.2,0.2-0.5,0.2-0.8c0.1-0.3,0.2-0.7,0.4-1.1l1.5-4.5c0-0.1,0.1-0.2,0.1-0.2
s0.2-0.1,0.3-0.1h1.5c0.3,0,0.3,0.1,0.2,0.4l-3.3,8.6c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.3
c-0.2,0-0.3,0-0.4-0.1s-0.1-0.2-0.2-0.3l-3.3-8.6c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.1,0.2-0.1h1.5c0.1,0,0.2,0,0.3,0.1
s0.1,0.1,0.2,0.3l1.5,4.5c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.2,0.5,0.2,0.8C156.9,43.5,156.9,43.7,157,43.7L157,43.7z"/>
<path class="st4" d="M165.2,45.7c0,0.2-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4V37c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.8l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3s0.5-0.2,0.7-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.1-0.3,0.2c-0.3,0.1-0.5,0.1-0.8,0.2
c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0.1-0.5,0.2-0.8,0.2c-0.2,0.1-0.4,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M177.9,41.2c0,0.5,0,1.1-0.1,1.7c-0.1,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.9-1.3,1.2s-1.3,0.5-2.3,0.5
c-1,0-1.7-0.2-2.3-0.5s-1-0.7-1.2-1.2s-0.4-1-0.5-1.6c-0.1-0.6-0.1-1.2-0.1-1.7c0-0.4,0-0.9,0.1-1.5c0.1-0.5,0.3-1.1,0.5-1.5
c0.3-0.5,0.7-0.9,1.2-1.2c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.7,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1.1c0.3,0.5,0.5,1,0.6,1.5
S177.9,40.6,177.9,41.2z M175.7,41.3c0-0.5,0-1-0.1-1.3c-0.1-0.4-0.2-0.7-0.3-0.9c-0.2-0.2-0.4-0.4-0.6-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.3-0.2,0.6-0.3,1c-0.1,0.4-0.1,0.8-0.1,1.3
c0,0.5,0,1,0.1,1.3c0.1,0.4,0.2,0.7,0.3,0.9c0.1,0.2,0.3,0.4,0.6,0.6c0.3,0.1,0.6,0.2,1,0.2c0.4,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.6-0.6c0.2-0.2,0.3-0.6,0.3-0.9C175.7,42.3,175.7,41.8,175.7,41.3z"/>
<path class="st4" d="M188.1,41.3c0,0.8-0.1,1.5-0.2,2.1s-0.3,1.1-0.6,1.6c-0.3,0.4-0.7,0.7-1.2,1c-0.5,0.2-1.1,0.3-1.9,0.3
c-0.3,0-0.7,0-1.1-0.1c-0.4-0.1-0.8-0.2-1.3-0.3l0,0v3.4c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V37c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3c0.4,0.2,0.7,0.6,1,1s0.4,0.9,0.5,1.5
C188,39.9,188.1,40.6,188.1,41.3z M185.9,41.3c0-0.6,0-1.1-0.1-1.5s-0.2-0.7-0.3-0.9c-0.1-0.2-0.3-0.3-0.5-0.4s-0.4-0.1-0.7-0.1
c-0.2,0-0.4,0-0.7,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.5,0.3v4.8c0.4,0.1,0.8,0.2,1.2,0.3
c0.4,0,0.7,0.1,1,0.1c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.3,0.6-0.5c0.1-0.2,0.3-0.6,0.3-1C185.9,42.4,185.9,41.9,185.9,41.3z"/>
<path class="st4" d="M196.8,43.2c0,0.6-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.7-0.9,0.9c-0.4,0.2-0.8,0.4-1.2,0.5
c-0.5,0.1-0.9,0.2-1.4,0.2c-0.5,0-1,0-1.6-0.1c-0.6-0.1-1-0.2-1.4-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.6
c0-0.2,0.1-0.2,0.2-0.3c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0.1,0.7,0.1c0.2,0,0.5,0,0.7,0.1c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.6,0
c0.6,0,1.1-0.1,1.3-0.3s0.4-0.5,0.4-0.8c0-0.2,0-0.4-0.1-0.5c0-0.1-0.1-0.3-0.2-0.3c-0.1-0.1-0.3-0.2-0.5-0.2
c-0.2-0.1-0.5-0.1-0.8-0.1c-0.5-0.1-0.9-0.1-1.3-0.2s-0.8-0.3-1.1-0.5s-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3
c0-0.9,0.3-1.7,1-2.2c0.7-0.5,1.5-0.7,2.6-0.7c0.2,0,0.4,0,0.7,0c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1
c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.1,0.3s-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.3-0.1
c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1,0.1-1.2,0.3c-0.2,0.2-0.3,0.4-0.3,0.8s0.1,0.6,0.4,0.7c0.2,0.1,0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.8,0.8C196.7,42.2,196.8,42.7,196.8,43.2z"/>
<path class="st4" d="M200.8,40.1l1.5-1.6l1.6-1.6c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.5c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.1,3.1l3.5,5.4c0.1,0.1,0.1,0.2,0,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.5-3.9l-1.1,1.1v2.8c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1H199c-0.2,0-0.4-0.1-0.4-0.4V32.9
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3L200.8,40.1L200.8,40.1z"/>
<path class="st4" d="M213.8,45c-0.5,0.4-1,0.7-1.6,0.9c-0.6,0.2-1.2,0.3-1.9,0.3c-0.5,0-0.9-0.1-1.3-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.1c0-1.1,0.3-1.9,0.9-2.4c0.6-0.5,1.5-0.8,2.7-0.8h2.5v-0.5c0-0.3,0-0.5-0.1-0.7
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.3,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.6,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.1-0.2l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.7-0.2s0.6-0.1,0.9-0.1c0.3,0,0.6-0.1,0.9-0.1c0.3,0,0.5,0,0.8,0c0.8,0,1.5,0.1,2,0.2
c0.5,0.2,0.9,0.4,1.1,0.7c0.3,0.3,0.4,0.7,0.5,1.1c0.1,0.4,0.1,0.9,0.1,1.5v3.7c0,0.2,0,0.3,0,0.5c0,0.1,0.1,0.2,0.1,0.2
s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.4,0c-0.4,0-0.8-0.1-1.1-0.2S213.9,45.4,213.8,45L213.8,45z M213.7,41.8h-2.3c-0.5,0-0.9,0.1-1.2,0.3
c-0.3,0.2-0.4,0.6-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.2,0.9,0.2c0.2,0,0.4,0,0.7-0.1s0.5-0.1,0.7-0.2c0.2-0.1,0.5-0.2,0.7-0.3
c0.2-0.1,0.4-0.2,0.6-0.3V41.8z M214.5,32.4c0.2,0.1,0.2,0.2,0.1,0.4l-2,2.7c-0.1,0.1-0.2,0.2-0.4,0.1l-0.7-0.3
c-0.1-0.1-0.2-0.2-0.1-0.4l1.5-3c0.1-0.2,0.2-0.2,0.4-0.1L214.5,32.4z"/>
</g>
<g class="st3">
<path class="st4" d="M145.2,60.4l1.5-1.6l1.6-1.6c0.1-0.1,0.2-0.2,0.3-0.2c0.1-0.1,0.2-0.1,0.4-0.1h1.5c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.1,3.1l3.5,5.4c0.1,0.1,0.1,0.2,0,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.5-3.9l-1.1,1.1V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4V53.2
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.2,60.4L145.2,60.4z"/>
<path class="st4" d="M160.3,61.5c0,0.5,0,1.1-0.1,1.7c-0.1,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.9-1.3,1.2s-1.3,0.5-2.3,0.5
c-1,0-1.7-0.2-2.3-0.5s-1-0.7-1.2-1.2s-0.4-1-0.5-1.6c-0.1-0.6-0.1-1.2-0.1-1.7c0-0.4,0-0.9,0.1-1.5c0.1-0.5,0.3-1.1,0.5-1.5
c0.3-0.5,0.7-0.9,1.2-1.2c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.7,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1.1c0.3,0.5,0.5,1,0.6,1.5
C160.2,60.4,160.3,60.9,160.3,61.5z M158.1,61.6c0-0.5,0-1-0.1-1.3s-0.2-0.7-0.3-0.9c-0.2-0.2-0.4-0.4-0.6-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.5,0.3-0.6,0.6s-0.2,0.6-0.3,1c-0.1,0.4-0.1,0.8-0.1,1.3
c0,0.5,0,1,0.1,1.3c0.1,0.4,0.2,0.7,0.3,0.9c0.1,0.2,0.3,0.4,0.6,0.6c0.3,0.1,0.6,0.2,1,0.2c0.4,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.6-0.6c0.2-0.2,0.3-0.6,0.3-0.9S158.1,62.1,158.1,61.6z"/>
<path class="st4" d="M175.8,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-5.5c0-0.7-0.1-1.2-0.3-1.4
c-0.2-0.2-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.6,0.3c-0.2,0.1-0.4,0.2-0.5,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3-0.1-0.3-0.4v-5.5
c0-0.6-0.1-1-0.3-1.3c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3V66c0,0.2-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.3-0.1-0.3-0.4v-8.7c0-0.3,0.1-0.4,0.3-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0c0.2-0.1,0.4-0.3,0.6-0.4c0.2-0.1,0.5-0.3,0.7-0.4c0.2-0.1,0.5-0.2,0.8-0.3
c0.3-0.1,0.5-0.1,0.8-0.1c0.5,0,1.1,0.1,1.5,0.3c0.5,0.2,0.8,0.5,1.1,1.1c0.5-0.4,1-0.7,1.6-0.9c0.6-0.3,1.2-0.4,1.8-0.4
c0.6,0,1.1,0.1,1.5,0.3c0.4,0.2,0.7,0.5,0.8,0.8c0.2,0.3,0.3,0.7,0.4,1.1c0.1,0.4,0.1,0.9,0.1,1.4V66
C175.9,66.1,175.9,66.2,175.8,66.3z"/>
<path class="st4" d="M180.4,54.5c0,0.2,0,0.3,0,0.4c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0.1-0.3,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.1-0.1-0.3-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.1-0.2,0.5-0.3,0.9-0.3c0.5,0,0.8,0.1,0.9,0.3C180.4,53.9,180.4,54.1,180.4,54.5z M180.3,66c0,0.1,0,0.2-0.1,0.3
s-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-8.7c0-0.2,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M189.7,63.5c0,0.6-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.7-0.9,0.9c-0.4,0.2-0.8,0.4-1.2,0.5
c-0.5,0.1-0.9,0.2-1.4,0.2c-0.5,0-1,0-1.6-0.1c-0.6-0.1-1-0.2-1.4-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.6
c0-0.2,0.1-0.2,0.2-0.3c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0.1,0.7,0.1c0.2,0,0.5,0,0.7,0.1c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.6,0
c0.6,0,1.1-0.1,1.3-0.3s0.4-0.5,0.4-0.8c0-0.2,0-0.4-0.1-0.5c0-0.1-0.1-0.3-0.2-0.3c-0.1-0.1-0.3-0.2-0.5-0.2
c-0.2-0.1-0.5-0.1-0.8-0.1c-0.5-0.1-0.9-0.1-1.3-0.2s-0.8-0.3-1.1-0.5s-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3
c0-0.9,0.3-1.7,1-2.2c0.7-0.5,1.5-0.7,2.6-0.7c0.2,0,0.4,0,0.7,0c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1
c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.1,0.3s-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.3-0.1
c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1,0.1-1.2,0.3c-0.2,0.2-0.3,0.4-0.3,0.8s0.1,0.6,0.4,0.7c0.2,0.1,0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.8,0.8C189.6,62.5,189.7,63,189.7,63.5z"/>
<path class="st4" d="M193.5,62.2c0,0.5,0.1,0.9,0.2,1.2c0.1,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1,0.1
c0.3,0,0.8,0,1.2-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.1,0.3l0.1,0.6c0,0.1,0,0.3,0,0.3
c0,0.1-0.1,0.2-0.3,0.2c-0.2,0.1-0.4,0.1-0.7,0.2c-0.3,0.1-0.5,0.1-0.8,0.1c-0.3,0-0.6,0.1-0.8,0.1c-0.3,0-0.5,0-0.8,0
c-0.9,0-1.7-0.1-2.2-0.4s-1-0.6-1.3-1.1c-0.3-0.4-0.5-1-0.6-1.5s-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.1,0.5-1.6
c0.3-0.5,0.7-0.9,1.2-1.3c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.6,0.1,2.1,0.4c0.5,0.3,0.9,0.6,1.2,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1,0.2,1.5c0,0.3,0,0.6-0.2,0.8c-0.1,0.2-0.4,0.3-0.8,0.3H193.5z M195.4,58.5c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.1,0.2-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,1h3.8c0-0.3,0-0.6-0.1-0.8c-0.1-0.3-0.1-0.5-0.3-0.7
c-0.1-0.2-0.3-0.4-0.6-0.5C196.1,58.6,195.8,58.5,195.4,58.5z"/>
</g>
<rect x="226.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,207 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9S94.2,0,94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.7c0-0.3,0.1-0.4,0.4-0.4h7.1c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.3-0.4,0.3h-5.2v3.3h4.6
c0.3,0,0.4,0.1,0.4,0.3V40c0,0.2-0.1,0.3-0.4,0.3h-4.6v3.8h5.4c0.2,0,0.3,0.1,0.3,0.4v1.2c0,0.2-0.1,0.3-0.4,0.3h-7.2
c-0.3,0-0.4-0.1-0.4-0.3V33.7z"/>
<path class="st4" d="M157,43.7c0,0,0-0.2,0.1-0.4c0.1-0.2,0.2-0.5,0.2-0.8c0.1-0.3,0.2-0.7,0.4-1.1l1.5-4.5c0-0.1,0.1-0.2,0.1-0.2
s0.2-0.1,0.3-0.1h1.5c0.3,0,0.3,0.1,0.2,0.4l-3.3,8.6c-0.1,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.3
c-0.2,0-0.3,0-0.4-0.1s-0.1-0.2-0.2-0.3l-3.3-8.6c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.1,0.2-0.1h1.5c0.1,0,0.2,0,0.3,0.1
s0.1,0.1,0.2,0.3l1.5,4.5c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.2,0.5,0.2,0.8C156.9,43.5,156.9,43.7,157,43.7L157,43.7z"/>
<path class="st4" d="M165.2,45.7c0,0.2-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4V37c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.8l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3s0.5-0.2,0.7-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.1-0.3,0.2c-0.3,0.1-0.5,0.1-0.8,0.2
c-0.3,0.1-0.6,0.1-0.9,0.2c-0.3,0.1-0.5,0.2-0.8,0.2c-0.2,0.1-0.4,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M177.9,41.2c0,0.5,0,1.1-0.1,1.7c-0.1,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.9-1.3,1.2s-1.3,0.5-2.3,0.5
c-1,0-1.7-0.2-2.3-0.5s-1-0.7-1.2-1.2s-0.4-1-0.5-1.6c-0.1-0.6-0.1-1.2-0.1-1.7c0-0.4,0-0.9,0.1-1.5c0.1-0.5,0.3-1.1,0.5-1.5
c0.3-0.5,0.7-0.9,1.2-1.2c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.7,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1.1c0.3,0.5,0.5,1,0.6,1.5
S177.9,40.6,177.9,41.2z M175.7,41.3c0-0.5,0-1-0.1-1.3c-0.1-0.4-0.2-0.7-0.3-0.9c-0.2-0.2-0.4-0.4-0.6-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.3-0.2,0.6-0.3,1c-0.1,0.4-0.1,0.8-0.1,1.3
c0,0.5,0,1,0.1,1.3c0.1,0.4,0.2,0.7,0.3,0.9c0.1,0.2,0.3,0.4,0.6,0.6c0.3,0.1,0.6,0.2,1,0.2c0.4,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.6-0.6c0.2-0.2,0.3-0.6,0.3-0.9C175.7,42.3,175.7,41.8,175.7,41.3z"/>
<path class="st4" d="M188.1,41.3c0,0.8-0.1,1.5-0.2,2.1s-0.3,1.1-0.6,1.6c-0.3,0.4-0.7,0.7-1.2,1c-0.5,0.2-1.1,0.3-1.9,0.3
c-0.3,0-0.7,0-1.1-0.1c-0.4-0.1-0.8-0.2-1.3-0.3l0,0v3.4c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V37c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.6-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3c0.4,0.2,0.7,0.6,1,1s0.4,0.9,0.5,1.5
C188,39.9,188.1,40.6,188.1,41.3z M185.9,41.3c0-0.6,0-1.1-0.1-1.5s-0.2-0.7-0.3-0.9c-0.1-0.2-0.3-0.3-0.5-0.4s-0.4-0.1-0.7-0.1
c-0.2,0-0.4,0-0.7,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.5,0.3v4.8c0.4,0.1,0.8,0.2,1.2,0.3
c0.4,0,0.7,0.1,1,0.1c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.4-0.3,0.6-0.5c0.1-0.2,0.3-0.6,0.3-1C185.9,42.4,185.9,41.9,185.9,41.3z"/>
<path class="st4" d="M196.8,43.2c0,0.6-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.7-0.9,0.9c-0.4,0.2-0.8,0.4-1.2,0.5
c-0.5,0.1-0.9,0.2-1.4,0.2c-0.5,0-1,0-1.6-0.1c-0.6-0.1-1-0.2-1.4-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.6
c0-0.2,0.1-0.2,0.2-0.3c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0.1,0.7,0.1c0.2,0,0.5,0,0.7,0.1c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.6,0
c0.6,0,1.1-0.1,1.3-0.3s0.4-0.5,0.4-0.8c0-0.2,0-0.4-0.1-0.5c0-0.1-0.1-0.3-0.2-0.3c-0.1-0.1-0.3-0.2-0.5-0.2
c-0.2-0.1-0.5-0.1-0.8-0.1c-0.5-0.1-0.9-0.1-1.3-0.2s-0.8-0.3-1.1-0.5s-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3
c0-0.9,0.3-1.7,1-2.2c0.7-0.5,1.5-0.7,2.6-0.7c0.2,0,0.4,0,0.7,0c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1
c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.1,0.3s-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.3-0.1
c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1,0.1-1.2,0.3c-0.2,0.2-0.3,0.4-0.3,0.8s0.1,0.6,0.4,0.7c0.2,0.1,0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.8,0.8C196.7,42.2,196.8,42.7,196.8,43.2z"/>
<path class="st4" d="M200.8,40.1l1.5-1.6l1.6-1.6c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.5c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.1,3.1l3.5,5.4c0.1,0.1,0.1,0.2,0,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.5-3.9l-1.1,1.1v2.8c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1H199c-0.2,0-0.4-0.1-0.4-0.4V32.9
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3L200.8,40.1L200.8,40.1z"/>
<path class="st4" d="M213.8,45c-0.5,0.4-1,0.7-1.6,0.9c-0.6,0.2-1.2,0.3-1.9,0.3c-0.5,0-0.9-0.1-1.3-0.2c-0.3-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.3-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.1c0-1.1,0.3-1.9,0.9-2.4c0.6-0.5,1.5-0.8,2.7-0.8h2.5v-0.5c0-0.3,0-0.5-0.1-0.7
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.3,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.6,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.1-0.2l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.7-0.2s0.6-0.1,0.9-0.1c0.3,0,0.6-0.1,0.9-0.1c0.3,0,0.5,0,0.8,0c0.8,0,1.5,0.1,2,0.2
c0.5,0.2,0.9,0.4,1.1,0.7c0.3,0.3,0.4,0.7,0.5,1.1c0.1,0.4,0.1,0.9,0.1,1.5v3.7c0,0.2,0,0.3,0,0.5c0,0.1,0.1,0.2,0.1,0.2
s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.4,0c-0.4,0-0.8-0.1-1.1-0.2S213.9,45.4,213.8,45L213.8,45z M213.7,41.8h-2.3c-0.5,0-0.9,0.1-1.2,0.3
c-0.3,0.2-0.4,0.6-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.2,0.9,0.2c0.2,0,0.4,0,0.7-0.1s0.5-0.1,0.7-0.2c0.2-0.1,0.5-0.2,0.7-0.3
c0.2-0.1,0.4-0.2,0.6-0.3V41.8z M214.5,32.4c0.2,0.1,0.2,0.2,0.1,0.4l-2,2.7c-0.1,0.1-0.2,0.2-0.4,0.1l-0.7-0.3
c-0.1-0.1-0.2-0.2-0.1-0.4l1.5-3c0.1-0.2,0.2-0.2,0.4-0.1L214.5,32.4z"/>
</g>
<g class="st3">
<path class="st4" d="M145.2,60.4l1.5-1.6l1.6-1.6c0.1-0.1,0.2-0.2,0.3-0.2c0.1-0.1,0.2-0.1,0.4-0.1h1.5c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.1,3.1l3.5,5.4c0.1,0.1,0.1,0.2,0,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.5-3.9l-1.1,1.1V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4V53.2
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.2,60.4L145.2,60.4z"/>
<path class="st4" d="M160.3,61.5c0,0.5,0,1.1-0.1,1.7c-0.1,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.7,0.9-1.3,1.2s-1.3,0.5-2.3,0.5
c-1,0-1.7-0.2-2.3-0.5s-1-0.7-1.2-1.2s-0.4-1-0.5-1.6c-0.1-0.6-0.1-1.2-0.1-1.7c0-0.4,0-0.9,0.1-1.5c0.1-0.5,0.3-1.1,0.5-1.5
c0.3-0.5,0.7-0.9,1.2-1.2c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.7,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1.1c0.3,0.5,0.5,1,0.6,1.5
C160.2,60.4,160.3,60.9,160.3,61.5z M158.1,61.6c0-0.5,0-1-0.1-1.3s-0.2-0.7-0.3-0.9c-0.2-0.2-0.4-0.4-0.6-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.7,0.1-1,0.2c-0.3,0.1-0.5,0.3-0.6,0.6s-0.2,0.6-0.3,1c-0.1,0.4-0.1,0.8-0.1,1.3
c0,0.5,0,1,0.1,1.3c0.1,0.4,0.2,0.7,0.3,0.9c0.1,0.2,0.3,0.4,0.6,0.6c0.3,0.1,0.6,0.2,1,0.2c0.4,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.6-0.6c0.2-0.2,0.3-0.6,0.3-0.9S158.1,62.1,158.1,61.6z"/>
<path class="st4" d="M175.8,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-5.5c0-0.7-0.1-1.2-0.3-1.4
c-0.2-0.2-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.6,0.3c-0.2,0.1-0.4,0.2-0.5,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.1,0.1-0.3,0.1h-1.4c-0.2,0-0.3-0.1-0.3-0.4v-5.5
c0-0.6-0.1-1-0.3-1.3c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.4,0.1-0.7,0.2c-0.2,0.1-0.4,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3V66c0,0.2-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.3-0.1-0.3-0.4v-8.7c0-0.3,0.1-0.4,0.3-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0c0.2-0.1,0.4-0.3,0.6-0.4c0.2-0.1,0.5-0.3,0.7-0.4c0.2-0.1,0.5-0.2,0.8-0.3
c0.3-0.1,0.5-0.1,0.8-0.1c0.5,0,1.1,0.1,1.5,0.3c0.5,0.2,0.8,0.5,1.1,1.1c0.5-0.4,1-0.7,1.6-0.9c0.6-0.3,1.2-0.4,1.8-0.4
c0.6,0,1.1,0.1,1.5,0.3c0.4,0.2,0.7,0.5,0.8,0.8c0.2,0.3,0.3,0.7,0.4,1.1c0.1,0.4,0.1,0.9,0.1,1.4V66
C175.9,66.1,175.9,66.2,175.8,66.3z"/>
<path class="st4" d="M180.4,54.5c0,0.2,0,0.3,0,0.4c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0.1-0.3,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.1-0.1-0.3-0.1-0.3-0.2c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.1-0.2,0.5-0.3,0.9-0.3c0.5,0,0.8,0.1,0.9,0.3C180.4,53.9,180.4,54.1,180.4,54.5z M180.3,66c0,0.1,0,0.2-0.1,0.3
s-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-8.7c0-0.2,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M189.7,63.5c0,0.6-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.7-0.9,0.9c-0.4,0.2-0.8,0.4-1.2,0.5
c-0.5,0.1-0.9,0.2-1.4,0.2c-0.5,0-1,0-1.6-0.1c-0.6-0.1-1-0.2-1.4-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.6
c0-0.2,0.1-0.2,0.2-0.3c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0.1,0.7,0.1c0.2,0,0.5,0,0.7,0.1c0.2,0,0.5,0,0.7,0c0.2,0,0.4,0,0.6,0
c0.6,0,1.1-0.1,1.3-0.3s0.4-0.5,0.4-0.8c0-0.2,0-0.4-0.1-0.5c0-0.1-0.1-0.3-0.2-0.3c-0.1-0.1-0.3-0.2-0.5-0.2
c-0.2-0.1-0.5-0.1-0.8-0.1c-0.5-0.1-0.9-0.1-1.3-0.2s-0.8-0.3-1.1-0.5s-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3
c0-0.9,0.3-1.7,1-2.2c0.7-0.5,1.5-0.7,2.6-0.7c0.2,0,0.4,0,0.7,0c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1
c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.1,0.3s-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.3-0.1
c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1,0.1-1.2,0.3c-0.2,0.2-0.3,0.4-0.3,0.8s0.1,0.6,0.4,0.7c0.2,0.1,0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.8,0.8C189.6,62.5,189.7,63,189.7,63.5z"/>
<path class="st4" d="M193.5,62.2c0,0.5,0.1,0.9,0.2,1.2c0.1,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1,0.1
c0.3,0,0.8,0,1.2-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.1,0.3l0.1,0.6c0,0.1,0,0.3,0,0.3
c0,0.1-0.1,0.2-0.3,0.2c-0.2,0.1-0.4,0.1-0.7,0.2c-0.3,0.1-0.5,0.1-0.8,0.1c-0.3,0-0.6,0.1-0.8,0.1c-0.3,0-0.5,0-0.8,0
c-0.9,0-1.7-0.1-2.2-0.4s-1-0.6-1.3-1.1c-0.3-0.4-0.5-1-0.6-1.5s-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.1,0.5-1.6
c0.3-0.5,0.7-0.9,1.2-1.3c0.5-0.3,1.3-0.5,2.2-0.5c0.9,0,1.6,0.1,2.1,0.4c0.5,0.3,0.9,0.6,1.2,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1,0.2,1.5c0,0.3,0,0.6-0.2,0.8c-0.1,0.2-0.4,0.3-0.8,0.3H193.5z M195.4,58.5c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.2-0.6,0.4c-0.1,0.2-0.3,0.4-0.3,0.7c-0.1,0.3-0.1,0.6-0.1,1h3.8c0-0.3,0-0.6-0.1-0.8c-0.1-0.3-0.1-0.5-0.3-0.7
c-0.1-0.2-0.3-0.4-0.6-0.5C196.1,58.6,195.8,58.5,195.4,58.5z"/>
</g>
<rect x="226.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,235 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M198.8,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C199.1,45.7,198.9,45.4,198.8,44.9L198.8,44.9z M198.7,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M209.2,38.8c0.2,0,0.3,0.1,0.3,0.3v1c0,0.2-0.1,0.3-0.3,0.3h-5.8c-0.2,0-0.3-0.1-0.3-0.3v-1
c0-0.2,0.1-0.3,0.3-0.3H209.2z"/>
</g>
<g class="st3">
<path class="st4" d="M145.6,59.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V53.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,59.4L145.6,59.4z"/>
<path class="st4" d="M163.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C163.2,60.1,163.2,60.7,163.2,61.3z M161,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,62.4,161,62,161,61.4z"/>
<path class="st4" d="M179.5,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.6,66.1,179.6,66.2,179.5,66.3z"/>
<path class="st4" d="M196.1,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C196.1,66.1,196.1,66.2,196.1,66.3z"/>
<path class="st4" d="M200.9,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.8,53.3,200.9,53.6,200.9,53.9z M200.8,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H199c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66
z"/>
<path class="st4" d="M210.6,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C210.5,62.3,210.6,62.8,210.6,63.4z"/>
<path class="st4" d="M219.8,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C219.7,62.3,219.8,62.8,219.8,63.4z"/>
<path class="st4" d="M224.3,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C224.2,53.3,224.3,53.6,224.3,53.9z M224.1,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M235.1,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C235.1,60.1,235.1,60.7,235.1,61.3z M232.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C232.9,62.4,232.9,62,232.9,61.4z"/>
<path class="st4" d="M245.6,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C245.6,66.1,245.6,66.2,245.6,66.3z"/>
<path class="st4" d="M249.8,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3s1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H249.8z M251.8,58.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
c-0.1-0.2-0.3-0.4-0.6-0.5S252.2,58.1,251.8,58.1z"/>
<path class="st4" d="M266.3,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C266.4,66.1,266.4,66.2,266.3,66.3z"/>
</g>
<rect x="275.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,235 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M198.8,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C199.1,45.7,198.9,45.4,198.8,44.9L198.8,44.9z M198.7,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M209.2,38.8c0.2,0,0.3,0.1,0.3,0.3v1c0,0.2-0.1,0.3-0.3,0.3h-5.8c-0.2,0-0.3-0.1-0.3-0.3v-1
c0-0.2,0.1-0.3,0.3-0.3H209.2z"/>
</g>
<g class="st3">
<path class="st4" d="M145.6,59.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V53.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,59.4L145.6,59.4z"/>
<path class="st4" d="M163.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C163.2,60.1,163.2,60.7,163.2,61.3z M161,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,62.4,161,62,161,61.4z"/>
<path class="st4" d="M179.5,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.6,66.1,179.6,66.2,179.5,66.3z"/>
<path class="st4" d="M196.1,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C196.1,66.1,196.1,66.2,196.1,66.3z"/>
<path class="st4" d="M200.9,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.8,53.3,200.9,53.6,200.9,53.9z M200.8,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H199c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66
z"/>
<path class="st4" d="M210.6,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C210.5,62.3,210.6,62.8,210.6,63.4z"/>
<path class="st4" d="M219.8,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C219.7,62.3,219.8,62.8,219.8,63.4z"/>
<path class="st4" d="M224.3,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C224.2,53.3,224.3,53.6,224.3,53.9z M224.1,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M235.1,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C235.1,60.1,235.1,60.7,235.1,61.3z M232.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C232.9,62.4,232.9,62,232.9,61.4z"/>
<path class="st4" d="M245.6,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C245.6,66.1,245.6,66.2,245.6,66.3z"/>
<path class="st4" d="M249.8,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3s1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H249.8z M251.8,58.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
c-0.1-0.2-0.3-0.4-0.6-0.5S252.2,58.1,251.8,58.1z"/>
<path class="st4" d="M266.3,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C266.4,66.1,266.4,66.2,266.3,66.3z"/>
</g>
<rect x="275.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,243 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 273.9 75.3"
style="enable-background:new 0 0 273.9 75.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#BBBDBF;}
.st2{fill:#034DA1;}
.st3{fill:#FFF100;}
.st4{fill:#626366;}
</style>
<g>
<path id="path-3" class="st0" d="M0,0h264.9v69.5H0V0z"/>
</g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st1" d="M0,25.6c0,0,41.6-5.4,42.8-5.6c1.8-0.3,3.4-0.6,4.9-1.1c3.4-0.9,6.5-2.3,9.2-4.2
c2.6-1.8,5.1-4.4,7.5-7.2c1.5-1.8,3.2-4.2,4.7-6.4V0c-1.8,2.7-3.6,5-5.4,7c-2.4,2.7-4.9,4.9-7.5,6.6c-2.7,1.7-5.6,3-8.9,3.8
c-1.5,0.4-3,0.7-4.8,0.9c-1.2,0.2-2.3,0.3-3.5,0.4c-0.4,0.1-39,4.2-39,4.2S0,25.6,0,25.6z"/>
<path id="Fill-41" class="st1" d="M55.8,18.6c-2.6,1.5-5.6,2.6-8.9,3.3c-1.4,0.3-3,0.5-4.7,0.7c-1,0.1-2.1,0.2-3.1,0.3
c-0.6,0-1.1,0.1-1.7,0.2C24.6,24.2,11.9,25.4,0,26.6v2.7c12-1.5,24.7-3,37.5-4.4c0.6-0.1,1.1-0.1,1.7-0.2
c1-0.1,2.1-0.2,3.1-0.4c1.8-0.2,3.4-0.5,4.9-0.9c3.5-0.8,6.6-2,9.3-3.7c2.7-1.6,5.1-3.9,7.6-6.7c1.6-1.7,3.4-4.2,5-6.5v-1
c-1.9,2.7-3.8,4.9-5.6,6.8C61,15,58.4,17.1,55.8,18.6"/>
<path id="Fill-42" class="st1" d="M63.1,17.9c-2.5,2.3-5.2,4.2-7.9,5.5c-2.6,1.3-5.6,2.2-9,2.7c-1.4,0.2-3,0.4-4.7,0.6L0,30.2
v2.7L36.9,29l4.8-0.5c1.8-0.2,3.4-0.4,4.8-0.7c3.5-0.7,6.6-1.7,9.3-3.1c2.8-1.4,5.5-3.8,8.1-6.3c1.7-1.7,3.4-3.8,5.2-6.1v-0.9
C67,14,65.1,16.1,63.1,17.9"/>
<path id="Fill-43" class="st1" d="M53.1,32c-2.4,1.4-4.2,2.1-7.7,2.5c-2.1,0.2-4.2,0.3-6.3,0.4c-1,0.1-2,0.1-3,0.2
c-6.3,0.4-12.4,0.8-18.7,1.2L0,37.5v2.7l17.5-1.6c5.7-0.5,12.2-1.1,18.7-1.6l4.7-0.4c1.8-0.1,3.3-0.3,4.7-0.5
c3.6-0.5,6.6-1.2,9.3-2.2c2.9-1.1,5.6-2.8,8.4-4.8c2.5-1.8,5.9-5.3,5.9-5.4v-1c-2.2,2.2-3.5,3.4-6,5
C60.2,29.8,55.2,30.8,53.1,32"/>
<path id="Fill-44" class="st1" d="M54,37.2c-2.6,0.8-5.6,1.3-9,1.6c-1.4,0.1-2.9,0.2-4.6,0.3l-4.6,0.2
c-11.5,0.5-23,1.1-35.7,1.8v2.7c12.1-0.9,23.9-1.9,35.8-2.7l4.6-0.3c1.8-0.1,3.3-0.2,4.7-0.4c3.5-0.4,6.6-1,9.2-1.9
c3-0.9,5.9-2.3,8.6-4.1c2-1.3,4-2.8,6.2-4.7l0,0c-2.3,2-4.5,2.4-6.7,3.8C59.7,35.1,56.8,36.3,54,37.2"/>
<path id="Fill-45" class="st1" d="M53.5,41.7c-2.6,0.6-5.5,1-9,1.3c-1.4,0.1-2.8,0.2-4.6,0.2l-4.6,0.2
C23.8,43.8,12,44.3,0,44.8v2.7c11.9-0.8,23.6-1.6,35.4-2.4l4.6-0.3c1.8-0.1,3.3-0.2,4.6-0.3c3.6-0.3,6.5-0.8,9.2-1.5
c3-0.8,6-1.9,8.7-3.4c2.1-1.1,4.3-2.5,6.5-4.2v-1.2c-2.4,1.7-4.7,3.2-7,4.3C59.4,40,56.5,41,53.5,41.7"/>
<path id="Fill-46" class="st1" d="M53.1,46.1c-2.6,0.5-5.5,0.8-9,1c-1.3,0.1-2.7,0.1-4.5,0.2L0,48.3V51l35.1-1.8l4.6-0.2
c1.8-0.1,3.2-0.2,4.6-0.3c3.5-0.3,6.4-0.7,9.1-1.2c3.1-0.6,6-1.6,8.8-2.8c2.3-1,4.5-2.1,6.9-3.6V40c-2.5,1.5-4.9,2.7-7.3,3.6
C59.1,44.7,56.1,45.6,53.1,46.1"/>
<path id="Fill-47" class="st1" d="M52.8,50.5c-4.9,0.7-9.9,0.7-14.7,0.8c-1.1,0-2.2,0-3.3,0.1L0,52v2.7l34.9-1.5
c1.1-0.1,2.2-0.1,3.3-0.1c4.9-0.2,9.9-0.4,14.8-1.2c3.1-0.5,6.1-1.2,8.9-2.2c2.3-0.8,4.7-1.8,7.2-3v-1
c-2.6,1.2-5.1,2.2-7.5,2.9C58.8,49.5,55.9,50.1,52.8,50.5"/>
<path id="Fill-48" class="st1" d="M52.6,55c-4.6,0.4-9.2,0.4-13.7,0.4c-1.4,0-2.8,0-4.2,0c-11.5,0.1-23,0.1-34.6,0.2v2.7
c11.1-0.4,22.9-0.8,34.7-1.1c1.4,0,2.8-0.1,4.2-0.1c4.5-0.1,9.2-0.2,13.8-0.7c3.2-0.3,6.1-0.9,8.9-1.6c2.4-0.6,5-1.4,7.5-2.4
v-1c-2.6,0.9-5.2,1.7-7.7,2.3C58.6,54.3,55.7,54.7,52.6,55"/>
<path id="Fill-49" class="st1" d="M52.4,59.4c-1.9,0.1-4,0.1-6.3,0.1c-0.9,0-1.8,0-2.6,0l-9-0.1c-6.1,0-12.2-0.1-17.9-0.1
L0,59.3V62l16.6-0.4c5.7-0.1,11.8-0.3,17.9-0.4l9-0.1c2.5,0,5.7-0.1,9-0.3c3.2-0.2,6.1-0.5,9-1c2.5-0.4,5.1-1,7.7-1.6v-1
c-2.7,0.6-5.3,1.1-7.9,1.5C58.5,59,55.6,59.3,52.4,59.4"/>
<path id="Fill-50" class="st1" d="M43.3,63.6l-8.9-0.1C23,63.4,11.6,63.2,0,62.9v2.7c11.1-0.1,22.8-0.2,34.4-0.3l8.9-0.1
c3-0.1,6-0.1,8.9-0.2c6.1-0.2,11.6-0.6,16.8-1.3v-0.9c-5.2,0.6-10.7,0.9-16.8,0.9C49.3,63.7,46.3,63.7,43.3,63.6"/>
<path id="Fill-51" class="st1" d="M69.1,68.4L0,66.6v2.7h69.1V68.4z"/>
<path id="Fill-52" class="st1" d="M62.9,23c-2.6,2.1-4.7,3.6-7.9,4.9c-2.8,1.1-5.8,1.6-9.2,2.1c-2.2,0.3-4.5,0.8-6.7,0.9
c-0.9,0.1-1.8,0.1-2.7,0.2L0,33.8v2.7l36.5-3.6l4.7-0.4c1.8-0.2,3.3-0.4,4.8-0.6c3.5-0.6,6.6-1.4,9.3-2.7
c2.8-1.3,5.7-3.3,8.4-5.6c1.8-1.5,3.6-3.5,5.5-5.6v-1C66.8,19.5,64.9,21.4,62.9,23"/>
<path id="Fill-53" class="st1" d="M98.5,0c0,0,12.4,19.8,14.7,23.4c2.3,3.6,4.9,6.5,14.1,8.5s13.2,2.9,13.2,2.9v0.7
c0,0-5.8-1.2-13.4-2.9s-10.6-2.2-14-7c-2.9-4-14.6-20.8-14.6-20.8V0z"/>
<path id="Fill-54" class="st1" d="M98.5,22.6c0,0,11.3,11.9,14.6,15.3c3.5,3.6,7.9,4.9,14.1,6c5.9,1.1,13.3,2.3,13.3,2.3v0.7
c0,0-7-1.1-13.3-2.2c-6.2-1.1-10.6-1.7-14.1-4.9c-3.2-2.9-14.6-13.6-14.6-13.6V22.6z"/>
<path id="Fill-55" class="st1" d="M98.5,28c0,0,10.8,10,14.6,13.4c3.5,3.1,6.4,4.1,14.1,5.5s13.3,2.2,13.3,2.2v0.7
c0,0-7-1.2-13.3-2.2s-10.3-1.4-14.1-4.5c-4.4-3.5-14.6-12-14.6-12V28z"/>
<path id="Fill-56" class="st1" d="M98.5,33.7c0,0,12.3,9.8,14.6,11.5c2.3,1.7,5.3,3.7,14.2,5c8.7,1.3,13.2,1.9,13.2,1.9v0.7
c0,0-7.9-1.2-13.2-1.8c-5.3-0.7-9.4-1-14.1-4.1c-4.6-3.1-14.6-10.1-14.6-10.1v-3.1C98.6,33.7,98.5,33.7,98.5,33.7z"/>
<path id="Fill-57" class="st1" d="M98.5,39.1c0,0,12.3,8.2,14.7,9.5c2.3,1.3,5.1,3.4,14.1,4.6c9,1.2,13.2,1.7,13.2,1.7v0.7
c0,0-7.5-0.8-13.3-1.4c-5.8-0.6-9.8-1.5-14.1-3.9c-4.3-2.4-14.6-8.4-14.6-8.4V39.1z"/>
<path id="Fill-58" class="st1" d="M98.5,44.6c0,0,10.9,5.9,14.6,7.8c4.1,2.1,7.7,3.1,14.1,3.8c6.3,0.8,13.3,1.5,13.3,1.5v0.7
c0,0-6.4-0.7-13.3-1.3c-6.8-0.6-9.2-0.9-14.1-3.1c-4.4-1.9-14.6-6.7-14.6-6.7V44.6z"/>
<path id="Fill-59" class="st1" d="M98.5,50.2c0,0,8.6,3.7,14.7,6.1c6,2.4,10.5,2.6,14.1,3c1.6,0.2,13.2,1.4,13.2,1.4v0.7
c0,0-6.9-0.6-13.2-1.1c-6.3-0.6-9-0.8-14.1-2.5c-5.2-1.7-14.6-5-14.6-5v-2.6C98.6,50.2,98.5,50.2,98.5,50.2z"/>
<path id="Fill-60" class="st1" d="M98.5,55.8c0,0,8.7,2.7,14.6,4.3s11.4,2.2,14.1,2.4s13.2,1,13.2,1v0.6c0,0-6-0.4-13.3-0.9
c-5.9-0.4-10.7-0.9-14.1-1.6c-3.8-0.8-14.6-3.4-14.6-3.4v-2.4C98.4,55.8,98.5,55.8,98.5,55.8z"/>
<path id="Fill-61" class="st1" d="M98.5,61.4c0,0,7.1,1.2,14.6,2.5c5.6,0.9,13.3,1.5,14.1,1.6c0.8,0,13.3,0.9,13.3,0.9V67
c0,0-8-0.4-13.3-0.7c-5.5-0.3-11-0.6-14.1-1c-7-0.7-14.6-1.7-14.6-1.7V61.4z"/>
<path id="Fill-62" class="st1" d="M98.5,67.2c0,0,11.2,0.4,14.6,0.5s27.4,1,27.4,1v0.7h-42V67.2z"/>
<path id="Fill-63" class="st1" d="M127.2,35c-10.2-2.2-12.5-5.9-14.2-8.2S98.4,5.7,98.4,5.7v4.2c0.5,0.7,11.5,15.1,14.6,19
c3.5,4.5,8.9,5.5,14.1,6.6c5.2,1.1,13.3,2.7,13.3,2.7v-0.6C140.5,37.6,129.8,35.5,127.2,35"/>
<path id="Fill-64" class="st1" d="M127.2,37.9c-8.3-1.6-11.7-4.3-14.2-7.5c-2.4-3.2-14.6-19.2-14.6-19.2v4
c0.5,0.6,11.6,13.7,14.6,17.1c3.5,4,8.3,5,14.2,6.1s13.3,2.5,13.3,2.5v-0.6C140.5,40.4,132,38.9,127.2,37.9"/>
<path id="Fill-65" class="st1" d="M127.2,41c-8.7-1.7-10.5-3.1-14.1-7.1c-2.3-2.5-14.1-16.4-14.6-17v3.7
c0,0,11,11.7,14.6,15.2c4.6,4.6,9,4.9,14.2,5.8c5.2,0.9,13.3,2.4,13.3,2.4v-0.6C140.5,43.4,130.7,41.7,127.2,41"/>
<path id="Fill-66" class="st2" d="M89.3,28.8H28.7v40.5h60.5V28.8H89.3z"/>
<path id="Fill-67" class="st3" d="M59.6,34.6h2.1L60,35.9l0.7,2.1L59,36.7L57.3,38l0.7-2.1l-1.7-1.3h2.1l0.6-2L59.6,34.6z"/>
<path id="Fill-68" class="st3" d="M59.7,61.6h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L59.7,61.6z"/>
<path id="Fill-69" class="st3" d="M66.4,59.8h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2L63,59.8h2.1l0.6-2L66.4,59.8z"/>
<path id="Fill-70" class="st3" d="M66.4,36.4h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2L63,36.4h2.1l0.6-2L66.4,36.4z"/>
<path id="Fill-71" class="st3" d="M71.4,41.4h2.1l-1.7,1.3l0.7,2l-1.7-1.2L69,44.7l0.7-2L68,41.4h2.1l0.6-2L71.4,41.4z"/>
<path id="Fill-72" class="st3" d="M71.4,54.9h2.1l-1.7,1.3l0.7,2L70.7,57L69,58.2l0.7-2L68,54.9h2.1l0.6-2L71.4,54.9z"/>
<path id="Fill-73" class="st3" d="M73.2,48h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2L69.9,48H72l0.6-2L73.2,48z"/>
<path id="Fill-74" class="st3" d="M52.8,36.4h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L52.8,36.4z"/>
<path id="Fill-75" class="st3" d="M48,41.4h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L48,41.4z"/>
<path id="Fill-76" class="st3" d="M46.2,48.1h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3H45l0.6-2L46.2,48.1z"/>
<path id="Fill-77" class="st3" d="M48,54.9h2.1l-1.7,1.3l0.7,2L47.4,57l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L48,54.9z"/>
<path id="Fill-78" class="st3" d="M52.9,59.8H55l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L52.9,59.8z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g>
<path class="st4" d="M149.8,35.2c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V35.2z"/>
<path class="st4" d="M168.2,48.1h-1.4c-0.1,0-0.2,0-0.3-0.1s-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
c-0.3,0.1-0.5,0.3-0.8,0.4c-0.3,0.1-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8
c-0.2-0.3-0.3-0.7-0.4-1.2c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6
c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1s0.5-0.2,0.8-0.3
s0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1
C168.6,48,168.5,48.1,168.2,48.1z"/>
<path class="st4" d="M173.3,47.8c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0s0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2s-0.6,0.2-0.9,0.2
c-0.3,0.1-0.6,0.2-0.8,0.3s-0.5,0.2-0.6,0.2L173.3,47.8L173.3,47.8z"/>
<path class="st4" d="M186.6,43.1c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
s-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C186.5,41.9,186.6,42.5,186.6,43.1z
M184.3,43.2c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.3,0.1-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6
s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6s0.3-0.6,0.3-1S184.3,43.7,184.3,43.2z"/>
<path class="st4" d="M197.2,43.2c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1s-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1s-0.1-0.2-0.1-0.3
V38.7c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6h0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.1,0.5-0.3,0.8-0.4
c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1s0.4,1,0.5,1.6
C197.2,41.7,197.2,42.4,197.2,43.2z M195,43.1c0-0.6,0-1.2-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9s-0.3-0.4-0.5-0.4
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1s-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v5
c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.3,0.3-0.6,0.3-1
C194.9,44.3,195,43.8,195,43.1z"/>
<path class="st4" d="M205.2,47c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5s-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0s-0.5,0-0.7,0.1
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3c0.1-0.1,0.2-0.2,0.4-0.3
s0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1c0.3,0,0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3s0.9,0.4,1.2,0.7
s0.4,0.7,0.5,1.2s0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1
c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3
C205.6,47.8,205.4,47.5,205.2,47L205.2,47z M201.6,37c-0.3,0-0.5,0-0.6-0.1s-0.3-0.1-0.3-0.3s-0.1-0.2-0.2-0.4s0-0.3,0-0.4
c0-0.3,0.1-0.6,0.2-0.8s0.4-0.3,0.9-0.3s0.8,0.1,0.9,0.3c0.1,0.2,0.2,0.5,0.2,0.8s-0.1,0.6-0.2,0.8C202.3,36.8,202,37,201.6,37z
M205.1,43.7h-2.4c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3s0.5-0.2,0.6-0.3v-2C205.2,43.7,205.1,43.7,205.1,43.7z M205.5,37c-0.5,0-0.8-0.1-0.9-0.3
c-0.1-0.2-0.2-0.5-0.2-0.8s0.1-0.6,0.2-0.8s0.4-0.3,0.9-0.3s0.8,0.1,0.9,0.3c0.1,0.2,0.2,0.5,0.2,0.8s-0.1,0.6-0.2,0.8
S206,37,205.5,37z"/>
<path class="st4" d="M212.4,35.7c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C212.4,35.1,212.4,35.3,212.4,35.7z M212.3,47.8c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4
c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V47.8z"/>
<path class="st4" d="M222.1,45.2c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3s-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3s0.2,0,0.4,0s0.5,0.1,0.7,0.1
c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6
s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3s-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8
s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1
c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2
s-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3
s0.8,0.3,1.2,0.5c0.3,0.2,0.6,0.5,0.8,0.9C222,44.1,222.1,44.6,222.1,45.2z"/>
<path class="st4" d="M231.5,47.2c0,0.1,0,0.3,0,0.4s-0.2,0.2-0.3,0.3c-0.4,0.2-0.9,0.3-1.4,0.4c-0.6,0.1-1.1,0.1-1.6,0.1
c-0.9,0-1.7-0.1-2.3-0.4s-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6s-0.1-1.3-0.1-2c0-0.6,0-1.2,0.2-1.8c0.1-0.6,0.3-1.2,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.2s1.3-0.4,2.2-0.4c0.2,0,0.5,0,0.8,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2s0.5,0.1,0.7,0.2
c0.2,0.1,0.3,0.3,0.3,0.6l-0.1,0.8c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4,0-0.8-0.1-1.3-0.1s-0.8-0.1-1.2-0.1
c-0.8,0-1.4,0.2-1.7,0.7s-0.5,1.3-0.5,2.4c0,0.6,0,1.1,0.1,1.6c0.1,0.4,0.2,0.7,0.4,1s0.4,0.4,0.7,0.5s0.6,0.2,1,0.2
c0.3,0,0.7,0,1.2-0.1c0.5,0,1-0.1,1.4-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3L231.5,47.2z"/>
<path class="st4" d="M241.1,48.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4c0-1,0-1.9,0-2.9s0-1.9,0-2.9c0-0.6-0.1-1-0.3-1.4
c-0.2-0.3-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1s-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3s-0.4,0.2-0.5,0.2v6.8c0,0.1,0,0.2-0.1,0.3
s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4V34.4c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v4.9c0.2-0.1,0.4-0.2,0.6-0.4
c0.3-0.1,0.5-0.2,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
s0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C241.6,48,241.4,48.1,241.1,48.1z"/>
<path class="st4" d="M245.7,43.8c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8s0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1s0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
s-0.4,0.2-0.7,0.2c-0.3,0.1-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6s-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6s0.3-1.2,0.6-1.7s0.7-1,1.3-1.3
c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1s0.5,0.9,0.6,1.4s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9
c-0.1,0.2-0.4,0.3-0.8,0.3h-5.5L245.7,43.8L245.7,43.8z M247.8,39.9c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8c-0.1-0.2-0.3-0.4-0.6-0.5
S248.2,39.9,247.8,39.9z"/>
<path class="st4" d="M152.1,62.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V69c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V56.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L152.1,62.4L152.1,62.4z"/>
<path class="st4" d="M169.7,64.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
s-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C169.6,63.1,169.7,63.7,169.7,64.3z
M167.4,64.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.3,0.1-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6
s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2s0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S167.4,64.9,167.4,64.4z"/>
<path class="st4" d="M185.9,69.2c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V69c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V69c0,0.3-0.1,0.4-0.4,0.4H172c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3s0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4s1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4
v6C186,69.1,186,69.2,185.9,69.2z"/>
<path class="st4" d="M202.5,69.2c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V69c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V69c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3s0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4s1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4
v6C202.5,69.1,202.5,69.2,202.5,69.2z"/>
<path class="st4" d="M207.3,56.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C207.2,56.3,207.3,56.5,207.3,56.9z M207.2,69c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4
c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V69z"/>
<path class="st4" d="M217,66.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3s-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3s0.2,0,0.4,0s0.5,0.1,0.7,0.1
c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6
s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5
c-0.3-0.2-0.6-0.5-0.8-0.8s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1
s0.5,0.1,0.8,0.1c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0
c-0.4-0.1-0.9-0.1-1.4-0.2s-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5c0.3,0.2,0.6,0.5,0.8,0.9C216.9,65.3,217,65.8,217,66.4z"/>
<path class="st4" d="M226.2,66.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3s-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3s0.2,0,0.4,0s0.5,0.1,0.7,0.1
c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6
s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5
c-0.3-0.2-0.6-0.5-0.8-0.8s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1
s0.5,0.1,0.8,0.1c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0
c-0.4-0.1-0.9-0.1-1.4-0.2s-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5c0.3,0.2,0.6,0.5,0.8,0.9C226.1,65.3,226.2,65.8,226.2,66.4z"/>
<path class="st4" d="M230.7,56.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C230.6,56.3,230.7,56.5,230.7,56.9z M230.6,69c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4
c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V69z"/>
<path class="st4" d="M241.6,64.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
s-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C241.5,63.1,241.6,63.7,241.6,64.3z
M239.3,64.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.3,0.1-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6
s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2s0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S239.3,64.9,239.3,64.4z"/>
<path class="st4" d="M252,69.2c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-5.6c0-0.6-0.1-1.1-0.3-1.4s-0.6-0.5-1.2-0.5
c-0.2,0-0.4,0-0.7,0.1s-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3s-0.4,0.2-0.5,0.3V69c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4
v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0l0,0c0.2-0.1,0.4-0.3,0.7-0.4c0.3-0.1,0.5-0.3,0.8-0.4
s0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V69
C252,69.1,252,69.2,252,69.2z"/>
</g>
<rect x="261.4" y="29.2" class="st2" width="3.5" height="40.5"/>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,243 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 273.9 75.3"
style="enable-background:new 0 0 273.9 75.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#BBBDBF;}
.st2{fill:#034DA1;}
.st3{fill:#FFF100;}
.st4{fill:#626366;}
</style>
<g>
<path id="path-3" class="st0" d="M0,0h264.9v69.5H0V0z"/>
</g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st1" d="M0,25.6c0,0,41.6-5.4,42.8-5.6c1.8-0.3,3.4-0.6,4.9-1.1c3.4-0.9,6.5-2.3,9.2-4.2
c2.6-1.8,5.1-4.4,7.5-7.2c1.5-1.8,3.2-4.2,4.7-6.4V0c-1.8,2.7-3.6,5-5.4,7c-2.4,2.7-4.9,4.9-7.5,6.6c-2.7,1.7-5.6,3-8.9,3.8
c-1.5,0.4-3,0.7-4.8,0.9c-1.2,0.2-2.3,0.3-3.5,0.4c-0.4,0.1-39,4.2-39,4.2S0,25.6,0,25.6z"/>
<path id="Fill-41" class="st1" d="M55.8,18.6c-2.6,1.5-5.6,2.6-8.9,3.3c-1.4,0.3-3,0.5-4.7,0.7c-1,0.1-2.1,0.2-3.1,0.3
c-0.6,0-1.1,0.1-1.7,0.2C24.6,24.2,11.9,25.4,0,26.6v2.7c12-1.5,24.7-3,37.5-4.4c0.6-0.1,1.1-0.1,1.7-0.2
c1-0.1,2.1-0.2,3.1-0.4c1.8-0.2,3.4-0.5,4.9-0.9c3.5-0.8,6.6-2,9.3-3.7c2.7-1.6,5.1-3.9,7.6-6.7c1.6-1.7,3.4-4.2,5-6.5v-1
c-1.9,2.7-3.8,4.9-5.6,6.8C61,15,58.4,17.1,55.8,18.6"/>
<path id="Fill-42" class="st1" d="M63.1,17.9c-2.5,2.3-5.2,4.2-7.9,5.5c-2.6,1.3-5.6,2.2-9,2.7c-1.4,0.2-3,0.4-4.7,0.6L0,30.2
v2.7L36.9,29l4.8-0.5c1.8-0.2,3.4-0.4,4.8-0.7c3.5-0.7,6.6-1.7,9.3-3.1c2.8-1.4,5.5-3.8,8.1-6.3c1.7-1.7,3.4-3.8,5.2-6.1v-0.9
C67,14,65.1,16.1,63.1,17.9"/>
<path id="Fill-43" class="st1" d="M53.1,32c-2.4,1.4-4.2,2.1-7.7,2.5c-2.1,0.2-4.2,0.3-6.3,0.4c-1,0.1-2,0.1-3,0.2
c-6.3,0.4-12.4,0.8-18.7,1.2L0,37.5v2.7l17.5-1.6c5.7-0.5,12.2-1.1,18.7-1.6l4.7-0.4c1.8-0.1,3.3-0.3,4.7-0.5
c3.6-0.5,6.6-1.2,9.3-2.2c2.9-1.1,5.6-2.8,8.4-4.8c2.5-1.8,5.9-5.3,5.9-5.4v-1c-2.2,2.2-3.5,3.4-6,5
C60.2,29.8,55.2,30.8,53.1,32"/>
<path id="Fill-44" class="st1" d="M54,37.2c-2.6,0.8-5.6,1.3-9,1.6c-1.4,0.1-2.9,0.2-4.6,0.3l-4.6,0.2
c-11.5,0.5-23,1.1-35.7,1.8v2.7c12.1-0.9,23.9-1.9,35.8-2.7l4.6-0.3c1.8-0.1,3.3-0.2,4.7-0.4c3.5-0.4,6.6-1,9.2-1.9
c3-0.9,5.9-2.3,8.6-4.1c2-1.3,4-2.8,6.2-4.7l0,0c-2.3,2-4.5,2.4-6.7,3.8C59.7,35.1,56.8,36.3,54,37.2"/>
<path id="Fill-45" class="st1" d="M53.5,41.7c-2.6,0.6-5.5,1-9,1.3c-1.4,0.1-2.8,0.2-4.6,0.2l-4.6,0.2
C23.8,43.8,12,44.3,0,44.8v2.7c11.9-0.8,23.6-1.6,35.4-2.4l4.6-0.3c1.8-0.1,3.3-0.2,4.6-0.3c3.6-0.3,6.5-0.8,9.2-1.5
c3-0.8,6-1.9,8.7-3.4c2.1-1.1,4.3-2.5,6.5-4.2v-1.2c-2.4,1.7-4.7,3.2-7,4.3C59.4,40,56.5,41,53.5,41.7"/>
<path id="Fill-46" class="st1" d="M53.1,46.1c-2.6,0.5-5.5,0.8-9,1c-1.3,0.1-2.7,0.1-4.5,0.2L0,48.3V51l35.1-1.8l4.6-0.2
c1.8-0.1,3.2-0.2,4.6-0.3c3.5-0.3,6.4-0.7,9.1-1.2c3.1-0.6,6-1.6,8.8-2.8c2.3-1,4.5-2.1,6.9-3.6V40c-2.5,1.5-4.9,2.7-7.3,3.6
C59.1,44.7,56.1,45.6,53.1,46.1"/>
<path id="Fill-47" class="st1" d="M52.8,50.5c-4.9,0.7-9.9,0.7-14.7,0.8c-1.1,0-2.2,0-3.3,0.1L0,52v2.7l34.9-1.5
c1.1-0.1,2.2-0.1,3.3-0.1c4.9-0.2,9.9-0.4,14.8-1.2c3.1-0.5,6.1-1.2,8.9-2.2c2.3-0.8,4.7-1.8,7.2-3v-1
c-2.6,1.2-5.1,2.2-7.5,2.9C58.8,49.5,55.9,50.1,52.8,50.5"/>
<path id="Fill-48" class="st1" d="M52.6,55c-4.6,0.4-9.2,0.4-13.7,0.4c-1.4,0-2.8,0-4.2,0c-11.5,0.1-23,0.1-34.6,0.2v2.7
c11.1-0.4,22.9-0.8,34.7-1.1c1.4,0,2.8-0.1,4.2-0.1c4.5-0.1,9.2-0.2,13.8-0.7c3.2-0.3,6.1-0.9,8.9-1.6c2.4-0.6,5-1.4,7.5-2.4
v-1c-2.6,0.9-5.2,1.7-7.7,2.3C58.6,54.3,55.7,54.7,52.6,55"/>
<path id="Fill-49" class="st1" d="M52.4,59.4c-1.9,0.1-4,0.1-6.3,0.1c-0.9,0-1.8,0-2.6,0l-9-0.1c-6.1,0-12.2-0.1-17.9-0.1
L0,59.3V62l16.6-0.4c5.7-0.1,11.8-0.3,17.9-0.4l9-0.1c2.5,0,5.7-0.1,9-0.3c3.2-0.2,6.1-0.5,9-1c2.5-0.4,5.1-1,7.7-1.6v-1
c-2.7,0.6-5.3,1.1-7.9,1.5C58.5,59,55.6,59.3,52.4,59.4"/>
<path id="Fill-50" class="st1" d="M43.3,63.6l-8.9-0.1C23,63.4,11.6,63.2,0,62.9v2.7c11.1-0.1,22.8-0.2,34.4-0.3l8.9-0.1
c3-0.1,6-0.1,8.9-0.2c6.1-0.2,11.6-0.6,16.8-1.3v-0.9c-5.2,0.6-10.7,0.9-16.8,0.9C49.3,63.7,46.3,63.7,43.3,63.6"/>
<path id="Fill-51" class="st1" d="M69.1,68.4L0,66.6v2.7h69.1V68.4z"/>
<path id="Fill-52" class="st1" d="M62.9,23c-2.6,2.1-4.7,3.6-7.9,4.9c-2.8,1.1-5.8,1.6-9.2,2.1c-2.2,0.3-4.5,0.8-6.7,0.9
c-0.9,0.1-1.8,0.1-2.7,0.2L0,33.8v2.7l36.5-3.6l4.7-0.4c1.8-0.2,3.3-0.4,4.8-0.6c3.5-0.6,6.6-1.4,9.3-2.7
c2.8-1.3,5.7-3.3,8.4-5.6c1.8-1.5,3.6-3.5,5.5-5.6v-1C66.8,19.5,64.9,21.4,62.9,23"/>
<path id="Fill-53" class="st1" d="M98.5,0c0,0,12.4,19.8,14.7,23.4c2.3,3.6,4.9,6.5,14.1,8.5s13.2,2.9,13.2,2.9v0.7
c0,0-5.8-1.2-13.4-2.9s-10.6-2.2-14-7c-2.9-4-14.6-20.8-14.6-20.8V0z"/>
<path id="Fill-54" class="st1" d="M98.5,22.6c0,0,11.3,11.9,14.6,15.3c3.5,3.6,7.9,4.9,14.1,6c5.9,1.1,13.3,2.3,13.3,2.3v0.7
c0,0-7-1.1-13.3-2.2c-6.2-1.1-10.6-1.7-14.1-4.9c-3.2-2.9-14.6-13.6-14.6-13.6V22.6z"/>
<path id="Fill-55" class="st1" d="M98.5,28c0,0,10.8,10,14.6,13.4c3.5,3.1,6.4,4.1,14.1,5.5s13.3,2.2,13.3,2.2v0.7
c0,0-7-1.2-13.3-2.2s-10.3-1.4-14.1-4.5c-4.4-3.5-14.6-12-14.6-12V28z"/>
<path id="Fill-56" class="st1" d="M98.5,33.7c0,0,12.3,9.8,14.6,11.5c2.3,1.7,5.3,3.7,14.2,5c8.7,1.3,13.2,1.9,13.2,1.9v0.7
c0,0-7.9-1.2-13.2-1.8c-5.3-0.7-9.4-1-14.1-4.1c-4.6-3.1-14.6-10.1-14.6-10.1v-3.1C98.6,33.7,98.5,33.7,98.5,33.7z"/>
<path id="Fill-57" class="st1" d="M98.5,39.1c0,0,12.3,8.2,14.7,9.5c2.3,1.3,5.1,3.4,14.1,4.6c9,1.2,13.2,1.7,13.2,1.7v0.7
c0,0-7.5-0.8-13.3-1.4c-5.8-0.6-9.8-1.5-14.1-3.9c-4.3-2.4-14.6-8.4-14.6-8.4V39.1z"/>
<path id="Fill-58" class="st1" d="M98.5,44.6c0,0,10.9,5.9,14.6,7.8c4.1,2.1,7.7,3.1,14.1,3.8c6.3,0.8,13.3,1.5,13.3,1.5v0.7
c0,0-6.4-0.7-13.3-1.3c-6.8-0.6-9.2-0.9-14.1-3.1c-4.4-1.9-14.6-6.7-14.6-6.7V44.6z"/>
<path id="Fill-59" class="st1" d="M98.5,50.2c0,0,8.6,3.7,14.7,6.1c6,2.4,10.5,2.6,14.1,3c1.6,0.2,13.2,1.4,13.2,1.4v0.7
c0,0-6.9-0.6-13.2-1.1c-6.3-0.6-9-0.8-14.1-2.5c-5.2-1.7-14.6-5-14.6-5v-2.6C98.6,50.2,98.5,50.2,98.5,50.2z"/>
<path id="Fill-60" class="st1" d="M98.5,55.8c0,0,8.7,2.7,14.6,4.3s11.4,2.2,14.1,2.4s13.2,1,13.2,1v0.6c0,0-6-0.4-13.3-0.9
c-5.9-0.4-10.7-0.9-14.1-1.6c-3.8-0.8-14.6-3.4-14.6-3.4v-2.4C98.4,55.8,98.5,55.8,98.5,55.8z"/>
<path id="Fill-61" class="st1" d="M98.5,61.4c0,0,7.1,1.2,14.6,2.5c5.6,0.9,13.3,1.5,14.1,1.6c0.8,0,13.3,0.9,13.3,0.9V67
c0,0-8-0.4-13.3-0.7c-5.5-0.3-11-0.6-14.1-1c-7-0.7-14.6-1.7-14.6-1.7V61.4z"/>
<path id="Fill-62" class="st1" d="M98.5,67.2c0,0,11.2,0.4,14.6,0.5s27.4,1,27.4,1v0.7h-42V67.2z"/>
<path id="Fill-63" class="st1" d="M127.2,35c-10.2-2.2-12.5-5.9-14.2-8.2S98.4,5.7,98.4,5.7v4.2c0.5,0.7,11.5,15.1,14.6,19
c3.5,4.5,8.9,5.5,14.1,6.6c5.2,1.1,13.3,2.7,13.3,2.7v-0.6C140.5,37.6,129.8,35.5,127.2,35"/>
<path id="Fill-64" class="st1" d="M127.2,37.9c-8.3-1.6-11.7-4.3-14.2-7.5c-2.4-3.2-14.6-19.2-14.6-19.2v4
c0.5,0.6,11.6,13.7,14.6,17.1c3.5,4,8.3,5,14.2,6.1s13.3,2.5,13.3,2.5v-0.6C140.5,40.4,132,38.9,127.2,37.9"/>
<path id="Fill-65" class="st1" d="M127.2,41c-8.7-1.7-10.5-3.1-14.1-7.1c-2.3-2.5-14.1-16.4-14.6-17v3.7
c0,0,11,11.7,14.6,15.2c4.6,4.6,9,4.9,14.2,5.8c5.2,0.9,13.3,2.4,13.3,2.4v-0.6C140.5,43.4,130.7,41.7,127.2,41"/>
<path id="Fill-66" class="st2" d="M89.3,28.8H28.7v40.5h60.5V28.8H89.3z"/>
<path id="Fill-67" class="st3" d="M59.6,34.6h2.1L60,35.9l0.7,2.1L59,36.7L57.3,38l0.7-2.1l-1.7-1.3h2.1l0.6-2L59.6,34.6z"/>
<path id="Fill-68" class="st3" d="M59.7,61.6h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L59.7,61.6z"/>
<path id="Fill-69" class="st3" d="M66.4,59.8h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2L63,59.8h2.1l0.6-2L66.4,59.8z"/>
<path id="Fill-70" class="st3" d="M66.4,36.4h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2L63,36.4h2.1l0.6-2L66.4,36.4z"/>
<path id="Fill-71" class="st3" d="M71.4,41.4h2.1l-1.7,1.3l0.7,2l-1.7-1.2L69,44.7l0.7-2L68,41.4h2.1l0.6-2L71.4,41.4z"/>
<path id="Fill-72" class="st3" d="M71.4,54.9h2.1l-1.7,1.3l0.7,2L70.7,57L69,58.2l0.7-2L68,54.9h2.1l0.6-2L71.4,54.9z"/>
<path id="Fill-73" class="st3" d="M73.2,48h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2L69.9,48H72l0.6-2L73.2,48z"/>
<path id="Fill-74" class="st3" d="M52.8,36.4h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L52.8,36.4z"/>
<path id="Fill-75" class="st3" d="M48,41.4h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L48,41.4z"/>
<path id="Fill-76" class="st3" d="M46.2,48.1h2.1l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3H45l0.6-2L46.2,48.1z"/>
<path id="Fill-77" class="st3" d="M48,54.9h2.1l-1.7,1.3l0.7,2L47.4,57l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L48,54.9z"/>
<path id="Fill-78" class="st3" d="M52.9,59.8H55l-1.7,1.3l0.7,2l-1.7-1.2l-1.7,1.2l0.7-2l-1.7-1.3h2.1l0.6-2L52.9,59.8z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g>
<path class="st4" d="M149.8,35.2c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V35.2z"/>
<path class="st4" d="M168.2,48.1h-1.4c-0.1,0-0.2,0-0.3-0.1s-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
c-0.3,0.1-0.5,0.3-0.8,0.4c-0.3,0.1-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8
c-0.2-0.3-0.3-0.7-0.4-1.2c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6
c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1s0.5-0.2,0.8-0.3
s0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1
C168.6,48,168.5,48.1,168.2,48.1z"/>
<path class="st4" d="M173.3,47.8c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0s0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2s-0.6,0.2-0.9,0.2
c-0.3,0.1-0.6,0.2-0.8,0.3s-0.5,0.2-0.6,0.2L173.3,47.8L173.3,47.8z"/>
<path class="st4" d="M186.6,43.1c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
s-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C186.5,41.9,186.6,42.5,186.6,43.1z
M184.3,43.2c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.3,0.1-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6
s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6s0.3-0.6,0.3-1S184.3,43.7,184.3,43.2z"/>
<path class="st4" d="M197.2,43.2c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1s-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1s-0.1-0.2-0.1-0.3
V38.7c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6h0.1c0.2-0.1,0.4-0.2,0.6-0.4c0.2-0.1,0.5-0.3,0.8-0.4
c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1s0.4,1,0.5,1.6
C197.2,41.7,197.2,42.4,197.2,43.2z M195,43.1c0-0.6,0-1.2-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9s-0.3-0.4-0.5-0.4
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1s-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v5
c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.3,0.3-0.6,0.3-1
C194.9,44.3,195,43.8,195,43.1z"/>
<path class="st4" d="M205.2,47c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5s-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0s-0.5,0-0.7,0.1
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3c0.1-0.1,0.2-0.2,0.4-0.3
s0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1c0.3,0,0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3s0.9,0.4,1.2,0.7
s0.4,0.7,0.5,1.2s0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1
c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3
C205.6,47.8,205.4,47.5,205.2,47L205.2,47z M201.6,37c-0.3,0-0.5,0-0.6-0.1s-0.3-0.1-0.3-0.3s-0.1-0.2-0.2-0.4s0-0.3,0-0.4
c0-0.3,0.1-0.6,0.2-0.8s0.4-0.3,0.9-0.3s0.8,0.1,0.9,0.3c0.1,0.2,0.2,0.5,0.2,0.8s-0.1,0.6-0.2,0.8C202.3,36.8,202,37,201.6,37z
M205.1,43.7h-2.4c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
s0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3s0.5-0.2,0.6-0.3v-2C205.2,43.7,205.1,43.7,205.1,43.7z M205.5,37c-0.5,0-0.8-0.1-0.9-0.3
c-0.1-0.2-0.2-0.5-0.2-0.8s0.1-0.6,0.2-0.8s0.4-0.3,0.9-0.3s0.8,0.1,0.9,0.3c0.1,0.2,0.2,0.5,0.2,0.8s-0.1,0.6-0.2,0.8
S206,37,205.5,37z"/>
<path class="st4" d="M212.4,35.7c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C212.4,35.1,212.4,35.3,212.4,35.7z M212.3,47.8c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4
c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V47.8z"/>
<path class="st4" d="M222.1,45.2c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3s-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3s0.2,0,0.4,0s0.5,0.1,0.7,0.1
c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6
s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3s-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8
s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1
c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2
s-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3
s0.8,0.3,1.2,0.5c0.3,0.2,0.6,0.5,0.8,0.9C222,44.1,222.1,44.6,222.1,45.2z"/>
<path class="st4" d="M231.5,47.2c0,0.1,0,0.3,0,0.4s-0.2,0.2-0.3,0.3c-0.4,0.2-0.9,0.3-1.4,0.4c-0.6,0.1-1.1,0.1-1.6,0.1
c-0.9,0-1.7-0.1-2.3-0.4s-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6s-0.1-1.3-0.1-2c0-0.6,0-1.2,0.2-1.8c0.1-0.6,0.3-1.2,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.2s1.3-0.4,2.2-0.4c0.2,0,0.5,0,0.8,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2s0.5,0.1,0.7,0.2
c0.2,0.1,0.3,0.3,0.3,0.6l-0.1,0.8c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4,0-0.8-0.1-1.3-0.1s-0.8-0.1-1.2-0.1
c-0.8,0-1.4,0.2-1.7,0.7s-0.5,1.3-0.5,2.4c0,0.6,0,1.1,0.1,1.6c0.1,0.4,0.2,0.7,0.4,1s0.4,0.4,0.7,0.5s0.6,0.2,1,0.2
c0.3,0,0.7,0,1.2-0.1c0.5,0,1-0.1,1.4-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3L231.5,47.2z"/>
<path class="st4" d="M241.1,48.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4c0-1,0-1.9,0-2.9s0-1.9,0-2.9c0-0.6-0.1-1-0.3-1.4
c-0.2-0.3-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1s-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3s-0.4,0.2-0.5,0.2v6.8c0,0.1,0,0.2-0.1,0.3
s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4V34.4c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v4.9c0.2-0.1,0.4-0.2,0.6-0.4
c0.3-0.1,0.5-0.2,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
s0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C241.6,48,241.4,48.1,241.1,48.1z"/>
<path class="st4" d="M245.7,43.8c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8s0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1s0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
s-0.4,0.2-0.7,0.2c-0.3,0.1-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6s-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6s0.3-1.2,0.6-1.7s0.7-1,1.3-1.3
c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1s0.5,0.9,0.6,1.4s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9
c-0.1,0.2-0.4,0.3-0.8,0.3h-5.5L245.7,43.8L245.7,43.8z M247.8,39.9c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8c-0.1-0.2-0.3-0.4-0.6-0.5
S248.2,39.9,247.8,39.9z"/>
<path class="st4" d="M152.1,62.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V69c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V56.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L152.1,62.4L152.1,62.4z"/>
<path class="st4" d="M169.7,64.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
s-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C169.6,63.1,169.7,63.7,169.7,64.3z
M167.4,64.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.3,0.1-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6
s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2s0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S167.4,64.9,167.4,64.4z"/>
<path class="st4" d="M185.9,69.2c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V69c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V69c0,0.3-0.1,0.4-0.4,0.4H172c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3s0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4s1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4
v6C186,69.1,186,69.2,185.9,69.2z"/>
<path class="st4" d="M202.5,69.2c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V69c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V69c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3s0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4s1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4
v6C202.5,69.1,202.5,69.2,202.5,69.2z"/>
<path class="st4" d="M207.3,56.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C207.2,56.3,207.3,56.5,207.3,56.9z M207.2,69c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4
c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V69z"/>
<path class="st4" d="M217,66.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3s-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3s0.2,0,0.4,0s0.5,0.1,0.7,0.1
c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6
s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5
c-0.3-0.2-0.6-0.5-0.8-0.8s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1
s0.5,0.1,0.8,0.1c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0
c-0.4-0.1-0.9-0.1-1.4-0.2s-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5c0.3,0.2,0.6,0.5,0.8,0.9C216.9,65.3,217,65.8,217,66.4z"/>
<path class="st4" d="M226.2,66.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3s-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3s0.2,0,0.4,0s0.5,0.1,0.7,0.1
c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6
s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5
c-0.3-0.2-0.6-0.5-0.8-0.8s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1
s0.5,0.1,0.8,0.1c0.3,0.1,0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0
c-0.4-0.1-0.9-0.1-1.4-0.2s-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5c0.3,0.2,0.6,0.5,0.8,0.9C226.1,65.3,226.2,65.8,226.2,66.4z"/>
<path class="st4" d="M230.7,56.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C230.6,56.3,230.7,56.5,230.7,56.9z M230.6,69c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4
c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V69z"/>
<path class="st4" d="M241.6,64.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
s-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C241.5,63.1,241.6,63.7,241.6,64.3z
M239.3,64.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2
c-0.3,0.1-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6
s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2s0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S239.3,64.9,239.3,64.4z"/>
<path class="st4" d="M252,69.2c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-5.6c0-0.6-0.1-1.1-0.3-1.4s-0.6-0.5-1.2-0.5
c-0.2,0-0.4,0-0.7,0.1s-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3s-0.4,0.2-0.5,0.3V69c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4
v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0l0,0c0.2-0.1,0.4-0.3,0.7-0.4c0.3-0.1,0.5-0.3,0.8-0.4
s0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V69
C252,69.1,252,69.2,252,69.2z"/>
</g>
<rect x="261.4" y="29.2" class="st2" width="3.5" height="40.5"/>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,204 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M155.9,43.1c0,0.2,0.1,0.5,0.3,0.6s0.3,0.3,0.6,0.4s0.6,0.2,1,0.2c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.6-0.4
c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-5.7c0-0.3,0.1-0.4,0.4-0.4h1.5c0.3,0,0.4,0.1,0.4,0.4v5.8c0,0.5-0.1,1-0.3,1.5
c-0.2,0.5-0.4,0.9-0.8,1.2s-0.8,0.6-1.3,0.8c-0.5,0.2-1.2,0.3-1.9,0.3c-0.8,0-1.4-0.1-1.9-0.3c-0.5-0.2-1-0.4-1.3-0.8
c-0.3-0.3-0.6-0.7-0.7-1.2c-0.2-0.5-0.2-1-0.2-1.6v-5.8c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4
v5.7C155.9,42.6,155.9,42.8,155.9,43.1z"/>
<path class="st4" d="M172.9,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.4-2,0.4
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3v3.6c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3v-8.3c0-1.7,0.4-3,1.1-3.8c0.8-0.8,1.8-1.2,3.2-1.2c0.8,0,1.5,0.1,2.1,0.4c0.6,0.2,1,0.6,1.4,1
s0.6,1,0.7,1.6C172.8,39.6,172.9,40.3,172.9,41.1z M170.6,41c0-0.6-0.1-1.1-0.2-1.5c-0.1-0.4-0.3-0.7-0.4-0.9s-0.4-0.4-0.7-0.5
c-0.3-0.1-0.5-0.1-0.8-0.1c-0.5,0-0.9,0.1-1.2,0.3c-0.3,0.2-0.5,0.5-0.7,0.8c-0.1,0.3-0.2,0.6-0.3,1c0,0.4,0,0.7,0,1.1V44
c0.4,0.1,0.8,0.2,1.2,0.3c0.4,0,0.7,0.1,1.1,0.1c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.5-0.3,0.6-0.5c0.2-0.2,0.3-0.6,0.4-1
C170.6,42.2,170.6,41.7,170.6,41z"/>
<path class="st4" d="M181.4,44.8c-0.2,0.4-0.6,0.7-1.1,1c-0.5,0.3-1.1,0.4-1.7,0.4c-0.8,0-1.4-0.1-1.9-0.4
c-0.5-0.3-0.9-0.6-1.2-1.1s-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.5c0.1-0.5,0.2-1,0.4-1.4s0.5-0.9,0.9-1.2
c0.4-0.4,0.9-0.7,1.5-0.9c0.1-0.1,0.3-0.1,0.4-0.1c0.1,0,0.2,0.1,0.3,0.2l0.5,0.8c0.1,0.1,0.1,0.2,0.1,0.3s-0.1,0.2-0.3,0.3
c-0.3,0.2-0.6,0.5-0.8,0.7c-0.2,0.2-0.4,0.5-0.5,0.8c-0.1,0.3-0.2,0.6-0.2,0.9c0,0.3-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2
c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.3,0.5,0.5,0.7c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.1,0.9-0.2s0.4-0.3,0.5-0.5s0.2-0.4,0.2-0.7
c0-0.2,0.1-0.5,0.1-0.8v-2.6c0-0.3,0.1-0.4,0.4-0.4h1.3c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3v2.6c0,0.3,0,0.5,0.1,0.8
c0.1,0.2,0.2,0.5,0.3,0.7s0.3,0.4,0.5,0.5s0.5,0.2,0.8,0.2c0.6,0,1-0.2,1.3-0.7c0.3-0.5,0.4-1.3,0.4-2.4c0-0.5,0-0.9-0.1-1.2
c0-0.3-0.1-0.6-0.2-0.9c-0.1-0.3-0.3-0.5-0.5-0.8c-0.2-0.2-0.5-0.5-0.8-0.7c-0.2-0.1-0.3-0.2-0.3-0.3c0-0.1,0-0.2,0.1-0.3l0.4-0.7
c0.1-0.3,0.3-0.3,0.6-0.2c0.6,0.2,1.1,0.5,1.5,0.9c0.4,0.4,0.7,0.8,0.9,1.2s0.4,0.9,0.4,1.4c0.1,0.5,0.1,1,0.1,1.5
c0,0.7-0.1,1.3-0.2,1.9c-0.1,0.6-0.3,1.1-0.6,1.6c-0.3,0.5-0.7,0.8-1.2,1.1c-0.5,0.3-1.1,0.4-1.9,0.4c-0.7,0-1.3-0.1-1.8-0.4
C182.1,45.5,181.7,45.2,181.4,44.8L181.4,44.8z"/>
<path class="st4" d="M198.8,45.7c0,0.3-0.1,0.4-0.4,0.4H197c-0.3,0-0.4-0.1-0.4-0.4l0-7.6h-4.2v7.6c0,0.1,0,0.2-0.1,0.3
c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h7.8c0.1,0,0.2,0,0.3,0.1
c0.1,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M209.3,43.6c0,0.4,0,0.6,0.1,0.7c0.1,0.1,0.3,0.1,0.5,0.2c0.1,0,0.2,0,0.3,0.1c0,0,0.1,0.1,0.1,0.2v0.8
c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0c-0.5,0-0.9-0.1-1.1-0.3s-0.5-0.5-0.6-1l0,0
c-0.5,0.4-1.1,0.7-1.6,1s-1.1,0.4-1.7,0.4c-0.6,0-1.2-0.1-1.6-0.4c-0.4-0.2-0.8-0.6-1-1c-0.2-0.4-0.4-1-0.5-1.6
c-0.1-0.6-0.2-1.3-0.2-2.1c0-0.8,0.1-1.5,0.2-2.1c0.2-0.6,0.4-1.2,0.7-1.6c0.3-0.5,0.7-0.8,1.2-1.1c0.5-0.3,1.1-0.4,1.8-0.4
c0.3,0,0.7,0.1,1.2,0.2c0.5,0.1,0.9,0.3,1.4,0.6l0,0v-0.2c0-0.1,0-0.2,0.1-0.3c0-0.1,0.2-0.1,0.3-0.1h1.4c0.2,0,0.3,0,0.3,0.1
c0,0.1,0.1,0.2,0.1,0.3V43.6z M202.9,41.3c0,0.6,0,1.2,0.1,1.5c0.1,0.4,0.2,0.7,0.3,0.9s0.3,0.4,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1
c0.2,0,0.4,0,0.7-0.1c0.2-0.1,0.5-0.1,0.8-0.2s0.5-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.6-0.3v-4.8c-0.4-0.2-0.9-0.3-1.2-0.4
c-0.4-0.1-0.7-0.1-0.9-0.1c-0.7,0-1.3,0.2-1.6,0.7C203,39.2,202.9,40.1,202.9,41.3z"/>
<path class="st4" d="M211.3,34.9c-0.3,0-0.5,0-0.6-0.1c-0.1-0.1-0.3-0.1-0.3-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4
c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.4-0.3,0.9-0.3s0.8,0.1,0.9,0.3c0.1,0.2,0.2,0.5,0.2,0.8c0,0.3-0.1,0.6-0.2,0.8
S211.8,34.9,211.3,34.9z M214.3,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z M215.2,34.9c-0.5,0-0.8-0.1-0.9-0.3
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.4-0.3,0.9-0.3c0.5,0,0.8,0.1,0.9,0.3c0.1,0.2,0.2,0.5,0.2,0.8
c0,0.3-0.1,0.6-0.2,0.8S215.7,34.9,215.2,34.9z"/>
<path class="st4" d="M219.1,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.6c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.5-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L219.1,39.9L219.1,39.9z"/>
<path class="st4" d="M235,45.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.5,0.3v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3
c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V45.7z
M232.5,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.1,0.1-0.2,0.1c0,0-0.1,0-0.2,0l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4
l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L232.5,31.8z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M162.3,66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4l0-7.6h-4.2V66c0,0.1,0,0.2-0.1,0.3
c-0.1,0.1-0.2,0.1-0.3,0.1H154c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h7.8c0.1,0,0.2,0,0.3,0.1
c0.1,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M166.8,66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1H165c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4
h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M175.4,56.5c0.2,0,0.3,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V58c0,0.1,0,0.2-0.1,0.3c0,0.1-0.2,0.1-0.3,0.1H173
v4.9c0,0.4,0,0.6,0.1,0.8c0.1,0.2,0.2,0.3,0.4,0.4s0.4,0.1,0.8,0.1c0.3,0,0.7,0,1.2-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.1,0.3
l0.1,0.8c0,0.2-0.1,0.4-0.3,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.2,0.1-0.4,0.1-0.7,0.1s-0.4,0.1-0.7,0.1s-0.4,0-0.6,0
c-0.5,0-0.9-0.1-1.2-0.2s-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.4-0.8c-0.1-0.3-0.1-0.6-0.1-1v-5.7h-2c-0.3,0-0.4-0.1-0.4-0.4v-1
c0-0.3,0.1-0.4,0.4-0.4H175.4z"/>
<path class="st4" d="M185.9,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.4-2,0.4
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3v3.6c0,0.1,0,0.2-0.1,0.3S179.1,70,179,70h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3v-8.3c0-1.7,0.4-3,1.1-3.8c0.8-0.8,1.8-1.2,3.2-1.2c0.8,0,1.5,0.1,2.1,0.4c0.6,0.2,1,0.6,1.4,1
s0.6,1,0.7,1.6C185.8,59.9,185.9,60.6,185.9,61.4z M183.6,61.3c0-0.6-0.1-1.1-0.2-1.5c-0.1-0.4-0.3-0.7-0.4-0.9s-0.4-0.4-0.7-0.5
c-0.3-0.1-0.5-0.1-0.8-0.1c-0.5,0-0.9,0.1-1.2,0.3c-0.3,0.2-0.5,0.5-0.7,0.8c-0.1,0.3-0.2,0.6-0.3,1c0,0.4,0,0.7,0,1.1v2.9
c0.4,0.1,0.8,0.2,1.2,0.3c0.4,0,0.7,0.1,1.1,0.1c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.5-0.3,0.6-0.5c0.2-0.2,0.3-0.6,0.4-1
C183.6,62.5,183.6,62,183.6,61.3z"/>
<path class="st4" d="M196.4,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C196.4,60.1,196.4,60.7,196.4,61.3z M194.2,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C194.2,62.4,194.2,62,194.2,61.4z"/>
<path class="st4" d="M207,66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4l0-7.6h-4.2V66c0,0.1,0,0.2-0.1,0.3
c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h7.8c0.1,0,0.2,0,0.3,0.1
c0.1,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M217.6,66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.5,0.3V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3
c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66z
M215.2,52.1c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.1,0.1-0.2,0.1c0,0-0.1,0-0.2,0l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4
l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L215.2,52.1z"/>
</g>
<rect x="244.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,204 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M155.9,43.1c0,0.2,0.1,0.5,0.3,0.6s0.3,0.3,0.6,0.4s0.6,0.2,1,0.2c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.6-0.4
c0.2-0.2,0.3-0.4,0.3-0.6c0.1-0.2,0.1-0.5,0.1-0.8v-5.7c0-0.3,0.1-0.4,0.4-0.4h1.5c0.3,0,0.4,0.1,0.4,0.4v5.8c0,0.5-0.1,1-0.3,1.5
c-0.2,0.5-0.4,0.9-0.8,1.2s-0.8,0.6-1.3,0.8c-0.5,0.2-1.2,0.3-1.9,0.3c-0.8,0-1.4-0.1-1.9-0.3c-0.5-0.2-1-0.4-1.3-0.8
c-0.3-0.3-0.6-0.7-0.7-1.2c-0.2-0.5-0.2-1-0.2-1.6v-5.8c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4
v5.7C155.9,42.6,155.9,42.8,155.9,43.1z"/>
<path class="st4" d="M172.9,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.4-2,0.4
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3v3.6c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3v-8.3c0-1.7,0.4-3,1.1-3.8c0.8-0.8,1.8-1.2,3.2-1.2c0.8,0,1.5,0.1,2.1,0.4c0.6,0.2,1,0.6,1.4,1
s0.6,1,0.7,1.6C172.8,39.6,172.9,40.3,172.9,41.1z M170.6,41c0-0.6-0.1-1.1-0.2-1.5c-0.1-0.4-0.3-0.7-0.4-0.9s-0.4-0.4-0.7-0.5
c-0.3-0.1-0.5-0.1-0.8-0.1c-0.5,0-0.9,0.1-1.2,0.3c-0.3,0.2-0.5,0.5-0.7,0.8c-0.1,0.3-0.2,0.6-0.3,1c0,0.4,0,0.7,0,1.1V44
c0.4,0.1,0.8,0.2,1.2,0.3c0.4,0,0.7,0.1,1.1,0.1c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.5-0.3,0.6-0.5c0.2-0.2,0.3-0.6,0.4-1
C170.6,42.2,170.6,41.7,170.6,41z"/>
<path class="st4" d="M181.4,44.8c-0.2,0.4-0.6,0.7-1.1,1c-0.5,0.3-1.1,0.4-1.7,0.4c-0.8,0-1.4-0.1-1.9-0.4
c-0.5-0.3-0.9-0.6-1.2-1.1s-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.5c0.1-0.5,0.2-1,0.4-1.4s0.5-0.9,0.9-1.2
c0.4-0.4,0.9-0.7,1.5-0.9c0.1-0.1,0.3-0.1,0.4-0.1c0.1,0,0.2,0.1,0.3,0.2l0.5,0.8c0.1,0.1,0.1,0.2,0.1,0.3s-0.1,0.2-0.3,0.3
c-0.3,0.2-0.6,0.5-0.8,0.7c-0.2,0.2-0.4,0.5-0.5,0.8c-0.1,0.3-0.2,0.6-0.2,0.9c0,0.3-0.1,0.7-0.1,1.1c0,0.4,0,0.8,0.1,1.2
c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.3,0.5,0.5,0.7c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.1,0.9-0.2s0.4-0.3,0.5-0.5s0.2-0.4,0.2-0.7
c0-0.2,0.1-0.5,0.1-0.8v-2.6c0-0.3,0.1-0.4,0.4-0.4h1.3c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3v2.6c0,0.3,0,0.5,0.1,0.8
c0.1,0.2,0.2,0.5,0.3,0.7s0.3,0.4,0.5,0.5s0.5,0.2,0.8,0.2c0.6,0,1-0.2,1.3-0.7c0.3-0.5,0.4-1.3,0.4-2.4c0-0.5,0-0.9-0.1-1.2
c0-0.3-0.1-0.6-0.2-0.9c-0.1-0.3-0.3-0.5-0.5-0.8c-0.2-0.2-0.5-0.5-0.8-0.7c-0.2-0.1-0.3-0.2-0.3-0.3c0-0.1,0-0.2,0.1-0.3l0.4-0.7
c0.1-0.3,0.3-0.3,0.6-0.2c0.6,0.2,1.1,0.5,1.5,0.9c0.4,0.4,0.7,0.8,0.9,1.2s0.4,0.9,0.4,1.4c0.1,0.5,0.1,1,0.1,1.5
c0,0.7-0.1,1.3-0.2,1.9c-0.1,0.6-0.3,1.1-0.6,1.6c-0.3,0.5-0.7,0.8-1.2,1.1c-0.5,0.3-1.1,0.4-1.9,0.4c-0.7,0-1.3-0.1-1.8-0.4
C182.1,45.5,181.7,45.2,181.4,44.8L181.4,44.8z"/>
<path class="st4" d="M198.8,45.7c0,0.3-0.1,0.4-0.4,0.4H197c-0.3,0-0.4-0.1-0.4-0.4l0-7.6h-4.2v7.6c0,0.1,0,0.2-0.1,0.3
c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h7.8c0.1,0,0.2,0,0.3,0.1
c0.1,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M209.3,43.6c0,0.4,0,0.6,0.1,0.7c0.1,0.1,0.3,0.1,0.5,0.2c0.1,0,0.2,0,0.3,0.1c0,0,0.1,0.1,0.1,0.2v0.8
c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0c-0.5,0-0.9-0.1-1.1-0.3s-0.5-0.5-0.6-1l0,0
c-0.5,0.4-1.1,0.7-1.6,1s-1.1,0.4-1.7,0.4c-0.6,0-1.2-0.1-1.6-0.4c-0.4-0.2-0.8-0.6-1-1c-0.2-0.4-0.4-1-0.5-1.6
c-0.1-0.6-0.2-1.3-0.2-2.1c0-0.8,0.1-1.5,0.2-2.1c0.2-0.6,0.4-1.2,0.7-1.6c0.3-0.5,0.7-0.8,1.2-1.1c0.5-0.3,1.1-0.4,1.8-0.4
c0.3,0,0.7,0.1,1.2,0.2c0.5,0.1,0.9,0.3,1.4,0.6l0,0v-0.2c0-0.1,0-0.2,0.1-0.3c0-0.1,0.2-0.1,0.3-0.1h1.4c0.2,0,0.3,0,0.3,0.1
c0,0.1,0.1,0.2,0.1,0.3V43.6z M202.9,41.3c0,0.6,0,1.2,0.1,1.5c0.1,0.4,0.2,0.7,0.3,0.9s0.3,0.4,0.5,0.4c0.2,0.1,0.4,0.1,0.7,0.1
c0.2,0,0.4,0,0.7-0.1c0.2-0.1,0.5-0.1,0.8-0.2s0.5-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.6-0.3v-4.8c-0.4-0.2-0.9-0.3-1.2-0.4
c-0.4-0.1-0.7-0.1-0.9-0.1c-0.7,0-1.3,0.2-1.6,0.7C203,39.2,202.9,40.1,202.9,41.3z"/>
<path class="st4" d="M211.3,34.9c-0.3,0-0.5,0-0.6-0.1c-0.1-0.1-0.3-0.1-0.3-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4
c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.4-0.3,0.9-0.3s0.8,0.1,0.9,0.3c0.1,0.2,0.2,0.5,0.2,0.8c0,0.3-0.1,0.6-0.2,0.8
S211.8,34.9,211.3,34.9z M214.3,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z M215.2,34.9c-0.5,0-0.8-0.1-0.9-0.3
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.4-0.3,0.9-0.3c0.5,0,0.8,0.1,0.9,0.3c0.1,0.2,0.2,0.5,0.2,0.8
c0,0.3-0.1,0.6-0.2,0.8S215.7,34.9,215.2,34.9z"/>
<path class="st4" d="M219.1,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.6c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.5-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L219.1,39.9L219.1,39.9z"/>
<path class="st4" d="M235,45.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.5,0.3v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3
c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V45.7z
M232.5,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.1,0.1-0.2,0.1c0,0-0.1,0-0.2,0l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4
l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L232.5,31.8z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M162.3,66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4l0-7.6h-4.2V66c0,0.1,0,0.2-0.1,0.3
c-0.1,0.1-0.2,0.1-0.3,0.1H154c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h7.8c0.1,0,0.2,0,0.3,0.1
c0.1,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M166.8,66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1H165c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4
h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M175.4,56.5c0.2,0,0.3,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V58c0,0.1,0,0.2-0.1,0.3c0,0.1-0.2,0.1-0.3,0.1H173
v4.9c0,0.4,0,0.6,0.1,0.8c0.1,0.2,0.2,0.3,0.4,0.4s0.4,0.1,0.8,0.1c0.3,0,0.7,0,1.2-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.1,0.3
l0.1,0.8c0,0.2-0.1,0.4-0.3,0.5c-0.2,0.1-0.4,0.2-0.6,0.2c-0.2,0.1-0.4,0.1-0.7,0.1s-0.4,0.1-0.7,0.1s-0.4,0-0.6,0
c-0.5,0-0.9-0.1-1.2-0.2s-0.6-0.3-0.8-0.5c-0.2-0.2-0.3-0.5-0.4-0.8c-0.1-0.3-0.1-0.6-0.1-1v-5.7h-2c-0.3,0-0.4-0.1-0.4-0.4v-1
c0-0.3,0.1-0.4,0.4-0.4H175.4z"/>
<path class="st4" d="M185.9,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.4-2,0.4
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3v3.6c0,0.1,0,0.2-0.1,0.3S179.1,70,179,70h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3v-8.3c0-1.7,0.4-3,1.1-3.8c0.8-0.8,1.8-1.2,3.2-1.2c0.8,0,1.5,0.1,2.1,0.4c0.6,0.2,1,0.6,1.4,1
s0.6,1,0.7,1.6C185.8,59.9,185.9,60.6,185.9,61.4z M183.6,61.3c0-0.6-0.1-1.1-0.2-1.5c-0.1-0.4-0.3-0.7-0.4-0.9s-0.4-0.4-0.7-0.5
c-0.3-0.1-0.5-0.1-0.8-0.1c-0.5,0-0.9,0.1-1.2,0.3c-0.3,0.2-0.5,0.5-0.7,0.8c-0.1,0.3-0.2,0.6-0.3,1c0,0.4,0,0.7,0,1.1v2.9
c0.4,0.1,0.8,0.2,1.2,0.3c0.4,0,0.7,0.1,1.1,0.1c0.3,0,0.6,0,0.9-0.1c0.2-0.1,0.5-0.3,0.6-0.5c0.2-0.2,0.3-0.6,0.4-1
C183.6,62.5,183.6,62,183.6,61.3z"/>
<path class="st4" d="M196.4,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C196.4,60.1,196.4,60.7,196.4,61.3z M194.2,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C194.2,62.4,194.2,62,194.2,61.4z"/>
<path class="st4" d="M207,66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4l0-7.6h-4.2V66c0,0.1,0,0.2-0.1,0.3
c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h7.8c0.1,0,0.2,0,0.3,0.1
c0.1,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M217.6,66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.5,0.3V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3
c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66z
M215.2,52.1c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.1,0.1-0.2,0.1c0,0-0.1,0-0.2,0l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4
l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L215.2,52.1z"/>
</g>
<rect x="244.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,233 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M194.7,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H194.7z M196.7,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,37.9,197.1,37.8,196.7,37.8z"/>
<path class="st4" d="M209,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C209.3,45.7,209.1,45.4,209,44.9L209,44.9z M208.9,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M222.1,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C222.1,45.8,222.1,45.9,222.1,46z"/>
</g>
<g class="st3">
<path class="st4" d="M143.2,59.8c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,61.5,143.2,60.7,143.2,59.8z"/>
<path class="st4" d="M162.9,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C162.8,60.1,162.9,60.7,162.9,61.3z M160.6,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S160.6,62,160.6,61.4z"/>
<path class="st4" d="M179.2,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.2,66.1,179.2,66.2,179.2,66.3z"/>
<path class="st4" d="M195.7,66.3c0,0.1-0.1,0.1-0.3,0.1H194c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4V66C195.8,66.1,195.7,66.2,195.7,66.3z"/>
<path class="st4" d="M200.5,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.4,53.3,200.5,53.6,200.5,53.9z M200.4,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M210.2,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.1,62.3,210.2,62.8,210.2,63.4z"/>
<path class="st4" d="M219.4,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.3,62.3,219.4,62.8,219.4,63.4z"/>
<path class="st4" d="M223.9,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C223.8,53.3,223.9,53.6,223.9,53.9z M223.8,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H222c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66
z"/>
<path class="st4" d="M234.8,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C234.7,60.1,234.8,60.7,234.8,61.3z M232.5,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S232.5,62,232.5,61.4z"/>
<path class="st4" d="M245.2,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C245.3,66.1,245.2,66.2,245.2,66.3z"/>
</g>
<rect x="254.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,233 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M194.7,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H194.7z M196.7,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,37.9,197.1,37.8,196.7,37.8z"/>
<path class="st4" d="M209,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C209.3,45.7,209.1,45.4,209,44.9L209,44.9z M208.9,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M222.1,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C222.1,45.8,222.1,45.9,222.1,46z"/>
</g>
<g class="st3">
<path class="st4" d="M143.2,59.8c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,61.5,143.2,60.7,143.2,59.8z"/>
<path class="st4" d="M162.9,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C162.8,60.1,162.9,60.7,162.9,61.3z M160.6,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S160.6,62,160.6,61.4z"/>
<path class="st4" d="M179.2,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.2,66.1,179.2,66.2,179.2,66.3z"/>
<path class="st4" d="M195.7,66.3c0,0.1-0.1,0.1-0.3,0.1H194c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4V66C195.8,66.1,195.7,66.2,195.7,66.3z"/>
<path class="st4" d="M200.5,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.4,53.3,200.5,53.6,200.5,53.9z M200.4,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M210.2,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.1,62.3,210.2,62.8,210.2,63.4z"/>
<path class="st4" d="M219.4,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.3,62.3,219.4,62.8,219.4,63.4z"/>
<path class="st4" d="M223.9,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C223.8,53.3,223.9,53.6,223.9,53.9z M223.8,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H222c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66
z"/>
<path class="st4" d="M234.8,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C234.7,60.1,234.8,60.7,234.8,61.3z M232.5,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S232.5,62,232.5,61.4z"/>
<path class="st4" d="M245.2,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C245.3,66.1,245.2,66.2,245.2,66.3z"/>
</g>
<rect x="254.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,210 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M184,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C183.9,33,184,33.3,184,33.6z M183.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M193.7,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C193.6,42,193.7,42.5,193.7,43.1z"/>
<path class="st4" d="M198.2,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.1,33,198.2,33.3,198.2,33.6z M198,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M209,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C209,39.8,209,40.4,209,41z M206.8,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C206.8,42.1,206.8,41.7,206.8,41.1z M207.2,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8
c-0.1,0.1-0.2,0.2-0.4,0.1l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L207.2,31.8z"/>
<path class="st4" d="M219.4,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C219.5,45.8,219.5,45.9,219.4,46z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z"/>
<path class="st4" d="M209,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C209.3,66,209.1,65.7,209,65.2L209,65.2z M208.9,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="229.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,210 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M184,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C183.9,33,184,33.3,184,33.6z M183.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M193.7,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C193.6,42,193.7,42.5,193.7,43.1z"/>
<path class="st4" d="M198.2,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.1,33,198.2,33.3,198.2,33.6z M198,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M209,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C209,39.8,209,40.4,209,41z M206.8,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C206.8,42.1,206.8,41.7,206.8,41.1z M207.2,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8
c-0.1,0.1-0.2,0.2-0.4,0.1l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L207.2,31.8z"/>
<path class="st4" d="M219.4,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C219.5,45.8,219.5,45.9,219.4,46z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z"/>
<path class="st4" d="M209,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C209.3,66,209.1,65.7,209,65.2L209,65.2z M208.9,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="229.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,207 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.6,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C190.6,39.8,190.6,40.4,190.6,41z M188.4,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S188.4,41.7,188.4,41.1z"/>
<path class="st4" d="M201.3,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1H193c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C201.3,39.6,201.3,40.3,201.3,41.1z M199,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C199,42.2,199,41.7,199,41.1z"/>
<path class="st4" d="M209.3,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C209.6,45.7,209.4,45.4,209.3,44.9L209.3,44.9z M209.2,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.6,59.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V53.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,59.4L145.6,59.4z"/>
<path class="st4" d="M163.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C163.2,60.1,163.2,60.7,163.2,61.3z M161,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,62.4,161,62,161,61.4z"/>
<path class="st4" d="M179.5,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.6,66.1,179.6,66.2,179.5,66.3z"/>
<path class="st4" d="M184.3,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C184.3,53.3,184.3,53.6,184.3,53.9z M184.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M194.1,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C194,62.3,194.1,62.8,194.1,63.4z"/>
<path class="st4" d="M198.7,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M198.8,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.7,53.3,198.8,53.6,198.8,53.9z"/>
<path class="st4" d="M209.7,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C209.7,60.1,209.7,60.7,209.7,61.3z M207.5,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S207.5,62,207.5,61.4z"/>
<path class="st4" d="M220.1,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4H212c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C220.2,66.1,220.2,66.2,220.1,66.3z"/>
</g>
<rect x="229.5" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,207 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.6,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C190.6,39.8,190.6,40.4,190.6,41z M188.4,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S188.4,41.7,188.4,41.1z"/>
<path class="st4" d="M201.3,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1H193c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C201.3,39.6,201.3,40.3,201.3,41.1z M199,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C199,42.2,199,41.7,199,41.1z"/>
<path class="st4" d="M209.3,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C209.6,45.7,209.4,45.4,209.3,44.9L209.3,44.9z M209.2,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.6,59.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V53.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,59.4L145.6,59.4z"/>
<path class="st4" d="M163.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C163.2,60.1,163.2,60.7,163.2,61.3z M161,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,62.4,161,62,161,61.4z"/>
<path class="st4" d="M179.5,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.6,66.1,179.6,66.2,179.5,66.3z"/>
<path class="st4" d="M184.3,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C184.3,53.3,184.3,53.6,184.3,53.9z M184.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M194.1,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C194,62.3,194.1,62.8,194.1,63.4z"/>
<path class="st4" d="M198.7,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M198.8,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.7,53.3,198.8,53.6,198.8,53.9z"/>
<path class="st4" d="M209.7,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C209.7,60.1,209.7,60.7,209.7,61.3z M207.5,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S207.5,62,207.5,61.4z"/>
<path class="st4" d="M220.1,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4H212c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C220.2,66.1,220.2,66.2,220.1,66.3z"/>
</g>
<rect x="229.5" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,219 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.6,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C190.6,39.8,190.6,40.4,190.6,41z M188.4,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S188.4,41.7,188.4,41.1z"/>
<path class="st4" d="M201.3,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1H193c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C201.3,39.6,201.3,40.3,201.3,41.1z M199,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C199,42.2,199,41.7,199,41.1z"/>
<path class="st4" d="M209.3,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C209.6,45.7,209.4,45.4,209.3,44.9L209.3,44.9z M209.2,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M222.4,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C222.4,45.8,222.4,45.9,222.4,46z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M182.2,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C182.1,53.3,182.2,53.6,182.2,53.9z M182.1,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M191.9,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C191.8,62.3,191.9,62.8,191.9,63.4z"/>
<path class="st4" d="M201.1,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C201,62.3,201.1,62.8,201.1,63.4z"/>
<path class="st4" d="M205.6,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.5,53.3,205.6,53.6,205.6,53.9z M205.5,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M216.5,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C216.4,60.1,216.5,60.7,216.5,61.3z M214.2,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C214.2,62.4,214.2,62,214.2,61.4z"/>
</g>
<rect x="231.7" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,219 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.6,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C190.6,39.8,190.6,40.4,190.6,41z M188.4,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S188.4,41.7,188.4,41.1z"/>
<path class="st4" d="M201.3,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1H193c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C201.3,39.6,201.3,40.3,201.3,41.1z M199,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C199,42.2,199,41.7,199,41.1z"/>
<path class="st4" d="M209.3,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C209.6,45.7,209.4,45.4,209.3,44.9L209.3,44.9z M209.2,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M222.4,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C222.4,45.8,222.4,45.9,222.4,46z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M182.2,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C182.1,53.3,182.2,53.6,182.2,53.9z M182.1,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M191.9,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C191.8,62.3,191.9,62.8,191.9,63.4z"/>
<path class="st4" d="M201.1,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C201,62.3,201.1,62.8,201.1,63.4z"/>
<path class="st4" d="M205.6,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.5,53.3,205.6,53.6,205.6,53.9z M205.5,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M216.5,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C216.4,60.1,216.5,60.7,216.5,61.3z M214.2,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C214.2,62.4,214.2,62,214.2,61.4z"/>
</g>
<rect x="231.7" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,245 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M195.7,46c0,0.1-0.1,0.1-0.3,0.1H194c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4v5.9C195.8,45.8,195.7,45.9,195.7,46z"/>
<path class="st4" d="M200.5,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.4,33,200.5,33.3,200.5,33.6z M200.4,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M210.2,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.1,42,210.2,42.5,210.2,43.1z"/>
<path class="st4" d="M219.4,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.3,42,219.4,42.5,219.4,43.1z"/>
<path class="st4" d="M223.9,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C223.8,33,223.9,33.3,223.9,33.6z M223.8,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H222c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M234.8,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C234.7,39.8,234.8,40.4,234.8,41z M232.5,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S232.5,41.7,232.5,41.1z"/>
<path class="st4" d="M245.2,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C245.3,45.8,245.2,45.9,245.2,46z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z M199.3,52.1c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.2,0.2-0.4,0.1l-0.8-0.4
c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L199.3,52.1z"/>
<path class="st4" d="M204.9,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3s1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H204.9z M206.9,58.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
c-0.1-0.2-0.3-0.4-0.6-0.5S207.3,58.1,206.9,58.1z"/>
<path class="st4" d="M221.4,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C221.5,66.1,221.5,66.2,221.4,66.3z"/>
<path class="st4" d="M232,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C232.1,66.1,232.1,66.2,232,66.3z"/>
<path class="st4" d="M236.2,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3s1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S242,62,241.6,62H236.2z M238.2,58.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
c-0.1-0.2-0.3-0.4-0.6-0.5S238.7,58.1,238.2,58.1z"/>
</g>
<rect x="254.7" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,245 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M195.7,46c0,0.1-0.1,0.1-0.3,0.1H194c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4v5.9C195.8,45.8,195.7,45.9,195.7,46z"/>
<path class="st4" d="M200.5,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.4,33,200.5,33.3,200.5,33.6z M200.4,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M210.2,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.1,42,210.2,42.5,210.2,43.1z"/>
<path class="st4" d="M219.4,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.3,42,219.4,42.5,219.4,43.1z"/>
<path class="st4" d="M223.9,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C223.8,33,223.9,33.3,223.9,33.6z M223.8,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H222c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M234.8,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C234.7,39.8,234.8,40.4,234.8,41z M232.5,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S232.5,41.7,232.5,41.1z"/>
<path class="st4" d="M245.2,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C245.3,45.8,245.2,45.9,245.2,46z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z M199.3,52.1c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.2,0.2-0.4,0.1l-0.8-0.4
c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L199.3,52.1z"/>
<path class="st4" d="M204.9,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3s1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H204.9z M206.9,58.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
c-0.1-0.2-0.3-0.4-0.6-0.5S207.3,58.1,206.9,58.1z"/>
<path class="st4" d="M221.4,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C221.5,66.1,221.5,66.2,221.4,66.3z"/>
<path class="st4" d="M232,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C232.1,66.1,232.1,66.2,232,66.3z"/>
<path class="st4" d="M236.2,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3s1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S242,62,241.6,62H236.2z M238.2,58.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
c-0.1-0.2-0.3-0.4-0.6-0.5S238.7,58.1,238.2,58.1z"/>
</g>
<rect x="254.7" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,221 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M144.6,45.6c-0.1,0.2-0.1,0.3-0.2,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.6c-0.2,0-0.3-0.1-0.2-0.4l4.1-12.5
c0.1-0.1,0.1-0.3,0.2-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.7c0.2,0,0.3,0,0.4,0.1c0.1,0.1,0.1,0.2,0.2,0.3l4.1,12.5
c0.1,0.2,0,0.4-0.2,0.4h-1.8c-0.2,0-0.3,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.2-0.3l-0.8-2.9h-4.5L144.6,45.6z M148.6,38l-0.8-2.9h-0.1
l-0.8,2.8l-0.8,2.9h3.4L148.6,38z"/>
<path class="st4" d="M163.1,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4H155c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C163.2,45.8,163.2,45.9,163.1,46z"/>
<path class="st4" d="M171.1,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6c0.7-0.4,1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1s-0.4,1-0.4,1.5c-0.1,0.6-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1S171.1,40.4,171.1,39.5z"/>
<path class="st4" d="M190.7,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C190.7,39.8,190.7,40.4,190.7,41z M188.5,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M195.3,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C195.2,33,195.3,33.3,195.3,33.6z M195.2,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M212,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4H198c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4v5.9C212,45.8,212,45.9,212,46z"/>
<path class="st4" d="M216.8,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C216.7,33,216.8,33.3,216.8,33.6z M216.7,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M226.5,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C226.4,42,226.5,42.5,226.5,43.1z"/>
<path class="st4" d="M231,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C230.9,33,231,33.3,231,33.6z M230.8,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M241.8,45.7c0,0.3-0.1,0.4-0.4,0.4H240c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0
c-0.2,0.1-0.4,0.3-0.7,0.4s-0.5,0.3-0.8,0.4c-0.3,0.1-0.6,0.2-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3
c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5
c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1
c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.5-0.3v-6.7c0-0.1,0-0.2,0.1-0.3
c0.1-0.1,0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V45.7z M240,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.2,0.2-0.4,0.1
l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L240,31.8z"/>
<path class="st4" d="M252.4,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C252.5,45.8,252.5,45.9,252.4,46z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M162.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C162.1,60.1,162.2,60.7,162.2,61.3z M160,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C159.9,62.4,160,62,160,61.4z"/>
<path class="st4" d="M166.8,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0s0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
c-0.3,0.1-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3s-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6s-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C180.1,59.9,180.2,60.6,180.2,61.4z M177.9,61.4c0-0.6,0-1.2-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C177.9,62.5,177.9,62,177.9,61.4z"/>
<path class="st4" d="M188.1,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C188.5,66,188.3,65.7,188.1,65.2L188.1,65.2z M188,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
<path class="st4" d="M200.2,65.4c0,0.1,0,0.3,0,0.4s-0.2,0.2-0.3,0.3c-0.4,0.2-0.9,0.3-1.4,0.4c-0.6,0.1-1.1,0.1-1.6,0.1
c-0.9,0-1.7-0.1-2.3-0.4s-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6s-0.1-1.3-0.1-2c0-0.6,0.1-1.2,0.2-1.8c0.1-0.6,0.3-1.2,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.2c0.6-0.3,1.3-0.4,2.2-0.4c0.2,0,0.5,0,0.8,0c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2s0.5,0.1,0.7,0.2
c0.2,0.1,0.3,0.3,0.3,0.6l-0.1,0.8c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4,0-0.8-0.1-1.3-0.1s-0.8-0.1-1.2-0.1
c-0.8,0-1.4,0.2-1.7,0.7s-0.5,1.3-0.5,2.4c0,0.6,0,1.1,0.1,1.6c0.1,0.4,0.2,0.7,0.4,1c0.2,0.3,0.4,0.4,0.7,0.5
c0.3,0.1,0.6,0.2,1,0.2c0.3,0,0.7,0,1.2-0.1c0.5,0,1-0.1,1.4-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3L200.2,65.4z"/>
<path class="st4" d="M209.9,66.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4c0-1,0-1.9,0-2.9c0-1,0-1.9,0-2.9c0-0.6-0.1-1-0.3-1.4
c-0.2-0.3-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1s-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.5,0.2V66
c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4V52.6c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4l0,4.9c0.2-0.1,0.4-0.2,0.6-0.4s0.5-0.2,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1
c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66
C210.3,66.2,210.2,66.4,209.9,66.4z"/>
</g>
<rect x="262.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,221 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M144.6,45.6c-0.1,0.2-0.1,0.3-0.2,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.6c-0.2,0-0.3-0.1-0.2-0.4l4.1-12.5
c0.1-0.1,0.1-0.3,0.2-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.7c0.2,0,0.3,0,0.4,0.1c0.1,0.1,0.1,0.2,0.2,0.3l4.1,12.5
c0.1,0.2,0,0.4-0.2,0.4h-1.8c-0.2,0-0.3,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.2-0.3l-0.8-2.9h-4.5L144.6,45.6z M148.6,38l-0.8-2.9h-0.1
l-0.8,2.8l-0.8,2.9h3.4L148.6,38z"/>
<path class="st4" d="M163.1,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4H155c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C163.2,45.8,163.2,45.9,163.1,46z"/>
<path class="st4" d="M171.1,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6c0.7-0.4,1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1s-0.4,1-0.4,1.5c-0.1,0.6-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1S171.1,40.4,171.1,39.5z"/>
<path class="st4" d="M190.7,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C190.7,39.8,190.7,40.4,190.7,41z M188.5,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M195.3,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C195.2,33,195.3,33.3,195.3,33.6z M195.2,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M212,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4H198c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4v5.9C212,45.8,212,45.9,212,46z"/>
<path class="st4" d="M216.8,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C216.7,33,216.8,33.3,216.8,33.6z M216.7,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M226.5,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C226.4,42,226.5,42.5,226.5,43.1z"/>
<path class="st4" d="M231,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C230.9,33,231,33.3,231,33.6z M230.8,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M241.8,45.7c0,0.3-0.1,0.4-0.4,0.4H240c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0
c-0.2,0.1-0.4,0.3-0.7,0.4s-0.5,0.3-0.8,0.4c-0.3,0.1-0.6,0.2-0.9,0.3c-0.3,0.1-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3
c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5
c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1
c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.4-0.2,0.5-0.3v-6.7c0-0.1,0-0.2,0.1-0.3
c0.1-0.1,0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V45.7z M240,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.2,0.2-0.4,0.1
l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L240,31.8z"/>
<path class="st4" d="M252.4,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C252.5,45.8,252.5,45.9,252.4,46z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M162.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C162.1,60.1,162.2,60.7,162.2,61.3z M160,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C159.9,62.4,160,62,160,61.4z"/>
<path class="st4" d="M166.8,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0s0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
c-0.3,0.1-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3s-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6s-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C180.1,59.9,180.2,60.6,180.2,61.4z M177.9,61.4c0-0.6,0-1.2-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C177.9,62.5,177.9,62,177.9,61.4z"/>
<path class="st4" d="M188.1,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C188.5,66,188.3,65.7,188.1,65.2L188.1,65.2z M188,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
<path class="st4" d="M200.2,65.4c0,0.1,0,0.3,0,0.4s-0.2,0.2-0.3,0.3c-0.4,0.2-0.9,0.3-1.4,0.4c-0.6,0.1-1.1,0.1-1.6,0.1
c-0.9,0-1.7-0.1-2.3-0.4s-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6s-0.1-1.3-0.1-2c0-0.6,0.1-1.2,0.2-1.8c0.1-0.6,0.3-1.2,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.2c0.6-0.3,1.3-0.4,2.2-0.4c0.2,0,0.5,0,0.8,0c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.2s0.5,0.1,0.7,0.2
c0.2,0.1,0.3,0.3,0.3,0.6l-0.1,0.8c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4,0-0.8-0.1-1.3-0.1s-0.8-0.1-1.2-0.1
c-0.8,0-1.4,0.2-1.7,0.7s-0.5,1.3-0.5,2.4c0,0.6,0,1.1,0.1,1.6c0.1,0.4,0.2,0.7,0.4,1c0.2,0.3,0.4,0.4,0.7,0.5
c0.3,0.1,0.6,0.2,1,0.2c0.3,0,0.7,0,1.2-0.1c0.5,0,1-0.1,1.4-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3L200.2,65.4z"/>
<path class="st4" d="M209.9,66.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4c0-1,0-1.9,0-2.9c0-1,0-1.9,0-2.9c0-0.6-0.1-1-0.3-1.4
c-0.2-0.3-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1s-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.5,0.2V66
c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.4-0.1-0.4-0.4V52.6c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4l0,4.9c0.2-0.1,0.4-0.2,0.6-0.4s0.5-0.2,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1
c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66
C210.3,66.2,210.2,66.4,209.9,66.4z"/>
</g>
<rect x="262.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6
C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M199.9,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
s-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C199.8,42,199.9,42.5,199.9,43.1z"/>
<path class="st4" d="M204.1,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V32.3
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L204.1,39.9L204.1,39.9z"/>
<path class="st4" d="M217.7,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3L212,37c0-0.1,0-0.2,0-0.3s0.2-0.2,0.4-0.3
c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3
s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C218,45.7,217.8,45.4,217.7,44.9L217.7,44.9z M217.6,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
s0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1c-0.1-0.1-0.2-0.2-0.2-0.3
l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
s0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M182.2,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C182.1,53.3,182.2,53.6,182.2,53.9z M182.1,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M191.9,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
s-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C191.8,62.3,191.9,62.8,191.9,63.4z"/>
<path class="st4" d="M196.4,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C196.3,53.3,196.4,53.6,196.4,53.9z M196.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M201.5,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M201.6,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C201.5,53.3,201.6,53.6,201.6,53.9z"/>
<path class="st4" d="M210.2,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3
s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C210.6,66,210.4,65.7,210.2,65.2L210.2,65.2z M210.1,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="231.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6
C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M199.9,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
s-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C199.8,42,199.9,42.5,199.9,43.1z"/>
<path class="st4" d="M204.1,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V32.3
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L204.1,39.9L204.1,39.9z"/>
<path class="st4" d="M217.7,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3L212,37c0-0.1,0-0.2,0-0.3s0.2-0.2,0.4-0.3
c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3
s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C218,45.7,217.8,45.4,217.7,44.9L217.7,44.9z M217.6,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
s0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1c-0.1-0.1-0.2-0.2-0.2-0.3
l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
s0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M182.2,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C182.1,53.3,182.2,53.6,182.2,53.9z M182.1,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M191.9,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
s-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C191.8,62.3,191.9,62.8,191.9,63.4z"/>
<path class="st4" d="M196.4,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C196.3,53.3,196.4,53.6,196.4,53.9z M196.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M201.5,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M201.6,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C201.5,53.3,201.6,53.6,201.6,53.9z"/>
<path class="st4" d="M210.2,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3
s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C210.6,66,210.4,65.7,210.2,65.2L210.2,65.2z M210.1,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="231.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,218 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z M178.3,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8
c-0.1,0.1-0.2,0.2-0.4,0.1l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L178.3,31.8z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M198.8,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C199.1,45.7,198.9,45.4,198.8,44.9L198.8,44.9z M198.7,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M206,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.9,33,206,33.3,206,33.6z M205.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
</g>
<g class="st3">
<path class="st4" d="M152.8,62.6c0,0.6-0.1,1.1-0.3,1.6c-0.2,0.5-0.5,0.9-0.8,1.2c-0.4,0.3-0.8,0.6-1.2,0.8
c-0.5,0.2-1,0.3-1.5,0.3h-5.1c-0.2,0-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V53.4c0-0.3,0.1-0.4,0.4-0.4h4.6c1.3,0,2.3,0.3,3,1
c0.7,0.6,1,1.5,1,2.6c0,0.2,0,0.4-0.1,0.7s-0.1,0.5-0.3,0.8c-0.1,0.3-0.3,0.5-0.5,0.7c-0.2,0.2-0.5,0.4-0.8,0.6l0,0
c0.4,0.1,0.7,0.3,1,0.6s0.5,0.5,0.6,0.8c0.1,0.3,0.2,0.6,0.3,0.9S152.8,62.3,152.8,62.6z M150.1,56.8c0-0.5-0.2-0.9-0.5-1.3
c-0.3-0.3-0.8-0.5-1.5-0.5h-2.4v3.5h2.6c0.5,0,0.9-0.2,1.3-0.5C149.9,57.7,150.1,57.3,150.1,56.8z M150.5,62.4
c0-0.5-0.2-1-0.5-1.4s-0.9-0.6-1.6-0.6h-2.7v4h2.7c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.6-0.4s0.3-0.4,0.3-0.6S150.5,62.7,150.5,62.4z"
/>
<path class="st4" d="M157.4,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C157.3,53.3,157.4,53.6,157.4,53.9z M157.3,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M166.6,64.5c0.3,0,0.4,0.1,0.4,0.4V66c0,0.3-0.1,0.4-0.4,0.4h-7c-0.2,0-0.3-0.1-0.3-0.3v-0.9
c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.2,0.2-0.3l4.8-6.1H160c-0.3,0-0.4-0.1-0.4-0.4v-1.1c0-0.2,0.1-0.4,0.4-0.4h6.6
c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.3v1c0,0.2-0.1,0.5-0.2,0.7l-4.7,6H166.6z"/>
<path class="st4" d="M177.3,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C177.3,60.1,177.3,60.7,177.3,61.3z M175.1,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S175.1,62,175.1,61.4z"/>
<path class="st4" d="M185.4,65.6c0,0.2,0,0.4-0.3,0.5c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1
c-0.2,0-0.4,0-0.6,0c-0.6,0-1-0.1-1.4-0.2c-0.3-0.2-0.6-0.4-0.7-0.7c-0.2-0.3-0.3-0.6-0.3-1c0-0.4-0.1-0.8-0.1-1.2v-5h-1
c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-1c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h1v-2.1c0-0.1,0-0.3,0.1-0.3
c0.1-0.1,0.2-0.1,0.3-0.1l1.3-0.4c0.3-0.1,0.4,0,0.4,0.2v2.6h2.1c0.2,0,0.3,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3v1
c0,0.1,0,0.2-0.1,0.3c0,0.1-0.2,0.1-0.3,0.1h-2.1v5c0,0.3,0,0.5,0.1,0.6s0.1,0.3,0.2,0.3c0.1,0.1,0.2,0.1,0.4,0.1
c0.2,0,0.4,0,0.7,0c0.1,0,0.4,0,0.6,0c0.3,0,0.5,0,0.7-0.1c0.1,0,0.2,0,0.2,0s0.1,0.1,0.1,0.2L185.4,65.6z"/>
<path class="st4" d="M192.7,65.6c0,0.2,0,0.4-0.3,0.5c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1
c-0.2,0-0.4,0-0.6,0c-0.6,0-1-0.1-1.4-0.2c-0.3-0.2-0.6-0.4-0.7-0.7c-0.2-0.3-0.3-0.6-0.3-1c0-0.4-0.1-0.8-0.1-1.2v-5h-1
c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-1c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h1v-2.1c0-0.1,0-0.3,0.1-0.3
c0.1-0.1,0.2-0.1,0.3-0.1l1.3-0.4c0.3-0.1,0.4,0,0.4,0.2v2.6h2.1c0.2,0,0.3,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3v1
c0,0.1,0,0.2-0.1,0.3c0,0.1-0.2,0.1-0.3,0.1h-2.1v5c0,0.3,0,0.5,0.1,0.6s0.1,0.3,0.2,0.3c0.1,0.1,0.2,0.1,0.4,0.1
c0.2,0,0.4,0,0.7,0c0.1,0,0.4,0,0.6,0c0.3,0,0.5,0,0.7-0.1c0.1,0,0.2,0,0.2,0s0.1,0.1,0.1,0.2L192.7,65.6z"/>
<path class="st4" d="M201.1,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C201,62.3,201.1,62.8,201.1,63.4z"/>
<path class="st4" d="M209.2,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C209.6,66,209.4,65.7,209.2,65.2L209.2,65.2z M209.1,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z M210,52.1c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.2,0.2-0.4,0.1
l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L210,52.1z"/>
<path class="st4" d="M218.1,56.3c0.6,0,1.3,0,2,0.1c0.7,0.1,1.3,0.2,1.8,0.4c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.1,0.3,0.1,0.5v8.5
c0,0.6,0,1.1-0.1,1.6c-0.1,0.5-0.3,0.9-0.6,1.3s-0.7,0.6-1.3,0.8c-0.6,0.2-1.3,0.3-2.3,0.3c-0.5,0-1.1,0-1.7-0.1
c-0.6-0.1-1.1-0.2-1.5-0.4c-0.2-0.1-0.3-0.2-0.4-0.3s0-0.2,0-0.3l0.2-0.7c0-0.2,0.1-0.3,0.2-0.3c0.1,0,0.2,0,0.4,0
c0.5,0.1,0.9,0.1,1.4,0.2c0.5,0,0.9,0,1.3,0c0.4,0,0.8,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.3,0.3-0.6
c0.1-0.2,0.1-0.5,0.1-0.8V66c-0.5,0.2-1,0.3-1.4,0.4s-0.8,0.1-1.1,0.1c-0.8,0-1.5-0.1-2-0.4c-0.5-0.2-0.9-0.6-1.2-1
c-0.3-0.4-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.3-0.2-2c0-0.8,0.1-1.5,0.2-2.1c0.1-0.6,0.4-1.2,0.7-1.6c0.3-0.4,0.8-0.8,1.4-1
C216.5,56.4,217.2,56.3,218.1,56.3z M216,61.3c0,0.6,0,1.1,0.1,1.5c0.1,0.4,0.2,0.7,0.3,1c0.2,0.2,0.4,0.4,0.6,0.5
c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6,0,1-0.1s0.8-0.1,1.2-0.3v-5.7c-0.3-0.1-0.6-0.1-1-0.1s-0.7-0.1-1-0.1c-0.3,0-0.6,0-0.9,0.1
c-0.3,0.1-0.5,0.2-0.7,0.4c-0.2,0.2-0.4,0.5-0.5,0.9C216,60.1,216,60.6,216,61.3z"/>
</g>
<rect x="232.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,218 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z M178.3,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8
c-0.1,0.1-0.2,0.2-0.4,0.1l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L178.3,31.8z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M198.8,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C199.1,45.7,198.9,45.4,198.8,44.9L198.8,44.9z M198.7,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M206,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.9,33,206,33.3,206,33.6z M205.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
</g>
<g class="st3">
<path class="st4" d="M152.8,62.6c0,0.6-0.1,1.1-0.3,1.6c-0.2,0.5-0.5,0.9-0.8,1.2c-0.4,0.3-0.8,0.6-1.2,0.8
c-0.5,0.2-1,0.3-1.5,0.3h-5.1c-0.2,0-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V53.4c0-0.3,0.1-0.4,0.4-0.4h4.6c1.3,0,2.3,0.3,3,1
c0.7,0.6,1,1.5,1,2.6c0,0.2,0,0.4-0.1,0.7s-0.1,0.5-0.3,0.8c-0.1,0.3-0.3,0.5-0.5,0.7c-0.2,0.2-0.5,0.4-0.8,0.6l0,0
c0.4,0.1,0.7,0.3,1,0.6s0.5,0.5,0.6,0.8c0.1,0.3,0.2,0.6,0.3,0.9S152.8,62.3,152.8,62.6z M150.1,56.8c0-0.5-0.2-0.9-0.5-1.3
c-0.3-0.3-0.8-0.5-1.5-0.5h-2.4v3.5h2.6c0.5,0,0.9-0.2,1.3-0.5C149.9,57.7,150.1,57.3,150.1,56.8z M150.5,62.4
c0-0.5-0.2-1-0.5-1.4s-0.9-0.6-1.6-0.6h-2.7v4h2.7c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.6-0.4s0.3-0.4,0.3-0.6S150.5,62.7,150.5,62.4z"
/>
<path class="st4" d="M157.4,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C157.3,53.3,157.4,53.6,157.4,53.9z M157.3,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M166.6,64.5c0.3,0,0.4,0.1,0.4,0.4V66c0,0.3-0.1,0.4-0.4,0.4h-7c-0.2,0-0.3-0.1-0.3-0.3v-0.9
c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.2,0.2-0.3l4.8-6.1H160c-0.3,0-0.4-0.1-0.4-0.4v-1.1c0-0.2,0.1-0.4,0.4-0.4h6.6
c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.3v1c0,0.2-0.1,0.5-0.2,0.7l-4.7,6H166.6z"/>
<path class="st4" d="M177.3,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C177.3,60.1,177.3,60.7,177.3,61.3z M175.1,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S175.1,62,175.1,61.4z"/>
<path class="st4" d="M185.4,65.6c0,0.2,0,0.4-0.3,0.5c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1
c-0.2,0-0.4,0-0.6,0c-0.6,0-1-0.1-1.4-0.2c-0.3-0.2-0.6-0.4-0.7-0.7c-0.2-0.3-0.3-0.6-0.3-1c0-0.4-0.1-0.8-0.1-1.2v-5h-1
c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-1c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h1v-2.1c0-0.1,0-0.3,0.1-0.3
c0.1-0.1,0.2-0.1,0.3-0.1l1.3-0.4c0.3-0.1,0.4,0,0.4,0.2v2.6h2.1c0.2,0,0.3,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3v1
c0,0.1,0,0.2-0.1,0.3c0,0.1-0.2,0.1-0.3,0.1h-2.1v5c0,0.3,0,0.5,0.1,0.6s0.1,0.3,0.2,0.3c0.1,0.1,0.2,0.1,0.4,0.1
c0.2,0,0.4,0,0.7,0c0.1,0,0.4,0,0.6,0c0.3,0,0.5,0,0.7-0.1c0.1,0,0.2,0,0.2,0s0.1,0.1,0.1,0.2L185.4,65.6z"/>
<path class="st4" d="M192.7,65.6c0,0.2,0,0.4-0.3,0.5c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.5,0.1-0.7,0.1
c-0.2,0-0.4,0-0.6,0c-0.6,0-1-0.1-1.4-0.2c-0.3-0.2-0.6-0.4-0.7-0.7c-0.2-0.3-0.3-0.6-0.3-1c0-0.4-0.1-0.8-0.1-1.2v-5h-1
c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-1c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h1v-2.1c0-0.1,0-0.3,0.1-0.3
c0.1-0.1,0.2-0.1,0.3-0.1l1.3-0.4c0.3-0.1,0.4,0,0.4,0.2v2.6h2.1c0.2,0,0.3,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3v1
c0,0.1,0,0.2-0.1,0.3c0,0.1-0.2,0.1-0.3,0.1h-2.1v5c0,0.3,0,0.5,0.1,0.6s0.1,0.3,0.2,0.3c0.1,0.1,0.2,0.1,0.4,0.1
c0.2,0,0.4,0,0.7,0c0.1,0,0.4,0,0.6,0c0.3,0,0.5,0,0.7-0.1c0.1,0,0.2,0,0.2,0s0.1,0.1,0.1,0.2L192.7,65.6z"/>
<path class="st4" d="M201.1,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C201,62.3,201.1,62.8,201.1,63.4z"/>
<path class="st4" d="M209.2,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C209.6,66,209.4,65.7,209.2,65.2L209.2,65.2z M209.1,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z M210,52.1c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8c-0.1,0.1-0.2,0.2-0.4,0.1
l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L210,52.1z"/>
<path class="st4" d="M218.1,56.3c0.6,0,1.3,0,2,0.1c0.7,0.1,1.3,0.2,1.8,0.4c0.2,0.1,0.4,0.2,0.5,0.4c0.1,0.2,0.1,0.3,0.1,0.5v8.5
c0,0.6,0,1.1-0.1,1.6c-0.1,0.5-0.3,0.9-0.6,1.3s-0.7,0.6-1.3,0.8c-0.6,0.2-1.3,0.3-2.3,0.3c-0.5,0-1.1,0-1.7-0.1
c-0.6-0.1-1.1-0.2-1.5-0.4c-0.2-0.1-0.3-0.2-0.4-0.3s0-0.2,0-0.3l0.2-0.7c0-0.2,0.1-0.3,0.2-0.3c0.1,0,0.2,0,0.4,0
c0.5,0.1,0.9,0.1,1.4,0.2c0.5,0,0.9,0,1.3,0c0.4,0,0.8,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.3-0.3,0.3-0.6
c0.1-0.2,0.1-0.5,0.1-0.8V66c-0.5,0.2-1,0.3-1.4,0.4s-0.8,0.1-1.1,0.1c-0.8,0-1.5-0.1-2-0.4c-0.5-0.2-0.9-0.6-1.2-1
c-0.3-0.4-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.3-0.2-2c0-0.8,0.1-1.5,0.2-2.1c0.1-0.6,0.4-1.2,0.7-1.6c0.3-0.4,0.8-0.8,1.4-1
C216.5,56.4,217.2,56.3,218.1,56.3z M216,61.3c0,0.6,0,1.1,0.1,1.5c0.1,0.4,0.2,0.7,0.3,1c0.2,0.2,0.4,0.4,0.6,0.5
c0.2,0.1,0.5,0.2,0.9,0.2c0.3,0,0.6,0,1-0.1s0.8-0.1,1.2-0.3v-5.7c-0.3-0.1-0.6-0.1-1-0.1s-0.7-0.1-1-0.1c-0.3,0-0.6,0-0.9,0.1
c-0.3,0.1-0.5,0.2-0.7,0.4c-0.2,0.2-0.4,0.5-0.5,0.9C216,60.1,216,60.6,216,61.3z"/>
</g>
<rect x="232.2" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M195.7,46c0,0.1-0.1,0.1-0.3,0.1H194c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4v5.9C195.8,45.8,195.7,45.9,195.7,46z"/>
<path class="st4" d="M200.5,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.4,33,200.5,33.3,200.5,33.6z M200.4,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M210.2,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.1,42,210.2,42.5,210.2,43.1z"/>
<path class="st4" d="M219.4,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.3,42,219.4,42.5,219.4,43.1z"/>
<path class="st4" d="M223.9,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C223.8,33,223.9,33.3,223.9,33.6z M223.8,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H222c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M234.8,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C234.7,39.8,234.8,40.4,234.8,41z M232.5,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S232.5,41.7,232.5,41.1z"/>
<path class="st4" d="M245.2,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C245.3,45.8,245.2,45.9,245.2,46z"/>
<path class="st4" d="M249.4,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H249.4z M251.4,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C252.2,37.9,251.8,37.8,251.4,37.8z"/>
</g>
<g class="st3">
<path class="st4" d="M145.2,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
s0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H145.2z M147.2,58.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
c-0.1-0.2-0.3-0.4-0.6-0.5S147.6,58.1,147.2,58.1z"/>
<path class="st4" d="M161.4,66.4H160c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C161.8,66.2,161.7,66.4,161.4,66.4z"/>
<path class="st4" d="M166.5,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M179.8,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C179.7,60.1,179.8,60.7,179.8,61.3z M177.5,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.5,62.4,177.5,62,177.5,61.4z"/>
<path class="st4" d="M190.4,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6s-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.4,59.9,190.4,60.6,190.4,61.4z M188.1,61.4c0-0.6,0-1.2-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.1,62.5,188.1,62,188.1,61.4z"/>
<path class="st4" d="M194.3,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200,62,199.6,62H194.3z M196.3,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197,58.2,196.7,58.1,196.3,58.1z"/>
<path class="st4" d="M208.6,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C208.9,66,208.7,65.7,208.6,65.2L208.6,65.2z M208.5,61.9H206c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="265.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M195.7,46c0,0.1-0.1,0.1-0.3,0.1H194c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4v5.9C195.8,45.8,195.7,45.9,195.7,46z"/>
<path class="st4" d="M200.5,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.4,33,200.5,33.3,200.5,33.6z M200.4,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M210.2,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.1,42,210.2,42.5,210.2,43.1z"/>
<path class="st4" d="M219.4,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.3,42,219.4,42.5,219.4,43.1z"/>
<path class="st4" d="M223.9,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C223.8,33,223.9,33.3,223.9,33.6z M223.8,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H222c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M234.8,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C234.7,39.8,234.8,40.4,234.8,41z M232.5,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S232.5,41.7,232.5,41.1z"/>
<path class="st4" d="M245.2,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C245.3,45.8,245.2,45.9,245.2,46z"/>
<path class="st4" d="M249.4,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H249.4z M251.4,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C252.2,37.9,251.8,37.8,251.4,37.8z"/>
</g>
<g class="st3">
<path class="st4" d="M145.2,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0s0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4s-0.1,0.2-0.3,0.3
c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2c-0.3,0-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
s0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
c0.1,0.5,0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H145.2z M147.2,58.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.1-0.4,0.3-0.6,0.5c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9c-0.1-0.3-0.2-0.5-0.3-0.8
c-0.1-0.2-0.3-0.4-0.6-0.5S147.6,58.1,147.2,58.1z"/>
<path class="st4" d="M161.4,66.4H160c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C161.8,66.2,161.7,66.4,161.4,66.4z"/>
<path class="st4" d="M166.5,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M179.8,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C179.7,60.1,179.8,60.7,179.8,61.3z M177.5,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.5,62.4,177.5,62,177.5,61.4z"/>
<path class="st4" d="M190.4,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6s-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.4,59.9,190.4,60.6,190.4,61.4z M188.1,61.4c0-0.6,0-1.2-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.1,62.5,188.1,62,188.1,61.4z"/>
<path class="st4" d="M194.3,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200,62,199.6,62H194.3z M196.3,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197,58.2,196.7,58.1,196.3,58.1z"/>
<path class="st4" d="M208.6,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C208.9,66,208.7,65.7,208.6,65.2L208.6,65.2z M208.5,61.9H206c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="265.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,203 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1s-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4s-0.5,0.3-0.8,0.4
s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1s0.5-0.2,0.8-0.3s0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3v-6.7
c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4H165c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0s0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2s-0.6,0.2-0.9,0.2
c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2L166.9,45.7L166.9,45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5s-1.8-0.2-2.4-0.5
c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3
c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1
c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6
c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2
c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6s0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1s-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
s-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6h0.1c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
s0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9s-0.3-0.4-0.5-0.4
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1s-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v5
c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.3,0.3-0.6,0.3-1
C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M201.1,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5s-1.8-0.2-2.4-0.5
s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3
c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C201.1,39.8,201.1,40.4,201.1,41z M198.9,41.1
c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6
c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2
c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6s0.3-0.6,0.3-1S198.9,41.7,198.9,41.1z"/>
<path class="st4" d="M210.4,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3s0.2,0,0.4,0
s0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
s-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0
s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0
c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9C210.3,42,210.4,42.5,210.4,43.1z"/>
</g>
<g class="st3">
<path class="st4" d="M145.6,59.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V53.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,59.4L145.6,59.4z"/>
<path class="st4" d="M163.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
s-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C163.2,60.1,163.2,60.7,163.2,61.3
z M161,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6
c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2
c0.5,0,0.8-0.1,1.1-0.2s0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,62.4,161,62,161,61.4z"/>
<path class="st4" d="M179.5,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3s0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4s1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v6C179.6,66.1,179.6,66.2,179.5,66.3z"/>
<path class="st4" d="M184.3,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C184.3,53.3,184.3,53.6,184.3,53.9z M184.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4
c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M194.1,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3c0.1,0,0.2,0,0.4,0
s0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3c0.3-0.2,0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3s-0.8-0.3-1.2-0.5
c-0.3-0.2-0.6-0.5-0.8-0.8s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1
c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0
c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8
c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5c0.3,0.2,0.6,0.5,0.8,0.9C194,62.3,194.1,62.8,194.1,63.4z"/>
<path class="st4" d="M198.5,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C198.4,53.3,198.5,53.6,198.5,53.9z M198.4,66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M203.7,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1s-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4s0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9V57c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v9.6H203.7z M203.8,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3
s-0.4,0.1-0.6,0.1c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4s0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
s0.5-0.3,1-0.3s0.8,0.1,1,0.3C203.7,53.3,203.8,53.6,203.8,53.9z"/>
<path class="st4" d="M212.4,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
s-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
s0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2s0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1
c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C212.7,66,212.5,65.7,212.4,65.2L212.4,65.2z M212.2,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1s0.5-0.1,0.8-0.2s0.5-0.2,0.7-0.3
c0.2-0.1,0.5-0.2,0.6-0.3v-2H212.2z"/>
</g>
<rect x="225.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,203 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1s-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4s-0.5,0.3-0.8,0.4
s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1s0.5-0.2,0.8-0.3s0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3v-6.7
c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4H165c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0s0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2s-0.6,0.2-0.9,0.2
c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2L166.9,45.7L166.9,45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5s-1.8-0.2-2.4-0.5
c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3
c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1
c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6
c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2
c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6s0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1s-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
s-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6h0.1c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
s0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9s-0.3-0.4-0.5-0.4
c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1s-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v5
c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5c0.2-0.3,0.3-0.6,0.3-1
C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M201.1,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5s-1.8-0.2-2.4-0.5
s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3
c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C201.1,39.8,201.1,40.4,201.1,41z M198.9,41.1
c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6
c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2
c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6s0.3-0.6,0.3-1S198.9,41.7,198.9,41.1z"/>
<path class="st4" d="M210.4,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3s0.2,0,0.4,0
s0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
s-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0
s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0
c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3
c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9C210.3,42,210.4,42.5,210.4,43.1z"/>
</g>
<g class="st3">
<path class="st4" d="M145.6,59.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V53.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,59.4L145.6,59.4z"/>
<path class="st4" d="M163.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7s-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
s-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5s1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2s0.5,1,0.6,1.6C163.2,60.1,163.2,60.7,163.2,61.3
z M161,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6s-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6
c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4s0,1,0.1,1.4s0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2
c0.5,0,0.8-0.1,1.1-0.2s0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,62.4,161,62,161,61.4z"/>
<path class="st4" d="M179.5,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3s0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4s1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v6C179.6,66.1,179.6,66.2,179.5,66.3z"/>
<path class="st4" d="M184.3,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C184.3,53.3,184.3,53.6,184.3,53.9z M184.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1h-1.4
c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M194.1,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2s-1.1,0-1.6-0.1
c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3c0.1,0,0.2,0,0.4,0
s0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3c0.3-0.2,0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3s-0.8-0.3-1.2-0.5
c-0.3-0.2-0.6-0.5-0.8-0.8s-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1
c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0
c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3s-0.3,0.5-0.3,0.9s0.1,0.6,0.4,0.8
c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5c0.3,0.2,0.6,0.5,0.8,0.9C194,62.3,194.1,62.8,194.1,63.4z"/>
<path class="st4" d="M198.5,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3s0.8,0.1,1,0.3C198.4,53.3,198.5,53.6,198.5,53.9z M198.4,66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M203.7,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1s-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4s0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9V57c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v9.6H203.7z M203.8,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3
s-0.4,0.1-0.6,0.1c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4s0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
s0.5-0.3,1-0.3s0.8,0.1,1,0.3C203.7,53.3,203.8,53.6,203.8,53.9z"/>
<path class="st4" d="M212.4,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
s-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3s0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
s0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2s0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.4,0.1
c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C212.7,66,212.5,65.7,212.4,65.2L212.4,65.2z M212.2,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1s0.5-0.1,0.8-0.2s0.5-0.2,0.7-0.3
c0.2-0.1,0.5-0.2,0.6-0.3v-2H212.2z"/>
</g>
<rect x="225.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,212 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M156.3,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C156.2,33,156.3,33.3,156.3,33.6z M156.2,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M161.2,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M174.5,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C174.4,39.8,174.5,40.4,174.5,41z M172.2,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S172.2,41.7,172.2,41.1z"/>
<path class="st4" d="M185.1,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C185.1,39.6,185.1,40.3,185.1,41.1z M182.8,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C182.8,42.2,182.8,41.7,182.8,41.1z"/>
<path class="st4" d="M193.1,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C193.4,45.7,193.2,45.4,193.1,44.9L193.1,44.9z M193,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M205.1,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C205,42,205.1,42.5,205.1,43.1z"/>
</g>
<g class="st3">
<path class="st4" d="M145.6,59.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V53.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,59.4L145.6,59.4z"/>
<path class="st4" d="M163.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C163.2,60.1,163.2,60.7,163.2,61.3z M161,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,62.4,161,62,161,61.4z"/>
<path class="st4" d="M179.5,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.6,66.1,179.6,66.2,179.5,66.3z"/>
<path class="st4" d="M184.3,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C184.3,53.3,184.3,53.6,184.3,53.9z M184.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M194.1,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C194,62.3,194.1,62.8,194.1,63.4z"/>
<path class="st4" d="M198.5,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.4,53.3,198.5,53.6,198.5,53.9z M198.4,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M203.7,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4s0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M203.8,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4s0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8s0.5-0.3,1-0.3
c0.5,0,0.8,0.1,1,0.3C203.7,53.3,203.8,53.6,203.8,53.9z"/>
<path class="st4" d="M212.4,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C212.7,66,212.5,65.7,212.4,65.2L212.4,65.2z M212.2,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="225.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,212 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M156.3,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C156.2,33,156.3,33.3,156.3,33.6z M156.2,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M161.2,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M174.5,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C174.4,39.8,174.5,40.4,174.5,41z M172.2,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S172.2,41.7,172.2,41.1z"/>
<path class="st4" d="M185.1,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C185.1,39.6,185.1,40.3,185.1,41.1z M182.8,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C182.8,42.2,182.8,41.7,182.8,41.1z"/>
<path class="st4" d="M193.1,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C193.4,45.7,193.2,45.4,193.1,44.9L193.1,44.9z M193,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M205.1,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C205,42,205.1,42.5,205.1,43.1z"/>
</g>
<g class="st3">
<path class="st4" d="M145.6,59.4l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2V66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V53.4
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,59.4L145.6,59.4z"/>
<path class="st4" d="M163.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C163.2,60.1,163.2,60.7,163.2,61.3z M161,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,62.4,161,62,161,61.4z"/>
<path class="st4" d="M179.5,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.6,66.1,179.6,66.2,179.5,66.3z"/>
<path class="st4" d="M184.3,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C184.3,53.3,184.3,53.6,184.3,53.9z M184.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M194.1,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C194,62.3,194.1,62.8,194.1,63.4z"/>
<path class="st4" d="M198.5,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.4,53.3,198.5,53.6,198.5,53.9z M198.4,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M203.7,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4s0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M203.8,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4s0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8s0.5-0.3,1-0.3
c0.5,0,0.8,0.1,1,0.3C203.7,53.3,203.8,53.6,203.8,53.9z"/>
<path class="st4" d="M212.4,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C212.7,66,212.5,65.7,212.4,65.2L212.4,65.2z M212.2,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="225.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,228 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M145.6,39.1l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2v3.3c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V33.1
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,39.1L145.6,39.1z"/>
<path class="st4" d="M162.9,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C163.2,45.9,163.1,46.1,162.9,46.1z"/>
<path class="st4" d="M179.7,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.8,45.8,179.7,45.9,179.7,46z"/>
<path class="st4" d="M196.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4v5.9C196.3,45.8,196.3,45.9,196.2,46z"/>
<path class="st4" d="M201,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C201,33,201,33.3,201,33.6z M200.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M210.8,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.7,42,210.8,42.5,210.8,43.1z"/>
<path class="st4" d="M220,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.9,42,220,42.5,220,43.1z"/>
<path class="st4" d="M224.6,46.3c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V46.3z M224.7,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C224.6,33,224.7,33.3,224.7,33.6z"/>
<path class="st4" d="M235.6,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C235.6,39.8,235.6,40.4,235.6,41z M233.4,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C233.4,42.1,233.4,41.7,233.4,41.1z"/>
<path class="st4" d="M246,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C246.1,45.8,246.1,45.9,246,46z"/>
<path class="st4" d="M250.8,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C250.7,33,250.8,33.3,250.8,33.6z M250.7,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.6,60.6l0.9,3.1l0,0c0,0,0,0,0,0l0.9-3.3l1-3.5c0-0.1,0.1-0.2,0.1-0.3c0.1,0,0.1-0.1,0.3-0.1h1.6
c0.1,0,0.2,0,0.2,0.1s0,0.2,0,0.3l-3,9c-0.1,0.2-0.2,0.4-0.3,0.4c-0.1,0-0.2,0-0.3,0H162c-0.3,0-0.5-0.1-0.5-0.4l-0.7-2.1
l-0.8-2.5h0l-0.8,2.6l-0.7,2c-0.1,0.3-0.3,0.5-0.6,0.5h-1c-0.2,0-0.4,0-0.5-0.1c-0.1-0.1-0.1-0.2-0.2-0.4l-3-8.9
c0-0.1,0-0.2,0-0.3s0.1-0.1,0.2-0.1h1.6c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.1,0.2,0.3l1,3.4l1,3.5h0.1l1-3l0.6-1.8l-0.6-2
c0-0.1,0-0.2,0-0.3s0.1-0.1,0.2-0.1h1.5c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L161.6,60.6z"/>
<path class="st4" d="M170.7,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M183.9,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C183.9,60.1,183.9,60.7,183.9,61.3z M181.7,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S181.7,62,181.7,61.4z"/>
<path class="st4" d="M194.6,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C194.5,59.9,194.6,60.6,194.6,61.4z M192.3,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C192.3,62.5,192.3,62,192.3,61.4z"/>
<path class="st4" d="M198.4,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H198.4z M200.4,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C201.2,58.2,200.9,58.1,200.4,58.1z"/>
<path class="st4" d="M212.8,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C213.1,66,212.9,65.7,212.8,65.2L212.8,65.2z M212.6,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="260.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,228 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M145.6,39.1l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2v3.3c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V33.1
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,39.1L145.6,39.1z"/>
<path class="st4" d="M162.9,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C163.2,45.9,163.1,46.1,162.9,46.1z"/>
<path class="st4" d="M179.7,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.8,45.8,179.7,45.9,179.7,46z"/>
<path class="st4" d="M196.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4v5.9C196.3,45.8,196.3,45.9,196.2,46z"/>
<path class="st4" d="M201,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C201,33,201,33.3,201,33.6z M200.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M210.8,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.7,42,210.8,42.5,210.8,43.1z"/>
<path class="st4" d="M220,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.9,42,220,42.5,220,43.1z"/>
<path class="st4" d="M224.6,46.3c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V46.3z M224.7,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C224.6,33,224.7,33.3,224.7,33.6z"/>
<path class="st4" d="M235.6,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C235.6,39.8,235.6,40.4,235.6,41z M233.4,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C233.4,42.1,233.4,41.7,233.4,41.1z"/>
<path class="st4" d="M246,46c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3v6.7
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5v5.8C246.1,45.8,246.1,45.9,246,46z"/>
<path class="st4" d="M250.8,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C250.7,33,250.8,33.3,250.8,33.6z M250.7,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.6,60.6l0.9,3.1l0,0c0,0,0,0,0,0l0.9-3.3l1-3.5c0-0.1,0.1-0.2,0.1-0.3c0.1,0,0.1-0.1,0.3-0.1h1.6
c0.1,0,0.2,0,0.2,0.1s0,0.2,0,0.3l-3,9c-0.1,0.2-0.2,0.4-0.3,0.4c-0.1,0-0.2,0-0.3,0H162c-0.3,0-0.5-0.1-0.5-0.4l-0.7-2.1
l-0.8-2.5h0l-0.8,2.6l-0.7,2c-0.1,0.3-0.3,0.5-0.6,0.5h-1c-0.2,0-0.4,0-0.5-0.1c-0.1-0.1-0.1-0.2-0.2-0.4l-3-8.9
c0-0.1,0-0.2,0-0.3s0.1-0.1,0.2-0.1h1.6c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.1,0.2,0.3l1,3.4l1,3.5h0.1l1-3l0.6-1.8l-0.6-2
c0-0.1,0-0.2,0-0.3s0.1-0.1,0.2-0.1h1.5c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L161.6,60.6z"/>
<path class="st4" d="M170.7,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M183.9,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C183.9,60.1,183.9,60.7,183.9,61.3z M181.7,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S181.7,62,181.7,61.4z"/>
<path class="st4" d="M194.6,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C194.5,59.9,194.6,60.6,194.6,61.4z M192.3,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C192.3,62.5,192.3,62,192.3,61.4z"/>
<path class="st4" d="M198.4,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H198.4z M200.4,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C201.2,58.2,200.9,58.1,200.4,58.1z"/>
<path class="st4" d="M212.8,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C213.1,66,212.9,65.7,212.8,65.2L212.8,65.2z M212.6,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="260.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="180px" height="89px" viewBox="0 0 180 89" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>Logos/EC_logo</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Logos" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-32.000000, -380.000000)" id="Logos/EC_logo-large">
<g transform="translate(32.000000, 380.000000)">
<path d="M0,32.8474484 C0,32.8474484 53.007874,25.998406 54.5669291,25.7188533 C56.8346457,25.2995241 58.9606299,24.880195 60.8031496,24.3210895 C65.0551181,23.2028785 69.023622,21.3857856 72.5669291,19.0095872 C75.9685039,16.7731652 79.0866142,13.5583085 82.0629921,9.92412272 C84.0472441,7.6877007 86.0314961,4.7523968 88.015748,1.81709289 L88.015748,0.419329129 C85.7480315,3.77396216 83.480315,6.70926607 81.2125984,9.22524084 C78.0944882,12.5798739 74.976378,15.3754014 71.5748031,17.472047 C68.1732283,19.7084691 64.3464567,21.2460092 60.2362205,22.2244438 C58.3937008,22.643773 56.4094488,23.0631021 54.1417323,23.3426549 C52.7244094,23.4824312 51.1653543,23.761984 49.7480315,23.9017604 C49.1811024,24.1813131 0,29.353039 0,29.353039 L0,32.8474484 L0,32.8474484 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M71.1496063,24.0415367 C67.8897638,25.998406 63.9212598,27.3961698 59.8110236,28.234828 C57.9685039,28.6541572 55.984252,28.9337099 53.7165354,29.0734863 C52.4409449,29.2132627 51.023622,29.2132627 49.7480315,29.353039 C49.0393701,29.353039 48.3307087,29.4928154 47.6220472,29.4928154 C31.3228346,30.8905792 15.1653543,32.4281193 0,33.9656595 L0,37.3202925 C15.3070866,35.5031996 31.6062992,33.5463303 47.7637795,31.7292374 C48.4724409,31.5894611 49.1811024,31.5894611 49.8897638,31.4496847 C51.1653543,31.3099083 52.5826772,31.1701319 53.8582677,31.0303556 C56.1259843,30.7508028 58.2519685,30.3314737 60.0944882,29.9121445 C64.488189,28.9337099 68.4566929,27.3961698 72,25.2995241 C75.4015748,23.2028785 78.3779528,20.4073509 81.6377953,16.9129415 C83.6220472,14.6765195 85.8897638,11.6014392 88.015748,8.80591171 L88.015748,7.6877007 C85.4645669,11.0423337 83.1968504,13.8378613 80.7874016,16.2140597 C77.6692913,19.5686927 74.4094488,22.0846675 71.1496063,24.0415367" id="Shape" fill="#BCBEC0"></path>
<path d="M80.503937,23.2028785 C77.2440945,26.1381824 73.8425197,28.5143808 70.4409449,30.0519209 C67.0393701,31.7292374 63.3543307,32.8474484 58.9606299,33.5463303 C57.1181102,33.8258831 55.1338583,34.1054358 53.007874,34.2452122 L0,38.5782799 L0,41.9329129 L47.0551181,36.9009634 L53.1496063,36.2020815 C55.4173228,35.9225287 57.4015748,35.642976 59.2440945,35.3634232 C63.7795276,34.524765 67.6062992,33.2667776 71.1496063,31.4496847 C74.6929134,29.6325918 78.2362205,26.6972879 81.496063,23.6222076 C83.7637795,21.525562 85.8897638,18.8698108 88.1574803,15.9345069 L88.1574803,14.8162959 C85.4645669,18.1709289 82.9133858,20.8266801 80.503937,23.2028785" id="Shape" fill="#BCBEC0"></path>
<path d="M67.6062992,40.8147019 C64.488189,42.4920184 62.2204724,43.470453 57.8267717,44.0295586 C55.1338583,44.3091113 52.4409449,44.4488877 49.7480315,44.5886641 C48.4724409,44.5886641 47.1968504,44.7284404 45.9212598,44.7284404 C37.984252,45.1477696 30.0472441,45.7068751 22.1102362,46.2659806 L0,47.8035207 L0,51.1581537 L22.3937008,49.0615081 C29.6220472,48.3626262 37.984252,47.6637443 46.2047244,46.9648625 L52.1574803,46.5455333 C54.4251969,46.405757 56.4094488,46.1262042 58.1102362,45.9864278 C62.6456693,45.4273223 66.4724409,44.4488877 69.8740157,43.1909003 C73.5590551,41.7931365 77.1023622,39.6964909 80.503937,37.1805161 C83.6220472,34.9440941 88.015748,30.47125 88.015748,30.47125 L88.015748,29.2132627 C85.1811024,32.0087902 83.480315,33.5463303 80.3622047,35.5031996 C76.8188976,38.0191744 70.4409449,39.2771618 67.6062992,40.8147019" id="Shape" fill="#BCBEC0"></path>
<path d="M68.7401575,47.3841916 C65.3385827,48.3626262 61.6535433,49.0615081 57.2598425,49.3410609 C55.4173228,49.4808372 53.5748031,49.6206136 51.4488189,49.76039 L45.496063,50.0399427 C30.7559055,50.7388246 16.1574803,51.4377065 -7.10542736e-15,52.2763648 L-7.10542736e-15,55.6309978 C15.4488189,54.5127868 30.4724409,53.2547994 45.6377953,52.2763648 L51.5905512,51.8570356 C53.8582677,51.7172593 55.7007874,51.5774829 57.5433071,51.2979301 C62.0787402,50.7388246 65.9055118,50.0399427 69.3070866,48.9217317 C73.1338583,47.6637443 76.8188976,45.9864278 80.2204724,43.7500058 C82.7716535,42.0726893 85.3228346,40.11582 88.015748,37.879398 L88.015748,37.879398 C85.0393701,40.3953728 82.2047244,40.9544783 79.511811,42.6317948 C76.1102362,44.7284404 72.4251969,46.2659806 68.7401575,47.3841916" id="Shape" fill="#BCBEC0"></path>
<path d="M68.1732283,52.9752466 C64.7716535,53.8139049 61.2283465,54.233234 56.6929134,54.5127868 C54.992126,54.6525632 53.1496063,54.6525632 50.8818898,54.7923395 L45.0708661,54.9321159 C30.3307087,55.4912214 15.3070866,56.1901033 -7.10542736e-15,56.7492088 L-7.10542736e-15,60.1038418 C15.1653543,59.1254072 30.1889764,58.0071962 45.2125984,57.1685379 L51.023622,56.8889852 C53.2913386,56.7492088 55.1338583,56.6094324 56.976378,56.4696561 C61.511811,56.0503269 65.1968504,55.4912214 68.7401575,54.5127868 C72.5669291,53.5343521 76.3937008,52.1365884 79.9370079,50.1797191 C82.6299213,48.7819554 85.4645669,46.9648625 88.2992126,44.8682168 L88.2992126,43.470453 C85.1811024,45.7068751 82.3464567,47.523968 79.3700787,48.9217317 C75.6850394,50.878601 72,52.1365884 68.1732283,52.9752466" id="Shape" fill="#BCBEC0"></path>
<path d="M67.7480315,58.5663017 C64.3464567,59.1254072 60.8031496,59.5447363 56.2677165,59.8242891 C54.5669291,59.9640655 52.8661417,59.9640655 50.4566929,59.9640655 L0,61.3618292 L0,64.7164623 L44.7874016,62.3402639 L50.5984252,62.0607111 C52.8661417,61.9209347 54.7086614,61.7811584 56.4094488,61.7811584 C60.9448819,61.5016056 64.6299213,60.9425001 68.0314961,60.2436182 C72,59.40496 75.6850394,58.2867489 79.3700787,56.7492088 C82.2047244,55.4912214 85.1811024,54.0934577 88.1574803,52.2763648 L88.1574803,50.878601 C84.8976378,52.6956939 81.9212598,54.233234 78.9448819,55.351445 C75.2598425,56.7492088 71.5748031,57.8674198 67.7480315,58.5663017" id="Shape" fill="#BCBEC0"></path>
<path d="M67.3228346,64.1573568 C61.0866142,64.996015 54.7086614,65.1357914 48.6141732,65.1357914 C47.1968504,65.1357914 45.7795276,65.1357914 44.3622047,65.2755678 L0,65.9744496 L0,69.3290827 L44.3622047,67.3722134 C45.7795276,67.3722134 47.1968504,67.232437 48.6141732,67.232437 C54.8503937,66.9528843 61.2283465,66.6733315 67.6062992,65.6948969 C71.5748031,65.1357914 75.4015748,64.1573568 78.9448819,62.8993694 C81.9212598,61.9209347 84.8976378,60.6629473 88.015748,59.1254072 L88.015748,57.8674198 C84.7559055,59.40496 81.496063,60.6629473 78.519685,61.5016056 C74.976378,62.759593 71.2913386,63.5982512 67.3228346,64.1573568" id="Shape" fill="#BCBEC0"></path>
<path d="M67.0393701,69.7484118 C61.2283465,70.1677409 55.2755906,70.1677409 49.6062992,70.1677409 L44.2204724,70.1677409 C29.480315,70.1677409 14.8818898,70.3075173 0.141732283,70.4472937 L0.141732283,73.8019267 C14.3149606,73.3825976 29.3385827,72.8234921 44.3622047,72.404163 C46.2047244,72.404163 47.9055118,72.2643866 49.7480315,72.2643866 C55.5590551,72.1246102 61.511811,71.9848338 67.3228346,71.2859519 C71.4330709,70.8666228 75.1181102,70.1677409 78.6614173,69.3290827 C81.7795276,68.6302008 85.0393701,67.5119898 88.1574803,66.3937788 L88.1574803,65.1357914 C84.8976378,66.2540024 81.496063,67.232437 78.3779528,67.9313189 C74.6929134,68.9097535 71.007874,69.4688591 67.0393701,69.7484118" id="Shape" fill="#BCBEC0"></path>
<path d="M66.7559055,75.1996905 C64.3464567,75.3394669 61.6535433,75.3394669 58.6771654,75.3394669 L55.2755906,75.3394669 L43.9370079,75.1996905 C36.1417323,75.1996905 28.3464567,75.0599141 21.1181102,75.0599141 L0,75.1996905 L0,78.5543235 L21.1181102,77.995218 C28.3464567,77.8554416 36.1417323,77.5758889 43.9370079,77.4361125 L55.4173228,77.2963361 C58.5354331,77.2963361 62.6456693,77.1565598 66.8976378,76.877007 C71.007874,76.5974542 74.6929134,76.1781251 78.3779528,75.6190196 C81.6377953,75.0599141 84.8976378,74.3610322 88.1574803,73.522374 L88.1574803,72.2643866 C84.7559055,73.1030448 81.3543307,73.6621503 78.0944882,74.0814795 C74.5511811,74.7803614 70.8661417,75.0599141 66.7559055,75.1996905" id="Shape" fill="#BCBEC0"></path>
<path d="M55.2755906,80.6509692 L43.9370079,80.5111928 C29.3385827,80.23164 14.8818898,79.9520873 0,79.6725345 L0,83.0271676 C14.1732283,82.8873912 29.0551181,82.8873912 43.9370079,82.6078384 L55.2755906,82.4680621 C59.1023622,82.4680621 62.9291339,82.3282857 66.6141732,82.1885093 C74.4094488,81.9089565 81.496063,81.349851 88.015748,80.5111928 L88.015748,79.3929818 C81.496063,80.0918637 74.4094488,80.5111928 66.6141732,80.5111928 C62.7874016,80.6509692 59.1023622,80.6509692 55.2755906,80.6509692" id="Shape" fill="#BCBEC0"></path>
<polygon id="Shape" fill="#BCBEC0" points="88.015748 86.886422 0 84.65 0 88.004633 88.015748 88.004633"></polygon>
<path d="M80.2204724,29.4928154 C76.8188976,32.1485666 74.2677165,34.1054358 70.1574803,35.642976 C66.6141732,37.0407397 62.7874016,37.5998452 58.3937008,38.1589507 C55.5590551,38.5782799 52.5826772,39.1373854 49.8897638,39.2771618 C48.7559055,39.4169381 47.6220472,39.4169381 46.488189,39.5567145 L0,43.0511239 L0,46.405757 L46.488189,41.9329129 L52.5826772,41.3738074 C54.8503937,41.0942547 56.8346457,40.9544783 58.6771654,40.6749255 C63.2125984,39.9760436 67.0393701,38.8578326 70.5826772,37.3202925 C74.1259843,35.7827523 77.8110236,33.1270012 81.2125984,30.3314737 C83.480315,28.3746044 85.7480315,25.998406 88.1574803,23.3426549 L88.1574803,22.0846675 C85.1811024,25.1597477 82.7716535,27.5359461 80.2204724,29.4928154" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,0.559105505 C125.574803,0.559105505 141.448819,25.4393005 144.283465,30.0519209 C147.11811,34.6645413 150.519685,38.1589507 162.283465,40.6749255 C174.047244,43.1909003 179.149606,44.3091113 179.149606,44.3091113 L179.149606,45.1477696 C179.149606,45.1477696 171.637795,43.6102294 162.141732,41.5135838 C152.503937,39.4169381 148.677165,38.7180563 144.283465,32.7076721 C140.598425,27.6757225 125.716535,6.56948969 125.716535,6.56948969 L125.716535,0.559105505 L125.574803,0.559105505 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,29.0734863 C125.574803,29.0734863 140.031496,44.0295586 144.141732,48.2228498 C148.535433,52.6956939 154.204724,54.5127868 162.141732,55.7707742 C169.653543,57.0287616 179.149606,58.5663017 179.149606,58.5663017 L179.149606,59.40496 C179.149606,59.40496 170.220472,58.0071962 162.141732,56.6094324 C154.204724,55.2116687 148.677165,54.5127868 144.141732,50.4592719 C140.031496,46.8250861 125.574803,33.406554 125.574803,33.406554 L125.574803,29.0734863 L125.574803,29.0734863 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,35.7827523 C125.574803,35.7827523 139.322835,48.3626262 144.141732,52.6956939 C148.677165,56.6094324 152.220472,57.8674198 162.141732,59.5447363 C172.062992,61.2220528 179.007874,62.3402639 179.007874,62.3402639 L179.007874,63.1789221 C179.007874,63.1789221 170.07874,61.7811584 162,60.523171 C153.92126,59.2651836 148.818898,58.7060781 144,54.9321159 C138.472441,50.4592719 125.433071,39.8362673 125.433071,39.8362673 L125.433071,35.7827523 L125.574803,35.7827523 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,42.9113475 C125.574803,42.9113475 141.307087,55.2116687 144.141732,57.3083143 C147.11811,59.40496 150.944882,61.9209347 162.141732,63.5982512 C173.338583,65.1357914 179.007874,65.9744496 179.007874,65.9744496 L179.007874,66.9528843 C179.007874,66.9528843 168.944882,65.5551205 162.141732,64.7164623 C155.338583,63.877804 150.23622,63.4584749 144.141732,59.5447363 C138.188976,55.6309978 125.433071,46.8250861 125.433071,46.8250861 L125.433071,42.9113475 L125.574803,42.9113475 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,49.76039 C125.574803,49.76039 141.307087,60.1038418 144.283465,61.7811584 C147.259843,63.4584749 150.80315,66.114226 162.283465,67.5119898 C173.76378,68.9097535 179.149606,69.6086354 179.149606,69.6086354 L179.149606,70.4472937 C179.149606,70.4472937 169.653543,69.4688591 162.283465,68.6302008 C154.913386,67.7915425 149.811024,66.8131079 144.283465,63.7380276 C138.755906,60.8027237 125.716535,53.2547994 125.716535,53.2547994 L125.716535,49.76039 L125.574803,49.76039 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,56.7492088 C125.574803,56.7492088 139.464567,64.1573568 144.141732,66.5335551 C149.385827,69.1893063 153.92126,70.3075173 162.141732,71.2859519 C170.220472,72.2643866 179.007874,73.1030448 179.007874,73.1030448 L179.007874,73.9417031 C179.007874,73.9417031 170.787402,73.1030448 162.141732,72.2643866 C153.496063,71.4257283 150.377953,71.1461756 144.141732,68.350648 C138.614173,65.8346733 125.574803,59.9640655 125.574803,59.9640655 L125.574803,56.7492088 L125.574803,56.7492088 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,63.7380276 C125.574803,63.7380276 136.488189,68.350648 144.283465,71.4257283 C151.937008,74.3610322 157.606299,74.640585 162.283465,75.1996905 C164.267717,75.4792432 179.149606,76.877007 179.149606,76.877007 L179.149606,77.7156653 C179.149606,77.7156653 170.362205,77.0167834 162.283465,76.3179015 C154.204724,75.6190196 150.80315,75.3394669 144.283465,73.2428212 C137.76378,71.1461756 125.574803,66.9528843 125.574803,66.9528843 L125.574803,63.7380276 L125.574803,63.7380276 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,70.7268464 C125.574803,70.7268464 136.629921,74.0814795 144.283465,76.0383487 C151.795276,77.995218 158.740157,78.8338763 162.283465,78.9736526 C165.826772,79.2532054 179.149606,80.23164 179.149606,80.23164 L179.149606,81.0702983 C179.149606,81.0702983 171.496063,80.5111928 162.283465,79.9520873 C154.771654,79.3929818 148.677165,78.8338763 144.283465,77.8554416 C139.322835,76.7372306 125.716535,73.522374 125.716535,73.522374 L125.716535,70.7268464 L125.574803,70.7268464 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,77.8554416 C125.574803,77.8554416 134.645669,79.3929818 144.283465,80.9305219 C151.511811,82.0487329 161.149606,82.8873912 162.283465,82.8873912 C163.275591,82.8873912 179.149606,84.0056022 179.149606,84.0056022 L179.149606,84.8442605 C179.149606,84.8442605 168.944882,84.2851549 162.283465,84.0056022 C155.19685,83.5862731 148.251969,83.1669439 144.283465,82.7476148 C135.354331,81.7691802 125.716535,80.6509692 125.716535,80.6509692 L125.716535,77.8554416 L125.574803,77.8554416 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,85.35 C125.574803,85.35 139.889764,85.9091055 144.283465,85.9091055 C148.677165,86.0488819 179.149606,87.1670929 179.149606,87.1670929 L179.149606,88.0057512 L125.574803,88.0057512 L125.574803,85.35 L125.574803,85.35 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M162.141732,44.5886641 C149.244094,41.7931365 146.267717,37.1805161 144.141732,34.2452122 C142.015748,31.3099083 125.574803,7.6877007 125.574803,7.6877007 L125.574803,12.999203 C126.283465,13.8378613 140.173228,31.8690138 144.141732,36.9009634 C148.535433,42.4920184 155.480315,43.7500058 162.141732,45.1477696 C168.80315,46.5455333 179.007874,48.5024026 179.007874,48.5024026 L179.007874,47.8035207 C179.149606,47.9432971 165.543307,45.2875459 162.141732,44.5886641" id="Shape" fill="#BCBEC0"></path>
<path d="M162.141732,48.2228498 C151.511811,46.1262042 147.259843,42.9113475 144.141732,38.8578326 C141.023622,34.8043177 125.574803,14.8162959 125.574803,14.8162959 L125.574803,19.8482454 C126.283465,20.5471273 140.314961,37.1805161 144.141732,41.3738074 C148.535433,46.405757 154.771654,47.6637443 162.141732,49.0615081 C169.653543,50.4592719 179.007874,52.1365884 179.007874,52.1365884 L179.007874,51.4377065 C179.149606,51.4377065 168.23622,49.4808372 162.141732,48.2228498" id="Shape" fill="#BCBEC0"></path>
<path d="M162.141732,52.1365884 C151.086614,50.0399427 148.818898,48.2228498 144.141732,43.1909003 C141.165354,39.9760436 126.141732,22.5039966 125.574803,21.8051147 L125.574803,26.5575115 C125.574803,26.5575115 139.606299,41.3738074 144.141732,45.7068751 C150.094488,51.4377065 155.622047,51.8570356 162.141732,52.9752466 C168.661417,54.0934577 179.007874,56.0503269 179.007874,56.0503269 L179.007874,55.2116687 C179.149606,55.2116687 166.535433,52.9752466 162.141732,52.1365884" id="Shape" fill="#BCBEC0"></path>
<rect id="Rectangle-path" fill="#004494" x="36.5669291" y="37.12" width="77.1023622" height="50.878601"></rect>
<polygon id="Shape" fill="#FAEA27" points="75.9685039 44.1693349 78.6614173 44.1693349 76.5354331 45.7068751 77.3858268 48.3626262 75.2598425 46.8250861 73.1338583 48.3626262 73.984252 45.7068751 71.7165354 44.1693349 74.4094488 44.1693349 75.2598425 41.5135838"></polygon>
<polygon id="Shape" fill="#FAEA27" points="76.1102362 77.995218 78.8031496 77.995218 76.6771654 79.6725345 77.5275591 82.1885093 75.4015748 80.6509692 73.1338583 82.1885093 73.984252 79.6725345 71.8582677 77.995218 74.5511811 77.995218 75.4015748 75.6190196"></polygon>
<polygon id="Shape" fill="#FAEA27" points="84.6141732 75.758796 87.3070866 75.758796 85.1811024 77.4361125 86.0314961 79.9520873 83.9055118 78.4145471 81.6377953 79.9520873 82.488189 77.4361125 80.3622047 75.758796 83.0551181 75.758796 83.9055118 73.3825976"></polygon>
<polygon id="Shape" fill="#FAEA27" points="84.6141732 46.405757 87.3070866 46.405757 85.1811024 47.9432971 86.0314961 50.4592719 83.9055118 48.9217317 81.6377953 50.4592719 82.488189 47.9432971 80.3622047 46.405757 83.0551181 46.405757 83.9055118 43.8897822"></polygon>
<polygon id="Shape" fill="#FAEA27" points="90.992126 52.5559175 93.6850394 52.5559175 91.4173228 54.233234 92.2677165 56.7492088 90.1417323 55.2116687 88.015748 56.7492088 88.8661417 54.233234 86.7401575 52.5559175 89.2913386 52.5559175 90.1417323 50.1797191"></polygon>
<polygon id="Shape" fill="#FAEA27" points="90.992126 69.6086354 93.6850394 69.6086354 91.4173228 71.2859519 92.2677165 73.8019267 90.1417323 72.2643866 88.015748 73.8019267 88.8661417 71.2859519 86.7401575 69.6086354 89.2913386 69.6086354 90.1417323 67.232437"></polygon>
<polygon id="Shape" fill="#FAEA27" points="93.4015748 60.9425001 96.0944882 60.9425001 93.8267717 62.6198166 94.6771654 65.1357914 92.5511811 63.5982512 90.4251969 65.1357914 91.2755906 62.6198166 89.007874 60.9425001 91.7007874 60.9425001 92.5511811 58.5663017"></polygon>
<polygon id="Shape" fill="#FAEA27" points="67.3228346 46.405757 70.015748 46.405757 67.8897638 47.9432971 68.7401575 50.5990482 66.6141732 48.9217317 64.3464567 50.5990482 65.1968504 47.9432971 63.0708661 46.405757 65.7637795 46.405757 66.6141732 43.8897822"></polygon>
<polygon id="Shape" fill="#FAEA27" points="61.2283465 52.6956939 63.9212598 52.6956939 61.7952756 54.233234 62.503937 56.7492088 60.3779528 55.2116687 58.2519685 56.7492088 59.1023622 54.233234 56.976378 52.6956939 59.6692913 52.6956939 60.3779528 50.1797191"></polygon>
<polygon id="Shape" fill="#FAEA27" points="58.9606299 61.0822765 61.6535433 61.0822765 59.3858268 62.6198166 60.2362205 65.1357914 58.1102362 63.5982512 55.984252 65.1357914 56.8346457 62.6198166 54.7086614 61.0822765 57.2598425 61.0822765 58.1102362 58.5663017"></polygon>
<polygon id="Shape" fill="#FAEA27" points="61.2283465 69.7484118 63.9212598 69.7484118 61.7952756 71.2859519 62.503937 73.8019267 60.3779528 72.2643866 58.2519685 73.8019267 59.1023622 71.2859519 56.976378 69.7484118 59.6692913 69.7484118 60.3779528 67.232437"></polygon>
<polygon id="Shape" fill="#FAEA27" points="67.4645669 75.8985724 70.1574803 75.8985724 68.0314961 77.4361125 68.7401575 79.9520873 66.6141732 78.4145471 64.488189 79.9520873 65.3385827 77.4361125 63.2125984 75.8985724 65.9055118 75.8985724 66.6141732 73.3825976"></polygon>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="180px" height="89px" viewBox="0 0 180 89" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>Logos/EC_logo</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Logos" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-32.000000, -380.000000)" id="Logos/EC_logo-large">
<g transform="translate(32.000000, 380.000000)">
<path d="M0,32.8474484 C0,32.8474484 53.007874,25.998406 54.5669291,25.7188533 C56.8346457,25.2995241 58.9606299,24.880195 60.8031496,24.3210895 C65.0551181,23.2028785 69.023622,21.3857856 72.5669291,19.0095872 C75.9685039,16.7731652 79.0866142,13.5583085 82.0629921,9.92412272 C84.0472441,7.6877007 86.0314961,4.7523968 88.015748,1.81709289 L88.015748,0.419329129 C85.7480315,3.77396216 83.480315,6.70926607 81.2125984,9.22524084 C78.0944882,12.5798739 74.976378,15.3754014 71.5748031,17.472047 C68.1732283,19.7084691 64.3464567,21.2460092 60.2362205,22.2244438 C58.3937008,22.643773 56.4094488,23.0631021 54.1417323,23.3426549 C52.7244094,23.4824312 51.1653543,23.761984 49.7480315,23.9017604 C49.1811024,24.1813131 0,29.353039 0,29.353039 L0,32.8474484 L0,32.8474484 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M71.1496063,24.0415367 C67.8897638,25.998406 63.9212598,27.3961698 59.8110236,28.234828 C57.9685039,28.6541572 55.984252,28.9337099 53.7165354,29.0734863 C52.4409449,29.2132627 51.023622,29.2132627 49.7480315,29.353039 C49.0393701,29.353039 48.3307087,29.4928154 47.6220472,29.4928154 C31.3228346,30.8905792 15.1653543,32.4281193 0,33.9656595 L0,37.3202925 C15.3070866,35.5031996 31.6062992,33.5463303 47.7637795,31.7292374 C48.4724409,31.5894611 49.1811024,31.5894611 49.8897638,31.4496847 C51.1653543,31.3099083 52.5826772,31.1701319 53.8582677,31.0303556 C56.1259843,30.7508028 58.2519685,30.3314737 60.0944882,29.9121445 C64.488189,28.9337099 68.4566929,27.3961698 72,25.2995241 C75.4015748,23.2028785 78.3779528,20.4073509 81.6377953,16.9129415 C83.6220472,14.6765195 85.8897638,11.6014392 88.015748,8.80591171 L88.015748,7.6877007 C85.4645669,11.0423337 83.1968504,13.8378613 80.7874016,16.2140597 C77.6692913,19.5686927 74.4094488,22.0846675 71.1496063,24.0415367" id="Shape" fill="#BCBEC0"></path>
<path d="M80.503937,23.2028785 C77.2440945,26.1381824 73.8425197,28.5143808 70.4409449,30.0519209 C67.0393701,31.7292374 63.3543307,32.8474484 58.9606299,33.5463303 C57.1181102,33.8258831 55.1338583,34.1054358 53.007874,34.2452122 L0,38.5782799 L0,41.9329129 L47.0551181,36.9009634 L53.1496063,36.2020815 C55.4173228,35.9225287 57.4015748,35.642976 59.2440945,35.3634232 C63.7795276,34.524765 67.6062992,33.2667776 71.1496063,31.4496847 C74.6929134,29.6325918 78.2362205,26.6972879 81.496063,23.6222076 C83.7637795,21.525562 85.8897638,18.8698108 88.1574803,15.9345069 L88.1574803,14.8162959 C85.4645669,18.1709289 82.9133858,20.8266801 80.503937,23.2028785" id="Shape" fill="#BCBEC0"></path>
<path d="M67.6062992,40.8147019 C64.488189,42.4920184 62.2204724,43.470453 57.8267717,44.0295586 C55.1338583,44.3091113 52.4409449,44.4488877 49.7480315,44.5886641 C48.4724409,44.5886641 47.1968504,44.7284404 45.9212598,44.7284404 C37.984252,45.1477696 30.0472441,45.7068751 22.1102362,46.2659806 L0,47.8035207 L0,51.1581537 L22.3937008,49.0615081 C29.6220472,48.3626262 37.984252,47.6637443 46.2047244,46.9648625 L52.1574803,46.5455333 C54.4251969,46.405757 56.4094488,46.1262042 58.1102362,45.9864278 C62.6456693,45.4273223 66.4724409,44.4488877 69.8740157,43.1909003 C73.5590551,41.7931365 77.1023622,39.6964909 80.503937,37.1805161 C83.6220472,34.9440941 88.015748,30.47125 88.015748,30.47125 L88.015748,29.2132627 C85.1811024,32.0087902 83.480315,33.5463303 80.3622047,35.5031996 C76.8188976,38.0191744 70.4409449,39.2771618 67.6062992,40.8147019" id="Shape" fill="#BCBEC0"></path>
<path d="M68.7401575,47.3841916 C65.3385827,48.3626262 61.6535433,49.0615081 57.2598425,49.3410609 C55.4173228,49.4808372 53.5748031,49.6206136 51.4488189,49.76039 L45.496063,50.0399427 C30.7559055,50.7388246 16.1574803,51.4377065 -7.10542736e-15,52.2763648 L-7.10542736e-15,55.6309978 C15.4488189,54.5127868 30.4724409,53.2547994 45.6377953,52.2763648 L51.5905512,51.8570356 C53.8582677,51.7172593 55.7007874,51.5774829 57.5433071,51.2979301 C62.0787402,50.7388246 65.9055118,50.0399427 69.3070866,48.9217317 C73.1338583,47.6637443 76.8188976,45.9864278 80.2204724,43.7500058 C82.7716535,42.0726893 85.3228346,40.11582 88.015748,37.879398 L88.015748,37.879398 C85.0393701,40.3953728 82.2047244,40.9544783 79.511811,42.6317948 C76.1102362,44.7284404 72.4251969,46.2659806 68.7401575,47.3841916" id="Shape" fill="#BCBEC0"></path>
<path d="M68.1732283,52.9752466 C64.7716535,53.8139049 61.2283465,54.233234 56.6929134,54.5127868 C54.992126,54.6525632 53.1496063,54.6525632 50.8818898,54.7923395 L45.0708661,54.9321159 C30.3307087,55.4912214 15.3070866,56.1901033 -7.10542736e-15,56.7492088 L-7.10542736e-15,60.1038418 C15.1653543,59.1254072 30.1889764,58.0071962 45.2125984,57.1685379 L51.023622,56.8889852 C53.2913386,56.7492088 55.1338583,56.6094324 56.976378,56.4696561 C61.511811,56.0503269 65.1968504,55.4912214 68.7401575,54.5127868 C72.5669291,53.5343521 76.3937008,52.1365884 79.9370079,50.1797191 C82.6299213,48.7819554 85.4645669,46.9648625 88.2992126,44.8682168 L88.2992126,43.470453 C85.1811024,45.7068751 82.3464567,47.523968 79.3700787,48.9217317 C75.6850394,50.878601 72,52.1365884 68.1732283,52.9752466" id="Shape" fill="#BCBEC0"></path>
<path d="M67.7480315,58.5663017 C64.3464567,59.1254072 60.8031496,59.5447363 56.2677165,59.8242891 C54.5669291,59.9640655 52.8661417,59.9640655 50.4566929,59.9640655 L0,61.3618292 L0,64.7164623 L44.7874016,62.3402639 L50.5984252,62.0607111 C52.8661417,61.9209347 54.7086614,61.7811584 56.4094488,61.7811584 C60.9448819,61.5016056 64.6299213,60.9425001 68.0314961,60.2436182 C72,59.40496 75.6850394,58.2867489 79.3700787,56.7492088 C82.2047244,55.4912214 85.1811024,54.0934577 88.1574803,52.2763648 L88.1574803,50.878601 C84.8976378,52.6956939 81.9212598,54.233234 78.9448819,55.351445 C75.2598425,56.7492088 71.5748031,57.8674198 67.7480315,58.5663017" id="Shape" fill="#BCBEC0"></path>
<path d="M67.3228346,64.1573568 C61.0866142,64.996015 54.7086614,65.1357914 48.6141732,65.1357914 C47.1968504,65.1357914 45.7795276,65.1357914 44.3622047,65.2755678 L0,65.9744496 L0,69.3290827 L44.3622047,67.3722134 C45.7795276,67.3722134 47.1968504,67.232437 48.6141732,67.232437 C54.8503937,66.9528843 61.2283465,66.6733315 67.6062992,65.6948969 C71.5748031,65.1357914 75.4015748,64.1573568 78.9448819,62.8993694 C81.9212598,61.9209347 84.8976378,60.6629473 88.015748,59.1254072 L88.015748,57.8674198 C84.7559055,59.40496 81.496063,60.6629473 78.519685,61.5016056 C74.976378,62.759593 71.2913386,63.5982512 67.3228346,64.1573568" id="Shape" fill="#BCBEC0"></path>
<path d="M67.0393701,69.7484118 C61.2283465,70.1677409 55.2755906,70.1677409 49.6062992,70.1677409 L44.2204724,70.1677409 C29.480315,70.1677409 14.8818898,70.3075173 0.141732283,70.4472937 L0.141732283,73.8019267 C14.3149606,73.3825976 29.3385827,72.8234921 44.3622047,72.404163 C46.2047244,72.404163 47.9055118,72.2643866 49.7480315,72.2643866 C55.5590551,72.1246102 61.511811,71.9848338 67.3228346,71.2859519 C71.4330709,70.8666228 75.1181102,70.1677409 78.6614173,69.3290827 C81.7795276,68.6302008 85.0393701,67.5119898 88.1574803,66.3937788 L88.1574803,65.1357914 C84.8976378,66.2540024 81.496063,67.232437 78.3779528,67.9313189 C74.6929134,68.9097535 71.007874,69.4688591 67.0393701,69.7484118" id="Shape" fill="#BCBEC0"></path>
<path d="M66.7559055,75.1996905 C64.3464567,75.3394669 61.6535433,75.3394669 58.6771654,75.3394669 L55.2755906,75.3394669 L43.9370079,75.1996905 C36.1417323,75.1996905 28.3464567,75.0599141 21.1181102,75.0599141 L0,75.1996905 L0,78.5543235 L21.1181102,77.995218 C28.3464567,77.8554416 36.1417323,77.5758889 43.9370079,77.4361125 L55.4173228,77.2963361 C58.5354331,77.2963361 62.6456693,77.1565598 66.8976378,76.877007 C71.007874,76.5974542 74.6929134,76.1781251 78.3779528,75.6190196 C81.6377953,75.0599141 84.8976378,74.3610322 88.1574803,73.522374 L88.1574803,72.2643866 C84.7559055,73.1030448 81.3543307,73.6621503 78.0944882,74.0814795 C74.5511811,74.7803614 70.8661417,75.0599141 66.7559055,75.1996905" id="Shape" fill="#BCBEC0"></path>
<path d="M55.2755906,80.6509692 L43.9370079,80.5111928 C29.3385827,80.23164 14.8818898,79.9520873 0,79.6725345 L0,83.0271676 C14.1732283,82.8873912 29.0551181,82.8873912 43.9370079,82.6078384 L55.2755906,82.4680621 C59.1023622,82.4680621 62.9291339,82.3282857 66.6141732,82.1885093 C74.4094488,81.9089565 81.496063,81.349851 88.015748,80.5111928 L88.015748,79.3929818 C81.496063,80.0918637 74.4094488,80.5111928 66.6141732,80.5111928 C62.7874016,80.6509692 59.1023622,80.6509692 55.2755906,80.6509692" id="Shape" fill="#BCBEC0"></path>
<polygon id="Shape" fill="#BCBEC0" points="88.015748 86.886422 0 84.65 0 88.004633 88.015748 88.004633"></polygon>
<path d="M80.2204724,29.4928154 C76.8188976,32.1485666 74.2677165,34.1054358 70.1574803,35.642976 C66.6141732,37.0407397 62.7874016,37.5998452 58.3937008,38.1589507 C55.5590551,38.5782799 52.5826772,39.1373854 49.8897638,39.2771618 C48.7559055,39.4169381 47.6220472,39.4169381 46.488189,39.5567145 L0,43.0511239 L0,46.405757 L46.488189,41.9329129 L52.5826772,41.3738074 C54.8503937,41.0942547 56.8346457,40.9544783 58.6771654,40.6749255 C63.2125984,39.9760436 67.0393701,38.8578326 70.5826772,37.3202925 C74.1259843,35.7827523 77.8110236,33.1270012 81.2125984,30.3314737 C83.480315,28.3746044 85.7480315,25.998406 88.1574803,23.3426549 L88.1574803,22.0846675 C85.1811024,25.1597477 82.7716535,27.5359461 80.2204724,29.4928154" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,0.559105505 C125.574803,0.559105505 141.448819,25.4393005 144.283465,30.0519209 C147.11811,34.6645413 150.519685,38.1589507 162.283465,40.6749255 C174.047244,43.1909003 179.149606,44.3091113 179.149606,44.3091113 L179.149606,45.1477696 C179.149606,45.1477696 171.637795,43.6102294 162.141732,41.5135838 C152.503937,39.4169381 148.677165,38.7180563 144.283465,32.7076721 C140.598425,27.6757225 125.716535,6.56948969 125.716535,6.56948969 L125.716535,0.559105505 L125.574803,0.559105505 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,29.0734863 C125.574803,29.0734863 140.031496,44.0295586 144.141732,48.2228498 C148.535433,52.6956939 154.204724,54.5127868 162.141732,55.7707742 C169.653543,57.0287616 179.149606,58.5663017 179.149606,58.5663017 L179.149606,59.40496 C179.149606,59.40496 170.220472,58.0071962 162.141732,56.6094324 C154.204724,55.2116687 148.677165,54.5127868 144.141732,50.4592719 C140.031496,46.8250861 125.574803,33.406554 125.574803,33.406554 L125.574803,29.0734863 L125.574803,29.0734863 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,35.7827523 C125.574803,35.7827523 139.322835,48.3626262 144.141732,52.6956939 C148.677165,56.6094324 152.220472,57.8674198 162.141732,59.5447363 C172.062992,61.2220528 179.007874,62.3402639 179.007874,62.3402639 L179.007874,63.1789221 C179.007874,63.1789221 170.07874,61.7811584 162,60.523171 C153.92126,59.2651836 148.818898,58.7060781 144,54.9321159 C138.472441,50.4592719 125.433071,39.8362673 125.433071,39.8362673 L125.433071,35.7827523 L125.574803,35.7827523 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,42.9113475 C125.574803,42.9113475 141.307087,55.2116687 144.141732,57.3083143 C147.11811,59.40496 150.944882,61.9209347 162.141732,63.5982512 C173.338583,65.1357914 179.007874,65.9744496 179.007874,65.9744496 L179.007874,66.9528843 C179.007874,66.9528843 168.944882,65.5551205 162.141732,64.7164623 C155.338583,63.877804 150.23622,63.4584749 144.141732,59.5447363 C138.188976,55.6309978 125.433071,46.8250861 125.433071,46.8250861 L125.433071,42.9113475 L125.574803,42.9113475 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,49.76039 C125.574803,49.76039 141.307087,60.1038418 144.283465,61.7811584 C147.259843,63.4584749 150.80315,66.114226 162.283465,67.5119898 C173.76378,68.9097535 179.149606,69.6086354 179.149606,69.6086354 L179.149606,70.4472937 C179.149606,70.4472937 169.653543,69.4688591 162.283465,68.6302008 C154.913386,67.7915425 149.811024,66.8131079 144.283465,63.7380276 C138.755906,60.8027237 125.716535,53.2547994 125.716535,53.2547994 L125.716535,49.76039 L125.574803,49.76039 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,56.7492088 C125.574803,56.7492088 139.464567,64.1573568 144.141732,66.5335551 C149.385827,69.1893063 153.92126,70.3075173 162.141732,71.2859519 C170.220472,72.2643866 179.007874,73.1030448 179.007874,73.1030448 L179.007874,73.9417031 C179.007874,73.9417031 170.787402,73.1030448 162.141732,72.2643866 C153.496063,71.4257283 150.377953,71.1461756 144.141732,68.350648 C138.614173,65.8346733 125.574803,59.9640655 125.574803,59.9640655 L125.574803,56.7492088 L125.574803,56.7492088 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,63.7380276 C125.574803,63.7380276 136.488189,68.350648 144.283465,71.4257283 C151.937008,74.3610322 157.606299,74.640585 162.283465,75.1996905 C164.267717,75.4792432 179.149606,76.877007 179.149606,76.877007 L179.149606,77.7156653 C179.149606,77.7156653 170.362205,77.0167834 162.283465,76.3179015 C154.204724,75.6190196 150.80315,75.3394669 144.283465,73.2428212 C137.76378,71.1461756 125.574803,66.9528843 125.574803,66.9528843 L125.574803,63.7380276 L125.574803,63.7380276 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,70.7268464 C125.574803,70.7268464 136.629921,74.0814795 144.283465,76.0383487 C151.795276,77.995218 158.740157,78.8338763 162.283465,78.9736526 C165.826772,79.2532054 179.149606,80.23164 179.149606,80.23164 L179.149606,81.0702983 C179.149606,81.0702983 171.496063,80.5111928 162.283465,79.9520873 C154.771654,79.3929818 148.677165,78.8338763 144.283465,77.8554416 C139.322835,76.7372306 125.716535,73.522374 125.716535,73.522374 L125.716535,70.7268464 L125.574803,70.7268464 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,77.8554416 C125.574803,77.8554416 134.645669,79.3929818 144.283465,80.9305219 C151.511811,82.0487329 161.149606,82.8873912 162.283465,82.8873912 C163.275591,82.8873912 179.149606,84.0056022 179.149606,84.0056022 L179.149606,84.8442605 C179.149606,84.8442605 168.944882,84.2851549 162.283465,84.0056022 C155.19685,83.5862731 148.251969,83.1669439 144.283465,82.7476148 C135.354331,81.7691802 125.716535,80.6509692 125.716535,80.6509692 L125.716535,77.8554416 L125.574803,77.8554416 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M125.574803,85.35 C125.574803,85.35 139.889764,85.9091055 144.283465,85.9091055 C148.677165,86.0488819 179.149606,87.1670929 179.149606,87.1670929 L179.149606,88.0057512 L125.574803,88.0057512 L125.574803,85.35 L125.574803,85.35 Z" id="Shape" fill="#BCBEC0"></path>
<path d="M162.141732,44.5886641 C149.244094,41.7931365 146.267717,37.1805161 144.141732,34.2452122 C142.015748,31.3099083 125.574803,7.6877007 125.574803,7.6877007 L125.574803,12.999203 C126.283465,13.8378613 140.173228,31.8690138 144.141732,36.9009634 C148.535433,42.4920184 155.480315,43.7500058 162.141732,45.1477696 C168.80315,46.5455333 179.007874,48.5024026 179.007874,48.5024026 L179.007874,47.8035207 C179.149606,47.9432971 165.543307,45.2875459 162.141732,44.5886641" id="Shape" fill="#BCBEC0"></path>
<path d="M162.141732,48.2228498 C151.511811,46.1262042 147.259843,42.9113475 144.141732,38.8578326 C141.023622,34.8043177 125.574803,14.8162959 125.574803,14.8162959 L125.574803,19.8482454 C126.283465,20.5471273 140.314961,37.1805161 144.141732,41.3738074 C148.535433,46.405757 154.771654,47.6637443 162.141732,49.0615081 C169.653543,50.4592719 179.007874,52.1365884 179.007874,52.1365884 L179.007874,51.4377065 C179.149606,51.4377065 168.23622,49.4808372 162.141732,48.2228498" id="Shape" fill="#BCBEC0"></path>
<path d="M162.141732,52.1365884 C151.086614,50.0399427 148.818898,48.2228498 144.141732,43.1909003 C141.165354,39.9760436 126.141732,22.5039966 125.574803,21.8051147 L125.574803,26.5575115 C125.574803,26.5575115 139.606299,41.3738074 144.141732,45.7068751 C150.094488,51.4377065 155.622047,51.8570356 162.141732,52.9752466 C168.661417,54.0934577 179.007874,56.0503269 179.007874,56.0503269 L179.007874,55.2116687 C179.149606,55.2116687 166.535433,52.9752466 162.141732,52.1365884" id="Shape" fill="#BCBEC0"></path>
<rect id="Rectangle-path" fill="#004494" x="36.5669291" y="37.12" width="77.1023622" height="50.878601"></rect>
<polygon id="Shape" fill="#FAEA27" points="75.9685039 44.1693349 78.6614173 44.1693349 76.5354331 45.7068751 77.3858268 48.3626262 75.2598425 46.8250861 73.1338583 48.3626262 73.984252 45.7068751 71.7165354 44.1693349 74.4094488 44.1693349 75.2598425 41.5135838"></polygon>
<polygon id="Shape" fill="#FAEA27" points="76.1102362 77.995218 78.8031496 77.995218 76.6771654 79.6725345 77.5275591 82.1885093 75.4015748 80.6509692 73.1338583 82.1885093 73.984252 79.6725345 71.8582677 77.995218 74.5511811 77.995218 75.4015748 75.6190196"></polygon>
<polygon id="Shape" fill="#FAEA27" points="84.6141732 75.758796 87.3070866 75.758796 85.1811024 77.4361125 86.0314961 79.9520873 83.9055118 78.4145471 81.6377953 79.9520873 82.488189 77.4361125 80.3622047 75.758796 83.0551181 75.758796 83.9055118 73.3825976"></polygon>
<polygon id="Shape" fill="#FAEA27" points="84.6141732 46.405757 87.3070866 46.405757 85.1811024 47.9432971 86.0314961 50.4592719 83.9055118 48.9217317 81.6377953 50.4592719 82.488189 47.9432971 80.3622047 46.405757 83.0551181 46.405757 83.9055118 43.8897822"></polygon>
<polygon id="Shape" fill="#FAEA27" points="90.992126 52.5559175 93.6850394 52.5559175 91.4173228 54.233234 92.2677165 56.7492088 90.1417323 55.2116687 88.015748 56.7492088 88.8661417 54.233234 86.7401575 52.5559175 89.2913386 52.5559175 90.1417323 50.1797191"></polygon>
<polygon id="Shape" fill="#FAEA27" points="90.992126 69.6086354 93.6850394 69.6086354 91.4173228 71.2859519 92.2677165 73.8019267 90.1417323 72.2643866 88.015748 73.8019267 88.8661417 71.2859519 86.7401575 69.6086354 89.2913386 69.6086354 90.1417323 67.232437"></polygon>
<polygon id="Shape" fill="#FAEA27" points="93.4015748 60.9425001 96.0944882 60.9425001 93.8267717 62.6198166 94.6771654 65.1357914 92.5511811 63.5982512 90.4251969 65.1357914 91.2755906 62.6198166 89.007874 60.9425001 91.7007874 60.9425001 92.5511811 58.5663017"></polygon>
<polygon id="Shape" fill="#FAEA27" points="67.3228346 46.405757 70.015748 46.405757 67.8897638 47.9432971 68.7401575 50.5990482 66.6141732 48.9217317 64.3464567 50.5990482 65.1968504 47.9432971 63.0708661 46.405757 65.7637795 46.405757 66.6141732 43.8897822"></polygon>
<polygon id="Shape" fill="#FAEA27" points="61.2283465 52.6956939 63.9212598 52.6956939 61.7952756 54.233234 62.503937 56.7492088 60.3779528 55.2116687 58.2519685 56.7492088 59.1023622 54.233234 56.976378 52.6956939 59.6692913 52.6956939 60.3779528 50.1797191"></polygon>
<polygon id="Shape" fill="#FAEA27" points="58.9606299 61.0822765 61.6535433 61.0822765 59.3858268 62.6198166 60.2362205 65.1357914 58.1102362 63.5982512 55.984252 65.1357914 56.8346457 62.6198166 54.7086614 61.0822765 57.2598425 61.0822765 58.1102362 58.5663017"></polygon>
<polygon id="Shape" fill="#FAEA27" points="61.2283465 69.7484118 63.9212598 69.7484118 61.7952756 71.2859519 62.503937 73.8019267 60.3779528 72.2643866 58.2519685 73.8019267 59.1023622 71.2859519 56.976378 69.7484118 59.6692913 69.7484118 60.3779528 67.232437"></polygon>
<polygon id="Shape" fill="#FAEA27" points="67.4645669 75.8985724 70.1574803 75.8985724 68.0314961 77.4361125 68.7401575 79.9520873 66.6141732 78.4145471 64.488189 79.9520873 65.3385827 77.4361125 63.2125984 75.8985724 65.9055118 75.8985724 66.6141732 73.3825976"></polygon>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,231 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M194.7,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H194.7z M196.7,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,37.9,197.1,37.8,196.7,37.8z"/>
<path class="st4" d="M210.1,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210,42,210.1,42.5,210.1,43.1z"/>
<path class="st4" d="M214.1,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H214.1z M216.1,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C216.8,37.9,216.5,37.8,216.1,37.8z"/>
</g>
<g class="st3">
<path class="st4" d="M143.2,59.8c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,61.5,143.2,60.7,143.2,59.8z"/>
<path class="st4" d="M162.9,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C162.8,60.1,162.9,60.7,162.9,61.3z M160.6,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S160.6,62,160.6,61.4z"/>
<path class="st4" d="M179.2,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.2,66.1,179.2,66.2,179.2,66.3z"/>
<path class="st4" d="M195.7,66.3c0,0.1-0.1,0.1-0.3,0.1H194c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4V66C195.8,66.1,195.7,66.2,195.7,66.3z"/>
<path class="st4" d="M200.5,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.4,53.3,200.5,53.6,200.5,53.9z M200.4,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M210.2,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.1,62.3,210.2,62.8,210.2,63.4z"/>
<path class="st4" d="M219.4,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.3,62.3,219.4,62.8,219.4,63.4z"/>
<path class="st4" d="M223.9,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C223.8,53.3,223.9,53.6,223.9,53.9z M223.8,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H222c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66
z"/>
<path class="st4" d="M228.3,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H228.3z M230.3,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C231.1,58.2,230.8,58.1,230.3,58.1z"/>
</g>
<rect x="244.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,231 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M194.7,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H194.7z M196.7,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,37.9,197.1,37.8,196.7,37.8z"/>
<path class="st4" d="M210.1,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210,42,210.1,42.5,210.1,43.1z"/>
<path class="st4" d="M214.1,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H214.1z M216.1,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C216.8,37.9,216.5,37.8,216.1,37.8z"/>
</g>
<g class="st3">
<path class="st4" d="M143.2,59.8c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,61.5,143.2,60.7,143.2,59.8z"/>
<path class="st4" d="M162.9,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C162.8,60.1,162.9,60.7,162.9,61.3z M160.6,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1S160.6,62,160.6,61.4z"/>
<path class="st4" d="M179.2,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C179.2,66.1,179.2,66.2,179.2,66.3z"/>
<path class="st4" d="M195.7,66.3c0,0.1-0.1,0.1-0.3,0.1H194c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4V66C195.8,66.1,195.7,66.2,195.7,66.3z"/>
<path class="st4" d="M200.5,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C200.4,53.3,200.5,53.6,200.5,53.9z M200.4,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M210.2,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C210.1,62.3,210.2,62.8,210.2,63.4z"/>
<path class="st4" d="M219.4,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C219.3,62.3,219.4,62.8,219.4,63.4z"/>
<path class="st4" d="M223.9,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C223.8,53.3,223.9,53.6,223.9,53.9z M223.8,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1H222c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66
z"/>
<path class="st4" d="M228.3,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H228.3z M230.3,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C231.1,58.2,230.8,58.1,230.3,58.1z"/>
</g>
<rect x="244.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,225 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M145.6,39.1l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2v3.3c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V33.1
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,39.1L145.6,39.1z"/>
<path class="st4" d="M163.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C163.2,39.8,163.2,40.4,163.2,41z M161,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,42.1,161,41.7,161,41.1z"/>
<path class="st4" d="M179.5,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.6,45.8,179.6,45.9,179.5,46z"/>
<path class="st4" d="M184.3,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C184.3,33,184.3,33.3,184.3,33.6z M184.2,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M194.1,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C194,42,194.1,42.5,194.1,43.1z"/>
<path class="st4" d="M198.7,46.3c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V46.3z M198.8,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.7,33,198.8,33.3,198.8,33.6z"/>
<path class="st4" d="M207.4,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C207.8,45.7,207.6,45.4,207.4,44.9L207.4,44.9z M207.3,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z"/>
<path class="st4" d="M205.6,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M205.7,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.6,53.3,205.7,53.6,205.7,53.9z"/>
<path class="st4" d="M215.4,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C215.3,62.3,215.4,62.8,215.4,63.4z"/>
<path class="st4" d="M219.6,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L219.6,60.2L219.6,60.2z"/>
<path class="st4" d="M233.2,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C233.5,66,233.3,65.7,233.2,65.2L233.2,65.2z M233.1,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="246.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,225 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M145.6,39.1l1.5-2l3.4-4.2c0.1-0.1,0.2-0.2,0.3-0.2s0.2-0.1,0.4-0.1h1.8c0.1,0,0.2,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-4.4,5.3l4.5,7.2c0.1,0.1,0.1,0.2,0,0.3c-0.1,0.1-0.1,0.1-0.2,0.1h-1.8c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3l-3.3-5.5l-1.8,2.2v3.3c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4V33.1
c0-0.3,0.1-0.4,0.4-0.4h1.5c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3L145.6,39.1L145.6,39.1z"/>
<path class="st4" d="M163.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C163.2,39.8,163.2,40.4,163.2,41z M161,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C161,42.1,161,41.7,161,41.1z"/>
<path class="st4" d="M179.5,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.6,45.8,179.6,45.9,179.5,46z"/>
<path class="st4" d="M184.3,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C184.3,33,184.3,33.3,184.3,33.6z M184.2,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M194.1,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C194,42,194.1,42.5,194.1,43.1z"/>
<path class="st4" d="M198.7,46.3c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V46.3z M198.8,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.7,33,198.8,33.3,198.8,33.6z"/>
<path class="st4" d="M207.4,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C207.8,45.7,207.6,45.4,207.4,44.9L207.4,44.9z M207.3,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z"/>
<path class="st4" d="M205.6,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M205.7,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.6,53.3,205.7,53.6,205.7,53.9z"/>
<path class="st4" d="M215.4,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C215.3,62.3,215.4,62.8,215.4,63.4z"/>
<path class="st4" d="M219.6,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L219.6,60.2L219.6,60.2z"/>
<path class="st4" d="M233.2,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C233.5,66,233.3,65.7,233.2,65.2L233.2,65.2z M233.1,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="246.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,228 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M184,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C183.9,33,184,33.3,184,33.6z M183.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M193.7,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C193.6,42,193.7,42.5,193.7,43.1z"/>
<path class="st4" d="M202.9,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C202.8,42,202.9,42.5,202.9,43.1z"/>
<path class="st4" d="M211,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C211.3,45.7,211.1,45.4,211,44.9L211,44.9z M210.8,35.1c-0.2,0-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.2-0.8-0.4
c-0.3-0.1-0.6-0.2-0.8-0.4c-0.3-0.1-0.5-0.2-0.7-0.2c-0.1,0-0.3,0-0.5,0.1c-0.2,0.1-0.4,0.3-0.6,0.6c-0.1,0.1-0.1,0.1-0.2,0.2
c0,0-0.1,0-0.3-0.1l-0.6-0.2c-0.1-0.1-0.2-0.2-0.1-0.4c0.3-0.7,0.6-1.2,1-1.5c0.4-0.3,0.8-0.4,1.2-0.4c0.3,0,0.5,0.1,0.8,0.2
c0.3,0.1,0.6,0.2,0.8,0.3c0.3,0.1,0.5,0.2,0.8,0.3c0.2,0.1,0.5,0.2,0.7,0.2c0.4,0,0.8-0.2,1-0.7c0.1-0.1,0.1-0.1,0.2-0.2
c0.1,0,0.2,0,0.3,0l0.6,0.3c0.1,0,0.2,0.1,0.2,0.2c0,0.1,0,0.1,0,0.2c-0.3,0.7-0.6,1.2-0.9,1.5C211.6,34.9,211.2,35.1,210.8,35.1z
M210.9,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
c0.3-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M224.1,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C224.1,39.8,224.1,40.4,224.1,41z M221.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C221.9,42.1,221.9,41.7,221.9,41.1z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z"/>
<path class="st4" d="M205.4,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.3,53.3,205.4,53.6,205.4,53.9z M205.3,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M213.9,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C214.3,66,214.1,65.7,213.9,65.2L213.9,65.2z M213.8,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="233.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,228 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M184,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C183.9,33,184,33.3,184,33.6z M183.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M193.7,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C193.6,42,193.7,42.5,193.7,43.1z"/>
<path class="st4" d="M202.9,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C202.8,42,202.9,42.5,202.9,43.1z"/>
<path class="st4" d="M211,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C211.3,45.7,211.1,45.4,211,44.9L211,44.9z M210.8,35.1c-0.2,0-0.5-0.1-0.8-0.2c-0.3-0.1-0.6-0.2-0.8-0.4
c-0.3-0.1-0.6-0.2-0.8-0.4c-0.3-0.1-0.5-0.2-0.7-0.2c-0.1,0-0.3,0-0.5,0.1c-0.2,0.1-0.4,0.3-0.6,0.6c-0.1,0.1-0.1,0.1-0.2,0.2
c0,0-0.1,0-0.3-0.1l-0.6-0.2c-0.1-0.1-0.2-0.2-0.1-0.4c0.3-0.7,0.6-1.2,1-1.5c0.4-0.3,0.8-0.4,1.2-0.4c0.3,0,0.5,0.1,0.8,0.2
c0.3,0.1,0.6,0.2,0.8,0.3c0.3,0.1,0.5,0.2,0.8,0.3c0.2,0.1,0.5,0.2,0.7,0.2c0.4,0,0.8-0.2,1-0.7c0.1-0.1,0.1-0.1,0.2-0.2
c0.1,0,0.2,0,0.3,0l0.6,0.3c0.1,0,0.2,0.1,0.2,0.2c0,0.1,0,0.1,0,0.2c-0.3,0.7-0.6,1.2-0.9,1.5C211.6,34.9,211.2,35.1,210.8,35.1z
M210.9,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
c0.3-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
<path class="st4" d="M224.1,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C224.1,39.8,224.1,40.4,224.1,41z M221.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C221.9,42.1,221.9,41.7,221.9,41.1z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z"/>
<path class="st4" d="M205.4,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.3,53.3,205.4,53.6,205.4,53.9z M205.3,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M213.9,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C214.3,66,214.1,65.7,213.9,65.2L213.9,65.2z M213.8,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="233.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,225 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M184,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C183.9,33,184,33.3,184,33.6z M183.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M193.7,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C193.6,42,193.7,42.5,193.7,43.1z"/>
<path class="st4" d="M198.2,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.1,33,198.2,33.3,198.2,33.6z M198,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M206.7,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C207.1,45.7,206.9,45.4,206.7,44.9L206.7,44.9z M206.6,41.6h-2.4
c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
c0.3-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z"/>
<path class="st4" d="M209,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C209.3,66,209.1,65.7,209,65.2L209,65.2z M208.9,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
<path class="st4" d="M222.1,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C222.1,66.1,222.1,66.2,222.1,66.3z"/>
<path class="st4" d="M230.4,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C230.8,66,230.6,65.7,230.4,65.2L230.4,65.2z M228.7,55.6c-0.7,0-1.3-0.2-1.9-0.5
c-0.6-0.3-1.1-0.9-1.4-1.6c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3l0.5-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.1,0.1,0.2,0.2
c0.4,0.5,0.8,0.8,1.1,1.1s0.7,0.3,1.2,0.3c0.2,0,0.4,0,0.6-0.1s0.4-0.1,0.5-0.3c0.2-0.1,0.3-0.3,0.5-0.4s0.4-0.4,0.6-0.6
c0.2-0.2,0.3-0.2,0.5-0.1l0.5,0.3c0.1,0.1,0.2,0.2,0.1,0.3s-0.1,0.3-0.2,0.4c-0.4,0.7-0.8,1.2-1.4,1.6S229.3,55.6,228.7,55.6z
M230.3,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
c0.3-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="242.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,225 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.2,39.5c0-0.9,0.1-1.7,0.2-2.5s0.4-1.6,0.8-2.2c0.4-0.6,0.9-1.2,1.6-1.6s1.6-0.6,2.8-0.6
c0.2,0,0.5,0,0.8,0c0.3,0,0.6,0.1,1,0.1c0.3,0,0.7,0.1,1,0.2s0.6,0.2,0.9,0.3c0.2,0.1,0.3,0.1,0.3,0.2s0.1,0.2,0.1,0.4l-0.2,0.8
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.4,0c-0.5-0.1-1-0.1-1.6-0.2c-0.6-0.1-1.1-0.1-1.6-0.1c-0.7,0-1.2,0.1-1.6,0.4
c-0.4,0.3-0.7,0.6-1,1c-0.2,0.4-0.4,1-0.4,1.5s-0.1,1.2-0.1,1.9s0,1.3,0.1,1.8c0.1,0.6,0.2,1.1,0.5,1.5c0.2,0.4,0.5,0.8,1,1
c0.4,0.2,0.9,0.4,1.6,0.4c0.6,0,1.1,0,1.6-0.1c0.5-0.1,1-0.1,1.6-0.2c0.2,0,0.3,0,0.4,0c0.1,0.1,0.1,0.1,0.2,0.3l0.2,0.8
c0.1,0.3,0,0.5-0.3,0.6c-0.2,0.1-0.5,0.2-0.9,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.6,0-0.9,0
c-1.1,0-2-0.2-2.7-0.6c-0.7-0.4-1.3-0.9-1.6-1.5c-0.4-0.6-0.7-1.3-0.8-2.1C143.3,41.2,143.2,40.4,143.2,39.5z"/>
<path class="st4" d="M162.9,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C162.8,39.8,162.9,40.4,162.9,41z M160.6,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S160.6,41.7,160.6,41.1z"/>
<path class="st4" d="M179.2,46c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V40c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6v5.7c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
v6.7c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4v5.9C179.2,45.8,179.2,45.9,179.2,46z"/>
<path class="st4" d="M184,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C183.9,33,184,33.3,184,33.6z M183.9,45.7c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M193.7,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C193.6,42,193.7,42.5,193.7,43.1z"/>
<path class="st4" d="M198.2,33.6c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.1,33,198.2,33.3,198.2,33.6z M198,45.7c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V45.7z"/>
<path class="st4" d="M206.7,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C207.1,45.7,206.9,45.4,206.7,44.9L206.7,44.9z M206.6,41.6h-2.4
c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
c0.3-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M143.4,53.4c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4V66c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V53.4z"/>
<path class="st4" d="M161.8,66.4h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-0.6l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4V66C162.2,66.2,162.1,66.4,161.8,66.4z"/>
<path class="st4" d="M166.9,66c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V66z"/>
<path class="st4" d="M180.2,61.3c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,60.1,180.2,60.7,180.2,61.3z M177.9,61.4c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,62.4,177.9,62,177.9,61.4z"/>
<path class="st4" d="M190.8,61.4c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V56.9c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,59.9,190.8,60.6,190.8,61.4z M188.5,61.4c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,62.5,188.5,62,188.5,61.4z"/>
<path class="st4" d="M194.7,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S200.4,62,200,62H194.7z M196.7,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,58.2,197.1,58.1,196.7,58.1z"/>
<path class="st4" d="M209,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C209.3,66,209.1,65.7,209,65.2L209,65.2z M208.9,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
<path class="st4" d="M222.1,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C222.1,66.1,222.1,66.2,222.1,66.3z"/>
<path class="st4" d="M230.4,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
s0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C230.8,66,230.6,65.7,230.4,65.2L230.4,65.2z M228.7,55.6c-0.7,0-1.3-0.2-1.9-0.5
c-0.6-0.3-1.1-0.9-1.4-1.6c-0.1-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3l0.5-0.4c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.1,0.1,0.2,0.2
c0.4,0.5,0.8,0.8,1.1,1.1s0.7,0.3,1.2,0.3c0.2,0,0.4,0,0.6-0.1s0.4-0.1,0.5-0.3c0.2-0.1,0.3-0.3,0.5-0.4s0.4-0.4,0.6-0.6
c0.2-0.2,0.3-0.2,0.5-0.1l0.5,0.3c0.1,0.1,0.2,0.2,0.1,0.3s-0.1,0.3-0.2,0.4c-0.4,0.7-0.8,1.2-1.4,1.6S229.3,55.6,228.7,55.6z
M230.3,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
c0.3-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="242.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,217 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z M178.3,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8
c-0.1,0.1-0.2,0.2-0.4,0.1l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L178.3,31.8z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M199.9,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C199.8,42,199.9,42.5,199.9,43.1z"/>
<path class="st4" d="M204.1,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V32.3
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L204.1,39.9L204.1,39.9z"/>
<path class="st4" d="M217.7,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3L212,37c0-0.1,0-0.2,0-0.3s0.2-0.2,0.4-0.3
c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C218,45.7,217.8,45.4,217.7,44.9L217.7,44.9z M217.6,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M182.2,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C182.1,53.3,182.2,53.6,182.2,53.9z M182.1,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M191.9,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C191.8,62.3,191.9,62.8,191.9,63.4z"/>
<path class="st4" d="M196.4,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C196.3,53.3,196.4,53.6,196.4,53.9z M196.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M204.9,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C205.3,66,205.1,65.7,204.9,65.2L204.9,65.2z M204.8,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="230.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
<rect x="506.8" y="378.8" width="9.6" height="11.3"/>
<rect x="506.8" y="378.8" width="9.6" height="11.3"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,217 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<title>logo copy</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Clip-39-Copy">
</g>
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z M178.3,31.8c0.2,0.1,0.2,0.3,0.1,0.4l-2,2.8
c-0.1,0.1-0.2,0.2-0.4,0.1l-0.8-0.4c-0.1-0.1-0.2-0.2-0.1-0.4l1.6-3.1c0.1-0.2,0.2-0.2,0.4-0.1L178.3,31.8z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M199.9,43.1c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C199.8,42,199.9,42.5,199.9,43.1z"/>
<path class="st4" d="M204.1,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V32.3
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L204.1,39.9L204.1,39.9z"/>
<path class="st4" d="M217.7,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0s-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3L212,37c0-0.1,0-0.2,0-0.3s0.2-0.2,0.4-0.3
c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1c0.3,0,0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7c0.3,0.3,0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5s0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1s0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1c-0.2,0-0.3,0-0.5,0
c-0.5,0-0.8-0.1-1.1-0.3C218,45.7,217.8,45.4,217.7,44.9L217.7,44.9z M217.6,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M182.2,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C182.1,53.3,182.2,53.6,182.2,53.9z M182.1,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M191.9,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C191.8,62.3,191.9,62.8,191.9,63.4z"/>
<path class="st4" d="M196.4,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C196.3,53.3,196.4,53.6,196.4,53.9z M196.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M204.9,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C205.3,66,205.1,65.7,204.9,65.2L204.9,65.2z M204.8,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="230.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
<rect x="506.8" y="378.8" width="9.6" height="11.3"/>
<rect x="506.8" y="378.8" width="9.6" height="11.3"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M157.7,43.6c0,0,0-0.2,0.1-0.4c0.1-0.2,0.2-0.5,0.3-0.8c0.1-0.3,0.2-0.7,0.4-1.1l1.6-4.7
c0-0.1,0.1-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.3-0.1h1.5c0.3,0,0.3,0.1,0.2,0.4l-3.4,9c-0.1,0.1-0.1,0.3-0.2,0.3
c-0.1,0.1-0.2,0.1-0.4,0.1H157c-0.2,0-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.2-0.2-0.3l-3.4-9c0-0.1,0-0.2,0-0.3s0.1-0.1,0.2-0.1h1.6
c0.1,0,0.3,0,0.3,0.1c0.1,0,0.1,0.1,0.2,0.3l1.6,4.7c0.1,0.4,0.2,0.8,0.3,1.1c0.1,0.3,0.2,0.5,0.2,0.8
C157.5,43.4,157.6,43.5,157.7,43.6L157.7,43.6z"/>
<path class="st4" d="M166.3,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0s0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
c-0.3,0.1-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3s-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M179.5,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C179.5,39.8,179.5,40.4,179.5,41z M177.3,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S177.3,41.7,177.3,41.1z"/>
<path class="st4" d="M190.2,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6s-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.1,39.6,190.2,40.3,190.2,41.1z M187.9,41.1c0-0.6,0-1.2-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C187.9,42.2,187.9,41.7,187.9,41.1z"/>
<path class="st4" d="M199.3,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C199.2,42,199.3,42.5,199.3,43.1z"/>
<path class="st4" d="M203.5,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V32.3
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L203.5,39.9L203.5,39.9z"/>
<path class="st4" d="M217.1,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C217.4,45.7,217.2,45.4,217.1,44.9L217.1,44.9z M216.9,41.6h-2.4
c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
c0.3-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M182.2,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C182.1,53.3,182.2,53.6,182.2,53.9z M182.1,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M191.9,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C191.8,62.3,191.9,62.8,191.9,63.4z"/>
<path class="st4" d="M196.4,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C196.3,53.3,196.4,53.6,196.4,53.9z M196.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M201.5,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M201.6,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C201.5,53.3,201.6,53.6,201.6,53.9z"/>
<path class="st4" d="M210.2,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C210.6,66,210.4,65.7,210.2,65.2L210.2,65.2z M210.1,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="230.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M157.7,43.6c0,0,0-0.2,0.1-0.4c0.1-0.2,0.2-0.5,0.3-0.8c0.1-0.3,0.2-0.7,0.4-1.1l1.6-4.7
c0-0.1,0.1-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.3-0.1h1.5c0.3,0,0.3,0.1,0.2,0.4l-3.4,9c-0.1,0.1-0.1,0.3-0.2,0.3
c-0.1,0.1-0.2,0.1-0.4,0.1H157c-0.2,0-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.2-0.2-0.3l-3.4-9c0-0.1,0-0.2,0-0.3s0.1-0.1,0.2-0.1h1.6
c0.1,0,0.3,0,0.3,0.1c0.1,0,0.1,0.1,0.2,0.3l1.6,4.7c0.1,0.4,0.2,0.8,0.3,1.1c0.1,0.3,0.2,0.5,0.2,0.8
C157.5,43.4,157.6,43.5,157.7,43.6L157.7,43.6z"/>
<path class="st4" d="M166.3,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0s0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
c-0.3,0.1-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3s-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M179.5,41c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C179.5,39.8,179.5,40.4,179.5,41z M177.3,41.1c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S177.3,41.7,177.3,41.1z"/>
<path class="st4" d="M190.2,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6s-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1s-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.1,39.6,190.2,40.3,190.2,41.1z M187.9,41.1c0-0.6,0-1.2-0.1-1.5c-0.1-0.4-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C187.9,42.2,187.9,41.7,187.9,41.1z"/>
<path class="st4" d="M199.3,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C199.2,42,199.3,42.5,199.3,43.1z"/>
<path class="st4" d="M203.5,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V32.3
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L203.5,39.9L203.5,39.9z"/>
<path class="st4" d="M217.1,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C217.4,45.7,217.2,45.4,217.1,44.9L217.1,44.9z M216.9,41.6h-2.4
c-0.5,0-0.9,0.1-1.2,0.4c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1
c0.3-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M182.2,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C182.1,53.3,182.2,53.6,182.2,53.9z M182.1,66c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V66z"/>
<path class="st4" d="M191.9,63.4c0,0.6-0.1,1.1-0.3,1.5s-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
s0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1s0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3s0.4-0.5,0.4-0.9
c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2c-0.5-0.1-1-0.2-1.4-0.3
c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3c0.7-0.5,1.6-0.8,2.7-0.8
c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1s0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3
c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-1-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3c-0.2,0.2-0.3,0.5-0.3,0.9
c0,0.4,0.1,0.6,0.4,0.8s0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.8,0.9
C191.8,62.3,191.9,62.8,191.9,63.4z"/>
<path class="st4" d="M196.4,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C196.3,53.3,196.4,53.6,196.4,53.9z M196.2,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M201.5,66.6c0,0.7-0.1,1.2-0.2,1.7c-0.1,0.5-0.4,0.9-0.8,1.3c-0.4,0.3-0.8,0.6-1.4,0.8
c-0.6,0.2-1.3,0.2-2.1,0.2c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.3l-0.1-0.9c0-0.2,0-0.3,0-0.3c0-0.1,0.1-0.1,0.3-0.1
c0.5-0.1,0.9-0.2,1.2-0.3s0.6-0.2,0.8-0.4c0.2-0.1,0.3-0.3,0.4-0.6c0.1-0.2,0.1-0.5,0.1-0.9v-9.7c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4V66.6z M201.6,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3s-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C201.5,53.3,201.6,53.6,201.6,53.9z"/>
<path class="st4" d="M210.2,65.2c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C210.6,66,210.4,65.7,210.2,65.2L210.2,65.2z M210.1,61.9h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V61.9z"/>
</g>
<rect x="230.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,254 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M194.7,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H194.7z M196.7,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,37.9,197.1,37.8,196.7,37.8z"/>
<path class="st4" d="M205.4,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.3,33,205.4,33.3,205.4,33.6z M205.3,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M215.1,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C215,42,215.1,42.5,215.1,43.1z"/>
<path class="st4" d="M219.2,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V32.3
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L219.2,39.9L219.2,39.9z"/>
<path class="st4" d="M232.9,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C233.2,45.7,233,45.4,232.9,44.9L232.9,44.9z M232.7,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M193.9,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1H186c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3V66
c0,0.3-0.1,0.4-0.4,0.4H180c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4V66C194,66.1,194,66.2,193.9,66.3z"/>
<path class="st4" d="M198.7,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.7,53.3,198.7,53.6,198.7,53.9z M198.6,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M208.4,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C208.3,62.3,208.4,62.8,208.4,63.4z"/>
<path class="st4" d="M217.7,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C217.6,62.3,217.7,62.8,217.7,63.4z"/>
<path class="st4" d="M222.1,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C222,53.3,222.1,53.6,222.1,53.9z M222,66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M233,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C232.9,60.1,233,60.7,233,61.3z M230.8,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2
c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4
c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S230.8,62,230.8,61.4z"/>
<path class="st4" d="M243.4,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C243.5,66.1,243.5,66.2,243.4,66.3z"/>
<path class="st4" d="M247.6,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S253.4,62,253,62H247.6z M249.6,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C250.4,58.2,250.1,58.1,249.6,58.1z"/>
<path class="st4" d="M264.2,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C264.3,66.1,264.2,66.2,264.2,66.3z"/>
</g>
<rect x="273.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,254 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 290 72"
style="enable-background:new 0 0 290 72;" xml:space="preserve">
<style type="text/css">
.st0{fill:#BBBDBF;}
.st1{fill:#034DA1;}
.st2{fill:#FFF100;}
.st3{enable-background:new ;}
.st4{fill:#626366;}
</style>
<g>
<g id="Page-1" sketch:type="MSPage">
<g id="Version-2-menu" transform="translate(-131.000000, -108.000000)" sketch:type="MSArtboardGroup">
<g id="Site-header" transform="translate(131.000000, 108.000000)" sketch:type="MSLayerGroup">
<g id="logo-copy">
<g id="Group-20">
<g id="Group-18-Copy" sketch:type="MSShapeGroup">
<path id="Fill-40" class="st0" d="M0,24.5c0,0,39.8-5.2,41-5.4c1.7-0.3,3.3-0.6,4.7-1c3.2-0.9,6.2-2.2,8.8-4
c2.5-1.7,4.9-4.2,7.2-6.9c1.5-1.7,3-4,4.5-6.2V0c-1.7,2.6-3.4,4.8-5.1,6.7c-2.3,2.6-4.7,4.7-7.2,6.3s-5.4,2.9-8.5,3.7
c-1.4,0.4-2.9,0.6-4.6,0.9c-1.1,0.2-2.2,0.3-3.3,0.4C37,18,0,21.9,0,21.9V24.5z"/>
<path id="Fill-41" class="st0" d="M53.4,17.8c-2.5,1.4-5.4,2.5-8.6,3.1c-1.4,0.3-2.8,0.5-4.5,0.7c-1,0.1-2,0.2-3,0.3
c-0.5,0-1.1,0.1-1.6,0.1C23.5,23.2,11.4,24.3,0,25.4V28c11.4-1.4,23.7-2.9,35.9-4.3c0.5-0.1,1.1-0.1,1.6-0.2
c1-0.1,2-0.2,3-0.4c1.7-0.2,3.3-0.5,4.6-0.8c3.3-0.7,6.3-1.9,8.9-3.5c2.6-1.6,4.8-3.7,7.3-6.4c1.5-1.7,3.2-4,4.8-6.2v-1
c-1.9,2.5-3.6,4.7-5.4,6.5C58.3,14.4,55.9,16.4,53.4,17.8"/>
<path id="Fill-42" class="st0" d="M60.4,17.2c-2.4,2.2-5,4-7.5,5.3c-2.5,1.2-5.3,2.1-8.6,2.6c-1.4,0.2-2.8,0.4-4.5,0.6
L0,28.9v2.6l35.3-3.8l4.6-0.5c1.7-0.2,3.2-0.4,4.6-0.7c3.4-0.6,6.3-1.6,8.9-2.9c2.7-1.4,5.3-3.6,7.8-6
c1.7-1.6,3.2-3.7,4.9-5.8v-0.9C64.1,13.4,62.3,15.4,60.4,17.2"/>
<path id="Fill-43" class="st0" d="M50.8,30.6c-2.3,1.3-4,2.1-7.3,2.4c-2,0.2-4,0.3-6,0.4c-1,0-1.9,0.1-2.9,0.2
c-6,0.3-11.9,0.7-17.9,1.1L0,35.9v2.6l16.8-1.6c5.4-0.5,11.7-1.1,17.9-1.6l4.5-0.3c1.7-0.1,3.2-0.3,4.5-0.5
c3.4-0.4,6.3-1.1,8.9-2.1c2.8-1,5.4-2.7,8-4.6c2.4-1.7,5.6-5.1,5.6-5.2v-0.9c-2.1,2.1-3.4,3.3-5.7,4.8
C57.6,28.5,52.9,29.5,50.8,30.6"/>
<path id="Fill-44" class="st0" d="M51.6,35.6c-2.5,0.7-5.3,1.2-8.6,1.5c-1.3,0.1-2.8,0.2-4.4,0.3l-4.4,0.2
c-11,0.5-22,1.1-34.1,1.7v2.6C11.7,41,23,40.1,34.4,39.3l4.4-0.3c1.7-0.1,3.1-0.2,4.5-0.4c3.4-0.4,6.3-1,8.8-1.8
c2.8-0.9,5.6-2.2,8.2-3.9c1.9-1.2,3.9-2.7,5.9-4.5l0,0c-2.2,1.9-4.3,2.3-6.4,3.6C57.1,33.6,54.4,34.8,51.6,35.6"/>
<path id="Fill-45" class="st0" d="M51.2,39.9c-2.5,0.6-5.3,1-8.6,1.2c-1.3,0.1-2.7,0.2-4.4,0.2l-4.4,0.2
C22.7,41.9,11.5,42.4,0,42.9v2.6c11.4-0.8,22.6-1.5,33.9-2.3l4.4-0.3c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.2-0.8,8.8-1.5
c2.9-0.8,5.7-1.9,8.4-3.3c2.1-1.1,4.1-2.4,6.2-4v-1.1c-2.3,1.7-4.5,3-6.7,4.1C56.8,38.2,54,39.2,51.2,39.9"/>
<path id="Fill-46" class="st0" d="M50.8,44.1c-2.5,0.5-5.3,0.8-8.6,0.9c-1.3,0.1-2.6,0.1-4.3,0.2L0,46.2v2.6L33.6,47l4.4-0.2
c1.7-0.1,3.1-0.2,4.4-0.3c3.4-0.3,6.1-0.6,8.7-1.2c2.9-0.6,5.8-1.5,8.5-2.7c2.2-0.9,4.3-2,6.6-3.4v-1c-2.4,1.4-4.7,2.5-7,3.4
C56.5,42.8,53.7,43.6,50.8,44.1"/>
<path id="Fill-47" class="st0" d="M50.5,48.3c-4.7,0.6-9.4,0.7-14.1,0.8c-1.1,0-2.1,0-3.2,0.1L0,49.8v2.6L33.3,51
c1.1,0,2.1-0.1,3.2-0.1c4.7-0.2,9.5-0.4,14.2-1.1c3-0.5,5.9-1.2,8.5-2.1c2.2-0.7,4.5-1.7,6.8-2.9v-1
c-2.4,1.1-4.9,2.1-7.2,2.8C56.3,47.3,53.5,48,50.5,48.3"/>
<path id="Fill-48" class="st0" d="M50.3,52.6C45.9,53,41.5,53,37.1,53c-1.3,0-2.7,0-4,0c-11,0-22,0.1-33.1,0.2v2.6
c10.6-0.4,21.9-0.7,33.2-1.1c1.3,0,2.7-0.1,4-0.1c4.3-0.1,8.8-0.2,13.2-0.7c3.1-0.3,5.9-0.8,8.6-1.5c2.3-0.6,4.7-1.4,7.2-2.3
v-0.9c-2.5,0.9-5,1.6-7.4,2.2C56.1,52,53.3,52.4,50.3,52.6"/>
<path id="Fill-49" class="st0" d="M50.1,56.8c-1.8,0.1-3.8,0.1-6,0.1c-0.8,0-1.7,0-2.5,0L33,56.8c-5.9,0-11.7-0.1-17.2-0.1
L0,56.8v2.6L15.9,59c5.5-0.1,11.3-0.3,17.1-0.4l8.6-0.1c2.4,0,5.5-0.1,8.6-0.3s5.9-0.5,8.6-0.9c2.4-0.4,4.9-0.9,7.4-1.5v-0.9
c-2.5,0.6-5.1,1.1-7.5,1.4C55.9,56.5,53.2,56.7,50.1,56.8"/>
<path id="Fill-50" class="st0" d="M41.5,60.9l-8.6-0.1C22,60.6,11.1,60.4,0,60.2v2.6c10.6-0.1,21.8-0.2,32.9-0.3l8.6-0.1
c2.9,0,5.7-0.1,8.6-0.2c5.9-0.2,11.1-0.6,16.1-1.3V60c-4.9,0.5-10.2,0.8-16.1,0.9C47.2,60.9,44.3,60.9,41.5,60.9"/>
<path id="Fill-51" class="st0" d="M66.1,65.5L0,63.8v2.6h66.1V65.5z"/>
<path id="Fill-52" class="st0" d="M60.2,22c-2.5,2-4.5,3.5-7.5,4.7c-2.7,1.1-5.6,1.5-8.8,2c-2.1,0.3-4.3,0.7-6.4,0.9
c-0.9,0.1-1.7,0.1-2.6,0.2L0,32.3v2.6l34.9-3.4l4.5-0.4c1.7-0.2,3.2-0.3,4.6-0.6c3.4-0.5,6.3-1.4,8.9-2.6
c2.7-1.2,5.5-3.2,8-5.3c1.7-1.5,3.4-3.3,5.2-5.3v-0.9C63.9,18.6,62.1,20.5,60.2,22"/>
<path id="Fill-53" class="st0" d="M94.2,0c0,0,11.9,18.9,14.1,22.4s4.7,6.2,13.5,8.1s12.6,2.7,12.6,2.7v0.7
c0,0-5.6-1.2-12.8-2.8c-7.2-1.6-10.1-2.1-13.4-6.7c-2.7-3.8-14-19.9-14-19.9L94.2,0z"/>
<path id="Fill-54" class="st0" d="M94.2,21.6c0,0,10.8,11.3,14,14.6c3.3,3.5,7.6,4.7,13.5,5.8c5.6,1,12.7,2.2,12.7,2.2v0.6
c0,0-6.7-1.1-12.7-2.1c-5.9-1-10.1-1.6-13.5-4.7c-3-2.8-13.9-13-13.9-13L94.2,21.6L94.2,21.6z"/>
<path id="Fill-55" class="st0" d="M94.2,26.8c0,0,10.3,9.6,14,12.8c3.4,3,6.1,3.9,13.5,5.3c7.4,1.3,12.7,2.1,12.7,2.1v0.7
c0,0-6.7-1.1-12.7-2.1s-9.9-1.3-13.5-4.3c-4.2-3.4-14-11.4-14-11.4V26.8z"/>
<path id="Fill-56" class="st0" d="M94.2,32.2c0,0,11.8,9.3,14,11c2.2,1.6,5.1,3.5,13.5,4.8c8.4,1.2,12.7,1.8,12.7,1.8v0.7
c0,0-7.6-1.1-12.7-1.7c-5.1-0.6-9-0.9-13.5-3.9c-4.4-2.9-14-9.7-14-9.7V32.2z"/>
<path id="Fill-57" class="st0" d="M94.2,37.4c0,0,11.8,7.9,14,9.1c2.2,1.2,4.9,3.3,13.5,4.4c8.6,1.1,12.7,1.6,12.7,1.6v0.7
c0,0-7.1-0.8-12.7-1.4c-5.6-0.6-9.4-1.4-13.5-3.7s-14-8-14-8V37.4z"/>
<path id="Fill-58" class="st0" d="M94.2,42.7c0,0,10.4,5.7,14,7.4c3.9,2,7.3,2.9,13.5,3.7c6.1,0.7,12.7,1.4,12.7,1.4v0.6
c0,0-6.1-0.7-12.7-1.3c-6.5-0.6-8.8-0.9-13.5-3c-4.2-1.9-14-6.4-14-6.4V42.7z"/>
<path id="Fill-59" class="st0" d="M94.2,48c0,0,8.2,3.5,14,5.8c5.7,2.3,10,2.5,13.5,2.8c1.5,0.2,12.6,1.3,12.6,1.3v0.6
c0,0-6.6-0.5-12.7-1.1c-6-0.5-8.6-0.8-13.5-2.4c-4.9-1.6-14-4.8-14-4.8L94.2,48L94.2,48z"/>
<path id="Fill-60" class="st0" d="M94.2,53.4c0,0,8.3,2.6,14,4.1s10.9,2.1,13.5,2.3s12.7,1,12.7,1v0.6c0,0-5.7-0.4-12.7-0.9
c-5.7-0.4-10.2-0.8-13.5-1.6c-3.7-0.8-14-3.3-14-3.3V53.4z"/>
<path id="Fill-61" class="st0" d="M94.2,58.7c0,0,6.8,1.2,14,2.4c5.4,0.9,12.7,1.5,13.5,1.5s12.7,0.9,12.7,0.9v0.6
c0,0-7.6-0.4-12.7-0.7c-5.3-0.3-10.5-0.6-13.5-0.9c-6.7-0.7-14-1.6-14-1.6V58.7z"/>
<path id="Fill-62" class="st0" d="M94.2,64.3c0,0,10.7,0.4,14,0.5s26.2,1,26.2,1v0.6H94.2V64.3z"/>
<path id="Fill-63" class="st0" d="M121.7,33.4c-9.7-2.1-11.9-5.6-13.5-7.8S94.3,5.4,94.3,5.4v4.1c0.5,0.6,11,14.4,14,18.2
c3.3,4.3,8.5,5.3,13.5,6.3c5,1.1,12.7,2.6,12.7,2.6V36C134.4,36,124.2,34,121.7,33.4"/>
<path id="Fill-64" class="st0" d="M121.7,36.3c-8-1.6-11.2-4.1-13.5-7.1c-2.3-3.1-13.9-18.3-13.9-18.3v3.8
c0.5,0.6,11.1,13.1,13.9,16.4c3.3,3.8,7.9,4.8,13.5,5.8s12.7,2.4,12.7,2.4v-0.6C134.4,38.7,126.3,37.2,121.7,36.3"/>
<path id="Fill-65" class="st0" d="M121.7,39.2c-8.3-1.6-10-2.9-13.5-6.8c-2.2-2.4-13.5-15.7-14-16.3v3.5
c0,0,10.5,11.2,13.9,14.6c4.4,4.4,8.6,4.7,13.5,5.6c4.9,0.9,12.7,2.3,12.7,2.3v-0.6C134.4,41.5,125,39.9,121.7,39.2"/>
<path id="Fill-66" class="st1" d="M85.4,27.6H27.5v38.7h57.9V27.6z"/>
<path id="Fill-67" class="st2" d="M57.1,33.1h2l-1.6,1.3l0.6,2l-1.6-1.2l-1.6,1.2l0.6-2l-1.6-1.3h2l0.6-2L57.1,33.1z"/>
<path id="Fill-68" class="st2" d="M57.1,58.9h2l-1.6,1.2l0.6,1.9l-1.6-1.2L54.9,62l0.6-1.9l-1.6-1.2h2l0.6-1.9L57.1,58.9z"/>
<path id="Fill-69" class="st2" d="M63.5,57.2h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L63.5,57.2z"
/>
<path id="Fill-70" class="st2" d="M63.5,34.8h2L63.9,36l0.6,1.9l-1.6-1.2L61.3,38l0.7-2l-1.6-1.2h2l0.6-1.9L63.5,34.8z"/>
<path id="Fill-71" class="st2" d="M68.3,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,39.6z"
/>
<path id="Fill-72" class="st2" d="M68.3,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L68.3,52.6z"
/>
<path id="Fill-73" class="st2" d="M70.1,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9L66.8,46h2l0.6-1.9L70.1,46z"/>
<path id="Fill-74" class="st2" d="M50.5,34.8h2L50.9,36l0.6,1.9L50,36.8L48.3,38l0.6-1.9l-1.6-1.2h2L50,33L50.5,34.8z"/>
<path id="Fill-75" class="st2" d="M45.9,39.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,39.6z"
/>
<path id="Fill-76" class="st2" d="M44.2,46h2l-1.6,1.2l0.6,1.9l-1.6-1.2L42,49.1l0.6-1.9L41,46h2l0.6-1.9L44.2,46z"/>
<path id="Fill-77" class="st2" d="M45.9,52.6h2l-1.6,1.2l0.6,1.9l-1.6-1.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L45.9,52.6z"
/>
<path id="Fill-78" class="st2" d="M50.6,57.3h2L51,58.5l0.6,1.9L50,59.2l-1.6,1.2l0.6-1.9l-1.6-1.2h2l0.6-1.9L50.6,57.3z"/>
</g>
</g>
</g>
</g>
</g>
</g>
<g class="st3">
<path class="st4" d="M143.4,33.1c0-0.3,0.1-0.4,0.4-0.4h7.4c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-5.5v3.5h4.9
c0.3,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-4.9v4h5.6c0.2,0,0.4,0.1,0.4,0.4v1.2c0,0.2-0.1,0.4-0.4,0.4h-7.5
c-0.3,0-0.4-0.1-0.4-0.4V33.1z"/>
<path class="st4" d="M161.8,46.1h-1.4c-0.1,0-0.2,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3V45l0,0c-0.2,0.1-0.4,0.3-0.7,0.4
s-0.5,0.3-0.8,0.4s-0.6,0.2-0.9,0.3s-0.6,0.1-0.9,0.1c-0.7,0-1.2-0.1-1.6-0.3c-0.4-0.2-0.7-0.4-0.9-0.8c-0.2-0.3-0.3-0.7-0.4-1.2
c-0.1-0.5-0.1-0.9-0.1-1.5v-5.9c0-0.3,0.1-0.4,0.4-0.4h1.5c0.2,0,0.4,0.1,0.4,0.4v5.6c0,0.3,0,0.6,0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.2,0.3,0.3,0.4,0.4s0.4,0.1,0.7,0.1c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.2,0.7-0.3s0.4-0.2,0.5-0.3
v-6.7c0-0.1,0-0.2,0.1-0.3s0.2-0.1,0.3-0.1h1.4c0.3,0,0.4,0.1,0.4,0.4v9.1C162.2,45.9,162.1,46.1,161.8,46.1z"/>
<path class="st4" d="M166.9,45.7c0,0.3-0.1,0.4-0.4,0.4h-1.5c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4
c0.3,0,0.4,0.1,0.4,0.4v0.9l0,0c0.1-0.1,0.3-0.3,0.6-0.4c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.2,0.8-0.4c0.3-0.1,0.5-0.2,0.8-0.2
c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0.1,0.2,0.3l0.1,1.3c0,0.1,0,0.3,0,0.3c0,0.1-0.1,0.1-0.4,0.2c-0.3,0.1-0.6,0.1-0.9,0.2
s-0.6,0.2-0.9,0.2c-0.3,0.1-0.6,0.2-0.8,0.3c-0.3,0.1-0.5,0.2-0.6,0.2V45.7z"/>
<path class="st4" d="M180.2,41c0,0.6,0,1.2-0.1,1.8s-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5c-0.6-0.3-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6
c0.1-0.6,0.3-1.1,0.6-1.6s0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C180.1,39.8,180.2,40.4,180.2,41z M177.9,41.1c0-0.5,0-1-0.1-1.4c-0.1-0.4-0.2-0.7-0.3-1
c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1
c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1s0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2
c0.3-0.1,0.5-0.3,0.7-0.6c0.2-0.3,0.3-0.6,0.3-1C177.9,42.1,177.9,41.7,177.9,41.1z"/>
<path class="st4" d="M190.8,41.1c0,0.8-0.1,1.5-0.2,2.2c-0.1,0.6-0.3,1.2-0.6,1.6c-0.3,0.4-0.7,0.8-1.2,1c-0.5,0.2-1.2,0.3-2,0.3
c-0.3,0-0.7,0-1.2-0.1c-0.4-0.1-0.9-0.2-1.4-0.3l0,0v3.5c0,0.1,0,0.2-0.1,0.3s-0.2,0.1-0.3,0.1h-1.4c-0.2,0-0.3,0-0.3-0.1
c0-0.1-0.1-0.2-0.1-0.3V36.6c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3v0.6l0.1,0c0.2-0.1,0.4-0.2,0.6-0.4
c0.2-0.1,0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.4c0.4,0.2,0.8,0.6,1,1
c0.2,0.4,0.4,1,0.5,1.6C190.8,39.6,190.8,40.3,190.8,41.1z M188.5,41.1c0-0.6,0-1.2-0.1-1.5s-0.2-0.7-0.3-0.9
c-0.1-0.2-0.3-0.4-0.5-0.4c-0.2-0.1-0.4-0.1-0.7-0.1c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.1-0.8,0.2c-0.2,0.1-0.5,0.2-0.7,0.3
c-0.2,0.1-0.4,0.2-0.6,0.3v5c0.5,0.1,0.9,0.2,1.2,0.3s0.7,0.1,1.1,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.5
c0.2-0.3,0.3-0.6,0.3-1C188.5,42.2,188.5,41.7,188.5,41.1z"/>
<path class="st4" d="M194.7,41.7c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9s-0.4,0.3-0.8,0.3H194.7z M196.7,37.8c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C197.4,37.9,197.1,37.8,196.7,37.8z"/>
<path class="st4" d="M205.4,33.6c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C205.3,33,205.4,33.3,205.4,33.6z M205.3,45.7c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3
V45.7z"/>
<path class="st4" d="M215.1,43.1c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C215,42,215.1,42.5,215.1,43.1z"/>
<path class="st4" d="M219.2,39.9l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V32.3
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L219.2,39.9L219.2,39.9z"/>
<path class="st4" d="M232.9,44.9c-0.5,0.4-1.1,0.7-1.7,0.9c-0.6,0.2-1.3,0.4-2,0.4c-0.5,0-1-0.1-1.3-0.2c-0.4-0.1-0.6-0.3-0.8-0.6
c-0.2-0.2-0.4-0.5-0.4-0.9c-0.1-0.3-0.1-0.7-0.1-1.2c0-1.2,0.3-2,0.9-2.6c0.6-0.5,1.6-0.8,2.8-0.8h2.6v-0.5c0-0.3,0-0.5-0.1-0.8
c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.3-0.1-0.6-0.1-1-0.1c-0.2,0-0.4,0-0.6,0c-0.2,0-0.5,0-0.7,0
c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.5,0-0.7,0.1c-0.2,0-0.3,0-0.4,0c-0.1,0-0.1-0.1-0.2-0.3l-0.2-0.7c0-0.1,0-0.2,0-0.3
c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.1,0.5-0.1,0.8-0.2c0.3-0.1,0.6-0.1,0.9-0.1s0.6-0.1,0.9-0.1s0.6,0,0.8,0c0.9,0,1.6,0.1,2.1,0.3
c0.5,0.2,0.9,0.4,1.2,0.7s0.4,0.7,0.5,1.2c0.1,0.5,0.1,1,0.1,1.5v3.9c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.1,0.3s0.1,0.1,0.2,0.1
c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2v0.8c0,0.2-0.2,0.4-0.5,0.4c-0.2,0-0.3,0-0.5,0.1
c-0.2,0-0.3,0-0.5,0c-0.5,0-0.8-0.1-1.1-0.3C233.2,45.7,233,45.4,232.9,44.9L232.9,44.9z M232.7,41.6h-2.4c-0.5,0-0.9,0.1-1.2,0.4
c-0.3,0.2-0.4,0.7-0.4,1.3c0,0.4,0.1,0.7,0.3,0.9s0.5,0.3,1,0.3c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.1,0.8-0.2
c0.3-0.1,0.5-0.2,0.7-0.3c0.2-0.1,0.5-0.2,0.6-0.3V41.6z"/>
</g>
<g class="st3">
<path class="st4" d="M145.4,60.2l1.5-1.6l1.7-1.7c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1h1.6c0.2,0,0.3,0,0.3,0.1
c0,0.1,0,0.2-0.1,0.3l-3.2,3.3l3.6,5.7c0.1,0.1,0.1,0.2,0,0.3s-0.1,0.1-0.3,0.1h-1.5c-0.2,0-0.4,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.2-0.3l-2.6-4.1l-1.1,1.2v3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4V52.6
c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.1,0.2,0.1,0.3L145.4,60.2L145.4,60.2z"/>
<path class="st4" d="M161.1,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3
c-0.6,0.3-1.4,0.5-2.4,0.5c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8
c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2
c0.3,0.5,0.5,1,0.6,1.6C161,60.1,161.1,60.7,161.1,61.3z M158.9,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6
c-0.3-0.1-0.6-0.2-1.1-0.2c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4
c0,0.5,0,1,0.1,1.4c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S158.9,62,158.9,61.4z"/>
<path class="st4" d="M177.4,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3
V66c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4s0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3s0.9,0.6,1.2,1.1
c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.4,1.2
c0.1,0.5,0.1,0.9,0.1,1.4V66C177.4,66.1,177.4,66.2,177.4,66.3z"/>
<path class="st4" d="M193.9,66.3c0,0.1-0.1,0.1-0.3,0.1h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-5.7c0-0.7-0.1-1.3-0.3-1.5
c-0.2-0.3-0.6-0.4-1.1-0.4c-0.2,0-0.4,0-0.6,0.1c-0.2,0.1-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.6,0.3
c0,0.1,0,0.2,0,0.4s0,0.4,0,0.6V66c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1H186c-0.2,0-0.3-0.1-0.3-0.4v-5.8
c0-0.6-0.1-1.1-0.3-1.4c-0.2-0.3-0.5-0.4-1-0.4c-0.2,0-0.4,0-0.6,0.1s-0.4,0.1-0.7,0.2s-0.5,0.2-0.7,0.3s-0.4,0.2-0.6,0.3V66
c0,0.3-0.1,0.4-0.4,0.4H180c-0.2,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6l0,0
c0.2-0.1,0.4-0.3,0.6-0.4s0.5-0.3,0.7-0.4c0.3-0.1,0.5-0.2,0.8-0.3c0.3-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.9,0.6,1.2,1.1c0.5-0.4,1.1-0.7,1.7-1c0.6-0.3,1.2-0.4,1.9-0.4c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.5,0.9,0.8
c0.2,0.3,0.3,0.7,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.4V66C194,66.1,194,66.2,193.9,66.3z"/>
<path class="st4" d="M198.7,53.9c0,0.2,0,0.3,0,0.5s-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C198.7,53.3,198.7,53.6,198.7,53.9z M198.6,66c0,0.1,0,0.2-0.1,0.3s-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1s0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M208.4,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C208.3,62.3,208.4,62.8,208.4,63.4z"/>
<path class="st4" d="M217.7,63.4c0,0.6-0.1,1.1-0.3,1.5c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.4-1.3,0.5s-1,0.2-1.5,0.2
c-0.5,0-1.1,0-1.6-0.1c-0.6-0.1-1.1-0.2-1.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2,0-0.4l0.1-0.7c0-0.2,0.1-0.3,0.2-0.3
c0.1,0,0.2,0,0.4,0c0.2,0,0.5,0.1,0.7,0.1c0.3,0,0.5,0,0.8,0.1c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0,0.6,0c0.6,0,1.1-0.1,1.4-0.3
c0.3-0.2,0.4-0.5,0.4-0.9c0-0.2,0-0.4-0.1-0.6s-0.1-0.3-0.3-0.4s-0.3-0.2-0.5-0.2c-0.2-0.1-0.5-0.1-0.8-0.2
c-0.5-0.1-1-0.2-1.4-0.3c-0.4-0.1-0.8-0.3-1.2-0.5c-0.3-0.2-0.6-0.5-0.8-0.8c-0.2-0.3-0.3-0.8-0.3-1.3c0-1,0.3-1.7,1-2.3
c0.7-0.5,1.6-0.8,2.7-0.8c0.2,0,0.4,0,0.7,0s0.5,0,0.8,0.1c0.3,0,0.5,0.1,0.8,0.1s0.5,0.1,0.7,0.2c0.3,0.1,0.5,0.3,0.4,0.6
l-0.2,0.7c0,0.1-0.1,0.2-0.2,0.3c-0.1,0-0.2,0-0.4,0c-0.4-0.1-0.9-0.1-1.4-0.2c-0.5,0-0.9-0.1-1.3-0.1c-0.6,0-1.1,0.1-1.3,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.4,0.1,0.6,0.4,0.8c0.3,0.1,0.7,0.2,1.3,0.3c0.5,0.1,0.9,0.2,1.4,0.3s0.8,0.3,1.2,0.5
c0.3,0.2,0.6,0.5,0.8,0.9C217.6,62.3,217.7,62.8,217.7,63.4z"/>
<path class="st4" d="M222.1,53.9c0,0.2,0,0.3,0,0.5c0,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.3,0-0.5,0-0.6-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1,0-0.3,0-0.4c0-0.3,0.1-0.6,0.2-0.8
c0.2-0.2,0.5-0.3,1-0.3c0.5,0,0.8,0.1,1,0.3C222,53.3,222.1,53.6,222.1,53.9z M222,66c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.3,0.1
h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.1,0,0.2,0,0.3,0.1c0,0.1,0.1,0.2,0.1,0.3V66z"/>
<path class="st4" d="M233,61.3c0,0.6,0,1.2-0.1,1.8c-0.1,0.6-0.3,1.2-0.6,1.7c-0.3,0.5-0.7,0.9-1.3,1.3c-0.6,0.3-1.4,0.5-2.4,0.5
c-1,0-1.8-0.2-2.4-0.5s-1-0.7-1.3-1.3c-0.3-0.5-0.5-1.1-0.5-1.7c-0.1-0.6-0.1-1.2-0.1-1.8c0-0.5,0-1,0.1-1.6s0.3-1.1,0.6-1.6
c0.3-0.5,0.7-0.9,1.3-1.3c0.6-0.3,1.3-0.5,2.3-0.5c1,0,1.8,0.1,2.3,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1,0.6,1.6
C232.9,60.1,233,60.7,233,61.3z M230.8,61.4c0-0.5,0-1-0.1-1.4s-0.2-0.7-0.3-1c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.2-1.1-0.2
c-0.4,0-0.8,0.1-1,0.2s-0.5,0.3-0.6,0.6c-0.2,0.3-0.3,0.6-0.3,1c-0.1,0.4-0.1,0.9-0.1,1.4c0,0.5,0,1,0.1,1.4
c0.1,0.4,0.2,0.7,0.3,1c0.1,0.3,0.4,0.5,0.6,0.6s0.6,0.2,1,0.2c0.5,0,0.8-0.1,1.1-0.2c0.3-0.1,0.5-0.3,0.7-0.6
c0.2-0.3,0.3-0.6,0.3-1S230.8,62,230.8,61.4z"/>
<path class="st4" d="M243.4,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C243.5,66.1,243.5,66.2,243.4,66.3z"/>
<path class="st4" d="M247.6,62c0,0.5,0.1,0.9,0.2,1.3c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.3,0.1,0.6,0.1,1.1,0.1
c0.4,0,0.8,0,1.3-0.1c0.5-0.1,0.9-0.1,1.3-0.1c0.2,0,0.3,0,0.4,0c0.1,0,0.1,0.1,0.2,0.3l0.1,0.7c0,0.1,0,0.3,0,0.4
c0,0.1-0.1,0.2-0.3,0.3c-0.2,0.1-0.4,0.2-0.7,0.2s-0.5,0.1-0.8,0.2s-0.6,0.1-0.9,0.1c-0.3,0-0.6,0-0.8,0c-1,0-1.7-0.1-2.3-0.4
c-0.6-0.3-1-0.7-1.3-1.1c-0.3-0.5-0.5-1-0.6-1.6c-0.1-0.6-0.2-1.2-0.2-1.9c0-0.5,0-1,0.1-1.6c0.1-0.6,0.3-1.2,0.6-1.7
c0.3-0.5,0.7-1,1.3-1.3c0.6-0.4,1.3-0.5,2.3-0.5c0.9,0,1.6,0.1,2.2,0.4c0.6,0.3,1,0.6,1.3,1c0.3,0.4,0.5,0.9,0.6,1.4
s0.2,1.1,0.2,1.6c0,0.4,0,0.7-0.2,0.9S253.4,62,253,62H247.6z M249.6,58.1c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.4,0.3-0.6,0.5
c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.1,0.6-0.1,1h4c0-0.3,0-0.6-0.1-0.9s-0.2-0.5-0.3-0.8s-0.3-0.4-0.6-0.5
C250.4,58.2,250.1,58.1,249.6,58.1z"/>
<path class="st4" d="M264.2,66.3c-0.1,0.1-0.2,0.1-0.3,0.1h-1.5c-0.3,0-0.4-0.1-0.4-0.4l0-5.6c0-0.6-0.1-1.1-0.3-1.4
c-0.2-0.4-0.6-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1c-0.3,0.1-0.5,0.2-0.8,0.3s-0.5,0.2-0.7,0.3c-0.2,0.1-0.4,0.2-0.5,0.3V66
c0,0.3-0.1,0.4-0.4,0.4h-1.4c-0.3,0-0.4-0.1-0.4-0.4v-9.1c0-0.3,0.1-0.4,0.4-0.4h1.4c0.3,0,0.4,0.1,0.4,0.4v0.6c0,0,0,0,0,0
s0,0,0,0c0.2-0.1,0.4-0.3,0.7-0.4s0.5-0.3,0.8-0.4c0.3-0.1,0.6-0.2,0.9-0.3s0.6-0.1,0.9-0.1c0.7,0,1.2,0.1,1.6,0.3
c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.8,0.4,1.2c0.1,0.5,0.1,0.9,0.1,1.5V66C264.3,66.1,264.2,66.2,264.2,66.3z"/>
</g>
<rect x="273.4" y="28" class="st1" width="3.3" height="38.7"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 35 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>TODO write content</div>
</body>
</html>

220
public_html/index.html Normal file
View File

@ -0,0 +1,220 @@
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<title>Registry</title>
<meta content="width=device-width,initial-scale=1" name="viewport" />
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<script>
var cl = document.querySelector('html').classList;
cl.remove('no-js');
cl.add('has-js');
</script>
<link
rel="stylesheet"
href="/registry/js-ecl-v2/package/dist/styles/ecl-ec-preset-website.css"
crossorigin="anonymous"
media="screen"
/>
<link
rel="stylesheet"
href="/registry/js-ecl-v2/package/dist/styles/ecl-ec-preset-website-print.css"
crossorigin="anonymous"
media="print"
/>
<link
rel="stylesheet"
href="/registry/libs/DataTables_v1.10.20/css/jquery.dataTables.min.css"
/>
<link
rel="stylesheet"
href="/registry/css/style_netrual.css"
/>
<script src="https://inspire.ec.europa.eu/cdn/1.0/js/jquery.min.js" integrity="sha384-vk5WoKIaW/vJyUAd9n/wmopsmNhiy+L2Z+SBxGYnUkunIxVxAv/UtMOhba/xskxh" crossorigin="anonymous"></script>
<script type="application/json">
{
"utility" : "cck",
"url": {
"en": "https://my.ec.europa.eu/cookie-policy_en"
}
}
</script>
<script src="/registry/conf/conf.js"></script>
<script src="/registry/js-ecl-v2/app_common.js"></script>
<script src="/registry/js-ecl-v2/app_i18n.js"></script>
<script src="/registry/js-ecl-v2/app_core.js"></script>
<script src="/registry/js-ecl-v2/app_init.js" defer></script>
<script src="/registry/libs/DataTables_v1.10.20/js/jquery.dataTables.min.js" defer></script>
</head>
<body>
<!--just for sandbox-integration-preproduction-->
<!-- <div class="ecl-message ecl-message--info" style="padding-bottom: 0.1em; padding-top: 0.5em" data-ecl-message="" role="alert" data-ecl-auto-init="Message">
<div class="ecl-message__content" style="text-align: center">
<div class="ecl-message__title" style="max-width: 100%">Re3gistry sandboxing Instance frontend view</div>
<div class="ecl-message__title" style="max-width: 100%">Access the admin panel <a class="ecl-link" href="https://inspire-sandbox.jrc.ec.europa.eu/re3gistry">here</a></div>
</div>
</div> -->
<header style="display:none" class="ecl-site-header" data-ecl-site-header="true" data-ecl-auto-init="SiteHeader">
<div class="ecl-site-header__container ecl-container">
<div class="ecl-site-header__banner">
<a data-i18n-link="l-ec-website" class="ecl-link ecl-link--standalone" href="https://agroconnect.test.farmmaps.eu/registry"
aria-label="European Commission">
<img class="mb-2" src="/registry/ecl-v2/static/logo/logo-1.png" alt="" width="50%" height="50%">
</a>
<div class="ecl-site-header__selector"><a class="ecl-link ecl-link--standalone ecl-site-header__selector-link"
href="#" data-ecl-language-selector="true">English<span class="ecl-site-header__language-icon"><svg
focusable="false" aria-hidden="true" class="ecl-icon ecl-icon--m">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#general--language"></use>
</svg><span class="ecl-site-header__language-code">en</span></span></a>
<div hidden="" class="ecl-language-list ecl-language-list--overlay" aria-labelledby="ecl-language-list__title"
role="dialog" data-ecl-language-list-overlay="true">
<div class="ecl-language-list__container ecl-container">
<div class="ecl-row">
<div class="ecl-language-list__close ecl-col-12 ecl-col-lg-8 ecl-offset-lg-2"><button
data-ecl-language-list-close="true" type="submit"
class="ecl-language-list__close-button ecl-button ecl-button--ghost"><span
class="ecl-button__container"><span class="ecl-button__label" data-ecl-label="true" data-i18n="c-close">Close</span><svg
focusable="false" aria-hidden="true" data-ecl-icon="true"
class="ecl-button__icon ecl-button__icon--after ecl-icon ecl-icon--s">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#ui--close"></use>
</svg></span></button></div>
<div class="ecl-language-list__title ecl-col-12 ecl-col-lg-8 ecl-offset-lg-2"
id="ecl-language-list__title"><svg focusable="false" aria-hidden="true"
class="ecl-language-list__title-icon ecl-icon ecl-icon--m">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#general--generic-lang"></use>
</svg>Select your language</div>
</div>
<div class="ecl-row">
<div class="ecl-language-list__column ecl-col-12 ecl-col-lg-4 ecl-offset-lg-2">
<ul class="ecl-language-list__list">
</ul>
</div>
<div class="ecl-language-list__column ecl-col-12 ecl-col-lg-4">
<ul class="ecl-language-list__list">
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<form class="ecl-site-header__search ecl-search-form" role="search">
<div class="ecl-form-group ecl-form-group--text-input"><label class="ecl-search-form__label ecl-form-label"
for="search-form" data-i18n="c-search">Search</label><input type="search" id="search-form"
class="ecl-search-form__text-input ecl-text-input" /></div><button id="btn-search" aria-label="Search" type="submit"
class="ecl-search-form__button ecl-button ecl-button--search"><span class="ecl-button__container"><span
class="ecl-button__label" data-ecl-label="true" data-i18n="c-search">Search</span><svg focusable="false" aria-hidden="true"
data-ecl-icon="true" class="ecl-button__icon ecl-button__icon--after ecl-icon ecl-icon--xs">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#general--search"></use>
</svg></span></button>
</form>
</div>
</header>
<div class="ecl-page-header" style="background-color: #343a40">
<div class="ecl-container">
<nav class="ecl-page-header__breadcrumb ecl-breadcrumb" aria-label="You are here:" data-ecl-breadcrumb="true">
<ol class="ecl-breadcrumb__container" style="background-color: #343a40">
</ol>
</nav>
<h1 class="ecl-page-header__title" data-i18n="s-site-title"></h1>
</div>
</div>
<main class="ecl-u-pv-xl">
<div class="ecl-container">
<div class="ecl-row">
<div class="ecl-col-md-12">
<h2 class="ecl-u-type-heading-2 ecl-u-mt-none ecl-u-mb-l" id="page-title">Registry</h2>
<div id="content">
</div>
</div>
</div>
</div>
</main>
<!-- <footer class="ecl-footer-core" style="display:none ; background-color: #343a40; margin-top: 15px">
<div class="ecl-container ecl-footer-standardised__container">
<section class="ecl-footer-core__section ecl-footer-core__section1">
<a href="https://github.com/ec-jrc/re3gistry/releases"
class="ecl-footer-core__title ecl-link ecl-link--standalone">Re3gistry version 2.4.2</a>
<div class="ecl-footer-core__description"><a data-i18n-link="l-ec-website" class="ecl-link ecl-link--standalone"
href="https://agroconnect.test.farmmaps.eu/registry"
aria-label="European Commission">
<img class="mt-2" src="/registry/ecl-v2/static/logo/logo-2.png" alt="" width="30%" height="50%">
</a></div>
<div class="ecl-footer-core__description">Reference codes management tool</div>
</section>
<div class="ecl-footer-standardised__section2">
<section class="ecl-footer-standardised__section">
<div class="ecl-footer-standardised__title ecl-footer-standardised__title--separator">About</div>
<ul class="ecl-footer-standardised__list">
<li class="ecl-footer-standardised__list-item"><a href="https://joinup.ec.europa.eu/collection/are3na/solution/re3gistry/about" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Re3gistry features</a></li>
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry/releases" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Get the code</a></li>
<li class="ecl-footer-standardised__list-item"><a href="https://joinup.ec.europa.eu/collection/are3na/solution/re3gistry/best-practices-registers-and-registries" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Best practices</a></li>
</ul>
</section>
<section class="ecl-footer-standardised__section">
<div class="ecl-footer-standardised__title ecl-footer-standardised__title--separator">
Re3gistry API
</div>
<ul class="ecl-footer-standardised__list ecl-footer-standardised__list--inline">
<li class="ecl-footer-standardised__list-item"><a href="registry/api.html" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Access API</a></li>
</ul>
</section>
</div>
<div class="ecl-footer-standardised__section3">
<section class="ecl-footer-standardised__section">
<div class="ecl-footer-standardised__title ecl-footer-standardised__title--separator">Documentation</div>
<ul class="ecl-footer-standardised__list">
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry/blob/master/documentation/user-manual.md" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">User manual</a></li>
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry/blob/master/documentation/administrator-manual.md" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Administrator manual</a></li>
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry/blob/master/documentation/developer-manual.md" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Developer manual</a></li>
</ul>
</section>
<section class="ecl-footer-standardised__section">
<div class="ecl-footer-standardised__title ecl-footer-standardised__title--separator">Stay tuned</div>
<ul class="ecl-footer-standardised__list">
<li class="ecl-footer-standardised__list-item">
<a href="/registry/release-note.xml" class="ecl-footer-standardised__link ecl-link ecl-link--standalone ecl-link--icon ecl-link--icon-before">
<svg focusable="false" aria-hidden="true" class="ecl-link__icon ecl-icon ecl-icon--xs">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#branded--rss"></use>
</svg>&nbsp;<span class="ecl-link__label">Re3gistry sandbox RSS feed</span>
</a>
</li>
<li class="ecl-footer-standardised__list-item"><a href="https://github.com/ec-jrc/re3gistry" class="ecl-footer-standardised__link ecl-link ecl-link--standalone">Join the Re3gistry community</a></li>
</ul>
</section>
</div>
</div>
</footer> -->
<div class="overlay-loader">
<div class="load-feedback">
<svg focusable="false" aria-hidden="true" class="ecl-icon ecl-icon--m ecl-icon--inverted custom-spinner">
<use xlink:href="/registry/ecl-v2/static/media/icons.svg#general--spinner"></use>
</svg> <span class="ecl-u-type-m ecl-u-type-color-white">Loading ...</span>
</div>
</div>
<script
src="/registry/js-ecl-v2/package/dist/scripts/ecl-ec-preset-website.js"
crossorigin="anonymous"
></script>
<script>
ECL.autoInit();
</script>
</body>
</html>

View File

@ -0,0 +1,20 @@
"use strict";
const domainURL = registryApp.domainURL;
const link_ecl_unordered_list = 'link-ecl-unordered-list';
$(document).ready(function () {
$(".link-ecl-unordered-list").each(function () {
var listtext = $(this).text();
listtext = listtext.replaceAll("_registryApp_domainURL_", domainURL);
$(this).text(listtext);
var href = $(this).attr('href');
href = listtext.replaceAll("_registryApp_domainURL_", domainURL);
$(this).attr("href", href);
});
});

View File

@ -0,0 +1,325 @@
"use strict";
/// *** Scripts and utilities common to all the app ***///
// ** Constants and variables definition ** //
// Element name constants
const elementId_searchForm = 'search-form';
const elementId_buttonSearch = 'btn-search';
const elementClassName_languageListButton = 'ecl-language-list__link';
const elementClassName_loadingOverlay = 'overlay-loader';
const elementName_html = 'html';
const elementName_body = 'body';
const elementName_span = 'span';
const elementName_svg = 'svg';
const elementAttributeName_lang = 'lang';
const elementAttributeName_class = 'class';
// Key contants
const key_cookieName_language = 'clanguage';
const key_cookieExpires = 'expires';
const key_cookiePath = 'path';
const key_ascOrdering = 'asc';
const key_descOrdering = 'desc';
const key_json = 'json';
const key_jsonc = 'jsonc';
const key_src = 'src';
const key_searchParameter = 'q';
const key_dataEclMessage = 'data-ecl-message';
const key_http = 'http';
const key_https = 'https';
// Value constants
const val_cookieExpirationDays = 30;
const val_emptyString = '';
const val_dot = '.';
const val_undefined = 'undefined';
const val_object = 'object';
const val_true = 'true';
const val_falsee = 'false';
// HTML snippet constants
const htmlSnippet_errorMessage = '<div role="alert" class="ecl-message ecl-message--error" data-ecl-message="true" data-ecl-auto-init="Message"><svg focusable="false" aria-hidden="true" class="ecl-message__icon ecl-icon ecl-icon--l"><use xlink:href="' + registryApp.hostURL + registryApp.staticResourcesPath + 'icons.svg#notifications--error"></use></svg><div class="ecl-message__content"><button data-ecl-message-close="true" type="button" class="ecl-message__close ecl-button ecl-button--ghost"><span class="ecl-button__container"><span class="ecl-button__label" data-ecl-label="true">Close</span><svg focusable="false" aria-hidden="true" data-ecl-icon="true" class="ecl-button__icon ecl-button__icon--after ecl-icon ecl-icon--s"><use xlink:href="' + registryApp.hostURL + registryApp.staticResourcesPath + 'icons.svg#ui--close"></use></svg></span></button><div class="ecl-message__title">Error message</div><p class="ecl-message__description">{0}</p></div></div>';
// Event name constants
const eventName_click = 'click';
// Regular expression constants
// Global variables
var uriFromUrl = val_emptyString;
var baseBreadcrumb = val_emptyString;
var unparsedLanguageJSON = "";
var originalLanguages = new Dictionary();
originalLanguages.add("en", "English");
originalLanguages.add("es", "Español");
originalLanguages.add("bg", "български");
originalLanguages.add("cs", "čeština");
originalLanguages.add("da", "dansk");
originalLanguages.add("de", "Deutsch");
originalLanguages.add("et", "eesti");
originalLanguages.add("el", "ελληνικά");
originalLanguages.add("fr", "français");
originalLanguages.add("ga", "Gaeilge");
originalLanguages.add("hr", "hrvatski");
originalLanguages.add("it", "italiano");
originalLanguages.add("lv", "latviešu");
originalLanguages.add("lt", "lietuvių");
originalLanguages.add("hu", "magyar");
originalLanguages.add("mt", "Malti");
originalLanguages.add("nl", "Nederlands");
originalLanguages.add("pl", "polski");
originalLanguages.add("pt", "português");
originalLanguages.add("ro", "română");
originalLanguages.add("sk", "slovenčina");
originalLanguages.add("sl", "slovenščina");
originalLanguages.add("fi", "suomi");
originalLanguages.add("sv", "svenska");
// ** Script body ** //
function bindCommonEvents() {
// Event associated to the "Search" button
$('#' + elementId_buttonSearch).on(eventName_click, function (e) {
e.preventDefault();
performSearch();
});
// Language selector change event
$('.' + elementClassName_languageListButton).on(eventName_click, function (event) {
event.preventDefault();
updateLanguage($(this));
});
}
/*
* Seting a cookie
*
* @param {String} cookieName The name of the ckookie
* @param {String} cookieValue The value of the cookie
* @param {Integer} expiringDays The number of days to keep the cookie
*/
function setCookie(cookieName, cookieValue, expiringDays) {
// Checks if the cookies are enabled in the system and if the EU cookie
// consent has been accepted
// if ($wt.analytics.isTrackable()) {
var d = new Date();
d.setTime(d.getTime() + (expiringDays * 24 * 60 * 60 * 1000));
var expires = key_cookieExpires + '=' + d.toUTCString();
document.cookie = cookieName + '=' + cookieValue + ';' + expires + ';' + key_cookiePath + '=/';
// }
}
/*
* Getting the cookie by name
*
* @param {String} cookieName The name of the ckookie to retrieve
* @returns {String} The value of the cookie
*/
function getCookie(cookieName) {
// if ($wt.analytics.isTrackable()) {
var name = cookieName + '=';
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) === ' ') {
c = c.substring(1);
}
if (c.indexOf(name) === 0) {
return c.substring(name.length, c.length);
}
}
return val_emptyString;
// }
}
/*
* Function to sort an array (to be used in Array.sort(function(a,b){}))
*
* @param {String} a The first value to compare
* @param {String} b The second value to compare
* @param {String} ordering The ordering method: asc|desc
* @returns {Integer} Zero or one depending on the comparison
*/
function sortArray(a, b, ordering) {
let aInt = parseInt(a);
let bInt = parseInt(b);
let outValue = 0;
if (ordering === key_descOrdering) {
// Descending
outValue = (aInt > bInt) ? 0 : 1;
} else if (ordering === key_ascOrdering) {
// Ascending
outValue = (aInt < bInt) ? 0 : 1;
}
return outValue;
}
/*
* Function to process the URI of the current elemen. It gets eventual language
* passed by URL parameter (e.g. registry.en.html)
*/
function processUri() {
// Getting the current URL
let currentUrl = window.location.href;
if (currentUrl.endsWith("/")) {
currentUrl = currentUrl.substring(0, currentUrl.length - 1);
}
// Getting the index of the lase occurence of "/"
// let i = currentUrl.lastIndexOf('/');
// Cutting the current URL to the last portion
// let tmpUrl = currentUrl.substring(i);
// Splitting this portion with "." to chech if it is specified a language
// (e.g. elementName.en.html, but also the localID could contain a ".")
//example localID: de.codelist.test
//example localID with language and format: de.codelist.test.en.xml
// let urlCheck = tmpUrl.split(val_dot);
// If the lenght of the urlCheck is 3
// if (urlCheck.length === 3) {
//
// // Getting the language specified in the URL and updating the
// // global variable
// let tmpLangIndex = tmpUrl.indexOf(val_dot);
// let tmpLang = tmpUrl.substring(tmpLangIndex + 1, tmpLangIndex + 3);
// languageFromUrl = tmpLang;
//
// // Getting the URI to be passed to the data service and updating the
// // global variable
// i = currentUrl.lastIndexOf(val_dot) - 3;
// uriFromUrl = currentUrl.substring(0, i);
// } else {
//
// // Passing the current URL as the URI to be passed to the data service
// languageFromUrl = val_emptyString;
// uriFromUrl = currentUrl;
// }
// Passing the current URL as the URI to be passed to the data service
// languageFromUrl = val_emptyString;
uriFromUrl = currentUrl;
// Check if the flag to force http is on
if (registryApp.forceHttpURIs) {
uriFromUrl = uriFromUrl.replace(key_https + '://', key_http + '://')
}
}
function getUrlParameter(parameterName) {
let result = null;
let tmp = [];
location.search
.substr(1)
.split("&")
.forEach(function (item) {
tmp = item.split("=");
if (tmp[0] === parameterName)
result = decodeURIComponent(tmp[1]);
});
return result;
}
/*
* This method performs the search
*/
function performSearch() {
let searchBoxElement = $('#' + elementId_searchForm);
window.location.href = registryApp.searchURL + '?' + key_searchParameter + '=' + searchBoxElement.val();
}
/* Show or hide the loading overlay */
function showLoadingOverlay(show) {
let loadingOverlayElement = $('.' + elementClassName_loadingOverlay);
if (show) {
loadingOverlayElement.show();
} else {
loadingOverlayElement.hide();
}
}
function Dictionary(){
this.add = add;
this.dataStore = [];
this.find = find;
this.remove = remove;
}
function add(key, value){
this.dataStore[key] = value;
}
function remove(key){
delete this.dataStore[key];
}
function find(key){
return this.dataStore[key];
}
function fillLanguageTable(){
//Check if languages have already been set in the table
// if(unparsedLanguageJSON == "" || document.getElementsByClassName("ecl-language-list__item").length == 0){
// Get the JSON that contains the active language list
let JSONLINK = registryApp.hostURL + "/rest?lang=active&format=jsonc"
unparsedLanguageJSON = $.ajax({
url: JSONLINK,
async: false
}).responseText;
var languageJSON = JSON.parse(unparsedLanguageJSON);
var columnChange = false;
var finalLanguageColumns = document.getElementsByClassName("ecl-language-list__list");
for(var i=0; i<languageJSON.length;i++){
var languageli = document.createElement("li");
var languagelink = document.createElement("a");
var languageSpan = document.createElement("span");
languageSpan.setAttribute("class","ecl-link__label");
languageli.setAttribute("class", "ecl-language-list__item");
languagelink.lang = languageJSON[i].iso6391code;
languagelink.setAttribute("hreflang", languageJSON[i].iso6391code);
languagelink.rel = "alternate";
languagelink.href = "#language_" + languageJSON[i].iso6391code;
languagelink.setAttribute("class", "ecl-language-list__link ecl-link ecl-link--standalone ecl-link--icon ecl-link--icon-after");
languageSpan.innerHTML = originalLanguages.find(languageJSON[i].iso6391code);
languagelink.appendChild(languageSpan);
languageli.appendChild(languagelink);
if(columnChange){
columnChange = false;
finalLanguageColumns[0].appendChild(languageli);
}else{
columnChange = true;
finalLanguageColumns[1].appendChild(languageli);
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,776 @@
"use strict";
/// *** Core app scripts ***///
// ** Constants and variables definition ** //
// Search query
const searchQuery = 'fl_label_{0}:({1}*)^3.0 OR fl_definition_{0}:({1}*)^1.0';
// Element name constants
const elementId_resultsContainer = 'resultsContainer';
const elementId_dynamicFacetsContainer = 'dynamic-facets-container';
const elementId_previousPageLink = 'previous-page-link';
const elementId_nextPageLink = 'next-page-link';
const elementId_paginationContainer = 'paginationContainer';
const elementId_buttonClearAll = 'btn-clear-all';
const elementId_buttonRefineResults = 'btn-refine-results';
const elementId_facetForm = 'facet-form';
const elementId_selectedFacet = 'selected-facet';
const elementClassName_searchResultsCount = 'search-results-count';
const elementClassName_searchResultsCountCurrentPage = 'search-results-count-current-page';
const elementClassName_hrSearchResults = 'ecl-u-mv-none';
const elementClassName_selectedFacetItem = 'selected-facet-item';
// Key contants
const key_errorFetch = 's-error-fetch';
const key_pageParameter = 'p';
const key_facetParameter = 'f';
const key_searchResultsTitle = 's-search-results';
const key_facetTitlePrefix = 's-facet-title-';
const key_searchResultsCurrentPageTitle = 's-search-results-current-page';
const key_facetAllLabel = 's-facet-all';
const key_solrResultFieldLabelPrefix = 'fl_label_';
const key_solrResultFieldDefinitionPrefix = 'fl_definition_';
const key_solrResultFieldDescritpionPrefix = 'fl_description_';
const key_searchRegisterLabel = 's-search-register-label';
const key_searchNoResultsFound = 's-search-no-result-found';
const key_paginationPrevious = 's-pagination-previous';
const key_paginationNext = 's-pagination-next';
const key_paginationPage = 's-pagination-page';
const key_paginationGoToPage = 's-pagination-gotopage';
const key_paginationGoToPreviousPage = 's-pagination-gotopreviouspage';
const key_paginationGoToNextPage = 's-pagination-gotonextpage';
const key_facetParamSeparator = '+';
const key_facetParamKeyValueSeparator = ':';
const key_facetParamValueSplitter = /:(.+)?/;
const key_selectedFacetFirst = 'ecl-u-ml-lg-m ecl-u-mt-m ecl-u-mt-lg-none';
const key_dataFacetParameter = 'facetparameter';
const key_JsonObjectFieldKeyFq = 'fq';
const key_value = 'value';
const key_selected = 'selected';
const key_facetPrefix = 'facet-';
const key_option = 'option';
const key_all = '*'
// Value constants
const val_paginationManySeparator = '...';
// HTML snippet constants
const htmlSnippet_facet = '<div class="ecl-u-mt-m ecl-form-group ecl-form-group--select"><label class="ecl-form-label" for="facet-{0}">{1}</label><div class="ecl-select__container ecl-select__container--m"><select id="facet-{0}" class="ecl-select">{2}</select><div class="ecl-select__icon"><svg focusable="false" aria-hidden="true" class="ecl-select__icon-shape ecl-icon ecl-icon--s ecl-icon--rotate-180"><use xlink:href="' + registryApp.hostURL + registryApp.staticResourcesPath + 'icons.svg#ui--corner-arrow"></use></svg></div></div></div>';
const htmlSnippet_option = '<option value="{0}">{1} {2}</option>';
const htmlSnippet_option_selected = '<option selected value="{0}">{1} {2}</option>';
const htmlSnippet_searchResults = '<article class="ecl-u-type-m ecl-u-mt-l ecl-u-pb-l ecl-u-pb-lg-m"><a href="{0}" class="ecl-u-type-prolonged-m ecl-u-type-bold ecl-link">{1}</a><p class="ecl-u-type-paragraph-m ecl-u-type-color-grey ecl-u-mv-none">{2}</p><p class="ecl-u-type-paragraph-m ecl-u-type-color-grey ecl-u-mv-none">{3}</p></article>';
const htmlSnippet_searchNoResults = '<article class="ecl-u-type-m ecl-u-mt-l ecl-u-pb-l ecl-u-pb-lg-m"><span class="ecl-u-type-prolonged-m ecl-u-type-bold">{0}</span></article>';
const htmlSnippet_paginationUl = '<ul class="ecl-pagination__list">{0}</ul>';
const htmlSnippet_paginationPrevious = '<li class="ecl-pagination__item ecl-pagination__item--previous"><a id="previous-page-link" aria-label="{0}" href="{1}" class="ecl-pagination__link ecl-link ecl-link--standalone ecl-link--icon ecl-link--icon-before"><svg focusable="false" aria-hidden="true" class="ecl-link__icon ecl-icon ecl-icon--xs ecl-icon--rotate-270"><use xlink:href="' + registryApp.hostURL + registryApp.staticResourcesPath + 'icons.svg#ui--corner-arrow"></use></svg> <span class="ecl-link__label">{2}</span></a></li>';
const htmlSnippet_paginationNext = '<li class="ecl-pagination__item ecl-pagination__item--next"><a id="next-page-link" aria-label="{0}" href="{1}" class="ecl-pagination__link ecl-link ecl-link--standalone ecl-link--icon ecl-link--icon-after"><span class="ecl-link__label">{2}</span> <svg focusable="false" aria-hidden="true" class="ecl-link__icon ecl-icon ecl-icon--xs ecl-icon--rotate-90"><use xlink:href="' + registryApp.hostURL + registryApp.staticResourcesPath + 'icons.svg#ui--corner-arrow"></use></svg></a></li>';
const htmlSnippet_currentPage = '<li class="ecl-pagination__item ecl-pagination__item--current"><span class="ecl-pagination__text ecl-pagination__text--summary" aria-label="{1} {0}" aria-current="true">{0}</span><span class="ecl-pagination__text ecl-pagination__text--full" aria-current="true">{1} {0}</span></li>';
const htmlSnippet_page = '<li class="ecl-pagination__item"><a aria-label="{0} {1}" href="{2}" class="ecl-pagination__link ecl-link ecl-link--standalone">{1}</a></li>';
const htmlSnippet_paginationLi = '<li class="ecl-pagination__item">{0}</li>';
const htmlSnippet_selectedFacetElement = '<span class="{0}"><span>{1}</span><button data-' + key_dataFacetParameter + '="{2}" class="ecl-u-ml-s ecl-tag ecl-tag--removable selected-facet-item">{3}<span class="ecl-tag__icon"><svg focusable="false" aria-hidden="true" class="ecl-tag__icon-close ecl-icon ecl-icon--xs"><use xlink:href="' + registryApp.hostURL + registryApp.staticResourcesPath + 'icons.svg#ui--close"></use></svg><svg focusable="false" aria-hidden="true" class="ecl-tag__icon-close-filled ecl-icon ecl-icon--xs"><use xlink:href="' + registryApp.hostURL + registryApp.staticResourcesPath + 'icons.svg#ui--close-filled"></use></svg></span></button></span>';
const htmlSnippet_href = '<a href="{0}" class="ecl-link ecl-link--standalone">{1}</a>';
const htmlSnippet_hr = '<hr class="{0}" />';
// Event name constants
// Regular expression constants
// Global variables
// Facets
const searchFacets = {
register_itemclass_localid: {
type: 'terms',
field: 'register_itemclass_localid',
limit: -1
},
status_uri: {
type: 'terms',
field: 'status_uri',
limit: -1
}
};
// ** Script body ** //
/*
* Fetch Re3gistry data
*
* @param {String} uri The uri of the item to retrieve
* @param {String} lang The language of the data
*/
function fetchData(uri, lang, startFrom, searchTerm, facetParam) {
if (uri === null || typeof uri === val_undefined || uri.length === 0) {
uri = uriFromUrl;
}
if (lang === null || typeof lang === val_undefined || lang.length === 0) {
lang = currentLanguage;
}
// Getting the search query
if (searchTerm === null || typeof searchTerm === val_undefined || searchTerm.length === 0) {
searchTerm = getUrlParameter(key_searchParameter);
if (searchTerm === null || typeof searchTerm === val_undefined || searchTerm.length === 0) {
searchTerm = key_all;
} else {
// Setting the search therm in the search box
updateSearchBox(searchTerm);
}
} else {
// Setting the search therm in the search box
updateSearchBox(searchTerm);
}
// Getting the results page (if available)
if (startFrom === null || typeof startFrom === val_undefined || isNaN(startFrom)) {
startFrom = getUrlParameter(key_pageParameter);
if (startFrom === null || typeof startFrom === val_undefined || isNaN(startFrom)) {
startFrom = 1
}
}
// Getting eventrual facet parameter
if (facetParam === null || typeof facetParam === val_undefined) {
facetParam = getUrlParameter(key_facetParameter);
if (facetParam === null || typeof facetParam === val_undefined) {
facetParam = val_emptyString;
}
}
// Preparing the search expression
let queryEncoded = searchQuery.split('{0}').join(currentLanguage).split('{1}').join(searchTerm);
// Preparing the query
let queryParameters = {
q: queryEncoded,
start: (startFrom - 1) * registryApp.maxSearchResultsPerPage,
rows: registryApp.maxSearchResultsPerPage,
wt: key_json,
facet: val_true,
'json.facet': JSON.stringify(searchFacets)
};
// Adding eventual cfacet query to the query parameters
let facetParamArray = parseFacetParam(facetParam);
queryParameters = addFacetParamToQuery(facetParamArray, queryParameters);
// Setting the traditional style of param serialization
$.ajaxSetup({traditional: true});
// Performing the request
$.ajax({
// Base URL of the service taken from the configuration
url: registryApp.searchApiURL,
data: queryParameters,
dataType: key_json
}).done(function (responseData) {
// Rendering the HTML
renderData(responseData, searchTerm, facetParamArray, facetParam);
// Binding UI events
bindCommonEvents();
bindEvents();
}).fail(function (data) {
// Clearing the intrerface
renderData(data, null, null, null);
// Error handler
renderFetchError(data.responseJSON);
});
}
/*
* Render the succesful response from the service
*
* @param {Json} data The Re3gistry json data
*/
function renderData(data, searchTerm, facetParamArray, facetParam) {
if (data !== null && typeof data !== val_undefined) {
// Rendering the results counts
renderSearchResultsCount(data);
renderSearchResultsCountCurrentPage(data);
// Rendering the facets
renderFacets(data, facetParamArray);
renderSelectedFacets(facetParamArray);
// Rendering the results
renderResults(data, searchTerm);
// Render pages links
renderPagesLinks(data, searchTerm, facetParam);
} else {
// If there is an error on the service respose, rendering the error
renderServiceError(data);
}
}
/*
* Bind the events for the elements dynamically created after the search api request
*/
function bindEvents() {
// // Event associated to the "Search" button
// $('#' + elementId_buttonSearch).on(eventName_click, function (e) {
// e.preventDefault();
// performSearch();
// });
// Event associated to the "Clear all" button (to clear all the facets)
$('#' + elementId_buttonClearAll).on(eventName_click, function (e) {
e.preventDefault();
clearAllFacets();
});
// Event associated to the "Refine results" button
$('#' + elementId_buttonRefineResults).on(eventName_click, function (e) {
e.preventDefault();
refineResults();
});
// Event fired once a facet is removed from the list of selected facets
$('.' + elementClassName_selectedFacetItem).on(eventName_click, function (e) {
e.preventDefault();
removeFacet($(this));
});
}
/*
* Remove the facet from the list of selected facets
*
* @param {Object} item The button item
*/
function removeFacet(item) {
let facetParam = item.data(key_dataFacetParameter);
// Selecting the empty option
$('#' + key_facetPrefix + facetParam + ' ' + key_option).each(function () {
if ($(this).prop(key_value) === val_emptyString) {
$(this).prop(key_selected, key_selected);
}
});
// Refining the results with the empty option selected
refineResults();
}
/*
* This method updates the search box (reading from the "q" url parameter)
*/
function updateSearchBox(searchTerm) {
let searchInputElement = $('#' + elementId_searchForm);
searchInputElement.val(searchTerm);
}
/*
* This method is used to refine the results using the eventual facets selected
*/
function refineResults() {
let searchBoxElement = $('#' + elementId_searchForm);
// Getting the selected facets
let facetSelects = $('#' + elementId_facetForm + ' ' + key_option + ':' + key_selected);
let facetUrlParams = val_emptyString;
let i = 0;
// Cycling on the selected facets
for (let tmpSelect of facetSelects) {
// If the selected facet is not empty (not the "All" option), creating
// the url param
if ($(tmpSelect).val().trim().length > 0) {
if (i !== 0) {
facetUrlParams += key_facetParamSeparator;
}
facetUrlParams += $(tmpSelect).val();
i++;
}
}
// Composing the URL to call
window.location.href = registryApp.searchURL + '?' + key_searchParameter + '=' + searchBoxElement.val() + ((facetUrlParams.length > 0) ? '&' + key_facetParameter + '=' + facetUrlParams : '');
}
/*
* This method is used to clear all the selected facets
*/
function clearAllFacets() {
let searchBoxElement = $('#' + elementId_searchForm);
window.location.href = registryApp.searchURL + '?' + key_searchParameter + '=' + searchBoxElement.val();
}
/*
* This method is used to parse the facet parameter from the URL
*
* @param {String} facetParam THe facet parameter from the URL
*/
function parseFacetParam(facetParam) {
let facetParameterArray = [];
// Splitting using the separator betweeb different facets
let tmpParams = facetParam.split(key_facetParamSeparator);
for (let tmpParam of tmpParams) {
// Splitting using the separator between key/values
let tmpKeyVal = tmpParam.split(key_facetParamValueSplitter);
// Adding the facet to the array of selected facets (if not empty - not the "All" option)
if (tmpKeyVal !== null && typeof tmpKeyVal !== val_undefined && tmpKeyVal.length > 1) {
facetParameterArray.push(tmpKeyVal);
}
}
return facetParameterArray;
}
/*
* This method is used to add the facet parameters to the standard query
* parameters (json object)
*
* @param {Json} queryParameters The json object representing the
* query parameters (for jQuery ajax call)
* @param {Array} facetParamArray The array containing the key value pair
* for the selected facets
*/
function addFacetParamToQuery(facetParamArray, queryParameters) {
if (facetParamArray !== null && typeof facetParamArray !== val_undefined) {
// Adding any eventual facets to the query
let tmpParam = [];
for (let param of facetParamArray) {
tmpParam.push(param[0] + key_facetParamKeyValueSeparator + '"' + param[1] + '"');
}
queryParameters[key_JsonObjectFieldKeyFq] = tmpParam;
}
return queryParameters;
}
/*
* Update the search results count
*
* @param {Json} data The search API response
*/
function renderSearchResultsCount(data) {
// Getting the search results UI element
let searchResultsCountContainer = $('.' + elementClassName_searchResultsCount);
let tmpText = i18n[key_searchResultsTitle];
if (data.response !== null && typeof data.response !== val_undefined &&
data.response.numFound !== null && typeof data.response.numFound !== val_undefined) {
tmpText = tmpText.replace('{0}', data.response.numFound);
} else {
tmpText = tmpText.replace('{0}', 0);
}
searchResultsCountContainer.html(tmpText);
}
/*
* Update the search results count for this page
*
* @param {Json} data The search API response
*/
function renderSearchResultsCountCurrentPage(data) {
// Getting the search results current page UI element
let searchResultsCountCurrentPageContainer = $('.' + elementClassName_searchResultsCountCurrentPage);
let tmpText = i18n[key_searchResultsCurrentPageTitle];
if (data.response !== null && typeof data.response !== val_undefined &&
data.response.start !== null && typeof data.response.start !== val_undefined &&
data.response.numFound !== null && typeof data.response.numFound !== val_undefined && data.response.numFound > 0) {
tmpText = tmpText.replace('{0}', data.response.start + 1).replace('{1}', data.response.start + registryApp.maxSearchResultsPerPage);
} else {
tmpText = val_emptyString;
}
searchResultsCountCurrentPageContainer.html(tmpText);
}
/*
* Rendering the facets element (left menu)
*
* @param {Json} data The search API response
* @param {Array} facetParamArray The array containing the key value pair
* for the selected facets
*/
function renderFacets(data, facetParamArray) {
let dynamicFacetsContainer = $('#' + elementId_dynamicFacetsContainer);
let clearAllElement = $('#' + elementId_buttonClearAll);
let refineResultsElement = $('#' + elementId_buttonRefineResults);
// Hiding contols
clearAllElement.hide();
refineResultsElement.hide();
let htmlOut = val_emptyString;
if (data.facets !== null && typeof data.facets !== val_undefined) {
// Generating html (select) for each facet
for (const [key, value] of Object.entries(data.facets)) {
if (typeof value === val_object) {
htmlOut += htmlSnippet_facet.split('{0}').join(key)
.replace('{1}', i18n[key_facetTitlePrefix + key]);
let tmpOptions = generateFacetsOptions(value.buckets, key, facetParamArray);
htmlOut = htmlOut.replace('{2}', tmpOptions);
}
}
// Showing the control button only if at least one facet is available
if (htmlOut !== val_emptyString) {
clearAllElement.show();
refineResultsElement.show();
}
}
dynamicFacetsContainer.html(htmlOut);
}
/*
* Check if a specific facet value has been selected in the html select
*
* @param {Array} facetParamArray The array containing the key value pair
* for the selected facets
* @param {String} val The value to be checked
*/
function checkSelected(facetParamArray, val) {
for (let tmp of facetParamArray) {
if (tmp[1] === val) {
return true;
}
}
return false;
}
/*
* Rendering the facets options
*
* @param {Json} bucket data from the facets
*/
function generateFacetsOptions(buckets, key, facetParamArray) {
let htmlOut = val_emptyString;
// Generate the empty selection option
htmlOut = htmlSnippet_option.replace('{0}', val_emptyString).replace('{1}', i18n[key_facetAllLabel]).replace('{2}', val_emptyString);
if (buckets !== null && typeof buckets !== val_undefined) {
for (let bucket of buckets) {
if (checkSelected(facetParamArray, bucket.val)) {
htmlOut += htmlSnippet_option_selected.replace('{0}', key + ':' + bucket.val).replace('{1}', bucket.val).replace('{2}', '(' + bucket.count + ')');
} else {
htmlOut += htmlSnippet_option.replace('{0}', key + ':' + bucket.val).replace('{1}', bucket.val).replace('{2}', '(' + bucket.count + ')');
}
}
}
return htmlOut;
}
/*
* Rendering the selected facets (under the search results counts)
*
* @param {Array} facetParamArray The array containing the key value pair
* for the selected facets
*/
function renderSelectedFacets(facetParamArray) {
let htmlOut = val_emptyString;
let selectedFacetElement = $('#' + elementId_selectedFacet);
if (facetParamArray !== null && typeof facetParamArray !== val_undefined) {
let i = 0;
for (let tmpParam of facetParamArray) {
let tmpClass = val_emptyString;
if (i !== 0) {
tmpClass += key_selectedFacetFirst;
}
htmlOut += htmlSnippet_selectedFacetElement.replace('{0}', tmpClass).replace('{1}', i18n[key_facetTitlePrefix + tmpParam[0]]).replace('{2}', tmpParam[0]).split('{3}').join(tmpParam[1]);
i++;
}
selectedFacetElement.html(htmlOut);
}
}
/*
* Function to render the search results
*
* @param {Json} data The search API response
*/
function renderResults(data, searchTerm) {
// Getting the results container element
let resultsContainer = $('#' + elementId_resultsContainer);
let htmlOut = val_emptyString;
if (data.response !== null && typeof data.response !== val_undefined &&
data.response.docs !== null && typeof data.response.docs !== val_undefined && data.response.docs.length > 0) {
let i = 0;
for (let result of data.response.docs) {
// Handling the URI
let tmpOut = htmlSnippet_searchResults.replace('{0}', result.uri);
// Handling the label
let tmpResLabel = checkField(result, key_solrResultFieldLabelPrefix, currentLanguage);
tmpOut = tmpOut.replace('{1}', tmpResLabel);
// Handling the register
let tmpHref = result.register_itemclass_baseuri + '/' + result.register_itemclass_localid
tmpOut = tmpOut.replace('{2}', i18n[key_searchRegisterLabel] + ': ' + renderHref(tmpHref,tmpHref));
// Handling definition
let tmpResDefinition = checkField(result, key_solrResultFieldDefinitionPrefix, currentLanguage);
if (tmpResDefinition.length > 0) {
tmpOut = tmpOut.replace('{3}', tmpResDefinition);
} else {
// Trying to show the description in case the definition is not available
let tmpResDescription = checkField(result, key_solrResultFieldDescritpionPrefix, currentLanguage);
tmpOut = tmpOut.replace('{3}', tmpResDescription);
}
if (i !== 0) {
htmlOut += renderHr(elementClassName_hrSearchResults);
}
htmlOut += tmpOut;
i++;
}
} else {
//No results
htmlOut = htmlSnippet_searchNoResults.replace('{0}', i18n[key_searchNoResultsFound]).replace('{1}', searchTerm);
}
resultsContainer.html(htmlOut);
}
/*
* The method checks if a field is available in the current language otherwise it check if
* the default language is available (otherwise it returns empty string)
*
* @param {Json} data The search API response
* @param {String} fieldPrefix The prefix of the filed name (without language)
* @param {String} language The language for the field to be checked
*/
function checkField(data, fieldPrefix, language) {
let tmpString = data[fieldPrefix + language];
// If the field is not available in the current language
if (tmpString === null || typeof tmpString === val_undefined || tmpString.lenght <= 0) {
// If the language is not the default language, the check is relaunched
// with the default language
if (language !== registryApp.defaultLanguage) {
tmpString = checkField(data, fieldPrefix, registryApp.defaultLanguage);
} else {
tmpString = val_emptyString;
}
}
return tmpString;
}
/*
* The method renders the pagination links
*
* @param {Json} data The search API response
* @param {String} query Thesearch query (search term from the search box)
* @param {Array} facetParamArray The array containing the key value pair
* for the selected facets
*/
function renderPagesLinks(data, query, facetParam) {
let htmlOut = val_emptyString;
let paginationContainer = $('#' + elementId_paginationContainer);
if (data.response !== null && typeof data.response !== val_undefined &&
data.response.numFound !== null && typeof data.response.numFound !== val_undefined && data.response.numFound > 0) {
let currentPageNumber = Math.ceil(data.response.start / registryApp.maxSearchResultsPerPage) + 1;
let totalPages = Math.ceil(data.response.numFound / registryApp.maxSearchResultsPerPage);
// Previous page link
if (+currentPageNumber > 1) {
if (+currentPageNumber === 2) {
htmlOut += htmlSnippet_paginationPrevious.replace('{0}', i18n[key_paginationGoToPreviousPage]).replace('{1}', createSearchPageUrl((+currentPageNumber - 1), query, facetParam)).replace('{2}', i18n[key_paginationPrevious]);
} else {
htmlOut += htmlSnippet_paginationPrevious.replace('{0}', i18n[key_paginationGoToPreviousPage]).replace('{1}', createSearchPageUrl((+currentPageNumber - 1), query, facetParam)).replace('{2}', i18n[key_paginationPrevious]);
}
} else {
htmlOut += val_emptyString;
}
// Inserting dots in case of many pages
if ((+currentPageNumber - 2) > 1) {
htmlOut += htmlSnippet_page.split('{0}').join(i18n[key_paginationGoToPage]).split('{1}').join(1).split('{2}').join(createSearchPageUrl(1, query, facetParam));
htmlOut += htmlSnippet_paginationLi.replace('{0}', val_paginationManySeparator);
}
// Rendering generic pages
for (var i = +currentPageNumber - 2; i <= +currentPageNumber; i++) {
if (i >= 1) {
if (+currentPageNumber !== i) {
htmlOut += htmlSnippet_page.split('{0}').join(i18n[key_paginationGoToPage]).split('{1}').join(i).split('{2}').join(createSearchPageUrl(i, query, facetParam));
} else {
htmlOut += htmlSnippet_currentPage.split('{0}').join(i).split('{1}').join(i18n[key_paginationPage]);
}
}
}
for (var i = +currentPageNumber + 1; i <= +currentPageNumber + 2; i++) {
if (i <= totalPages) {
if (+currentPageNumber !== i) {
htmlOut += htmlSnippet_page.split('{0}').join(i18n[key_paginationGoToPage]).split('{1}').join(i).split('{2}').join(createSearchPageUrl(i, query, facetParam));
} else {
htmlOut += htmlSnippet_currentPage.split('{0}').join(i).split('{1}').join(i18n[key_paginationPage]);
}
}
}
if ((+currentPageNumber + 2) < totalPages) {
htmlOut += htmlSnippet_paginationLi.replace('{0}', val_paginationManySeparator);
htmlOut += htmlSnippet_page.split('{0}').join(i18n[key_paginationGoToPage]).split('{1}').join(totalPages).split('{2}').join(createSearchPageUrl(totalPages, query, facetParam));
}
if (+currentPageNumber < totalPages) {
htmlOut += htmlSnippet_paginationNext.replace('{0}', i18n[key_paginationGoToNextPage]).replace('{1}', createSearchPageUrl((+currentPageNumber + 1), query, facetParam)).replace('{2}', i18n[key_paginationNext]);
} else {
htmlOut += val_emptyString;
}
paginationContainer.html(htmlSnippet_paginationUl.replace('{0}', htmlOut));
} else {
paginationContainer.html(val_emptyString);
}
}
/*
* This method creates the search page URL including the search query, page
* and eventually the facets
*
* @param {Number} page The page number
* @param {String} query The search query (search term from the search box)
* @param {Array} facetParamArray The array containing the key value pair
* for the selected facets
*/
function createSearchPageUrl(page, query, facetParam) {
return registryApp.searchURL + '?' + key_searchParameter + '=' + encodeURIComponent(query) + '&' + key_pageParameter + '=' + page + ((facetParam.length > 0) ? '&' + key_facetParameter + '=' + facetParam : '');
}
/*
* Render the error response from the service
*
* @param {Json} data The Re3gistry json data
*/
function renderFetchError(data) {
// Getting the container element
let resultsContainer = $('#' + elementId_resultsContainer);
// Clearing the conatiner
resultsContainer.empty();
resultsContainer.append(htmlSnippet_errorMessage.replace('{0}', i18n[key_errorFetch]));
// Initializing the ECL Message component after creating it
let elt = document.querySelector('[' + key_dataEclMessage + ']');
let message = new ECL.Message(elt);
message.init();
}
/*
* Render the error response from the service
*
* @param {Json} data The Re3gistry json data
* @return {String} The rendered html of the error
*/
function renderServiceError(data) {
let resultsContainer = $('#' + elementId_resultsContainer);
// Clearing the conatiner
resultsContainer.empty();
resultsContainer.append(htmlSnippet_errorMessage.replace('{0}', i18n[key_errorFetch]));
// Initializing the ECL Message component after creating it
let elt = document.querySelector('[' + key_dataEclMessage + ']');
let message = new ECL.Message(elt);
message.init();
}
/*
* Render the href of the field in HTML
*
* @param {String} value The value of the field
* @param {String} href The href of the field
* @returns {String} The rendered href HTML element of the field
*
*/
function renderHref(value, href) {
return htmlSnippet_href.replace('{0}', href).replace('{1}', value);
}
/*
* Render the HR
*
* @returns {String} The rendered HTML of the HR
*/
function renderHr(classString) {
return htmlSnippet_hr.replace('{0}', classString);
}

View File

@ -0,0 +1,262 @@
"use strict";
/// *** Scripts to manage the localization ***///
// ** Constants and variables definition ** //
// Element name constants
//const elementId_languageSelector = 'ecl-language-list__button';
const elementClassName_languageListButtonActive = 'ecl-language-list__item--is-active';
const elementClassName_languagePrefixPattern = 'language-';
const elementClassName_selectedLangLabel = 'ecl-site-header__selector-link';
const elementClassName_selectedLangIcon = 'ecl-site-header__language-icon';
const elementClassName_selectedLangCodeText = 'ecl-site-header__language-code';
const elementClassName_dialogDismiss = 'ecl-language-list__close-button';
const elementClassName_eclsiteHeaderLogoImage = 'ecl-site-header__logo-image';
// Key contants
const key_i18n = 'i18n';
const key_i18nLink = 'i18n-link';
const key_dataLocalizationFilesPath = '/js-ecl-v2/i18n';
const key_languageLogoPattern = 'logo--{0}.ec.svg';
// Value constants
// HTML snippet constants
const htmlSnippet_iconSelected = '<svg focusable="false" aria-hidden="true" class="ecl-link__icon ecl-icon ecl-icon--xs"><use xlink:href="' + registryApp.hostURL + registryApp.staticResourcesPath + 'icons.svg#ui--check"></use></svg>';
// Event name constants
// Regular expression constants
const regularExpression_languagePrefix = /language-[aA-zZ]+/;
// Global variables
var languageFromUrl = val_emptyString;
var currentLanguage = val_emptyString;
var i18n;
// ** Script body ** //
/*
* This method ititialize the language of the webapp
* The global variable currentLanguage is initialized with the language passed
* the 'selector' parameter or with the default webapp language taken from the
* configuration file.
* The UI is then updated with the selected language.
*
* @param {type} selector
*/
function initLocalization(selector) {
let storedLanguage = val_emptyString;
// checking if there is the language passed by URL
if (languageFromUrl !== null && languageFromUrl.length === 2) {
currentLanguage = languageFromUrl;
} else {
// Checking if there is a language stored in the cookies
// if (navigator.cookieEnabled) {
// Getting the language stored in the cookie
storedLanguage = getCookie(key_cookieName_language);
// }
// Takes the cookie stored language if available, otherwise the default
currentLanguage = (storedLanguage !== val_emptyString) ? storedLanguage : getBrowserLanguage();
}
// Storing the language to the cookie if needed
if ((storedLanguage === null || typeof storedLanguage === val_undefined || storedLanguage === val_emptyString)
// && navigator.cookieEnabled
) {
// Storing the language in the cookie
setCookie(key_cookieName_language, currentLanguage, val_cookieExpirationDays);
}
// Getting the right language button if not passed by parameter.
if (selector === '' || typeof selector === val_undefined || selector === null) {
if (typeof currentLanguage === val_undefined) {
currentLanguage = 'en';
}
selector = $('.' + elementClassName_languageListButton + '[' + elementAttributeName_lang + '="' + currentLanguage + '"]');
}
// Loading the localization file for the current language
loadI18nFile(currentLanguage);
// Iinitializing the page elements with the language
refreshSelectedLanguages(selector);
}
/*
* This method update the language of the webapp with the one selected by the
* user (using the language selector in the UI).
*
* @param {type} selector
*/
function updateLanguage(selector) {
// Getting the new language selected
let newLanguage = selector.attr(elementAttributeName_lang);
if (newLanguage !== val_emptyString || typeof newLanguage !== val_undefined || newLanguage !== null) {
// Storing the new selected language in the cookie
setCookie(key_cookieName_language, newLanguage, val_cookieExpirationDays);
// Re-initializing the page elements with the new language
initLocalization(selector);
// Launch the update language relate actions
//updateLanguageActions();
}
// Close the language dialog
$('.' + elementClassName_dialogDismiss).trigger(eventName_click);
}
/*
* This method is called every time the language is changed.
*/
function updateLanguageActions() {
// Update all the HTML element with the i18n data attribute available
updateDataI18nLocalization();
// Update all the href element with the i18n-link data attribute available
updateDataI18nLocalizationLinks();
// Fetching the data
fetchData();
}
/*
* This method is handling the UI changes after a new language has been selected
*
* @param {DOM element} selector
*/
function refreshSelectedLanguages(selector) {
if (currentLanguage === val_undefined) {
currentLanguage = 'en';
}
// Remove initial active classes and elements in the language selector dialog
$('.' + elementClassName_languageListButton).each(function () {
$(this).parent().removeClass(elementClassName_languageListButtonActive);
$(this).find(elementName_svg).remove();
});
// Set the active language in the language selector dialog
selector.parent().addClass(elementClassName_languageListButtonActive);
selector.append(htmlSnippet_iconSelected);
// Update the HTML lang
$(elementName_html).attr(elementAttributeName_lang, currentLanguage);
// Update the main logo
$('.' + elementClassName_eclsiteHeaderLogoImage).attr(key_src, registryApp.hostURL + registryApp.staticResourcesPath + key_languageLogoPattern.replace('{0}', currentLanguage));
// Updating the selected text label and code
let currentLanguageLabel = selector.text();
let currentLinkHtml = $('.' + elementClassName_selectedLangLabel);
let spanLanguageCode = currentLinkHtml.find(elementName_span + '.' + elementClassName_selectedLangIcon);
currentLinkHtml.html(currentLanguageLabel);
currentLinkHtml.append(spanLanguageCode);
$('.' + elementClassName_selectedLangCodeText).text(currentLanguage);
}
/*
* This method loads the i18n localization file and fires the
* updateLanguageActions method
*
* @param {String} locale The locale file to load
*/
function loadI18nFile(locale) {
if (currentLanguage === val_undefined) {
currentLanguage = 'en';
locale = 'en';
}
$.getJSON(registryApp.hostURL + key_dataLocalizationFilesPath + '/' + locale + '.' + key_json, function (data) {
// Stores the i18n Json object in the global variable i18n
i18n = data;
// Launch the methods related to the change locale action
updateLanguageActions();
})
.fail(function () {
// If the locale language file is not available, reading the
// default one
// console.log('Failed loading locale file. Reading the default one.');
loadI18nFile(registryApp.defaultLanguage);
});
}
/*
* This method update all the HTML element with the i18n data attribute
* available with the text localized in the 'currentLanguage' localization
*/
function updateDataI18nLocalization() {
// Getting all the elements that have the 'i18n' data attribute valorized
// The value of the i18n data attribute is the key to get the right text
// from the i18n localization file.
let el = $('*').filter(function () {
return typeof $(this).data(key_i18n) !== val_undefined;
});
// For each element retrieved, the text is updated with the new
// localized text
$.each(el, function () {
let localizationKey = $(this).data(key_i18n);
$(this).html(i18n[localizationKey]);
});
}
/*
* This method update all the href element with the i18n data link attribute
* available with the link in the right language
*/
function updateDataI18nLocalizationLinks() {
// Getting all the elements that have the 'i18n-link' data attribute valorized
// The value of the i18n-link data attribute is the key to get the right link
// from the i18n localization file.
let linkEl = $('*').filter(function () {
return typeof $(this).data(key_i18nLink) !== val_undefined;
});
// For each element retrieved, the link is updated with the new
// localized link
$.each(linkEl, function () {
let localizationKey = $(this).data(key_i18nLink);
$(this).attr('href', i18n[localizationKey].replace('{0}', currentLanguage));
});
}
/*
* This method check and set the Browser language
*
* @returns {String} The 2 characters language of the browser if available
* otherwhise it returns the registryApp.defaultLanguage
*/
function getBrowserLanguage() {
let userLang = navigator.language || navigator.userLanguage;
if (userLang !== null && userLang.length > 0) {
// Getting just the first 2 characters from the string
userLang = userLang.substring(0, 2);
} else {
userLang = registryApp.defaultLanguage;
}
return userLang;
}

View File

@ -0,0 +1,23 @@
"use strict";
/// *** App initialization scripts ***///
// ** Events handlers ** //
// ** Ready init handlers ** //
$(document).ready(function () {
// Processing the URI
processUri();
//Fill langauge selector on init
fillLanguageTable();
// Initialization of the localization system
initLocalization();
// Binding common events
bindCommonEvents();
});

View File

@ -0,0 +1,72 @@
{
"@metadata": {
"locale": "bg"
},
"c-eu": "Европейски съюз",
"c-euinstitutions":"EU institutions",
"c-ec": "Европейска комисия",
"c-ec-websites": "European Commission websites",
"c-cpriorities": "Commission and its priorities",
"c-piliciesinfoserivces": "Policies, information and services",
"c-search":"Търсене",
"c-close":"Close",
"c-ec-follow": "Follow the European Commission",
"c-othersocial": "Other social media",
"c-select-language": "Select your language",
"c-home": "Home",
"c-ecabout": "About the Commission&#x27;s new web presence",
"c-languagepolicy": "Language policy",
"c-resourcespartners": "Resources for partners",
"c-cookies": "Cookies",
"c-privacyppolicy": "Privacy policy",
"c-legalnotice": "Юридическо предупреждение",
"c-contact": "Контакт",
"s-inspire": "INSPIRE",
"s-site-title": "Регистратура INSPIRE",
"s-follow-us": "Follow us:",
"s-inspire-community-forum":"INSPIRE community forum",
"s-uri": "URI",
"s-thisversion":"This version",
"s-versionhistory":"Version history",
"s-collection-title":"Available items",
"s-narrower-title":"По-долно ниво в йерархията",
"s-contact-us":"Contact us",
"s-privacy-policy":"Privacy policy",
"s-cookies":"Cookies",
"s-inspire-resources":"INSPIRE Resources",
"s-search-options":"Search options",
"s-search-register-label":"Регистър",
"s-search-no-result-found":"No results found for \"{1}\"",
"s-pagination-previous":"предишна",
"s-pagination-next":"следваща",
"s-pagination-page":"Page",
"s-pagination-gotopreviouspage":"Go to previous page",
"s-pagination-gotopage":"Go to page",
"s-pagination-gotonextpage":"Go to next page",
"s-facet-all":"All",
"s-search-results":"Search results ({0})",
"s-search-results-current-page":"Showing results {0} to {1}",
"s-facet-title-register_itemclass_localid":"Регистър",
"s-facet-title-status_uri":"Статус",
"s-error-fetch":"An error occurred while trying to access the data service. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-404":"The element requested has not been found in the system. If you think this could be an error, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-406":"The format or language specified in the request is not available. Please specify a supported format/language. For additional info, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-500":"The data service is not able to retrieve the information because of an internal error. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"l-ec-web-presence":"https://ec.europa.eu/info/about-commissions-new-web-presence_{0}",
"l-ec-language-policy":"https://ec.europa.eu/info/language-policy_{0}",
"l-ec-resources-partners":"https://ec.europa.eu/info/resources-partners_{0}",
"l-ec-cookies":"https://ec.europa.eu/info/cookies_{0}",
"l-ec-privacy-policy":"https://ec.europa.eu/info/privacy-policy_{0}",
"l-ec-legal-notice":"https://ec.europa.eu/info/legal-notice_{0}",
"l-ec-contact":"https://ec.europa.eu/info/about-european-commission/contact_{0}",
"l-eu":"https://europa.eu/european-union/index_{0}",
"l-eu-institutions":"https://europa.eu/european-union/about-eu/institutions-bodies_{0}",
"l-ec-other-social":"https://europa.eu/european-union/contact/social-networks_{0}#n:+i:4+e:1+t:+s:",
"l-ec-website":"https://ec.europa.eu/info/index_{0}",
"s-other-formats":"Налични формати:",
"s-insert-date":"Insert date",
"s-edit-date":"Edit date",
"c-refine-results":"Refine results",
"c-clear-all":"Clear all",
"translatenotavailable":"Not available in Bulgarian"
}

View File

@ -0,0 +1,72 @@
{
"@metadata": {
"locale": "cs"
},
"c-eu": "Evropská Unie",
"c-euinstitutions":"EU institutions",
"c-ec": "Европейска комисия",
"c-ec-websites": "European Commission websites",
"c-cpriorities": "Commission and its priorities",
"c-piliciesinfoserivces": "Policies, information and services",
"c-search":"Vyhledávání",
"c-close":"Close",
"c-ec-follow": "Follow the European Commission",
"c-othersocial": "Other social media",
"c-select-language": "Select your language",
"c-home": "Home",
"c-ecabout": "About the Commission&#x27;s new web presence",
"c-languagepolicy": "Language policy",
"c-resourcespartners": "Resources for partners",
"c-cookies": "Cookies",
"c-privacyppolicy": "Privacy policy",
"c-legalnotice": "Právní upozornění",
"c-contact": "Kontakt",
"s-inspire": "INSPIRE",
"s-site-title": "Systém registrů INSPIRE",
"s-follow-us": "Follow us:",
"s-inspire-community-forum":"INSPIRE community forum",
"s-uri": "URI",
"s-thisversion":"This version",
"s-versionhistory":"Version history",
"s-collection-title":"Available items",
"s-narrower-title":"Podřízený termín",
"s-contact-us":"Contact us",
"s-privacy-policy":"Privacy policy",
"s-cookies":"Cookies",
"s-inspire-resources":"INSPIRE Resources",
"s-search-options":"Search options",
"s-search-register-label":"Registr",
"s-search-no-result-found":"No results found for \"{1}\"",
"s-pagination-previous":"Předchozí",
"s-pagination-next":"Další",
"s-pagination-page":"Page",
"s-pagination-gotopreviouspage":"Go to previous page",
"s-pagination-gotopage":"Go to page",
"s-pagination-gotonextpage":"Go to next page",
"s-facet-all":"All",
"s-search-results":"Search results ({0})",
"s-search-results-current-page":"Showing results {0} to {1}",
"s-facet-title-register_itemclass_localid":"Registr",
"s-facet-title-status_uri":"Stav",
"s-error-fetch":"An error occurred while trying to access the data service. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-404":"The element requested has not been found in the system. If you think this could be an error, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-406":"The format or language specified in the request is not available. Please specify a supported format/language. For additional info, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-500":"The data service is not able to retrieve the information because of an internal error. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"l-ec-web-presence":"https://ec.europa.eu/info/about-commissions-new-web-presence_{0}",
"l-ec-language-policy":"https://ec.europa.eu/info/language-policy_{0}",
"l-ec-resources-partners":"https://ec.europa.eu/info/resources-partners_{0}",
"l-ec-cookies":"https://ec.europa.eu/info/cookies_{0}",
"l-ec-privacy-policy":"https://ec.europa.eu/info/privacy-policy_{0}",
"l-ec-legal-notice":"https://ec.europa.eu/info/legal-notice_{0}",
"l-ec-contact":"https://ec.europa.eu/info/about-european-commission/contact_{0}",
"l-eu":"https://europa.eu/european-union/index_{0}",
"l-eu-institutions":"https://europa.eu/european-union/about-eu/institutions-bodies_{0}",
"l-ec-other-social":"https://europa.eu/european-union/contact/social-networks_{0}#n:+i:4+e:1+t:+s:",
"l-ec-website":"https://ec.europa.eu/info/index_{0}",
"s-other-formats":"Dostupné formáty:",
"s-insert-date":"Insert date",
"s-edit-date":"Edit date",
"c-refine-results":"Refine results",
"c-clear-all":"Clear all",
"translatenotavailable":"Not available in Czech"
}

View File

@ -0,0 +1,72 @@
{
"@metadata": {
"locale": "da"
},
"c-eu": "Den Europæiske Union",
"c-euinstitutions":"EU institutions",
"c-ec": "Europa-Kommissionen",
"c-ec-websites": "European Commission websites",
"c-cpriorities": "Commission and its priorities",
"c-piliciesinfoserivces": "Policies, information and services",
"c-search":"Søg",
"c-close":"Close",
"c-ec-follow": "Follow the European Commission",
"c-othersocial": "Other social media",
"c-select-language": "Select your language",
"c-home": "Home",
"c-ecabout": "About the Commission&#x27;s new web presence",
"c-languagepolicy": "Language policy",
"c-resourcespartners": "Resources for partners",
"c-cookies": "Cookies",
"c-privacyppolicy": "Privacy policy",
"c-legalnotice": "Forbehold",
"c-contact": "Kontakt",
"s-inspire": "INSPIRE",
"s-site-title": "INSPIRE registersystem",
"s-follow-us": "Follow us:",
"s-inspire-community-forum":"INSPIRE community forum",
"s-uri": "URI",
"s-thisversion":"This version",
"s-versionhistory":"Version history",
"s-collection-title":"Available items",
"s-narrower-title":"Smallere",
"s-contact-us":"Contact us",
"s-privacy-policy":"Privacy policy",
"s-cookies":"Cookies",
"s-inspire-resources":"INSPIRE Resources",
"s-search-options":"Search options",
"s-search-register-label":"Register",
"s-search-no-result-found":"No results found for \"{1}\"",
"s-pagination-previous":"Forrige",
"s-pagination-next":"Næste",
"s-pagination-page":"Page",
"s-pagination-gotopreviouspage":"Go to previous page",
"s-pagination-gotopage":"Go to page",
"s-pagination-gotonextpage":"Go to next page",
"s-facet-all":"All",
"s-search-results":"Search results ({0})",
"s-search-results-current-page":"Showing results {0} to {1}",
"s-facet-title-register_itemclass_localid":"Register",
"s-facet-title-status_uri":"Status",
"s-error-fetch":"An error occurred while trying to access the data service. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-404":"The element requested has not been found in the system. If you think this could be an error, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-406":"The format or language specified in the request is not available. Please specify a supported format/language. For additional info, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-500":"The data service is not able to retrieve the information because of an internal error. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"l-ec-web-presence":"https://ec.europa.eu/info/about-commissions-new-web-presence_{0}",
"l-ec-language-policy":"https://ec.europa.eu/info/language-policy_{0}",
"l-ec-resources-partners":"https://ec.europa.eu/info/resources-partners_{0}",
"l-ec-cookies":"https://ec.europa.eu/info/cookies_{0}",
"l-ec-privacy-policy":"https://ec.europa.eu/info/privacy-policy_{0}",
"l-ec-legal-notice":"https://ec.europa.eu/info/legal-notice_{0}",
"l-ec-contact":"https://ec.europa.eu/info/about-european-commission/contact_{0}",
"l-eu":"https://europa.eu/european-union/index_{0}",
"l-eu-institutions":"https://europa.eu/european-union/about-eu/institutions-bodies_{0}",
"l-ec-other-social":"https://europa.eu/european-union/contact/social-networks_{0}#n:+i:4+e:1+t:+s:",
"l-ec-website":"https://ec.europa.eu/info/index_{0}",
"s-other-formats":"Tilgængelige formater:",
"s-insert-date":"Insert date",
"s-edit-date":"Edit date",
"c-refine-results":"Refine results",
"c-clear-all":"Clear all",
"translatenotavailable":"Not available in Danish"
}

View File

@ -0,0 +1,72 @@
{
"@metadata": {
"locale": "de"
},
"c-eu": "Europäische Union",
"c-euinstitutions":"EU institutions",
"c-ec": "Europäische Kommission",
"c-ec-websites": "European Commission websites",
"c-cpriorities": "Commission and its priorities",
"c-piliciesinfoserivces": "Policies, information and services",
"c-search":"Suche",
"c-close":"Close",
"c-ec-follow": "Follow the European Commission",
"c-othersocial": "Other social media",
"c-select-language": "Select your language",
"c-home": "Home",
"c-ecabout": "About the Commission&#x27;s new web presence",
"c-languagepolicy": "Language policy",
"c-resourcespartners": "Resources for partners",
"c-cookies": "Cookies",
"c-privacyppolicy": "Privacy policy",
"c-legalnotice": "Rechtlicher Hinweis",
"c-contact": "Kontakt",
"s-inspire": "INSPIRE",
"s-site-title": "INSPIRE-Register",
"s-follow-us": "Follow us:",
"s-inspire-community-forum":"INSPIRE community forum",
"s-uri": "URI",
"s-thisversion":"Diese Version",
"s-versionhistory":"Version history",
"s-collection-title":"Available items",
"s-narrower-title":"Spezifischerer Wert",
"s-contact-us":"Contact us",
"s-privacy-policy":"Privacy policy",
"s-cookies":"Cookies",
"s-inspire-resources":"INSPIRE Resources",
"s-search-options":"Search options",
"s-search-register-label":"Register",
"s-search-no-result-found":"No results found for \"{1}\"",
"s-pagination-previous":"Zurück",
"s-pagination-next":"Vor",
"s-pagination-page":"Page",
"s-pagination-gotopreviouspage":"Go to previous page",
"s-pagination-gotopage":"Go to page",
"s-pagination-gotonextpage":"Go to next page",
"s-facet-all":"All",
"s-search-results":"Search results ({0})",
"s-search-results-current-page":"Showing results {0} to {1}",
"s-facet-title-register_itemclass_localid":"Register",
"s-facet-title-status_uri":"Status",
"s-error-fetch":"An error occurred while trying to access the data service. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-404":"The element requested has not been found in the system. If you think this could be an error, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-406":"The format or language specified in the request is not available. Please specify a supported format/language. For additional info, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-500":"The data service is not able to retrieve the information because of an internal error. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"l-ec-web-presence":"https://ec.europa.eu/info/about-commissions-new-web-presence_{0}",
"l-ec-language-policy":"https://ec.europa.eu/info/language-policy_{0}",
"l-ec-resources-partners":"https://ec.europa.eu/info/resources-partners_{0}",
"l-ec-cookies":"https://ec.europa.eu/info/cookies_{0}",
"l-ec-privacy-policy":"https://ec.europa.eu/info/privacy-policy_{0}",
"l-ec-legal-notice":"https://ec.europa.eu/info/legal-notice_{0}",
"l-ec-contact":"https://ec.europa.eu/info/about-european-commission/contact_{0}",
"l-eu":"https://europa.eu/european-union/index_{0}",
"l-eu-institutions":"https://europa.eu/european-union/about-eu/institutions-bodies_{0}",
"l-ec-other-social":"https://europa.eu/european-union/contact/social-networks_{0}#n:+i:4+e:1+t:+s:",
"l-ec-website":"https://ec.europa.eu/info/index_{0}",
"s-other-formats":"Verfügbare Formate:",
"s-insert-date":"Insert date",
"s-edit-date":"Edit date",
"c-refine-results":"Refine results",
"c-clear-all":"Clear all",
"translatenotavailable":"Nicht verfuegbar auf deutsch"
}

View File

@ -0,0 +1,72 @@
{
"@metadata": {
"locale": "el"
},
"c-eu": "Ευρωπαϊκή Ένωση",
"c-euinstitutions":"EU institutions",
"c-ec": "Ευρωπαϊκή Επιτροπή",
"c-ec-websites": "European Commission websites",
"c-cpriorities": "Commission and its priorities",
"c-piliciesinfoserivces": "Policies, information and services",
"c-search":"Αναζήτηση",
"c-close":"Close",
"c-ec-follow": "Follow the European Commission",
"c-othersocial": "Other social media",
"c-select-language": "Select your language",
"c-home": "Home",
"c-ecabout": "About the Commission&#x27;s new web presence",
"c-languagepolicy": "Language policy",
"c-resourcespartners": "Resources for partners",
"c-cookies": "Cookies",
"c-privacyppolicy": "Privacy policy",
"c-legalnotice": "Νομική επισήμανση",
"c-contact": "Επικοινωνία",
"s-inspire": "INSPIRE",
"s-site-title": "Μητρώο INSPIRE",
"s-follow-us": "Follow us:",
"s-inspire-community-forum":"INSPIRE community forum",
"s-uri": "URI",
"s-thisversion":"Αυτή η έκδοση",
"s-versionhistory":"Version history",
"s-collection-title":"Available items",
"s-narrower-title":"Ειδική τιμή",
"s-contact-us":"Contact us",
"s-privacy-policy":"Privacy policy",
"s-cookies":"Cookies",
"s-inspire-resources":"INSPIRE Resources",
"s-search-options":"Search options",
"s-search-register-label":"Καταχωρητής",
"s-search-no-result-found":"No results found for \"{1}\"",
"s-pagination-previous":"Προηγούμενη",
"s-pagination-next":"Επόμενη",
"s-pagination-page":"Page",
"s-pagination-gotopreviouspage":"Go to previous page",
"s-pagination-gotopage":"Go to page",
"s-pagination-gotonextpage":"Go to next page",
"s-facet-all":"All",
"s-search-results":"Search results ({0})",
"s-search-results-current-page":"Showing results {0} to {1}",
"s-facet-title-register_itemclass_localid":"Καταχωρητής",
"s-facet-title-status_uri":"Κατάσταση",
"s-error-fetch":"An error occurred while trying to access the data service. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-404":"The element requested has not been found in the system. If you think this could be an error, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-406":"The format or language specified in the request is not available. Please specify a supported format/language. For additional info, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-500":"The data service is not able to retrieve the information because of an internal error. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"l-ec-web-presence":"https://ec.europa.eu/info/about-commissions-new-web-presence_{0}",
"l-ec-language-policy":"https://ec.europa.eu/info/language-policy_{0}",
"l-ec-resources-partners":"https://ec.europa.eu/info/resources-partners_{0}",
"l-ec-cookies":"https://ec.europa.eu/info/cookies_{0}",
"l-ec-privacy-policy":"https://ec.europa.eu/info/privacy-policy_{0}",
"l-ec-legal-notice":"https://ec.europa.eu/info/legal-notice_{0}",
"l-ec-contact":"https://ec.europa.eu/info/about-european-commission/contact_{0}",
"l-eu":"https://europa.eu/european-union/index_{0}",
"l-eu-institutions":"https://europa.eu/european-union/about-eu/institutions-bodies_{0}",
"l-ec-other-social":"https://europa.eu/european-union/contact/social-networks_{0}#n:+i:4+e:1+t:+s:",
"l-ec-website":"https://ec.europa.eu/info/index_{0}",
"s-other-formats":"Διαθέσιμες μορφές:",
"s-insert-date":"Insert date",
"s-edit-date":"Edit date",
"c-refine-results":"Refine results",
"c-clear-all":"Clear all",
"translatenotavailable":"Not available in Greek"
}

View File

@ -0,0 +1,72 @@
{
"@metadata": {
"locale": "en"
},
"c-eu": "European Union",
"c-euinstitutions":"EU institutions",
"c-ec": "European Commission",
"c-ec-websites": "European Commission websites",
"c-cpriorities": "Commission and its priorities",
"c-piliciesinfoserivces": "Policies, information and services",
"c-search":"Search",
"c-close":"Close",
"c-ec-follow": "Follow the European Commission",
"c-othersocial": "Other social media",
"c-select-language": "Select your language",
"c-home": "Home",
"c-ecabout": "About the Commission&#x27;s new web presence",
"c-languagepolicy": "Language policy",
"c-resourcespartners": "Resources for partners",
"c-cookies": "Cookies",
"c-privacyppolicy": "Privacy policy",
"c-legalnotice": "Legal notice",
"c-contact": "Contact",
"s-inspire": "INSPIRE",
"s-site-title": "INSPIRE registry",
"s-follow-us": "Follow us:",
"s-inspire-community-forum":"INSPIRE community forum",
"s-uri": "URI",
"s-thisversion":"This version",
"s-versionhistory":"Version history",
"s-collection-title":"Available items",
"s-narrower-title":"Narrowers",
"s-contact-us":"Contact us",
"s-privacy-policy":"Privacy policy",
"s-cookies":"Cookies",
"s-inspire-resources":"INSPIRE Resources",
"s-search-options":"Search options",
"s-search-register-label":"Register",
"s-search-no-result-found":"No results found for \"{1}\"",
"s-pagination-previous":"Previous",
"s-pagination-next":"Next",
"s-pagination-page":"Page",
"s-pagination-gotopreviouspage":"Go to previous page",
"s-pagination-gotopage":"Go to page",
"s-pagination-gotonextpage":"Go to next page",
"s-facet-all":"All",
"s-search-results":"Search results ({0})",
"s-search-results-current-page":"Showing results {0} to {1}",
"s-facet-title-register_itemclass_localid":"Register",
"s-facet-title-status_uri":"Status",
"s-error-fetch":"An error occurred while trying to access the data service. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-404":"The element requested has not been found in the system. If you think this could be an error, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-406":"The format or language specified in the request is not available. Please specify a supported format/language. For additional info, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-500":"The data service is not able to retrieve the information because of an internal error. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"l-ec-web-presence":"https://ec.europa.eu/info/about-commissions-new-web-presence_{0}",
"l-ec-language-policy":"https://ec.europa.eu/info/language-policy_{0}",
"l-ec-resources-partners":"https://ec.europa.eu/info/resources-partners_{0}",
"l-ec-cookies":"https://ec.europa.eu/info/cookies_{0}",
"l-ec-privacy-policy":"https://ec.europa.eu/info/privacy-policy_{0}",
"l-ec-legal-notice":"https://ec.europa.eu/info/legal-notice_{0}",
"l-ec-contact":"https://ec.europa.eu/info/about-european-commission/contact_{0}",
"l-eu":"https://europa.eu/european-union/index_{0}",
"l-eu-institutions":"https://europa.eu/european-union/about-eu/institutions-bodies_{0}",
"l-ec-other-social":"https://europa.eu/european-union/contact/social-networks_{0}#n:+i:4+e:1+t:+s:",
"l-ec-website":"https://ec.europa.eu/info/index_{0}",
"s-other-formats":"Available formats:",
"s-insert-date":"Insert date",
"s-edit-date":"Edit date",
"c-refine-results":"Refine results",
"c-clear-all":"Clear all",
"translatenotavailable":"Not available in English"
}

View File

@ -0,0 +1,72 @@
{
"@metadata": {
"locale": "es"
},
"c-eu": "Unión Europea",
"c-euinstitutions":"EU institutions",
"c-ec": "Comisión Europea",
"c-ec-websites": "European Commission websites",
"c-cpriorities": "Commission and its priorities",
"c-piliciesinfoserivces": "Policies, information and services",
"c-search":"Buscar",
"c-close":"Close",
"c-ec-follow": "Follow the European Commission",
"c-othersocial": "Other social media",
"c-select-language": "Select your language",
"c-home": "Home",
"c-ecabout": "About the Commission&#x27;s new web presence",
"c-languagepolicy": "Language policy",
"c-resourcespartners": "Resources for partners",
"c-cookies": "Cookies",
"c-privacyppolicy": "Privacy policy",
"c-legalnotice": "Aviso legal",
"c-contact": "Contacto",
"s-inspire": "INSPIRE",
"s-site-title": "Registro INSPIRE",
"s-follow-us": "Follow us:",
"s-inspire-community-forum":"INSPIRE community forum",
"s-uri": "URI",
"s-thisversion":"Esta versión",
"s-versionhistory":"Version history",
"s-collection-title":"Available items",
"s-narrower-title":"Más específico",
"s-contact-us":"Contact us",
"s-privacy-policy":"Privacy policy",
"s-cookies":"Cookies",
"s-inspire-resources":"INSPIRE Resources",
"s-search-options":"Search options",
"s-search-register-label":"Registro",
"s-search-no-result-found":"No results found for \"{1}\"",
"s-pagination-previous":"Anterior",
"s-pagination-next":"Siguiente",
"s-pagination-page":"Page",
"s-pagination-gotopreviouspage":"Go to previous page",
"s-pagination-gotopage":"Go to page",
"s-pagination-gotonextpage":"Go to next page",
"s-facet-all":"All",
"s-search-results":"Search results ({0})",
"s-search-results-current-page":"Showing results {0} to {1}",
"s-facet-title-register_itemclass_localid":"Registro",
"s-facet-title-status_uri":"Estado",
"s-error-fetch":"An error occurred while trying to access the data service. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-404":"The element requested has not been found in the system. If you think this could be an error, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-406":"The format or language specified in the request is not available. Please specify a supported format/language. For additional info, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-500":"The data service is not able to retrieve the information because of an internal error. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"l-ec-web-presence":"https://ec.europa.eu/info/about-commissions-new-web-presence_{0}",
"l-ec-language-policy":"https://ec.europa.eu/info/language-policy_{0}",
"l-ec-resources-partners":"https://ec.europa.eu/info/resources-partners_{0}",
"l-ec-cookies":"https://ec.europa.eu/info/cookies_{0}",
"l-ec-privacy-policy":"https://ec.europa.eu/info/privacy-policy_{0}",
"l-ec-legal-notice":"https://ec.europa.eu/info/legal-notice_{0}",
"l-ec-contact":"https://ec.europa.eu/info/about-european-commission/contact_{0}",
"l-eu":"https://europa.eu/european-union/index_{0}",
"l-eu-institutions":"https://europa.eu/european-union/about-eu/institutions-bodies_{0}",
"l-ec-other-social":"https://europa.eu/european-union/contact/social-networks_{0}#n:+i:4+e:1+t:+s:",
"l-ec-website":"https://ec.europa.eu/info/index_{0}",
"s-other-formats":"Formatos disponibles:",
"s-insert-date":"Insert date",
"s-edit-date":"Edit date",
"c-refine-results":"Refine results",
"c-clear-all":"Clear all",
"translatenotavailable":"Not available in Spanish"
}

View File

@ -0,0 +1,72 @@
{
"@metadata": {
"locale": "et"
},
"c-eu": "Euroopa Liit",
"c-euinstitutions":"EU institutions",
"c-ec": "Euroopa Komisjon",
"c-ec-websites": "European Commission websites",
"c-cpriorities": "Commission and its priorities",
"c-piliciesinfoserivces": "Policies, information and services",
"c-search":"Otsing",
"c-close":"Close",
"c-ec-follow": "Follow the European Commission",
"c-othersocial": "Other social media",
"c-select-language": "Select your language",
"c-home": "Home",
"c-ecabout": "About the Commission&#x27;s new web presence",
"c-languagepolicy": "Language policy",
"c-resourcespartners": "Resources for partners",
"c-cookies": "Cookies",
"c-privacyppolicy": "Privacy policy",
"c-legalnotice": "Juriidiline teatis",
"c-contact": "Kontakt",
"s-inspire": "INSPIRE",
"s-site-title": "INSPIRE registrite haldussüsteem",
"s-follow-us": "Follow us:",
"s-inspire-community-forum":"INSPIRE community forum",
"s-uri": "URI",
"s-thisversion":"This version",
"s-versionhistory":"Version history",
"s-collection-title":"Available items",
"s-narrower-title":"Kitsam",
"s-contact-us":"Contact us",
"s-privacy-policy":"Privacy policy",
"s-cookies":"Cookies",
"s-inspire-resources":"INSPIRE Resources",
"s-search-options":"Search options",
"s-search-register-label":"Register",
"s-search-no-result-found":"No results found for \"{1}\"",
"s-pagination-previous":"Eelmine",
"s-pagination-next":"Järgmine",
"s-pagination-page":"Page",
"s-pagination-gotopreviouspage":"Go to previous page",
"s-pagination-gotopage":"Go to page",
"s-pagination-gotonextpage":"Go to next page",
"s-facet-all":"All",
"s-search-results":"Search results ({0})",
"s-search-results-current-page":"Showing results {0} to {1}",
"s-facet-title-register_itemclass_localid":"Register",
"s-facet-title-status_uri":"Olek",
"s-error-fetch":"An error occurred while trying to access the data service. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-404":"The element requested has not been found in the system. If you think this could be an error, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-406":"The format or language specified in the request is not available. Please specify a supported format/language. For additional info, you can contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"s-error-500":"The data service is not able to retrieve the information because of an internal error. If the error persist, please contact <a href=\"mailto:jrc-inspire-support@ec.europa.eu\">jrc-inspire-support@ec.europa.eu</a>",
"l-ec-web-presence":"https://ec.europa.eu/info/about-commissions-new-web-presence_{0}",
"l-ec-language-policy":"https://ec.europa.eu/info/language-policy_{0}",
"l-ec-resources-partners":"https://ec.europa.eu/info/resources-partners_{0}",
"l-ec-cookies":"https://ec.europa.eu/info/cookies_{0}",
"l-ec-privacy-policy":"https://ec.europa.eu/info/privacy-policy_{0}",
"l-ec-legal-notice":"https://ec.europa.eu/info/legal-notice_{0}",
"l-ec-contact":"https://ec.europa.eu/info/about-european-commission/contact_{0}",
"l-eu":"https://europa.eu/european-union/index_{0}",
"l-eu-institutions":"https://europa.eu/european-union/about-eu/institutions-bodies_{0}",
"l-ec-other-social":"https://europa.eu/european-union/contact/social-networks_{0}#n:+i:4+e:1+t:+s:",
"l-ec-website":"https://ec.europa.eu/info/index_{0}",
"s-other-formats":"Saadaolevad vormingud:",
"s-insert-date":"Insert date",
"s-edit-date":"Edit date",
"c-refine-results":"Refine results",
"c-clear-all":"Clear all",
"translatenotavailable":"Not available in Estonian"
}

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