feat(place-order): Adds order hardware system

fix(place-order): Avoids colliding with page var

feat(place-order): Adds drag(copy)/drop system
Finally get this to work..
Still some minor issues while drag(copy)/drop
This commit allows to drag(copy)/drop inside the crate.
Allows to reorder the crate

feat(place-order): Adds basic summary of shopping cart
allows to delete item

feat(place-order): Adds form
also applies some cosmetcis css

feat(place-order): Applies custom css to drag/drop process

feat(place-order): Improves crate UI

feat(place-order): Adds missing assets

feat(place-order): Updates icon button add

feat(place-order): Changes cart layout to increase space
- moves up the control crate type (rack/desktop)
- increase card size a bit
- reduces some padding
- adding some space above card title
- re-organise react component to achieve this layout

feat(place-order): Updates icon remove in summary price
- uses icon instead of shitty html/css
- re-organises react component

fix(place-order): Reduces overlay gradient effect on the aside
also increases padding-bottom to avoid overlay above content

feat(place-order): Updates summary price layout

feat(place-order): Updates CrateMode using data
this avoid using hard text in component
and also, adding crate mode in data.js will be helpful
for other component too (e.g OrderSummary)

feat(place-order): Adds crate mode in OrderSummary
Allows to add fees to rack mode for exemple

feat(place-order): Allows to delete all items in the crate at once

feat(place-order): Updates typo
uses currentMode instead of crateMode

feat(place-order): Displays selection shadow on card when user hover delete button

feat(place-order): Allows to add item to the crate

feat(place-order): Corrects typo

feat(place-order): Corrects layout for browser support

feat(place-order): Adds first automatic rules
this allows to test how things could be done

feat(place-order): Allows to remove card when drop out of crate

feat(place-order): Adds icon reminder to rules

feat(place-order): Uses internal js production assets

feat(place-order): Uses production file

feat(place-order): Adds kali first as initialisation

feat(place-order): Simulates slots in crate (desktop/rack)

feat(place-order): Updates data that prepare for rules algo

feat(place-order): Adds some rules

feat(place-order): Removes rule 2kasli when no more kasli
it's a fix

feat(place-order): Corrects typo rules koster

fix(place-order): Removes PWA prompt

fix(place-order): Corrects size card inside crate

refactor(place-order): Reduces padding between items in listing

refactor(place-order): Uses USD currency

feat(place-order): Upgrades algo for rules

feat(place-order): Adds progress bar to kasli/kasli w/backplane

feat(place-order): Refactores a bit rule handler

feat(place-order): Adds all other rules

fix(place-order): Corrects typo

fix(place-order): Corrects count zotino/hd68 when IDC-BNC does not follow each others

feat(place-order): Backups dev script call just in case
For now, I can work with prod build even debugging production code

feat(place-order): Adds super tooltip to progress bar

feat(place-order): Adds tooltip for zotino/hd68 too

refactor(place-order): Updates typo rule for Koster

feat(place-order/WIP): Adds warning

feat(place-order): Adds Mirny
adds css changes from previous commit (i've forgotten)

feat(place-order): Updates build

feat(place-order): Set RJ45-DIO to occupy 2 EEMs

feat(place-order): Make clocker progress bar visible
It was hidden by horizontal scrollbar inside crate

feat(place-order): Remove red warning for 2 kaslis following each other

feat(place-order): Adds rule for cards that need a resource controller

feat(place-order): Corrects typo, adds point to end of message

feat(place-order): Changes idc-bnc info into a warning one

feat(place-order): Moves down warning box

feat(place-order): Updates some cosmetics css

fix(place-order): Removes IDC-BNC from Kasli connectors count

feat(place-order): Displays warning on hover warning icon

feat(place-order): Updates design hover item in listing

feat(place-order): Updates price estimate

feat(place-order): Displays warning in summary

feat(place-order): Allows to select item

feat(place-order): Allows to send request quote through client email

fix(place-order): Allows to click on remove inside summary list

feat(place-order): Adds btn remove for each cards inside crate

feat(place-order): Builds

fix(place-order): Updates icon warning

fix(place-order): Corrects recipient email address
LOL, forgot to remove mine haha

fix(place-order): Removes typo (kasli double)

fix(place-order): Removes num from email title subject

fix(place-order): Adds warning resources to mirny, zotino
Also updates message text

feat(place-order): Adds clocker counter

feat(place-order): Uses warning for id68 instead of reminder

feat(place-order): Adds crate type into the json

feat(place-order): Adds btn order hardware in homepage

refactor(place-order): Cleans a bit

fix(place-order): Improves a bit ux remove item from crate

fix(place-order): Improves a bit ux remove item from crate

feat(place-order): Builds

fix(place-order): Uses cursor pointer on remove button

fix(place-order): Corrects card need a resources card

chore(place-order): Removes call to ap.js

fix(place-order): Tries with fixed height on warning icon

fix(place-order): Adds fixed height to other element

fix(place-order): Tries to remove up container height to let flex to its job

fix(place-order): Removes .trim call which block multiline and augments row to 5

feat(place-order): Builds

fix(place-order): Adds min-height for the crate
This commit is contained in:
sovanna 2019-10-02 13:16:07 +09:00 committed by Sebastien Bourdeauducq
parent 29506fa9e1
commit e025f66f3e
52 changed files with 12385 additions and 15 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
public
public
node_modules

View File

@ -0,0 +1,8 @@
+++
title = "Order hardware"
weight = 5
template = "page-place-order.html"
[extra]
menu_item = "th1"
+++

3553
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

28
package.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "m-labs-zola",
"version": "1.0.0",
"description": "These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. For deployment, see the nix-scripts repository. Commits to https://git.m-labs.hk/M-Labs/web2019.git are automatically deployed to m-labs.hk through Hydra.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./node_modules/.bin/babel static/js/shop.jsx --watch -o static/js/shop.min.js",
"build": "./node_modules/.bin/babel static/js/shop.jsx -o static/js/shop.min.js"
},
"repository": {
"type": "git",
"url": "https://git.m-labs.hk/M-Labs/web2019.git"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-preset-minify": "^0.5.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"minify"
]
}
}

View File

@ -223,4 +223,14 @@ a[aria-expanded='true']:after {
.hkstyleh5 h5 {
text-align: center;
}
.w-auto {
width: auto;
}
.btn-primary.btn-inversed {
border: 1px solid $btn-primary-2 !important;
background-color: transparent !important;
color: $btn-primary-2 !important;
}

450
sass/css/_shop.scss Normal file
View File

@ -0,0 +1,450 @@
#root-shop, #root-shop > div {
width: 100%;
height: calc(100vh - 72px);
overflow: hidden;
}
button {
outline: none!important;
}
#root-shop {
.layout {
display: flex;
> aside.aside {
flex: 2;
background-color: $color-primary;
overflow-y: scroll;
overflow-x: hidden;
position: relative;
/*padding-bottom: 4rem!important;*/
}
> aside.aside:after {
position: fixed;
bottom: 0;
height: 100px;
width: calc(2 / 6 * 100%);
content: "";
background: linear-gradient(
to top,
rgba(13, 53, 71, 1),
rgba(13, 53, 71, 0)
);
pointer-events: none;
}
> section.main {
flex: 4;
max-width: calc(4 / 6 * 100%);
overflow-y: scroll;
}
}
.productItem {
display: flex;
color: white;
padding: 3rem 2rem 1rem;
.content {
flex: 1;
display: flex;
flex-direction: column;
> *:not(:last-child) {
margin-bottom: 20px;
}
img {
height: 400px;
align-self: center;
border: 0;
}
h3 {
color: white;
}
button {
background-color: inherit;
align-self: center;
border: 0;
img {
width: 40px;
height: auto;
}
}
.price {
align-self: flex-start;
padding: .5rem 1rem;
border: 2px solid $btn-primary-2;
border-radius: 3px;
font-weight: 700;
}
ul {
font-size: .8rem;
margin: 0;
padding-left: 20px;
li::before {
color: white;
}
li {
padding: .3rem 0;
}
}
}
}
.backlog-container {
padding-bottom: 4rem;
}
.rule {
margin-bottom: .3rem;
font-size: .8rem;
img {
width: 20px;
}
}
.panel {
padding: 3rem;
overflow: hidden;
h2 {
padding-bottom: .5rem;
}
.control {
display: flex;
font-size: .8rem;
> p {
width: 50%;
padding-right: 30px;
}
.crate-mode {
text-align: right;
width: 50%;
a {
cursor: pointer;
margin-right: 1rem;
color: inherit;
text-decoration: none;
padding-bottom: 5px;
}
a.active {
font-weight: 700;
border-bottom: 3px solid $btn-primary-2;
}
}
}
.summary {
display: flex;
margin: 2rem 0;
> .summary-price {
flex: 1;
font-size: .8rem;
table {
max-width: 350px;
}
.summary-remove-all {
padding-bottom: 1rem;
.item-card-name {
color: $btn-primary-2;
}
}
.item-card-name {
font-weight: 700;
}
.price {
text-align: left;
}
.item-card-name > div,
.price > div {
display: inline;
}
.item-card-name,
.price {
> .alert-warning {
background-color: inherit;
height: inherit;
width: 20px;
padding-bottom: 3px;
}
}
thead, tbody, tfoot {
display: block;
/*max-height: 200px;
overflow-y: auto;*/
tr {
display: table;
table-layout: fixed;
width: 100%;
}
tr.hoverable {
cursor: pointer;
}
tr.hoverable:hover,
tr.hoverable.selected {
background-color: $color-hover;
}
td {
padding: 1px 5px;
}
}
tfoot {
color: $btn-primary-2;
font-size: 1.2rem;
td {
padding: 1.2rem 0;
}
}
button {
background-color: inherit;
border: 0;
margin-left: 20px;
img {
width: 20px;
height: auto;
}
}
}
> .summary-form {
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-end;
form {
display: flex;
flex-direction: column;
width: 80%;
input:not([type="submit"]),
textarea {
border: 1px solid $color-secondary;
border-radius: 3px;
margin: 0 0 1rem;
padding: .4rem;
}
input[type="submit"] {
background-color: $btn-primary-2;
font-weight: 700;
color: white;
padding: .7rem;
border: 0;
border-radius: 3px;
}
}
}
}
.crate {
position: relative;
.crate-products {
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
padding: .5rem .5rem 1rem;
.items-cart-list {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
min-height: 345px;
background-color: #ebebeb;
padding: 5px 5px 12px;
position: relative;
> div {
display: flex;
flex-direction: column;
max-width: 96px;
justify-content: flex-start;
align-content: center;
align-items: center;
margin-right: 8px;
flex-shrink: 0;
padding: 5px 3px;
}
h6 {
font-size: .6rem;
text-align: center;
white-space: nowrap;
}
img {
height: 250px;
border: 0;
flex-shrink: 0;
}
.nbr-connectors, .nbr-clocks {
width: 100%;
height: 6px;
margin-top: 5px;
border: 1px solid #0d3547;
> div {
height: 100%;
width: 0%;
}
}
.nbr-connectors > div {
background-color: $brand-color;
}
.nbr-clocks > div {
background-color: #d689bf;
}
.progress-container {
width: 100%;
text-align: center;
> .alert-warning {
background-color: inherit;
height: inherit;
width: 20px;
padding-bottom: 3px;
}
.k-popup-connectors,
.k-popup-warning {
position: absolute;
background-color: $color-primary;
color: white;
font-weight: 700;
font-size: .6rem;
padding: .8rem 1rem;
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
text-align: left;
p {
margin-bottom: 0;
}
p + p {
padding-bottom: 8px;
}
}
.k-popup-connectors {
min-width: 200px;
bottom: 50px;
}
.k-popup-warning {
background-color: #c75e5e;
min-width: 350px;
.rule.warning {
display: flex;
font-size: .75rem;
img {
margin-right: 10px;
height: 100%;
}
}
}
}
.overlayRemove {
bottom: 0;
width: 100%;
height: 70px;
margin-top: -70px;
display: flex;
align-items: center;
justify-content: center;
background-color: $brand-color;
color: white;
flex-direction: column;
cursor: pointer;
img {
width: 20px;
height: 20px;
}
p {
font-size: .65rem;
margin: 0;
}
}
}
.hovered {
box-shadow: 0 0 5px rgba(255, 0, 0, .8);
}
}
.crate-info {
padding: 1rem 0 0;
}
}
}
.arrow_box {
position: relative;
background: #c75e5e;
border: 2px solid #c75e5e;
}
.arrow_box:after, .arrow_box:before {
top: 100%;
left: 5%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.arrow_box:after {
border-color: rgba(199, 94, 94, 0);
border-top-color: #c75e5e;
border-width: 10px;
margin-left: -10px;
}
.arrow_box:before {
border-color: rgba(199, 94, 94, 0);
border-top-color: #c75e5e;
border-width: 10px;
margin-left: -10px;
}
}

View File

@ -21,8 +21,11 @@ $color-secondary: #1a6d93 !default;
$btn-primary-2: #715ec7 !default;
$btn-secondary-2: #a88cfd !default;
$color-hover: #eae7f7 !default;
// Import partials.
@import
"_base",
"_layout"
"_layout",
"_shop"
;

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -0,0 +1,614 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="2861.2 151.4 180 500" enable-background="new 2861.2 151.4 180 500" xml:space="preserve">
<g id="Kasli">
</g>
<g id="Kasli_with_backplane">
</g>
<g id="zotino">
</g>
<g id="Novo">
</g>
<g id="IDC_BNC_adapter_copy">
</g>
<g id="HD68">
</g>
<g id="Clocker">
</g>
<g id="Koster">
</g>
<g id="EEM_Octal">
</g>
<g id="EEM16x">
</g>
<g id="BNC_DIO__x28_new_x29_">
<g id="Group_122_2_" transform="translate(1548 -531)">
<g id="Rectangle_1_3_" transform="translate(-1548 531)">
<rect x="2861.2" y="151.4" fill="#FFFFFF" width="180" height="500"/>
<rect x="2862.2" y="152.4" fill="none" stroke="#0D3547" stroke-width="2" width="178" height="498"/>
</g>
<rect x="1320.8" y="805.2" fill="none" stroke="#0D3547" stroke-width="2" width="164.3" height="166"/>
<g id="Group_2_1_" transform="translate(-1829.339 512.463) rotate(-90)">
<g id="Path_1_1_" transform="translate(-227 330)">
<path fill="#FFFFFF" d="M-125.4,2896.2c-4.5,0-8.8-1.8-12-5s-5-7.5-5-12s1.8-8.8,5-12c3.2-3.2,7.5-5,12-5c4.5,0,8.8,1.8,12,5
c3.2,3.2,5,7.5,5,12s-1.8,8.8-5,12C-116.6,2894.4-120.9,2896.2-125.4,2896.2z"/>
<path fill="#715EC7" d="M-125.4,2863.2c-4.3,0-8.3,1.7-11.3,4.7s-4.7,7-4.7,11.3s1.7,8.3,4.7,11.3s7,4.7,11.3,4.7
c4.3,0,8.3-1.7,11.3-4.7c3-3,4.7-7,4.7-11.3s-1.7-8.3-4.7-11.3C-117.2,2864.8-121.2,2863.2-125.4,2863.2 M-125.4,2861.2
c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S-135.4,2861.2-125.4,2861.2z"/>
</g>
<g id="Path_2_1_" transform="translate(-220.111 336.889)">
<path fill="#FFFFFF" d="M-132.5,2879c-3.8,0-6.9-3.1-6.9-6.9c0-3.8,3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9
C-125.6,2875.9-128.7,2879-132.5,2879z"/>
<path fill="#0D3547" d="M-132.5,2869.2c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9
C-129.6,2870.5-130.9,2869.2-132.5,2869.2 M-132.5,2861.2c6,0,10.9,4.9,10.9,10.9c0,6-4.9,10.9-10.9,10.9
c-6,0-10.9-4.9-10.9-10.9C-143.4,2866.1-138.6,2861.2-132.5,2861.2z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#715EC7" d="M1381.8,771.3h2.2c1,0,1.7,0.1,2.2,0.4c0.5,0.3,0.7,0.7,0.7,1.4c0,0.4-0.1,0.8-0.3,1
c-0.2,0.3-0.5,0.4-0.8,0.5v0c0.5,0.1,0.8,0.3,1,0.6c0.2,0.3,0.3,0.6,0.3,1.1c0,0.7-0.2,1.2-0.7,1.5c-0.5,0.4-1.1,0.5-1.9,0.5
h-2.7V771.3z M1383.3,774.1h0.9c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.3-0.3,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.9-0.2
h-0.8V774.1z M1383.3,775.3v1.9h1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.7c0-0.6-0.4-0.9-1.3-0.9H1383.3z"/>
<path fill="#715EC7" d="M1394.9,778.4h-1.9l-3.1-5.4h0c0.1,1,0.1,1.6,0.1,2v3.4h-1.4v-7.1h1.9l3.1,5.3h0c0-0.9-0.1-1.6-0.1-2
v-3.4h1.4V778.4z"/>
<path fill="#715EC7" d="M1399.7,772.5c-0.6,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,1.6,0.6,2.4,1.8,2.4c0.5,0,1.1-0.1,1.8-0.4
v1.3c-0.6,0.2-1.2,0.4-2,0.4c-1,0-1.8-0.3-2.4-0.9c-0.6-0.6-0.8-1.5-0.8-2.7c0-0.7,0.1-1.4,0.4-2c0.3-0.6,0.7-1,1.2-1.3
c0.5-0.3,1.1-0.4,1.8-0.4c0.7,0,1.4,0.2,2.1,0.5l-0.5,1.2c-0.3-0.1-0.5-0.2-0.8-0.3S1399.9,772.5,1399.7,772.5z"/>
<path fill="#715EC7" d="M1402.6,776.1v-1.2h2.6v1.2H1402.6z"/>
<path fill="#715EC7" d="M1412.6,774.8c0,1.2-0.3,2.1-1,2.7c-0.7,0.6-1.6,0.9-2.9,0.9h-2v-7.1h2.2c1.2,0,2.1,0.3,2.7,0.9
S1412.6,773.7,1412.6,774.8z M1411,774.9c0-1.5-0.7-2.3-2-2.3h-0.8v4.6h0.6C1410.3,777.2,1411,776.4,1411,774.9z"/>
<path fill="#715EC7" d="M1416.8,778.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V778.4z"/>
<path fill="#715EC7" d="M1424.5,774.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9s1.9,0.3,2.5,0.9C1424.2,772.8,1424.5,773.7,1424.5,774.9z M1419.2,774.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C1419.4,773.5,1419.2,774.1,1419.2,774.9z"
/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1465.8,848.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V848.4z"/>
<path fill="#0D3547" d="M1473.5,844.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1473.5,843.7,1473.5,844.9z M1468.2,844.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C1468.4,843.5,1468.2,844.1,1468.2,844.9z"
/>
<path fill="#0D3547" d="M1478,848.4h-1.5v-4.1c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.4c0-0.1,0-0.3,0-0.4s0-0.2,0-0.4
c0,0,0,0-0.1,0.1s-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1l-0.8,0.7l-0.7-0.9l2.3-1.8h1.2V848.4z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1401.8,848.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V848.4z"/>
<path fill="#0D3547" d="M1409.5,844.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1409.5,843.7,1409.5,844.9z M1404.2,844.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C1404.4,843.5,1404.2,844.1,1404.2,844.9z"
/>
<path fill="#0D3547" d="M1415.2,844.9c0,0.6,0,1.1-0.1,1.5s-0.2,0.8-0.4,1.2s-0.5,0.6-0.8,0.7s-0.7,0.2-1.1,0.2
c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.2-0.6-0.4-0.8-0.7c-0.2-0.3-0.4-0.7-0.5-1.2s-0.1-1-0.1-1.5s0-1.1,0.1-1.5s0.2-0.8,0.4-1.2
s0.4-0.6,0.8-0.7c0.3-0.2,0.7-0.3,1.1-0.3c0.4,0,0.8,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7s0.4,0.7,0.5,1.2
C1415.2,843.8,1415.2,844.3,1415.2,844.9z M1411.8,844.9c0,0.8,0.1,1.4,0.2,1.8c0.1,0.4,0.4,0.6,0.7,0.6c0.3,0,0.6-0.2,0.7-0.6
s0.2-1,0.2-1.8c0-0.8-0.1-1.4-0.2-1.8c-0.1-0.4-0.4-0.6-0.7-0.6c-0.2,0-0.3,0.1-0.4,0.2s-0.2,0.3-0.3,0.5
c-0.1,0.2-0.1,0.5-0.2,0.8C1411.9,844.1,1411.8,844.5,1411.8,844.9z"/>
</g>
<g id="Group_9_1_" transform="translate(-1674 433)">
<circle id="Ellipse_4_3_" fill="#5EC793" cx="3018.2" cy="401.2" r="4"/>
<g enable-background="new ">
<path fill="#0D3547" d="M3008.3,387.6c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S3008.3,386.4,3008.3,387.6z M3003,387.6c0,0.8,0.2,1.4,0.5,1.8s0.8,0.6,1.4,0.6
c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C3003.2,386.2,3003,386.8,3003,387.6z"/>
<path fill="#0D3547" d="M3015.5,384v4.6c0,0.5-0.1,1-0.4,1.4c-0.2,0.4-0.6,0.7-1,0.9c-0.4,0.2-1,0.3-1.6,0.3
c-0.9,0-1.6-0.2-2.1-0.7c-0.5-0.5-0.8-1.1-0.8-1.9V384h1.5v4.4c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.6,0.4,1.1,0.4
c0.5,0,0.9-0.1,1.1-0.4c0.2-0.3,0.3-0.7,0.3-1.2V384H3015.5z"/>
<path fill="#0D3547" d="M3020,391.2h-1.5v-5.9h-1.9V384h5.4v1.3h-1.9V391.2z"/>
</g>
<circle id="Ellipse_5_6_" fill="#C75E5E" cx="3031.2" cy="401.2" r="4"/>
<g enable-background="new ">
<path fill="#0D3547" d="M3030.8,391.2h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4V384h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V391.2z"/>
<path fill="#0D3547" d="M3038.3,391.2h-1.9l-3.1-5.4h0c0.1,1,0.1,1.6,0.1,2v3.4h-1.4V384h1.9l3.1,5.3h0c0-0.9-0.1-1.6-0.1-2V384
h1.4V391.2z"/>
</g>
</g>
<g id="Group_40_2_" transform="translate(-424 977)">
<circle id="Ellipse_5-2_5_" fill="#5EC793" cx="1788.2" cy="-83.6" r="4"/>
<g id="Group_11_1_" transform="translate(-1464 -554)">
<circle id="Ellipse_5-3_5_" fill="#5EC793" cx="3265.2" cy="470.4" r="4"/>
<g enable-background="new ">
<path fill="#0D3547" d="M3275.8,473.4h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V473.4z"/>
<path fill="#0D3547" d="M3283,473.4h-4.1v-7.1h4.1v1.2h-2.6v1.6h2.4v1.2h-2.4v1.8h2.6V473.4z"/>
<path fill="#0D3547" d="M3286,470.7v2.7h-1.5v-7.1h2.1c1,0,1.7,0.2,2.2,0.5c0.5,0.4,0.7,0.9,0.7,1.6c0,0.4-0.1,0.8-0.3,1.1
c-0.2,0.3-0.6,0.6-1,0.8l2.1,3.1h-1.7l-1.7-2.7H3286z M3286,469.5h0.5c0.5,0,0.8-0.1,1.1-0.2c0.2-0.2,0.3-0.4,0.3-0.8
c0-0.3-0.1-0.6-0.3-0.7s-0.6-0.2-1.1-0.2h-0.5V469.5z"/>
<path fill="#0D3547" d="M3294.1,473.4l-1.7-5.6h0c0.1,1.1,0.1,1.9,0.1,2.3v3.3h-1.4v-7.1h2.1l1.7,5.5h0l1.8-5.5h2.1v7.1h-1.4
v-3.4c0-0.2,0-0.3,0-0.6s0-0.8,0.1-1.7h0l-1.8,5.6H3294.1z"/>
<path fill="#0D3547" d="M3306.2,473.4h-1.5v-4.1c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.4c0-0.1,0-0.3,0-0.4s0-0.2,0-0.4
c0,0,0,0-0.1,0.1s-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1l-0.8,0.7l-0.7-0.9l2.3-1.8h1.2V473.4z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1757.8-92.6h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V-92.6z"/>
<path fill="#0D3547" d="M1765-92.6h-4.1v-7.1h4.1v1.2h-2.6v1.6h2.4v1.2h-2.4v1.8h2.6V-92.6z"/>
<path fill="#0D3547" d="M1768-95.3v2.7h-1.5v-7.1h2.1c1,0,1.7,0.2,2.2,0.5c0.5,0.4,0.7,0.9,0.7,1.6c0,0.4-0.1,0.8-0.3,1.1
c-0.2,0.3-0.6,0.6-1,0.8l2.1,3.1h-1.7l-1.7-2.7H1768z M1768-96.5h0.5c0.5,0,0.8-0.1,1.1-0.2c0.2-0.2,0.3-0.4,0.3-0.8
c0-0.3-0.1-0.6-0.3-0.7c-0.2-0.1-0.6-0.2-1.1-0.2h-0.5V-96.5z"/>
<path fill="#0D3547" d="M1776.1-92.6l-1.7-5.6h0c0.1,1.1,0.1,1.9,0.1,2.3v3.3h-1.4v-7.1h2.1l1.7,5.5h0l1.8-5.5h2.1v7.1h-1.4
v-3.4c0-0.2,0-0.3,0-0.6s0-0.8,0.1-1.7h0l-1.8,5.6H1776.1z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1771.6-84.1c0,0.6,0,1.1-0.1,1.5s-0.2,0.8-0.4,1.2s-0.5,0.6-0.8,0.7s-0.7,0.2-1.1,0.2
c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.2-0.6-0.4-0.8-0.7c-0.2-0.3-0.4-0.7-0.5-1.2s-0.1-1-0.1-1.5s0-1.1,0.1-1.5s0.2-0.8,0.4-1.2
s0.4-0.6,0.8-0.7c0.3-0.2,0.7-0.3,1.1-0.3c0.4,0,0.8,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7s0.4,0.7,0.5,1.2
C1771.6-85.2,1771.6-84.7,1771.6-84.1z M1768.2-84.1c0,0.8,0.1,1.4,0.2,1.8c0.1,0.4,0.4,0.6,0.7,0.6c0.3,0,0.6-0.2,0.7-0.6
s0.2-1,0.2-1.8c0-0.8-0.1-1.4-0.2-1.8c-0.1-0.4-0.4-0.6-0.7-0.6c-0.2,0-0.3,0.1-0.4,0.2s-0.2,0.3-0.3,0.5
c-0.1,0.2-0.1,0.5-0.2,0.8C1768.3-84.9,1768.2-84.5,1768.2-84.1z"/>
</g>
</g>
<g id="artiq_3_" transform="translate(-1524.044 553.927)">
<path id="Path_3_3_" fill="#1A6D93" d="M2937.5,178.3c0.4,0,0.8-0.4,0.8-0.8c0-0.4-0.3-0.8-0.8-0.8c-0.4,0-0.8,0.4-0.7,0.8
C2936.8,177.9,2937.1,178.2,2937.5,178.3L2937.5,178.3z"/>
<path id="Path_4_3_" fill="#1A6D93" d="M2919.4,163.3l0.9,0.8c0,0,0,0,0.1,0c1.8-1.5,3.7-2.8,5.8-3.9c2.3-1.2,4.8-2,7.4-2.3
c0.2,0,0.4,0,0.6,0c0.7,0,1.4,0.1,2,0.4c0.6,0.3,1,0.9,1,1.5c0,0.6-0.2,1.2-0.5,1.7c-0.2,0.4-0.5,0.8-0.7,1.2l-0.3,0.5l0.8,0.8
c0.8-0.9,1.4-2,1.7-3.2c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0-0.1,0-0.2v-0.8c0,0,0,0,0,0c0,0,0-0.1,0-0.1c-0.2-1-0.8-1.8-1.8-2.2
c-0.6-0.3-1.3-0.4-2-0.4c-0.2,0-0.4,0-0.6,0c-1.1,0-2.1,0.2-3.2,0.4c-4,1.1-7.8,3.1-10.9,5.8c-0.1,0.1-0.2,0.2-0.3,0.2
C2919.5,163.2,2919.4,163.2,2919.4,163.3z"/>
<path id="Path_5_3_" fill="#1A6D93" d="M2921.8,160.4c0.2-0.2,0.5-0.3,0.7-0.5c0.3-0.1,0.4-0.4,0.4-0.7c0.3-1.5,0.7-2.9,1.5-4.2
c0.3-0.6,0.7-1.1,1.2-1.5c0.6-0.6,1.6-0.6,2.3,0c0.5,0.4,0.9,0.9,1.2,1.4c0.2,0.3,0.3,0.7,0.5,1.1c0.1,0.1,0.1,0.3,0.2,0.4
l1.2-0.3c-0.1-0.2-0.2-0.4-0.3-0.6c-0.2-0.5-0.4-0.9-0.7-1.3c-0.6-1.2-1.6-2.1-2.9-2.4h-0.7c-1.1,0.2-2,0.9-2.5,1.8
c-0.3,0.4-0.6,0.9-0.8,1.3c-0.7,1.4-1.1,2.9-1.4,4.4c-0.1,0.3-0.1,0.5-0.1,0.8c0,0.1,0,0.2-0.1,0.3
C2921.6,160.5,2921.7,160.5,2921.8,160.4z"/>
<path id="Path_6_3_" fill="#1A6D93" d="M2920.7,171.5c-0.3,0-0.5,0.1-0.8,0.1c-0.2,0-0.3,0-0.4,0c-0.5,0-1.1-0.1-1.6-0.2
c-0.1,0-0.1,0-0.2-0.1c-0.9-0.3-1.4-1.2-1.1-2.1c0,0,0,0,0,0c0.2-0.9,0.6-1.7,1.1-2.4c0.1-0.1,0.2-0.3,0.3-0.4
c0-0.1,0.1-0.1,0.1-0.2l-0.9-0.8c-0.8,0.9-1.4,2-1.7,3.1c-0.6,1.5,0.2,3.3,1.8,3.9c0.2,0.1,0.4,0.1,0.6,0.2
c0.5,0.1,1.1,0.2,1.6,0.2c0.3,0,0.6,0,1-0.1c0.2,0,0.4,0,0.6-0.1l0.2,0l-0.3-1.2C2921,171.5,2920.8,171.5,2920.7,171.5z"/>
<path id="Path_7_3_" fill="#1A6D93" d="M2919.5,171.6c0.1,0,0.3,0,0.4,0C2919.8,171.6,2919.6,171.6,2919.5,171.6z"/>
<path id="Path_8_3_" fill="#1A6D93" d="M2917.9,171.4c0.5,0.2,1,0.2,1.6,0.2C2919,171.6,2918.4,171.5,2917.9,171.4z"/>
<path id="Path_9_3_" fill="#1A6D93" d="M2919.5,172.8c-0.6,0-1.1-0.1-1.6-0.2C2918.4,172.7,2919,172.8,2919.5,172.8z"/>
<path id="Path_10_3_" fill="#1A6D93" d="M2920.5,172.7c-0.4,0-0.7,0.1-1,0.1C2919.8,172.8,2920.2,172.8,2920.5,172.7z"/>
<path id="Path_11_3_" fill="#1A6D93" d="M2929.9,161.3c-0.1-0.3-0.1-0.7-0.2-1c-0.1-0.3-0.4-0.4-0.7-0.5h0
c-0.3,0.1-0.7,0.3-1,0.4c-0.1,0.1-0.2,0.1-0.4,0.1l2.3,1.3L2929.9,161.3z"/>
<path id="Path_12_3_" fill="#1A6D93" d="M2922.4,163.3C2922.4,163.3,2922.3,163.4,2922.4,163.3c-0.1,0.1-0.2,0.1-0.2,0.2
c-0.2,0.2-0.5,0.4-0.7,0.5c-0.2,0.1-0.3,0.4-0.3,0.6c0,0.1,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0.3,0.3,0.6,0.5,0.9,0.7l0.2,0.1
c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0L2922.4,163.3C2922.4,163.3,2922.4,163.3,2922.4,163.3z"/>
<path id="Path_13_3_" fill="#1A6D93" d="M2924.6,158.7L2924.6,158.7c0.3-0.1,0.6-0.3,0.9-0.5l0.3-0.2l-1.4-0.5l-0.3,1.2
c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.1,0,0.2-0.1C2924.5,158.8,2924.6,158.7,2924.6,158.7z"/>
<path id="Path_14_3_" fill="#1A6D93" d="M2924.5,158.8C2924.5,158.8,2924.6,158.7,2924.5,158.8L2924.5,158.8
C2924.6,158.7,2924.5,158.8,2924.5,158.8z"/>
<path id="Path_15_3_" fill="#1A6D93" d="M2934.2,166.2l-0.9-0.8c-0.1,0.5-0.2,1.1-0.1,1.6L2934.2,166.2z"/>
<path id="Path_16_3_" fill="#1A6D93" d="M2924.1,170.7C2924.1,170.7,2924.1,170.7,2924.1,170.7c-0.1,0-0.1,0.1-0.1,0.1
c0.1,0.3,0.1,0.5,0.2,0.8l0.1,0.2l1.2-0.4l-0.3-0.1C2924.9,171.1,2924.6,170.9,2924.1,170.7
C2924.2,170.7,2924.2,170.7,2924.1,170.7z"/>
<path id="Path_17_3_" fill="#1A6D93" d="M2926.8,165.5c0.4,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.4,0-0.8,0.3-0.8,0.8
C2926,165.2,2926.3,165.5,2926.8,165.5z"/>
<path id="Path_18_3_" fill="#0D3547" d="M2937.1,178.6l1.2-0.2l0.4-1.2l-0.8-0.9l-1.2,0.2l-0.4,1.2L2937.1,178.6 M2926.1,166.5
l1.9-0.3l0.7-1.8l-1.2-1.5l-1.9,0.3l-0.7,1.8L2926.1,166.5 M2926.8,161.8c1.7,0,3,1.3,3,3c0,0.2,0,0.3,0,0.5
c0.2,0.9,0.7,1.7,1.4,2.4c0,0,3.3,4.2,5.6,7.2c0.3,0.3,0.6,0.6,1,0.7c1,0.2,1.7,1.2,1.5,2.2s-1.2,1.7-2.2,1.5
c-0.4-0.1-0.8-0.3-1.1-0.6c-0.2-0.3-0.4-0.7-0.4-1.1l0,0v-0.1c-0.1-0.4-0.3-0.8-0.6-1.2l-6.2-6.7c-0.5-0.8-1.3-1.4-2.1-1.8
c-0.8,0-1.6-0.4-2.2-1.1c-1.1-1.3-0.9-3.2,0.4-4.2c0,0,0,0,0,0C2925.4,162,2926.1,161.8,2926.8,161.8"/>
<path id="Path_19_3_" fill="#0D3547" d="M2916.8,186.1l0.7-1.6l0.7,1.6H2916.8z M2917.2,182.7l-2.3,5.1v0.1h1.2l0.3-0.7h2.1
l0.3,0.7h1.2v-0.1l-2.3-5.1L2917.2,182.7z"/>
<path id="Path_20_3_" fill="#0D3547" d="M2923.4,185.3h-1v-1.5h1c0.4,0,0.7,0.3,0.6,0.7c0,0,0,0,0,0.1
C2924.1,184.9,2923.8,185.2,2923.4,185.3C2923.4,185.3,2923.4,185.3,2923.4,185.3z M2924.5,186c0.6-0.5,0.9-1.3,0.7-2
c-0.2-0.8-0.9-1.3-1.7-1.2h-2.2v5.1h1.2v-1.5h0.8l0.9,1.5h1.4v-0.1L2924.5,186L2924.5,186z"/>
<path id="Path_21_3_" fill="#0D3547" d="M2927.5,183.8v4.1h1.2v-4.1h1.3v-1h-3.7v1H2927.5z"/>
<path id="Path_22_3_" fill="#0D3547" d="M2930.9,182.8v1h0.6v3.1h-0.7v1h2.5v-1h-0.7v-3.1h0.6v-1H2930.9z"/>
<path id="Path_23_3_" fill="#0D3547" d="M2937,186.9c-0.8,0.1-1.6-0.6-1.6-1.4c-0.1-0.8,0.6-1.6,1.4-1.6c0.8-0.1,1.6,0.6,1.6,1.4
c0,0,0,0.1,0,0.1c0.1,0.8-0.5,1.4-1.3,1.5C2937.1,186.8,2937.1,186.9,2937,186.9z M2939.2,186.8c0.3-0.5,0.4-1,0.4-1.5
c0-1.4-1.2-2.6-2.6-2.6c-1.4,0-2.6,1.2-2.6,2.6c0,1.4,1.2,2.6,2.6,2.6c0.5,0,0.9-0.1,1.3-0.3l0.1,0l0.1,0.3h1.2v-0.1
L2939.2,186.8L2939.2,186.8z"/>
<path id="Path_24_3_" fill="#1A6D93" d="M2928.7,170.4L2928.7,170.4c-2.1-0.8-4.1-1.8-5.9-3.1c-1.8-1.2-3.4-2.6-4.7-4.3
c-0.6-0.7-1.1-1.6-1.4-2.6c-0.3-0.8,0-1.7,0.8-2.1c0.2-0.1,0.4-0.2,0.6-0.3c0.7-0.2,1.4-0.2,2.1-0.2l0.3,0l0.4,0l0.3,0l0.3-1.2
l-0.2,0c-0.2,0-0.4-0.1-0.6-0.1c-0.4,0-0.7-0.1-1-0.1c-0.7,0-1.3,0.1-1.9,0.3c-1.1,0.3-1.9,1.1-2.2,2.2c-0.2,0.8,0,1.7,0.4,2.5
c0.6,1.3,1.4,2.5,2.5,3.5c2.8,2.8,6.1,4.9,9.7,6.3c0.3,0.1,0.5,0.2,0.8,0.3c0.1,0,0.2,0.1,0.4,0.1l0.2-0.7L2928.7,170.4z"/>
<path id="Path_25_3_" fill="#1A6D93" d="M2938.2,169.3C2938.2,169.3,2938.2,169.2,2938.2,169.3c-0.1-0.8-0.4-1.5-0.8-2.1
c-0.8-1.3-1.7-2.5-2.9-3.5c-0.3-0.3-0.6-0.6-1-0.9c-0.1-0.1-0.3-0.2-0.4-0.4v0c0,0,0,0,0,0.1l0,0.3c0,0.4,0,0.8,0.1,1.2
c0,0.1,0.1,0.2,0.1,0.2c0.2,0.2,0.4,0.4,0.5,0.5c0.3,0.3,0.6,0.6,1,1c0.9,0.9,1.5,1.9,2,3c0.2,0.4,0.2,0.9,0.2,1.3
c-0.1,0.7-0.6,1.2-1.3,1.4c-0.2,0.1-0.4,0.1-0.6,0.2l0.8,1c0.1,0,0.3-0.1,0.4-0.1c0.9-0.3,1.7-1.1,1.9-2.1l0.1-0.3L2938.2,169.3
L2938.2,169.3z"/>
<path id="Path_26_3_" fill="#1A6D93" d="M2930.6,159.4c0.1,0.4,0.1,0.8,0.2,1.2c0.1,0.9,0.2,1.9,0.3,2.8c0.1,0.9,0.1,1.9,0,2.8
l1.1,1.4c0-0.3,0.1-0.6,0.1-0.9c0.2-2.1,0.1-4.1-0.2-6.2c-0.1-0.4-0.1-0.8-0.2-1.2c0-0.2-0.1-0.4-0.1-0.6l-1.2,0.3c0,0,0,0,0,0.1
C2930.6,159.3,2930.6,159.4,2930.6,159.4z"/>
<path id="Path_27_3_" fill="#1A6D93" d="M2930.1,172c-0.2,0.6-0.4,1.2-0.7,1.7c-0.3,0.8-0.8,1.5-1.5,2.1c-0.7,0.6-1.7,0.6-2.4,0
c-0.5-0.5-1-1.1-1.3-1.7c-0.6-1.2-1-2.5-1.3-3.9l0,0c0-0.1,0-0.2-0.1-0.2c-0.3-0.2-0.7-0.4-1.1-0.7c-0.1-0.1-0.2-0.1-0.3-0.2
c0,0.1,0,0.2,0,0.2c0,0.2,0.1,0.4,0.1,0.6c0.3,1.7,0.8,3.4,1.6,4.9c0.6,1.3,1.7,2.3,3.1,2.7h0.7c1.3-0.3,2.4-1.2,2.9-2.4
c0.2-0.3,0.3-0.5,0.4-0.8c0.2-0.4,0.4-0.9,0.5-1.3L2930.1,172z"/>
</g>
<g id="Group_17_3_" transform="translate(-1206 444)">
<circle id="Ellipse_6_3_" fill="#0D3547" cx="2681.2" cy="256.4" r="8"/>
<rect id="Rectangle_2_3_" x="2680.2" y="252.4" fill="#FFFFFF" width="2" height="8"/>
<rect id="Rectangle_3_3_" x="2677.2" y="255.4" fill="#FFFFFF" width="8" height="2"/>
</g>
<g id="Group_18_3_" transform="translate(-1350 444)">
<circle id="Ellipse_6-2_3_" fill="#0D3547" cx="2681.2" cy="256.4" r="8"/>
<rect id="Rectangle_2-2_3_" x="2680.2" y="252.4" fill="#FFFFFF" width="2" height="8"/>
<rect id="Rectangle_3-2_3_" x="2677.2" y="255.4" fill="#FFFFFF" width="8" height="2"/>
</g>
<g id="Group_43_1_" transform="translate(-1765.339 512.463) rotate(-90)">
<g id="Path_1-2_1_" transform="translate(-227 330)">
<path fill="#FFFFFF" d="M-125.4,2896.2c-4.5,0-8.8-1.8-12-5s-5-7.5-5-12s1.8-8.8,5-12c3.2-3.2,7.5-5,12-5c4.5,0,8.8,1.8,12,5
c3.2,3.2,5,7.5,5,12s-1.8,8.8-5,12C-116.6,2894.4-120.9,2896.2-125.4,2896.2z"/>
<path fill="#715EC7" d="M-125.4,2863.2c-4.3,0-8.3,1.7-11.3,4.7s-4.7,7-4.7,11.3s1.7,8.3,4.7,11.3s7,4.7,11.3,4.7
c4.3,0,8.3-1.7,11.3-4.7c3-3,4.7-7,4.7-11.3s-1.7-8.3-4.7-11.3C-117.2,2864.8-121.2,2863.2-125.4,2863.2 M-125.4,2861.2
c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S-135.4,2861.2-125.4,2861.2z"/>
</g>
<g id="Path_2-2_2_" transform="translate(-220.111 336.889)">
<path fill="#FFFFFF" d="M-132.5,2879c-3.8,0-6.9-3.1-6.9-6.9c0-3.8,3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9
C-125.6,2875.9-128.7,2879-132.5,2879z"/>
<path fill="#0D3547" d="M-132.5,2869.2c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9
C-129.6,2870.5-130.9,2869.2-132.5,2869.2 M-132.5,2861.2c6,0,10.9,4.9,10.9,10.9c0,6-4.9,10.9-10.9,10.9
c-6,0-10.9-4.9-10.9-10.9C-143.4,2866.1-138.6,2861.2-132.5,2861.2z"/>
</g>
</g>
<g id="Group_44_1_" transform="translate(-1829.339 574.463) rotate(-90)">
<g id="Path_1-3_2_" transform="translate(-227 330)">
<path fill="#FFFFFF" d="M-128.4,2896.2c-4.5,0-8.8-1.8-12-5s-5-7.5-5-12s1.8-8.8,5-12c3.2-3.2,7.5-5,12-5c4.5,0,8.8,1.8,12,5
c3.2,3.2,5,7.5,5,12s-1.8,8.8-5,12C-119.6,2894.4-123.9,2896.2-128.4,2896.2z"/>
<path fill="#715EC7" d="M-128.4,2863.2c-4.3,0-8.3,1.7-11.3,4.7s-4.7,7-4.7,11.3s1.7,8.3,4.7,11.3s7,4.7,11.3,4.7
c4.3,0,8.3-1.7,11.3-4.7c3-3,4.7-7,4.7-11.3s-1.7-8.3-4.7-11.3C-120.2,2864.8-124.2,2863.2-128.4,2863.2 M-128.4,2861.2
c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S-138.4,2861.2-128.4,2861.2z"/>
</g>
<g id="Path_2-3_1_" transform="translate(-220.111 336.889)">
<path fill="#FFFFFF" d="M-135.5,2879c-3.8,0-6.9-3.1-6.9-6.9c0-3.8,3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9
C-128.6,2875.9-131.7,2879-135.5,2879z"/>
<path fill="#0D3547" d="M-135.5,2869.2c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9
C-132.6,2870.5-133.9,2869.2-135.5,2869.2 M-135.5,2861.2c6,0,10.9,4.9,10.9,10.9c0,6-4.9,10.9-10.9,10.9s-10.9-4.9-10.9-10.9
C-146.4,2866.1-141.6,2861.2-135.5,2861.2z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1465.8,913.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V913.4z"/>
<path fill="#0D3547" d="M1473.5,909.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1473.5,908.7,1473.5,909.9z M1468.2,909.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C1468.4,908.5,1468.2,909.1,1468.2,909.9z"
/>
<path fill="#0D3547" d="M1478.9,907.9c0,0.2,0,0.5-0.1,0.7c-0.1,0.2-0.2,0.4-0.3,0.5c-0.1,0.1-0.3,0.3-0.5,0.4
c-0.2,0.1-0.4,0.2-0.6,0.2v0c0.6,0.1,1,0.2,1.3,0.5c0.3,0.3,0.4,0.7,0.4,1.1c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.3-0.3,0.5-0.5,0.7
s-0.5,0.3-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.7,0-1.1-0.1c-0.3-0.1-0.7-0.2-0.9-0.3v-1.3c0.1,0.1,0.3,0.1,0.5,0.2
c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0.1,0.5,0.1s0.3,0,0.4,0c0.3,0,0.5,0,0.7-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.2-0.2,0.2-0.3
c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2,0-0.5-0.1-0.8-0.1h-0.5
v-1.1h0.5c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
s-0.4-0.2-0.8-0.2c-0.2,0-0.3,0-0.4,0c-0.1,0-0.3,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l-0.8-1
c0.1-0.1,0.3-0.2,0.4-0.3s0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.2,0,0.5-0.1,0.7-0.1c0.4,0,0.7,0,1,0.1
c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.5C1478.9,907.4,1478.9,907.6,1478.9,907.9z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1401.8,913.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V913.4z"/>
<path fill="#0D3547" d="M1409.5,909.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1409.5,908.7,1409.5,909.9z M1404.2,909.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C1404.4,908.5,1404.2,909.1,1404.2,909.9z"
/>
<path fill="#0D3547" d="M1415.2,913.4h-4.8v-1l1.7-1.8c0.2-0.2,0.4-0.4,0.6-0.6c0.2-0.2,0.3-0.4,0.4-0.6c0.1-0.2,0.2-0.4,0.3-0.6
s0.1-0.4,0.1-0.6c0-0.2-0.1-0.4-0.2-0.6s-0.3-0.2-0.6-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.3-0.7,0.5l-0.8-1
c0.1-0.1,0.3-0.3,0.5-0.4c0.2-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.2,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6,0,0.9,0.1
s0.5,0.2,0.7,0.4c0.2,0.2,0.3,0.4,0.4,0.6s0.2,0.5,0.2,0.8c0,0.3,0,0.5-0.1,0.8c-0.1,0.3-0.2,0.5-0.4,0.8
c-0.2,0.2-0.4,0.5-0.6,0.7c-0.2,0.2-0.5,0.5-0.7,0.7l-0.9,0.9v0.1h2.9V913.4z"/>
</g>
<g id="Group_45_2_" transform="translate(-424 1039)">
<circle id="Ellipse_5-5_2_" fill="#5EC793" cx="1788.2" cy="-79.6" r="4"/>
<g id="Group_11-2_1_" transform="translate(-1464 -554)">
<circle id="Ellipse_5-6_2_" fill="#5EC793" cx="3265.2" cy="474.4" r="4"/>
<g enable-background="new ">
<path fill="#0D3547" d="M3275.8,477.4h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V477.4z"/>
<path fill="#0D3547" d="M3283,477.4h-4.1v-7.1h4.1v1.2h-2.6v1.6h2.4v1.2h-2.4v1.8h2.6V477.4z"/>
<path fill="#0D3547" d="M3286,474.7v2.7h-1.5v-7.1h2.1c1,0,1.7,0.2,2.2,0.5c0.5,0.4,0.7,0.9,0.7,1.6c0,0.4-0.1,0.8-0.3,1.1
c-0.2,0.3-0.6,0.6-1,0.8l2.1,3.1h-1.7l-1.7-2.7H3286z M3286,473.5h0.5c0.5,0,0.8-0.1,1.1-0.2c0.2-0.2,0.3-0.4,0.3-0.8
c0-0.3-0.1-0.6-0.3-0.7s-0.6-0.2-1.1-0.2h-0.5V473.5z"/>
<path fill="#0D3547" d="M3294.1,477.4l-1.7-5.6h0c0.1,1.1,0.1,1.9,0.1,2.3v3.3h-1.4v-7.1h2.1l1.7,5.5h0l1.8-5.5h2.1v7.1h-1.4
v-3.4c0-0.2,0-0.3,0-0.6s0-0.8,0.1-1.7h0l-1.8,5.6H3294.1z"/>
<path fill="#0D3547" d="M3307.1,471.9c0,0.2,0,0.5-0.1,0.7c-0.1,0.2-0.2,0.4-0.3,0.5c-0.1,0.1-0.3,0.3-0.5,0.4
c-0.2,0.1-0.4,0.2-0.6,0.2v0c0.6,0.1,1,0.2,1.3,0.5c0.3,0.3,0.4,0.7,0.4,1.1c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.3-0.3,0.5-0.5,0.7
s-0.5,0.3-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.7,0-1.1-0.1c-0.3-0.1-0.7-0.2-0.9-0.3v-1.3c0.1,0.1,0.3,0.1,0.5,0.2
c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0.1,0.5,0.1s0.3,0,0.4,0c0.3,0,0.5,0,0.7-0.1s0.3-0.1,0.4-0.2c0.1-0.1,0.2-0.2,0.2-0.3
c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2,0-0.5-0.1-0.8-0.1h-0.5
v-1.1h0.5c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4c0-0.3-0.1-0.5-0.2-0.6
s-0.4-0.2-0.7-0.2c-0.2,0-0.3,0-0.4,0c-0.1,0-0.3,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l-0.8-1
c0.1-0.1,0.3-0.2,0.4-0.3s0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.2,0,0.5-0.1,0.7-0.1c0.4,0,0.7,0,1,0.1
c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.5C3307.1,471.4,3307.1,471.6,3307.1,471.9z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1757.8-88.6h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V-88.6z"/>
<path fill="#0D3547" d="M1765-88.6h-4.1v-7.1h4.1v1.2h-2.6v1.6h2.4v1.2h-2.4v1.8h2.6V-88.6z"/>
<path fill="#0D3547" d="M1768-91.3v2.7h-1.5v-7.1h2.1c1,0,1.7,0.2,2.2,0.5c0.5,0.4,0.7,0.9,0.7,1.6c0,0.4-0.1,0.8-0.3,1.1
c-0.2,0.3-0.6,0.6-1,0.8l2.1,3.1h-1.7l-1.7-2.7H1768z M1768-92.5h0.5c0.5,0,0.8-0.1,1.1-0.2c0.2-0.2,0.3-0.4,0.3-0.8
c0-0.3-0.1-0.6-0.3-0.7c-0.2-0.1-0.6-0.2-1.1-0.2h-0.5V-92.5z"/>
<path fill="#0D3547" d="M1776.1-88.6l-1.7-5.6h0c0.1,1.1,0.1,1.9,0.1,2.3v3.3h-1.4v-7.1h2.1l1.7,5.5h0l1.8-5.5h2.1v7.1h-1.4
v-3.4c0-0.2,0-0.3,0-0.6s0-0.8,0.1-1.7h0l-1.8,5.6H1776.1z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1771.6-76.6h-4.8v-1l1.7-1.8c0.2-0.2,0.4-0.4,0.6-0.6c0.2-0.2,0.3-0.4,0.4-0.6c0.1-0.2,0.2-0.4,0.3-0.6
s0.1-0.4,0.1-0.6c0-0.2-0.1-0.4-0.2-0.6s-0.3-0.2-0.6-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.5,0.3-0.7,0.5l-0.8-1
c0.1-0.1,0.3-0.3,0.5-0.4c0.2-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.4-0.2,0.6-0.2c0.2-0.1,0.5-0.1,0.8-0.1c0.3,0,0.6,0,0.9,0.1
s0.5,0.2,0.7,0.4c0.2,0.2,0.3,0.4,0.4,0.6s0.2,0.5,0.2,0.8c0,0.3,0,0.5-0.1,0.8c-0.1,0.3-0.2,0.5-0.4,0.8
c-0.2,0.2-0.4,0.5-0.6,0.7c-0.2,0.2-0.5,0.5-0.7,0.7l-0.9,0.9v0.1h2.9V-76.6z"/>
</g>
</g>
<g id="Group_47_1_" transform="translate(-1829.339 641.463) rotate(-90)">
<g id="Path_1-5_2_" transform="translate(-227 330)">
<path fill="#FFFFFF" d="M-168.4,2896.2c-4.5,0-8.8-1.8-12-5s-5-7.5-5-12s1.8-8.8,5-12c3.2-3.2,7.5-5,12-5c4.5,0,8.8,1.8,12,5
c3.2,3.2,5,7.5,5,12s-1.8,8.8-5,12C-159.6,2894.4-163.9,2896.2-168.4,2896.2z"/>
<path fill="#715EC7" d="M-168.4,2863.2c-4.3,0-8.3,1.7-11.3,4.7s-4.7,7-4.7,11.3s1.7,8.3,4.7,11.3s7,4.7,11.3,4.7
c4.3,0,8.3-1.7,11.3-4.7c3-3,4.7-7,4.7-11.3s-1.7-8.3-4.7-11.3C-160.2,2864.8-164.2,2863.2-168.4,2863.2 M-168.4,2861.2
c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S-178.4,2861.2-168.4,2861.2z"/>
</g>
<g id="Path_2-5_1_" transform="translate(-220.111 336.889)">
<path fill="#FFFFFF" d="M-175.5,2879c-3.8,0-6.9-3.1-6.9-6.9c0-3.8,3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9
C-168.6,2875.9-171.7,2879-175.5,2879z"/>
<path fill="#0D3547" d="M-175.5,2869.2c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9
C-172.6,2870.5-173.9,2869.2-175.5,2869.2 M-175.5,2861.2c6,0,10.9,4.9,10.9,10.9c0,6-4.9,10.9-10.9,10.9s-10.9-4.9-10.9-10.9
C-186.4,2866.1-181.6,2861.2-175.5,2861.2z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1465.8,1020.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V1020.4z"/>
<path fill="#0D3547" d="M1473.5,1016.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1473.5,1015.7,1473.5,1016.9z M1468.2,1016.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6
C1468.4,1015.5,1468.2,1016.1,1468.2,1016.9z"/>
<path fill="#0D3547" d="M1477,1015.9c0.3,0,0.6,0,0.9,0.1s0.5,0.2,0.7,0.4s0.3,0.4,0.5,0.7c0.1,0.3,0.2,0.6,0.2,0.9
c0,0.4-0.1,0.7-0.2,1c-0.1,0.3-0.3,0.6-0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.5s-0.7,0.2-1.2,0.2c-0.2,0-0.4,0-0.5,0s-0.3,0-0.5-0.1
c-0.2,0-0.3-0.1-0.5-0.1s-0.3-0.1-0.4-0.2v-1.3c0.1,0.1,0.2,0.1,0.4,0.2c0.1,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0.1,0.5,0.1
c0.2,0,0.3,0,0.5,0c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.3-0.5,0.3-0.9c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.6-0.3-1-0.3
c-0.1,0-0.2,0-0.3,0s-0.2,0-0.3,0s-0.2,0-0.3,0.1c-0.1,0-0.2,0-0.2,0.1l-0.6-0.3l0.3-3.6h3.8v1.3h-2.5l-0.1,1.4
c0.1,0,0.2,0,0.4-0.1S1476.7,1015.9,1477,1015.9z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1401.8,1020.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V1020.4z"/>
<path fill="#0D3547" d="M1409.5,1016.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1409.5,1015.7,1409.5,1016.9z M1404.2,1016.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6
C1404.4,1015.5,1404.2,1016.1,1404.2,1016.9z"/>
<path fill="#0D3547" d="M1415.3,1019h-0.9v1.5h-1.5v-1.5h-2.9v-1l3-4.6h1.4v4.5h0.9V1019z M1413,1017.8v-1.2c0,0,0-0.1,0-0.2
c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3s0-0.2,0-0.3c0-0.1,0-0.1,0-0.2h0c-0.1,0.1-0.1,0.3-0.2,0.4s-0.2,0.3-0.3,0.5
l-1.2,1.8H1413z"/>
</g>
<g id="Group_48_2_" transform="translate(-424 1106)">
<circle id="Ellipse_5-7_1_" fill="#5EC793" cx="1788.2" cy="-40.6" r="4"/>
<g id="Group_11-3_1_" transform="translate(-1464 -554)">
<circle id="Ellipse_5-8_1_" fill="#5EC793" cx="3265.2" cy="513.4" r="4"/>
<g enable-background="new ">
<path fill="#0D3547" d="M3275.8,516.4h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V516.4z"/>
<path fill="#0D3547" d="M3283,516.4h-4.1v-7.1h4.1v1.2h-2.6v1.6h2.4v1.2h-2.4v1.8h2.6V516.4z"/>
<path fill="#0D3547" d="M3286,513.7v2.7h-1.5v-7.1h2.1c1,0,1.7,0.2,2.2,0.5c0.5,0.4,0.7,0.9,0.7,1.6c0,0.4-0.1,0.8-0.3,1.1
c-0.2,0.3-0.6,0.6-1,0.8l2.1,3.1h-1.7l-1.7-2.7H3286z M3286,512.5h0.5c0.5,0,0.8-0.1,1.1-0.2c0.2-0.2,0.3-0.4,0.3-0.8
c0-0.3-0.1-0.6-0.3-0.7s-0.6-0.2-1.1-0.2h-0.5V512.5z"/>
<path fill="#0D3547" d="M3294.1,516.4l-1.7-5.6h0c0.1,1.1,0.1,1.9,0.1,2.3v3.3h-1.4v-7.1h2.1l1.7,5.5h0l1.8-5.5h2.1v7.1h-1.4
v-3.4c0-0.2,0-0.3,0-0.6s0-0.8,0.1-1.7h0l-1.8,5.6H3294.1z"/>
<path fill="#0D3547" d="M3305.1,511.9c0.3,0,0.6,0,0.9,0.1s0.5,0.2,0.7,0.4s0.3,0.4,0.5,0.7c0.1,0.3,0.2,0.6,0.2,0.9
c0,0.4-0.1,0.7-0.2,1c-0.1,0.3-0.3,0.6-0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.5s-0.7,0.2-1.2,0.2c-0.2,0-0.4,0-0.5,0s-0.3,0-0.5-0.1
c-0.2,0-0.3-0.1-0.5-0.1s-0.3-0.1-0.4-0.2v-1.3c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0.1,0.5,0.1
c0.2,0,0.3,0,0.5,0c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.3-0.5,0.3-0.9c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.6-0.3-1-0.3
c-0.1,0-0.2,0-0.3,0s-0.2,0-0.3,0s-0.2,0-0.3,0.1c-0.1,0-0.2,0-0.2,0.1l-0.6-0.3l0.3-3.6h3.8v1.3h-2.5l-0.1,1.4
c0.1,0,0.2,0,0.4-0.1S3304.9,511.9,3305.1,511.9z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1757.8-49.6h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V-49.6z"/>
<path fill="#0D3547" d="M1765-49.6h-4.1v-7.1h4.1v1.2h-2.6v1.6h2.4v1.2h-2.4v1.8h2.6V-49.6z"/>
<path fill="#0D3547" d="M1768-52.3v2.7h-1.5v-7.1h2.1c1,0,1.7,0.2,2.2,0.5c0.5,0.4,0.7,0.9,0.7,1.6c0,0.4-0.1,0.8-0.3,1.1
c-0.2,0.3-0.6,0.6-1,0.8l2.1,3.1h-1.7l-1.7-2.7H1768z M1768-53.5h0.5c0.5,0,0.8-0.1,1.1-0.2c0.2-0.2,0.3-0.4,0.3-0.8
c0-0.3-0.1-0.6-0.3-0.7c-0.2-0.1-0.6-0.2-1.1-0.2h-0.5V-53.5z"/>
<path fill="#0D3547" d="M1776.1-49.6l-1.7-5.6h0c0.1,1.1,0.1,1.9,0.1,2.3v3.3h-1.4v-7.1h2.1l1.7,5.5h0l1.8-5.5h2.1v7.1h-1.4
v-3.4c0-0.2,0-0.3,0-0.6s0-0.8,0.1-1.7h0l-1.8,5.6H1776.1z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1771.7-39h-0.9v1.5h-1.5V-39h-2.9v-1l3-4.6h1.4v4.5h0.9V-39z M1769.4-40.2v-1.2c0,0,0-0.1,0-0.2
c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3s0-0.2,0-0.3c0-0.1,0-0.1,0-0.2h0c-0.1,0.1-0.1,0.3-0.2,0.4s-0.2,0.3-0.3,0.5
l-1.2,1.8H1769.4z"/>
</g>
</g>
<g id="Group_49_1_" transform="translate(-1765.339 641.463) rotate(-90)">
<g id="Path_1-6_1_" transform="translate(-227 330)">
<path fill="#FFFFFF" d="M-168.4,2896.2c-4.5,0-8.8-1.8-12-5s-5-7.5-5-12s1.8-8.8,5-12c3.2-3.2,7.5-5,12-5c4.5,0,8.8,1.8,12,5
c3.2,3.2,5,7.5,5,12s-1.8,8.8-5,12C-159.6,2894.4-163.9,2896.2-168.4,2896.2z"/>
<path fill="#715EC7" d="M-168.4,2863.2c-4.3,0-8.3,1.7-11.3,4.7s-4.7,7-4.7,11.3s1.7,8.3,4.7,11.3s7,4.7,11.3,4.7
c4.3,0,8.3-1.7,11.3-4.7c3-3,4.7-7,4.7-11.3s-1.7-8.3-4.7-11.3C-160.2,2864.8-164.2,2863.2-168.4,2863.2 M-168.4,2861.2
c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S-178.4,2861.2-168.4,2861.2z"/>
</g>
<g id="Path_2-6_1_" transform="translate(-220.111 336.889)">
<path fill="#FFFFFF" d="M-175.5,2879c-3.8,0-6.9-3.1-6.9-6.9c0-3.8,3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9
C-168.6,2875.9-171.7,2879-175.5,2879z"/>
<path fill="#0D3547" d="M-175.5,2869.2c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9
C-172.6,2870.5-173.9,2869.2-175.5,2869.2 M-175.5,2861.2c6,0,10.9,4.9,10.9,10.9c0,6-4.9,10.9-10.9,10.9s-10.9-4.9-10.9-10.9
C-186.4,2866.1-181.6,2861.2-175.5,2861.2z"/>
</g>
</g>
<g id="Group_50_1_" transform="translate(-1829.339 703.463) rotate(-90)">
<g id="Path_1-7_1_" transform="translate(-227 330)">
<path fill="#FFFFFF" d="M-174.4,2896.2c-4.5,0-8.8-1.8-12-5s-5-7.5-5-12s1.8-8.8,5-12c3.2-3.2,7.5-5,12-5c4.5,0,8.8,1.8,12,5
c3.2,3.2,5,7.5,5,12s-1.8,8.8-5,12C-165.6,2894.4-169.9,2896.2-174.4,2896.2z"/>
<path fill="#715EC7" d="M-174.4,2863.2c-4.3,0-8.3,1.7-11.3,4.7s-4.7,7-4.7,11.3s1.7,8.3,4.7,11.3s7,4.7,11.3,4.7
c4.3,0,8.3-1.7,11.3-4.7c3-3,4.7-7,4.7-11.3s-1.7-8.3-4.7-11.3C-166.2,2864.8-170.2,2863.2-174.4,2863.2 M-174.4,2861.2
c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S-184.4,2861.2-174.4,2861.2z"/>
</g>
<g id="Path_2-7_1_" transform="translate(-220.111 336.889)">
<path fill="#FFFFFF" d="M-181.5,2879c-3.8,0-6.9-3.1-6.9-6.9c0-3.8,3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9
C-174.6,2875.9-177.7,2879-181.5,2879z"/>
<path fill="#0D3547" d="M-181.5,2869.2c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9
C-178.6,2870.5-179.9,2869.2-181.5,2869.2 M-181.5,2861.2c6,0,10.9,4.9,10.9,10.9c0,6-4.9,10.9-10.9,10.9s-10.9-4.9-10.9-10.9
C-192.4,2866.1-187.6,2861.2-181.5,2861.2z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1465.8,1088.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V1088.4z"/>
<path fill="#0D3547" d="M1473.5,1084.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1473.5,1083.7,1473.5,1084.9z M1468.2,1084.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6
C1468.4,1083.5,1468.2,1084.1,1468.2,1084.9z"/>
<path fill="#0D3547" d="M1475,1088.4l2.5-5.9h-3.3v-1.3h4.9v0.9l-2.6,6.2H1475z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1401.8,1088.4h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V1088.4z"/>
<path fill="#0D3547" d="M1409.5,1084.9c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1409.5,1083.7,1409.5,1084.9z M1404.2,1084.9c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6
C1404.4,1083.5,1404.2,1084.1,1404.2,1084.9z"/>
<path fill="#0D3547" d="M1410.4,1085.4c0-0.3,0-0.7,0.1-1s0.1-0.7,0.2-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.5,0.6-0.7
c0.3-0.2,0.6-0.4,0.9-0.5c0.4-0.1,0.8-0.2,1.2-0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.2,0s0.1,0,0.2,0v1.2
c-0.1,0-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.5,0.3-0.7,0.5s-0.3,0.4-0.4,0.7s-0.1,0.6-0.1,0.9
h0.1c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.2s0.3-0.1,0.5-0.1c0.3,0,0.6,0.1,0.8,0.2
c0.2,0.1,0.5,0.2,0.6,0.4s0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,1c0,0.4-0.1,0.7-0.2,1s-0.3,0.6-0.5,0.8c-0.2,0.2-0.4,0.4-0.7,0.5
c-0.3,0.1-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6s-0.4-0.6-0.5-1C1410.5,1086.4,1410.4,1086,1410.4,1085.4
z M1412.9,1087.3c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.2-0.4s0.1-0.3,0.1-0.6c0-0.3-0.1-0.6-0.2-0.8
c-0.1-0.2-0.4-0.3-0.7-0.3c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2s-0.2,0.2-0.2,0.3s-0.1,0.2-0.1,0.4
c0,0.2,0,0.3,0.1,0.5c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.3,0.3S1412.7,1087.3,1412.9,1087.3z"/>
</g>
<g id="Group_51_2_" transform="translate(-424 1168)">
<circle id="Ellipse_5-9_1_" fill="#5EC793" cx="1788.2" cy="-34.6" r="4"/>
<g id="Group_11-4_1_" transform="translate(-1464 -554)">
<circle id="Ellipse_5-10_1_" fill="#5EC793" cx="3265.2" cy="519.4" r="4"/>
<g enable-background="new ">
<path fill="#0D3547" d="M3275.8,522.4h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V522.4z"/>
<path fill="#0D3547" d="M3283,522.4h-4.1v-7.1h4.1v1.2h-2.6v1.6h2.4v1.2h-2.4v1.8h2.6V522.4z"/>
<path fill="#0D3547" d="M3286,519.7v2.7h-1.5v-7.1h2.1c1,0,1.7,0.2,2.2,0.5c0.5,0.4,0.7,0.9,0.7,1.6c0,0.4-0.1,0.8-0.3,1.1
c-0.2,0.3-0.6,0.6-1,0.8l2.1,3.1h-1.7l-1.7-2.7H3286z M3286,518.5h0.5c0.5,0,0.8-0.1,1.1-0.2c0.2-0.2,0.3-0.4,0.3-0.8
c0-0.3-0.1-0.6-0.3-0.7s-0.6-0.2-1.1-0.2h-0.5V518.5z"/>
<path fill="#0D3547" d="M3294.1,522.4l-1.7-5.6h0c0.1,1.1,0.1,1.9,0.1,2.3v3.3h-1.4v-7.1h2.1l1.7,5.5h0l1.8-5.5h2.1v7.1h-1.4
v-3.4c0-0.2,0-0.3,0-0.6s0-0.8,0.1-1.7h0l-1.8,5.6H3294.1z"/>
<path fill="#0D3547" d="M3303.2,522.4l2.5-5.9h-3.3v-1.3h4.9v0.9l-2.6,6.2H3303.2z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1757.8-43.6h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V-43.6z"/>
<path fill="#0D3547" d="M1765-43.6h-4.1v-7.1h4.1v1.2h-2.6v1.6h2.4v1.2h-2.4v1.8h2.6V-43.6z"/>
<path fill="#0D3547" d="M1768-46.3v2.7h-1.5v-7.1h2.1c1,0,1.7,0.2,2.2,0.5c0.5,0.4,0.7,0.9,0.7,1.6c0,0.4-0.1,0.8-0.3,1.1
c-0.2,0.3-0.6,0.6-1,0.8l2.1,3.1h-1.7l-1.7-2.7H1768z M1768-47.5h0.5c0.5,0,0.8-0.1,1.1-0.2c0.2-0.2,0.3-0.4,0.3-0.8
c0-0.3-0.1-0.6-0.3-0.7c-0.2-0.1-0.6-0.2-1.1-0.2h-0.5V-47.5z"/>
<path fill="#0D3547" d="M1776.1-43.6l-1.7-5.6h0c0.1,1.1,0.1,1.9,0.1,2.3v3.3h-1.4v-7.1h2.1l1.7,5.5h0l1.8-5.5h2.1v7.1h-1.4
v-3.4c0-0.2,0-0.3,0-0.6s0-0.8,0.1-1.7h0l-1.8,5.6H1776.1z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1766.8-34.6c0-0.3,0-0.7,0.1-1s0.1-0.7,0.2-1c0.1-0.3,0.2-0.6,0.4-0.9s0.4-0.5,0.6-0.7
c0.3-0.2,0.6-0.4,0.9-0.5c0.4-0.1,0.8-0.2,1.2-0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.2,0s0.1,0,0.2,0v1.2
c-0.1,0-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.4,0-0.8,0.1-1.1,0.2c-0.3,0.1-0.5,0.3-0.7,0.5s-0.3,0.4-0.4,0.7
s-0.1,0.6-0.1,0.9h0.1c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.2s0.3-0.1,0.5-0.1
c0.3,0,0.6,0.1,0.8,0.2c0.2,0.1,0.5,0.2,0.6,0.4s0.3,0.4,0.4,0.7c0.1,0.3,0.1,0.6,0.1,1c0,0.4-0.1,0.7-0.2,1s-0.3,0.6-0.5,0.8
c-0.2,0.2-0.4,0.4-0.7,0.5c-0.3,0.1-0.6,0.2-1,0.2c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.8-0.6c-0.2-0.3-0.4-0.6-0.5-1
C1766.9-33.6,1766.8-34,1766.8-34.6z M1769.3-32.7c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.2,0.2-0.4
s0.1-0.3,0.1-0.6c0-0.3-0.1-0.6-0.2-0.8c-0.1-0.2-0.4-0.3-0.7-0.3c-0.2,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2
s-0.2,0.2-0.2,0.3s-0.1,0.2-0.1,0.4c0,0.2,0,0.3,0.1,0.5c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.2,0.2,0.3,0.3
S1769.1-32.7,1769.3-32.7z"/>
</g>
</g>
<g id="Group_52_1_" transform="translate(-1765.339 703.463) rotate(-90)">
<g id="Path_1-8_1_" transform="translate(-227 330)">
<path fill="#FFFFFF" d="M-174.4,2896.2c-4.5,0-8.8-1.8-12-5s-5-7.5-5-12s1.8-8.8,5-12c3.2-3.2,7.5-5,12-5c4.5,0,8.8,1.8,12,5
c3.2,3.2,5,7.5,5,12s-1.8,8.8-5,12C-165.6,2894.4-169.9,2896.2-174.4,2896.2z"/>
<path fill="#715EC7" d="M-174.4,2863.2c-4.3,0-8.3,1.7-11.3,4.7s-4.7,7-4.7,11.3s1.7,8.3,4.7,11.3s7,4.7,11.3,4.7
c4.3,0,8.3-1.7,11.3-4.7c3-3,4.7-7,4.7-11.3s-1.7-8.3-4.7-11.3C-166.2,2864.8-170.2,2863.2-174.4,2863.2 M-174.4,2861.2
c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S-184.4,2861.2-174.4,2861.2z"/>
</g>
<g id="Path_2-8_1_" transform="translate(-220.111 336.889)">
<path fill="#FFFFFF" d="M-181.5,2879c-3.8,0-6.9-3.1-6.9-6.9c0-3.8,3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9
C-174.6,2875.9-177.7,2879-181.5,2879z"/>
<path fill="#0D3547" d="M-181.5,2869.2c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9
C-178.6,2870.5-179.9,2869.2-181.5,2869.2 M-181.5,2861.2c6,0,10.9,4.9,10.9,10.9c0,6-4.9,10.9-10.9,10.9s-10.9-4.9-10.9-10.9
C-192.4,2866.1-187.6,2861.2-181.5,2861.2z"/>
</g>
</g>
<g id="Group_46_1_" transform="translate(-1765.339 574.463) rotate(-90)">
<g id="Path_1-4_2_" transform="translate(-227 330)">
<path fill="#FFFFFF" d="M-128.4,2896.2c-4.5,0-8.8-1.8-12-5s-5-7.5-5-12s1.8-8.8,5-12c3.2-3.2,7.5-5,12-5c4.5,0,8.8,1.8,12,5
c3.2,3.2,5,7.5,5,12s-1.8,8.8-5,12C-119.6,2894.4-123.9,2896.2-128.4,2896.2z"/>
<path fill="#715EC7" d="M-128.4,2863.2c-4.3,0-8.3,1.7-11.3,4.7s-4.7,7-4.7,11.3s1.7,8.3,4.7,11.3s7,4.7,11.3,4.7
c4.3,0,8.3-1.7,11.3-4.7c3-3,4.7-7,4.7-11.3s-1.7-8.3-4.7-11.3C-120.2,2864.8-124.2,2863.2-128.4,2863.2 M-128.4,2861.2
c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S-138.4,2861.2-128.4,2861.2z"/>
</g>
<g id="Path_2-4_1_" transform="translate(-220.111 336.889)">
<path fill="#FFFFFF" d="M-135.5,2879c-3.8,0-6.9-3.1-6.9-6.9c0-3.8,3.1-6.9,6.9-6.9s6.9,3.1,6.9,6.9
C-128.6,2875.9-131.7,2879-135.5,2879z"/>
<path fill="#0D3547" d="M-135.5,2869.2c-1.6,0-2.9,1.3-2.9,2.9c0,1.6,1.3,2.9,2.9,2.9s2.9-1.3,2.9-2.9
C-132.6,2870.5-133.9,2869.2-135.5,2869.2 M-135.5,2861.2c6,0,10.9,4.9,10.9,10.9c0,6-4.9,10.9-10.9,10.9s-10.9-4.9-10.9-10.9
C-146.4,2866.1-141.6,2861.2-135.5,2861.2z"/>
</g>
</g>
<g id="Group_78_2_" transform="translate(-1206 907)">
<circle id="Ellipse_6-3_3_" fill="#0D3547" cx="2681.2" cy="256.4" r="8"/>
<rect id="Rectangle_2-3_3_" x="2680.2" y="252.4" fill="#FFFFFF" width="2" height="8"/>
<rect id="Rectangle_3-3_3_" x="2677.2" y="255.4" fill="#FFFFFF" width="8" height="2"/>
</g>
<g id="Group_79_2_" transform="translate(-1350 907)">
<circle id="Ellipse_6-4_3_" fill="#0D3547" cx="2681.2" cy="256.4" r="8"/>
<rect id="Rectangle_2-4_3_" x="2680.2" y="252.4" fill="#FFFFFF" width="2" height="8"/>
<rect id="Rectangle_3-4_3_" x="2677.2" y="255.4" fill="#FFFFFF" width="8" height="2"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1383.1,787.8c0.3,0,0.6,0,0.8,0.1s0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.5s0.2,0.5,0.2,0.8
c0,0.2,0,0.4-0.1,0.6c-0.1,0.2-0.2,0.3-0.3,0.5c-0.1,0.1-0.2,0.3-0.4,0.4s-0.3,0.2-0.5,0.3c0.2,0.1,0.4,0.2,0.6,0.3
s0.3,0.3,0.5,0.4c0.1,0.2,0.3,0.3,0.3,0.5c0.1,0.2,0.1,0.4,0.1,0.6c0,0.3-0.1,0.6-0.2,0.8s-0.3,0.4-0.5,0.6
c-0.2,0.2-0.5,0.3-0.8,0.4c-0.3,0.1-0.6,0.1-1,0.1c-0.4,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.8-0.4s-0.4-0.4-0.5-0.6
c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.2,0-0.5,0.1-0.7c0.1-0.2,0.2-0.4,0.3-0.5c0.1-0.2,0.3-0.3,0.4-0.4s0.3-0.2,0.5-0.3
c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.3-0.2-0.4-0.4c-0.1-0.1-0.2-0.3-0.2-0.5c-0.1-0.2-0.1-0.4-0.1-0.6c0-0.3,0.1-0.5,0.2-0.7
c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.3,0.7-0.3S1382.8,787.8,1383.1,787.8z M1382.1,793.1c0,0.1,0,0.2,0.1,0.4
c0,0.1,0.1,0.2,0.2,0.3s0.2,0.1,0.3,0.2c0.1,0,0.3,0.1,0.4,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.2,0.3-0.4,0.3-0.6
c0-0.1,0-0.3-0.1-0.4c-0.1-0.1-0.1-0.2-0.2-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.2-0.3-0.2l-0.1-0.1
c-0.1,0.1-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.2-0.2,0.3C1382.1,792.8,1382.1,793,1382.1,793.1z
M1383.1,788.9c-0.1,0-0.2,0-0.3,0s-0.2,0.1-0.2,0.1c-0.1,0.1-0.1,0.1-0.2,0.2s-0.1,0.2-0.1,0.3c0,0.1,0,0.3,0.1,0.4
c0,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.2,0.1,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1-0.1,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.2-0.2
c0.1-0.1,0.1-0.2,0.2-0.3c0-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2-0.1-0.3s-0.1-0.2-0.2-0.2s-0.2-0.1-0.2-0.1
C1383.3,788.9,1383.2,788.9,1383.1,788.9z"/>
<path fill="#0D3547" d="M1387.8,792.2l-1.8-2.7h1.7l1.1,1.7l1.1-1.7h1.7l-1.8,2.7l1.9,2.8h-1.7l-1.1-1.9l-1.2,1.9h-1.7
L1387.8,792.2z"/>
<path fill="#0D3547" d="M1397.9,795h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V795z"/>
<path fill="#0D3547" d="M1403.8,795h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V795z"/>
<path fill="#0D3547" d="M1406.8,795v-7.1h1.5v5.9h2.9v1.2H1406.8z"/>
<path fill="#0D3547" d="M1417.7,795h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V795z"/>
<path fill="#0D3547" d="M1425.4,791.4c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1425.4,790.2,1425.4,791.4z M1420.2,791.4c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C1420.4,790,1420.2,790.6,1420.2,791.4z"/>
</g>
<rect x="1320.8" y="978.5" fill="none" stroke="#0D3547" stroke-width="2" width="164.3" height="166"/>
<g enable-background="new ">
<path fill="#0D3547" d="M1392,824.2h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4V817h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V824.2z"/>
<path fill="#0D3547" d="M1399.7,820.6c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1399.7,819.4,1399.7,820.6z M1394.5,820.6c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C1394.6,819.2,1394.5,819.8,1394.5,820.6z"
/>
<path fill="#0D3547" d="M1408.1,820.6c0,0.6,0,1.1-0.1,1.5c-0.1,0.5-0.2,0.8-0.4,1.2c-0.2,0.3-0.5,0.6-0.8,0.7
c-0.3,0.2-0.7,0.2-1.1,0.2c-0.4,0-0.8-0.1-1.1-0.2c-0.3-0.2-0.6-0.4-0.8-0.7c-0.2-0.3-0.4-0.7-0.5-1.2c-0.1-0.5-0.1-1-0.1-1.5
s0-1.1,0.1-1.5c0.1-0.5,0.2-0.8,0.4-1.2s0.4-0.6,0.8-0.7c0.3-0.2,0.7-0.3,1.1-0.3c0.4,0,0.8,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7
s0.4,0.7,0.5,1.2C1408,819.5,1408.1,820,1408.1,820.6z M1404.7,820.6c0,0.8,0.1,1.4,0.2,1.8c0.1,0.4,0.4,0.6,0.7,0.6
c0.3,0,0.6-0.2,0.7-0.6c0.1-0.4,0.2-1,0.2-1.8c0-0.8-0.1-1.4-0.2-1.8c-0.1-0.4-0.4-0.6-0.7-0.6c-0.2,0-0.3,0.1-0.4,0.2
c-0.1,0.1-0.2,0.3-0.3,0.5c-0.1,0.2-0.1,0.5-0.2,0.8C1404.7,819.8,1404.7,820.2,1404.7,820.6z"/>
<path fill="#0D3547" d="M1408.9,821.8v-1.2h2.6v1.2H1408.9z"/>
<path fill="#0D3547" d="M1416.9,818.6c0,0.2,0,0.5-0.1,0.7c-0.1,0.2-0.2,0.4-0.3,0.5c-0.1,0.1-0.3,0.3-0.5,0.4
c-0.2,0.1-0.4,0.2-0.6,0.2v0c0.6,0.1,1,0.2,1.3,0.5c0.3,0.3,0.4,0.7,0.4,1.1c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.3-0.3,0.5-0.5,0.7
c-0.2,0.2-0.5,0.3-0.9,0.5c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.7,0-1.1-0.1c-0.3-0.1-0.7-0.2-0.9-0.3v-1.3
c0.1,0.1,0.3,0.1,0.5,0.2c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3,0.1,0.5,0.1c0.2,0,0.3,0,0.4,0c0.3,0,0.5,0,0.7-0.1s0.3-0.1,0.4-0.2
c0.1-0.1,0.2-0.2,0.2-0.3c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0-0.3-0.1-0.4c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.5-0.2
c-0.2,0-0.5-0.1-0.8-0.1h-0.5V820h0.5c0.3,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.3,0.1-0.4
c0-0.3-0.1-0.5-0.2-0.6c-0.2-0.1-0.4-0.2-0.7-0.2c-0.2,0-0.3,0-0.4,0c-0.1,0-0.3,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.3,0.2
c-0.1,0.1-0.2,0.1-0.3,0.2l-0.8-1c0.1-0.1,0.3-0.2,0.4-0.3s0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.2,0,0.5-0.1,0.7-0.1
c0.4,0,0.7,0,1,0.1c0.3,0.1,0.5,0.2,0.7,0.3c0.2,0.1,0.4,0.3,0.5,0.5C1416.9,818.1,1416.9,818.4,1416.9,818.6z"/>
</g>
<g id="Group_9_3_" transform="translate(-1674 433)">
<circle id="Ellipse_4_11_" fill="#5EC793" cx="3018.4" cy="573.6" r="4"/>
<g enable-background="new ">
<path fill="#0D3547" d="M3008.5,560c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9s1.9,0.3,2.5,0.9C3008.2,557.9,3008.5,558.8,3008.5,560z M3003.3,560c0,0.8,0.2,1.4,0.5,1.8
s0.8,0.6,1.4,0.6c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C3003.5,558.6,3003.3,559.2,3003.3,560z"
/>
<path fill="#0D3547" d="M3015.8,556.4v4.6c0,0.5-0.1,1-0.4,1.4c-0.2,0.4-0.6,0.7-1,0.9s-1,0.3-1.6,0.3c-0.9,0-1.6-0.2-2.1-0.7
c-0.5-0.5-0.8-1.1-0.8-1.9v-4.6h1.5v4.4c0,0.5,0.1,1,0.3,1.2s0.6,0.4,1.1,0.4c0.5,0,0.9-0.1,1.1-0.4c0.2-0.3,0.3-0.7,0.3-1.2
v-4.4H3015.8z"/>
<path fill="#0D3547" d="M3020.3,563.6h-1.5v-5.9h-1.9v-1.3h5.4v1.3h-1.9V563.6z"/>
</g>
<circle id="Ellipse_5_7_" fill="#C75E5E" cx="3031.4" cy="573.6" r="4"/>
<g enable-background="new ">
<path fill="#0D3547" d="M3031,563.6h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V563.6z"/>
<path fill="#0D3547" d="M3038.6,563.6h-1.9l-3.1-5.4h0c0.1,1,0.1,1.6,0.1,2v3.4h-1.4v-7.1h1.9l3.1,5.3h0c0-0.9-0.1-1.6-0.1-2
v-3.4h1.4V563.6z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1392.2,996.6h-3.2v-0.9l0.9-0.4v-4.6l-0.9-0.4v-0.9h3.2v0.9l-0.9,0.4v4.6l0.9,0.4V996.6z"/>
<path fill="#0D3547" d="M1399.9,993c0,1.2-0.3,2.1-0.9,2.7s-1.4,1-2.5,1s-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.7s0.3-2.1,0.9-2.7
c0.6-0.6,1.4-0.9,2.5-0.9c1.1,0,1.9,0.3,2.5,0.9S1399.9,991.8,1399.9,993z M1394.7,993c0,0.8,0.2,1.4,0.5,1.8s0.8,0.6,1.4,0.6
c1.2,0,1.8-0.8,1.8-2.4c0-1.6-0.6-2.4-1.8-2.4c-0.6,0-1.1,0.2-1.4,0.6C1394.9,991.6,1394.7,992.2,1394.7,993z"/>
<path fill="#0D3547" d="M1408.4,995.1h-0.9v1.5h-1.5v-1.5h-2.9v-1l3-4.6h1.4v4.5h0.9V995.1z M1406.1,993.9v-1.2c0,0,0-0.1,0-0.2
c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3s0-0.2,0-0.3c0-0.1,0-0.1,0-0.2h0c-0.1,0.1-0.1,0.3-0.2,0.4s-0.2,0.3-0.3,0.5
l-1.2,1.8H1406.1z"/>
<path fill="#0D3547" d="M1409.1,994.2V993h2.6v1.2H1409.1z"/>
<path fill="#0D3547" d="M1413.3,996.6l2.5-5.9h-3.3v-1.3h4.9v0.9l-2.6,6.2H1413.3z"/>
</g>
</g>
</g>
<g id="Urukul_2_">
</g>
<g id="Stabiliser">
</g>
</svg>

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -0,0 +1,381 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="1909.1 152 90 500" enable-background="new 1909.1 152 90 500" xml:space="preserve">
<g id="Kasli">
</g>
<g id="Kasli_with_backplane">
</g>
<g id="zotino">
</g>
<g id="Novo">
</g>
<g id="IDC_BNC_adapter_copy">
</g>
<g id="HD68">
</g>
<g id="Clocker">
<g id="Group_127" transform="translate(764 443)">
<g id="Group_101">
<g id="Rectangle_1_7_" transform="translate(-764 -443)">
<rect x="1909.1" y="152" fill="#FFFFFF" width="90" height="500"/>
<rect x="1910.1" y="153" fill="none" stroke="#0D3547" stroke-width="2" width="88" height="498"/>
</g>
<g id="Group_100">
<g enable-background="new ">
<path fill="#715EC7" d="M1177.4-201c-0.6,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,1.6,0.6,2.4,1.8,2.4c0.5,0,1.1-0.1,1.8-0.4
v1.3c-0.6,0.2-1.2,0.4-2,0.4c-1,0-1.8-0.3-2.4-0.9c-0.6-0.6-0.8-1.5-0.8-2.7c0-0.7,0.1-1.4,0.4-2c0.3-0.6,0.7-1,1.2-1.3
c0.5-0.3,1.1-0.4,1.8-0.4c0.7,0,1.4,0.2,2.1,0.5l-0.5,1.2c-0.3-0.1-0.5-0.2-0.8-0.3C1177.9-200.9,1177.7-201,1177.4-201z"/>
<path fill="#715EC7" d="M1182.1-195h-1.5v-7.6h1.5V-195z"/>
<path fill="#715EC7" d="M1188.6-197.7c0,0.9-0.2,1.6-0.7,2.1s-1.1,0.8-2,0.8c-0.5,0-1-0.1-1.4-0.3c-0.4-0.2-0.7-0.6-0.9-1
s-0.3-0.9-0.3-1.5c0-0.9,0.2-1.6,0.7-2.1c0.5-0.5,1.1-0.7,2-0.7c0.5,0,1,0.1,1.4,0.3s0.7,0.6,0.9,1S1188.6-198.3,1188.6-197.7z
M1184.9-197.7c0,0.5,0.1,0.9,0.3,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,0.9-0.4c0.2-0.3,0.3-0.7,0.3-1.2c0-0.5-0.1-0.9-0.3-1.2
s-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.1-0.9,0.4C1185-198.7,1184.9-198.3,1184.9-197.7z"/>
<path fill="#715EC7" d="M1192.1-194.9c-1.7,0-2.5-0.9-2.5-2.8c0-0.9,0.2-1.6,0.7-2.1c0.5-0.5,1.1-0.7,2-0.7
c0.6,0,1.2,0.1,1.7,0.4l-0.4,1.2c-0.2-0.1-0.5-0.2-0.7-0.2c-0.2-0.1-0.4-0.1-0.6-0.1c-0.8,0-1.2,0.5-1.2,1.7
c0,1.1,0.4,1.6,1.2,1.6c0.3,0,0.6,0,0.8-0.1c0.2-0.1,0.5-0.2,0.7-0.4v1.3c-0.2,0.2-0.5,0.3-0.7,0.3S1192.5-194.9,1192.1-194.9z
"/>
<path fill="#715EC7" d="M1196.4-198l0.6-0.8l1.5-1.7h1.7l-2.2,2.4l2.3,3.1h-1.7l-1.6-2.2l-0.6,0.5v1.7h-1.5v-7.6h1.5v3.4
L1196.4-198L1196.4-198z"/>
<path fill="#715EC7" d="M1203.6-194.9c-0.9,0-1.6-0.2-2.1-0.7c-0.5-0.5-0.7-1.2-0.7-2.1c0-0.9,0.2-1.6,0.7-2.1
c0.5-0.5,1.1-0.7,1.9-0.7c0.8,0,1.4,0.2,1.8,0.7s0.6,1,0.6,1.8v0.7h-3.5c0,0.4,0.1,0.8,0.4,1s0.6,0.4,1,0.4
c0.3,0,0.6,0,0.9-0.1s0.6-0.2,0.9-0.3v1.2c-0.3,0.1-0.5,0.2-0.8,0.3C1204.4-194.9,1204-194.9,1203.6-194.9z M1203.4-199.5
c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.3,0.5-0.3,0.9h2.1c0-0.4-0.1-0.7-0.3-0.9C1203.9-199.4,1203.7-199.5,1203.4-199.5z"/>
<path fill="#715EC7" d="M1210.1-200.6c0.2,0,0.4,0,0.5,0l-0.1,1.4c-0.1,0-0.3,0-0.4,0c-0.5,0-0.8,0.1-1.1,0.4s-0.4,0.6-0.4,1
v2.8h-1.5v-5.5h1.1l0.2,0.9h0.1c0.2-0.3,0.4-0.6,0.7-0.7C1209.4-200.5,1209.7-200.6,1210.1-200.6z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1161.3-182.3h-1.3v4.3h-1.5v-4.3h-0.8v-0.7l0.8-0.4v-0.4c0-0.6,0.2-1.1,0.5-1.4s0.8-0.4,1.5-0.4
c0.5,0,1,0.1,1.4,0.2l-0.4,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.1,0.3-0.1,0.5v0.3h1.3V-182.3z"/>
<path fill="#0D3547" d="M1165.6-178l-0.3-0.7h0c-0.3,0.3-0.5,0.5-0.8,0.7c-0.3,0.1-0.6,0.2-1,0.2c-0.5,0-0.9-0.1-1.2-0.4
c-0.3-0.3-0.5-0.7-0.5-1.3c0-0.6,0.2-1,0.6-1.3c0.4-0.3,1-0.4,1.8-0.5l0.9,0v-0.2c0-0.6-0.3-0.8-0.8-0.8
c-0.4,0-0.9,0.1-1.5,0.4l-0.5-1c0.6-0.3,1.3-0.5,2.1-0.5c0.7,0,1.3,0.2,1.7,0.5s0.6,0.8,0.6,1.5v3.6H1165.6z M1165.2-180.5
l-0.6,0c-0.4,0-0.8,0.1-1,0.2s-0.3,0.4-0.3,0.7c0,0.4,0.2,0.6,0.7,0.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8V-180.5z"
/>
<path fill="#0D3547" d="M1173.2-178h-1.5v-3.2c0-0.4-0.1-0.7-0.2-0.9c-0.1-0.2-0.4-0.3-0.7-0.3c-0.4,0-0.7,0.1-0.9,0.4
c-0.2,0.3-0.3,0.7-0.3,1.4v2.6h-1.5v-5.5h1.1l0.2,0.7h0.1c0.2-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.2,1-0.2
c0.6,0,1.1,0.2,1.4,0.5c0.3,0.3,0.5,0.8,0.5,1.5V-178z"/>
<path fill="#0D3547" d="M1179.7-180.7c0,0.9-0.2,1.6-0.7,2.1s-1.1,0.8-2,0.8c-0.5,0-1-0.1-1.4-0.3c-0.4-0.2-0.7-0.6-0.9-1
s-0.3-0.9-0.3-1.5c0-0.9,0.2-1.6,0.7-2.1s1.1-0.7,2-0.7c0.5,0,1,0.1,1.4,0.3s0.7,0.6,0.9,1S1179.7-181.3,1179.7-180.7z
M1175.9-180.7c0,0.5,0.1,0.9,0.3,1.2c0.2,0.3,0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,0.9-0.4c0.2-0.3,0.3-0.7,0.3-1.2
c0-0.5-0.1-0.9-0.3-1.2s-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.1-0.9,0.4C1176-181.7,1175.9-181.3,1175.9-180.7z"/>
<path fill="#0D3547" d="M1184.8-178l-0.2-0.7h-0.1c-0.2,0.3-0.4,0.5-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.6,0-1.1-0.2-1.5-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5v-3.6h1.5v3.2c0,0.4,0.1,0.7,0.2,0.9c0.1,0.2,0.4,0.3,0.7,0.3c0.4,0,0.7-0.1,0.9-0.4
c0.2-0.3,0.3-0.7,0.3-1.4v-2.6h1.5v5.5H1184.8z"/>
<path fill="#0D3547" d="M1189.8-179.1c0.3,0,0.6-0.1,0.9-0.2v1.1c-0.4,0.2-0.8,0.2-1.4,0.2c-0.6,0-1-0.2-1.3-0.5
c-0.3-0.3-0.4-0.8-0.4-1.4v-2.6h-0.7v-0.6l0.8-0.5l0.4-1.2h1v1.2h1.5v1.1h-1.5v2.6c0,0.2,0.1,0.4,0.2,0.5
C1189.5-179.1,1189.6-179.1,1189.8-179.1z"/>
<path fill="#0D3547" d="M1197.5-183.6c0.6,0,1.1,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1c0,0.9-0.2,1.6-0.6,2.1
c-0.4,0.5-0.9,0.7-1.5,0.7c-0.6,0-1.1-0.2-1.5-0.7h-0.1l-0.2,0.6h-1.1v-7.6h1.5v1.8c0,0.2,0,0.6-0.1,1.1h0.1
C1196.3-183.3,1196.8-183.6,1197.5-183.6z M1197-182.4c-0.4,0-0.6,0.1-0.8,0.3c-0.2,0.2-0.3,0.6-0.3,1.1v0.2
c0,0.6,0.1,1,0.3,1.3c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.7,0.3-1.2s-0.1-0.9-0.3-1.2
C1197.6-182.2,1197.3-182.4,1197-182.4z"/>
<path fill="#0D3547" d="M1204.7-178l-0.2-0.7h-0.1c-0.2,0.3-0.4,0.5-0.7,0.6c-0.3,0.1-0.6,0.2-1,0.2c-0.6,0-1.1-0.2-1.5-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5v-3.6h1.5v3.2c0,0.4,0.1,0.7,0.2,0.9c0.1,0.2,0.4,0.3,0.7,0.3c0.4,0,0.7-0.1,0.9-0.4
c0.2-0.3,0.3-0.7,0.3-1.4v-2.6h1.5v5.5H1204.7z"/>
<path fill="#0D3547" d="M1210.4-182.3h-1.3v4.3h-1.5v-4.3h-0.8v-0.7l0.8-0.4v-0.4c0-0.6,0.2-1.1,0.5-1.4s0.8-0.4,1.5-0.4
c0.5,0,1,0.1,1.4,0.2l-0.4,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.1,0.3-0.1,0.5v0.3h1.3V-182.3z"/>
<path fill="#0D3547" d="M1214.3-182.3h-1.3v4.3h-1.5v-4.3h-0.8v-0.7l0.8-0.4v-0.4c0-0.6,0.2-1.1,0.5-1.4s0.8-0.4,1.5-0.4
c0.5,0,1,0.1,1.4,0.2l-0.4,1.1c-0.3-0.1-0.6-0.1-0.8-0.1c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.1,0.3-0.1,0.5v0.3h1.3V-182.3z"/>
<path fill="#0D3547" d="M1217.6-177.9c-0.9,0-1.6-0.2-2.1-0.7s-0.7-1.2-0.7-2.1c0-0.9,0.2-1.6,0.7-2.1c0.5-0.5,1.1-0.7,1.9-0.7
c0.8,0,1.4,0.2,1.8,0.7s0.6,1,0.6,1.8v0.7h-3.5c0,0.4,0.1,0.8,0.4,1s0.6,0.4,1,0.4c0.3,0,0.6,0,0.9-0.1s0.6-0.2,0.9-0.3v1.2
c-0.3,0.1-0.5,0.2-0.8,0.3C1218.4-177.9,1218-177.9,1217.6-177.9z M1217.4-182.5c-0.3,0-0.6,0.1-0.7,0.3
c-0.2,0.2-0.3,0.5-0.3,0.9h2.1c0-0.4-0.1-0.7-0.3-0.9C1217.9-182.4,1217.7-182.5,1217.4-182.5z"/>
<path fill="#0D3547" d="M1224.1-183.6c0.2,0,0.4,0,0.5,0l-0.1,1.4c-0.1,0-0.3,0-0.4,0c-0.5,0-0.8,0.1-1.1,0.4
c-0.3,0.2-0.4,0.6-0.4,1v2.8h-1.5v-5.5h1.1l0.2,0.9h0.1c0.2-0.3,0.4-0.6,0.7-0.7C1223.4-183.5,1223.7-183.6,1224.1-183.6z"/>
</g>
<g id="artiq_7_" transform="translate(-785.044 -420.073)">
<path id="Path_3_7_" fill="#1A6D93" d="M1985.4,178.8c0.4,0,0.8-0.4,0.8-0.8c0-0.4-0.3-0.8-0.8-0.8c-0.4,0-0.8,0.4-0.7,0.8
C1984.7,178.5,1985,178.8,1985.4,178.8L1985.4,178.8z"/>
<path id="Path_4_7_" fill="#1A6D93" d="M1967.3,163.8l0.9,0.8c0,0,0,0,0.1,0c1.8-1.5,3.7-2.8,5.8-3.9c2.3-1.2,4.8-2,7.4-2.3
c0.2,0,0.4,0,0.6,0c0.7,0,1.4,0.1,2,0.4c0.6,0.3,1,0.9,1,1.5c0,0.6-0.2,1.2-0.5,1.7c-0.2,0.4-0.5,0.8-0.7,1.2l-0.3,0.5l0.8,0.8
c0.8-0.9,1.4-2,1.7-3.2c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0-0.1,0-0.2V160c0,0,0,0,0,0s0-0.1,0-0.1c-0.2-1-0.8-1.8-1.8-2.2
c-0.6-0.3-1.3-0.4-2-0.4c-0.2,0-0.4,0-0.6,0c-1.1,0-2.1,0.2-3.2,0.4c-4,1.1-7.8,3.1-10.9,5.8c-0.1,0.1-0.2,0.2-0.3,0.2
C1967.4,163.7,1967.4,163.8,1967.3,163.8z"/>
<path id="Path_5_7_" fill="#1A6D93" d="M1969.7,161c0.2-0.2,0.5-0.3,0.7-0.5c0.3-0.1,0.4-0.4,0.4-0.7c0.3-1.5,0.7-2.9,1.5-4.2
c0.3-0.6,0.7-1.1,1.2-1.5c0.6-0.6,1.6-0.6,2.3,0c0.5,0.4,0.9,0.9,1.2,1.4c0.2,0.3,0.3,0.7,0.5,1.1c0.1,0.1,0.1,0.3,0.2,0.4
l1.2-0.3c-0.1-0.2-0.2-0.4-0.3-0.6c-0.2-0.5-0.4-0.9-0.7-1.3c-0.6-1.2-1.6-2.1-2.9-2.4h-0.7c-1.1,0.2-2,0.9-2.5,1.8
c-0.3,0.4-0.6,0.9-0.8,1.3c-0.7,1.4-1.1,2.9-1.4,4.4c-0.1,0.3-0.1,0.5-0.1,0.8c0,0.1,0,0.2-0.1,0.3
C1969.6,161.1,1969.6,161,1969.7,161z"/>
<path id="Path_6_7_" fill="#1A6D93" d="M1968.7,172.1c-0.3,0-0.5,0.1-0.8,0.1c-0.2,0-0.3,0-0.4,0c-0.5,0-1.1-0.1-1.6-0.2
c-0.1,0-0.1,0-0.2-0.1c-0.9-0.3-1.4-1.2-1.1-2.1c0,0,0,0,0,0c0.2-0.9,0.6-1.7,1.1-2.4c0.1-0.1,0.2-0.3,0.3-0.4
c0-0.1,0.1-0.1,0.1-0.2l-0.9-0.8c-0.8,0.9-1.4,2-1.7,3.1c-0.6,1.5,0.2,3.3,1.8,3.9c0.2,0.1,0.4,0.1,0.6,0.2
c0.5,0.1,1.1,0.2,1.6,0.2c0.3,0,0.6,0,1-0.1c0.2,0,0.4,0,0.6-0.1l0.2,0l-0.3-1.2C1968.9,172,1968.8,172.1,1968.7,172.1z"/>
<path id="Path_7_7_" fill="#1A6D93" d="M1967.5,172.1c0.1,0,0.3,0,0.4,0C1967.7,172.1,1967.6,172.1,1967.5,172.1z"/>
<path id="Path_8_7_" fill="#1A6D93" d="M1965.9,171.9c0.5,0.2,1,0.2,1.6,0.2C1966.9,172.1,1966.4,172.1,1965.9,171.9z"/>
<path id="Path_9_7_" fill="#1A6D93" d="M1967.5,173.3c-0.6,0-1.1-0.1-1.6-0.2C1966.4,173.3,1966.9,173.3,1967.5,173.3z"/>
<path id="Path_10_7_" fill="#1A6D93" d="M1968.5,173.3c-0.4,0-0.7,0.1-1,0.1C1967.8,173.3,1968.1,173.3,1968.5,173.3z"/>
<path id="Path_11_7_" fill="#1A6D93" d="M1977.9,161.8c-0.1-0.3-0.1-0.7-0.2-1c-0.1-0.3-0.4-0.4-0.7-0.5h0
c-0.3,0.1-0.7,0.3-1,0.4c-0.1,0.1-0.2,0.1-0.4,0.1l2.3,1.3L1977.9,161.8z"/>
<path id="Path_12_7_" fill="#1A6D93" d="M1970.4,163.9C1970.3,163.9,1970.3,163.9,1970.4,163.9c-0.1,0.1-0.2,0.1-0.2,0.2
c-0.2,0.2-0.5,0.4-0.7,0.5c-0.2,0.1-0.3,0.4-0.3,0.6c0,0.1,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0.3,0.3,0.6,0.5,0.9,0.7l0.2,0.1
c0,0,0.1,0,0.1,0.1c0,0,0,0,0,0L1970.4,163.9C1970.4,163.9,1970.4,163.9,1970.4,163.9z"/>
<path id="Path_13_7_" fill="#1A6D93" d="M1972.6,159.3L1972.6,159.3c0.3-0.1,0.6-0.3,0.9-0.4l0.3-0.2l-1.4-0.5l-0.3,1.2
c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.1,0,0.2-0.1C1972.5,159.3,1972.5,159.3,1972.6,159.3z"/>
<path id="Path_14_7_" fill="#1A6D93" d="M1972.4,159.3C1972.5,159.3,1972.5,159.3,1972.4,159.3L1972.4,159.3
C1972.5,159.3,1972.5,159.3,1972.4,159.3z"/>
<path id="Path_15_7_" fill="#1A6D93" d="M1982.1,166.8l-0.9-0.8c-0.1,0.5-0.2,1.1-0.1,1.6L1982.1,166.8z"/>
<path id="Path_16_7_" fill="#1A6D93" d="M1972.1,171.3C1972.1,171.3,1972,171.3,1972.1,171.3c-0.1,0-0.1,0.1-0.1,0.1
c0.1,0.3,0.1,0.5,0.2,0.8l0.1,0.2l1.2-0.4l-0.3-0.1C1972.9,171.7,1972.5,171.5,1972.1,171.3
C1972.1,171.3,1972.1,171.3,1972.1,171.3z"/>
<path id="Path_17_7_" fill="#1A6D93" d="M1974.7,166.1c0.4,0,0.8-0.4,0.8-0.8c0-0.4-0.4-0.8-0.8-0.8c-0.4,0-0.8,0.3-0.8,0.8
C1973.9,165.7,1974.3,166.1,1974.7,166.1z"/>
<path id="Path_18_7_" fill="#0D3547" d="M1985,179.2l1.2-0.2l0.4-1.2l-0.8-0.9l-1.2,0.2l-0.4,1.2L1985,179.2 M1974.1,167.1
l1.9-0.3l0.7-1.8l-1.2-1.5l-1.9,0.3l-0.7,1.8L1974.1,167.1 M1974.8,162.3c1.7,0,3,1.3,3,3c0,0.2,0,0.3,0,0.5
c0.2,0.9,0.7,1.7,1.4,2.4c0,0,3.3,4.2,5.6,7.2c0.3,0.3,0.6,0.6,1,0.7c1,0.2,1.7,1.2,1.5,2.2s-1.2,1.7-2.2,1.5
c-0.4-0.1-0.8-0.3-1.1-0.6c-0.2-0.3-0.4-0.7-0.4-1.1l0,0V178c-0.1-0.4-0.3-0.8-0.6-1.2l-6.2-6.7c-0.5-0.8-1.3-1.4-2.1-1.8
c-0.8,0-1.6-0.4-2.2-1.1c-1.1-1.3-0.9-3.2,0.4-4.2c0,0,0,0,0,0C1973.4,162.6,1974.1,162.3,1974.8,162.3"/>
<path id="Path_19_7_" fill="#0D3547" d="M1964.7,186.7l0.7-1.6l0.7,1.6H1964.7z M1965.2,183.3l-2.3,5.1v0.1h1.2l0.3-0.7h2.1
l0.3,0.7h1.2v-0.1l-2.3-5.1L1965.2,183.3z"/>
<path id="Path_20_7_" fill="#0D3547" d="M1971.4,185.8h-1v-1.5h1c0.4,0,0.7,0.3,0.6,0.7c0,0,0,0,0,0.1
C1972.1,185.5,1971.8,185.8,1971.4,185.8C1971.4,185.8,1971.4,185.8,1971.4,185.8z M1972.4,186.6c0.6-0.5,0.9-1.3,0.7-2
c-0.2-0.8-0.9-1.3-1.7-1.2h-2.2v5.1h1.2v-1.5h0.8l0.9,1.5h1.4v-0.1L1972.4,186.6L1972.4,186.6z"/>
<path id="Path_21_7_" fill="#0D3547" d="M1975.5,184.4v4.1h1.2v-4.1h1.3v-1h-3.7v1H1975.5z"/>
<path id="Path_22_7_" fill="#0D3547" d="M1978.9,183.3v1h0.6v3.1h-0.7v1h2.5v-1h-0.7v-3.1h0.6v-1H1978.9z"/>
<path id="Path_23_7_" fill="#0D3547" d="M1985,187.4c-0.8,0.1-1.6-0.6-1.6-1.4s0.6-1.6,1.4-1.6s1.6,0.6,1.6,1.4
c0,0,0,0.1,0,0.1c0.1,0.8-0.5,1.4-1.3,1.5C1985,187.4,1985,187.4,1985,187.4z M1987.2,187.4c0.3-0.5,0.4-1,0.4-1.5
c0-1.4-1.2-2.6-2.6-2.6c-1.4,0-2.6,1.2-2.6,2.6c0,1.4,1.2,2.6,2.6,2.6c0.5,0,0.9-0.1,1.3-0.3l0.1,0l0.1,0.3h1.2v-0.1
L1987.2,187.4L1987.2,187.4z"/>
<path id="Path_24_7_" fill="#1A6D93" d="M1976.6,171L1976.6,171c-2.1-0.8-4.1-1.8-5.9-3.1c-1.8-1.2-3.4-2.6-4.7-4.3
c-0.6-0.7-1.1-1.6-1.4-2.6c-0.3-0.8,0-1.7,0.8-2.1c0.2-0.1,0.4-0.2,0.6-0.3c0.7-0.2,1.4-0.2,2.1-0.2l0.3,0l0.4,0l0.3,0l0.3-1.2
l-0.2,0c-0.2,0-0.4-0.1-0.6-0.1c-0.4,0-0.7-0.1-1-0.1c-0.7,0-1.3,0.1-1.9,0.3c-1.1,0.3-1.9,1.1-2.2,2.2c-0.2,0.8,0,1.7,0.4,2.5
c0.6,1.3,1.4,2.5,2.5,3.5c2.8,2.8,6.1,4.9,9.7,6.3c0.3,0.1,0.5,0.2,0.8,0.3c0.1,0,0.2,0.1,0.4,0.1l0.2-0.7L1976.6,171z"/>
<path id="Path_25_7_" fill="#1A6D93" d="M1986.1,169.8C1986.1,169.8,1986.1,169.8,1986.1,169.8c-0.1-0.8-0.4-1.5-0.8-2.1
c-0.8-1.3-1.7-2.5-2.9-3.5c-0.3-0.3-0.6-0.6-1-0.9c-0.1-0.1-0.3-0.2-0.4-0.4v0c0,0,0,0,0,0.1l0,0.3c0,0.4,0,0.8,0.1,1.2
c0,0.1,0.1,0.2,0.1,0.2c0.2,0.2,0.4,0.4,0.5,0.5c0.3,0.3,0.6,0.6,1,1c0.9,0.9,1.5,1.9,2,3c0.2,0.4,0.2,0.9,0.2,1.3
c-0.1,0.7-0.6,1.2-1.3,1.4c-0.2,0.1-0.4,0.1-0.6,0.2l0.8,1c0.1,0,0.3-0.1,0.4-0.1c0.9-0.3,1.7-1.1,1.9-2.1l0.1-0.3
L1986.1,169.8L1986.1,169.8z"/>
<path id="Path_26_7_" fill="#1A6D93" d="M1978.5,160c0.1,0.4,0.1,0.8,0.2,1.2c0.1,0.9,0.2,1.9,0.3,2.8c0.1,0.9,0.1,1.9,0,2.8
l1.1,1.4c0-0.3,0.1-0.6,0.1-0.9c0.2-2.1,0.1-4.1-0.2-6.2c-0.1-0.4-0.1-0.8-0.2-1.2c0-0.2-0.1-0.4-0.1-0.6l-1.2,0.3
c0,0,0,0,0,0.1C1978.5,159.9,1978.5,159.9,1978.5,160z"/>
<path id="Path_27_7_" fill="#1A6D93" d="M1978.1,172.6c-0.2,0.6-0.4,1.2-0.7,1.7c-0.3,0.8-0.8,1.5-1.5,2.1
c-0.7,0.6-1.7,0.6-2.4,0c-0.5-0.5-1-1.1-1.3-1.7c-0.6-1.2-1-2.5-1.3-3.9l0,0c0-0.1,0-0.2-0.1-0.2c-0.3-0.2-0.7-0.4-1.1-0.7
c-0.1-0.1-0.2-0.1-0.3-0.2c0,0.1,0,0.2,0,0.2c0,0.2,0.1,0.4,0.1,0.6c0.3,1.7,0.8,3.4,1.6,4.9c0.6,1.3,1.7,2.3,3.1,2.7h0.7
c1.3-0.3,2.4-1.2,2.9-2.4c0.2-0.3,0.3-0.5,0.4-0.8c0.2-0.4,0.4-0.9,0.5-1.3L1978.1,172.6z"/>
</g>
<g id="Group_18_7_" transform="translate(-566 -530)">
<circle id="Ellipse_6_7_" fill="#0D3547" cx="1729.1" cy="257" r="8"/>
<rect id="Rectangle_2_7_" x="1728.1" y="253" fill="#FFFFFF" width="2" height="8"/>
<rect id="Rectangle_3_7_" x="1725.1" y="256" fill="#FFFFFF" width="8" height="2"/>
</g>
<g id="Group_93">
<g>
<path id="Intersection_1_2_" fill="none" stroke="#0D3547" stroke-width="2" d="M1191.8,76.2l-15.3,0l-7.8-13.3l6.9-12.1
l15.4,0.1l7.7,13.4L1191.8,76.2z"/>
<path fill="none" stroke="#715EC7" stroke-width="2" stroke-miterlimit="10" d="M1174.8,58.4c2.8-4.8,8.9-6.4,13.7-3.7
c4.8,2.8,6.4,8.9,3.7,13.7c-2.8,4.8-8.9,6.4-13.7,3.7C1173.7,69.3,1172.1,63.2,1174.8,58.4z"/>
<path fill="#715EC7" d="M1182.2,62.7c0.4-0.7,1.3-1,2-0.5c0.7,0.4,1,1.3,0.5,2c-0.4,0.7-1.3,1-2,0.5
C1182,64.3,1181.8,63.4,1182.2,62.7z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1206.9,42.6c-0.5,0-0.8,0.2-1.1,0.5s-0.4,0.8-0.4,1.4c0,1.3,0.5,1.9,1.4,1.9c0.4,0,0.9-0.1,1.5-0.3v1
c-0.5,0.2-1,0.3-1.6,0.3c-0.8,0-1.5-0.3-1.9-0.8c-0.4-0.5-0.7-1.2-0.7-2.2c0-0.6,0.1-1.1,0.3-1.6c0.2-0.4,0.5-0.8,0.9-1
c0.4-0.2,0.9-0.4,1.4-0.4c0.6,0,1.1,0.1,1.7,0.4l-0.4,1c-0.2-0.1-0.4-0.2-0.6-0.3C1207.3,42.7,1207.1,42.6,1206.9,42.6z"/>
<path fill="#0D3547" d="M1209.6,47.4v-5.7h1.2v4.7h2.3v1H1209.6z"/>
<path fill="#0D3547" d="M1218.7,47.4h-1.4l-1.5-2.4l-0.5,0.4v2h-1.2v-5.7h1.2v2.6l0.5-0.7l1.5-1.9h1.3l-2,2.5L1218.7,47.4z"/>
<path fill="#0D3547" d="M1206.6,57h-2.6v-0.7l0.7-0.3v-3.7L1204,52v-0.7h2.6V52l-0.7,0.3V56l0.7,0.3V57z"/>
<path fill="#0D3547" d="M1212.7,57h-1.5l-2.5-4.3h0c0,0.8,0.1,1.3,0.1,1.6V57h-1.1v-5.7h1.5l2.5,4.3h0c0-0.7-0.1-1.3-0.1-1.6
v-2.7h1.1V57z"/>
</g>
</g>
<g id="Group_93_5_">
<g>
<path id="Intersection_1_8_" fill="none" stroke="#0D3547" stroke-width="2" d="M1191.8,25.2l-15.3,0l-7.8-13.3l6.9-12.1
l15.4,0.1l7.7,13.4L1191.8,25.2z"/>
<path fill="none" stroke="#715EC7" stroke-width="2" stroke-miterlimit="10" d="M1174.8,7.4c2.8-4.8,8.9-6.4,13.7-3.7
s6.4,8.9,3.7,13.7c-2.8,4.8-8.9,6.4-13.7,3.7C1173.7,18.3,1172.1,12.2,1174.8,7.4z"/>
<path fill="#715EC7" d="M1182.2,11.7c0.4-0.7,1.3-1,2-0.5c0.7,0.4,1,1.3,0.5,2c-0.4,0.7-1.3,1-2,0.5
C1182,13.3,1181.8,12.4,1182.2,11.7z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1209.7-6.4c0,0.9-0.2,1.7-0.7,2.2s-1.1,0.8-2,0.8s-1.5-0.3-2-0.8s-0.7-1.2-0.7-2.2s0.2-1.7,0.7-2.2
c0.5-0.5,1.1-0.8,2-0.8c0.9,0,1.5,0.3,2,0.8S1209.7-7.4,1209.7-6.4z M1205.5-6.4c0,0.6,0.1,1.1,0.4,1.4s0.6,0.5,1.1,0.5
c1,0,1.4-0.6,1.4-1.9c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.8,0.2-1.1,0.5C1205.6-7.6,1205.5-7.1,1205.5-6.4z"/>
<path fill="#0D3547" d="M1215.5-9.3v3.7c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.5,0.6-0.8,0.7c-0.4,0.2-0.8,0.3-1.3,0.3
c-0.7,0-1.3-0.2-1.7-0.6s-0.6-0.9-0.6-1.5v-3.7h1.2v3.5c0,0.4,0.1,0.8,0.3,1c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,0.9-0.3
c0.2-0.2,0.3-0.5,0.3-1v-3.5H1215.5z"/>
<path fill="#0D3547" d="M1219.1-3.6h-1.2v-4.7h-1.6v-1h4.3v1h-1.6V-3.6z"/>
<path fill="#0D3547" d="M1224.7-8c0,0.2,0,0.4-0.1,0.5c-0.1,0.2-0.2,0.3-0.3,0.4c-0.1,0.1-0.2,0.2-0.4,0.3
c-0.1,0.1-0.3,0.1-0.5,0.2v0c0.5,0.1,0.8,0.2,1,0.4c0.2,0.2,0.4,0.5,0.4,0.9c0,0.2,0,0.5-0.1,0.7s-0.2,0.4-0.4,0.6
c-0.2,0.2-0.4,0.3-0.7,0.4c-0.3,0.1-0.6,0.1-1,0.1c-0.3,0-0.6,0-0.9-0.1c-0.3-0.1-0.5-0.1-0.8-0.2v-1c0.1,0.1,0.2,0.1,0.4,0.2
c0.1,0,0.3,0.1,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.6-0.1s0.3-0.1,0.4-0.2
c0.1-0.1,0.2-0.2,0.2-0.3c0-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2-0.1-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.4-0.2
c-0.2,0-0.4-0.1-0.6-0.1h-0.4v-0.8h0.4c0.2,0,0.4,0,0.6-0.1c0.2,0,0.3-0.1,0.4-0.2c0.1-0.1,0.2-0.2,0.2-0.3s0.1-0.2,0.1-0.3
c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.3-0.2-0.6-0.2c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.2,0.1-0.3,0.1
c-0.1,0-0.1,0.1-0.2,0.1l-0.6-0.8c0.1-0.1,0.2-0.2,0.4-0.2s0.3-0.1,0.4-0.2c0.2-0.1,0.3-0.1,0.5-0.1c0.2,0,0.4,0,0.6,0
c0.3,0,0.5,0,0.8,0.1s0.4,0.1,0.6,0.3s0.3,0.3,0.4,0.4S1224.7-8.2,1224.7-8z"/>
</g>
</g>
<g id="Group_93_4_">
<g>
<path id="Intersection_1_7_" fill="none" stroke="#0D3547" stroke-width="2" d="M1191.8-23.8l-15.3,0l-7.8-13.3l6.9-12.1
l15.4,0.1l7.7,13.4L1191.8-23.8z"/>
<path fill="none" stroke="#715EC7" stroke-width="2" stroke-miterlimit="10" d="M1174.8-41.6c2.8-4.8,8.9-6.4,13.7-3.7
c4.8,2.8,6.4,8.9,3.7,13.7c-2.8,4.8-8.9,6.4-13.7,3.7C1173.7-30.7,1172.1-36.8,1174.8-41.6z"/>
<path fill="#715EC7" d="M1182.2-37.3c0.4-0.7,1.3-1,2-0.5c0.7,0.4,1,1.3,0.5,2c-0.4,0.7-1.3,1-2,0.5
C1182-35.7,1181.8-36.6,1182.2-37.3z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1209.7-55.4c0,0.9-0.2,1.7-0.7,2.2s-1.1,0.8-2,0.8s-1.5-0.3-2-0.8s-0.7-1.2-0.7-2.2s0.2-1.7,0.7-2.2
c0.5-0.5,1.1-0.8,2-0.8c0.9,0,1.5,0.3,2,0.8S1209.7-56.4,1209.7-55.4z M1205.5-55.4c0,0.6,0.1,1.1,0.4,1.4s0.6,0.5,1.1,0.5
c1,0,1.4-0.6,1.4-1.9c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.8,0.2-1.1,0.5C1205.6-56.6,1205.5-56.1,1205.5-55.4z"/>
<path fill="#0D3547" d="M1215.5-58.3v3.7c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.5,0.6-0.8,0.7c-0.4,0.2-0.8,0.3-1.3,0.3
c-0.7,0-1.3-0.2-1.7-0.6s-0.6-0.9-0.6-1.5v-3.7h1.2v3.5c0,0.4,0.1,0.8,0.3,1c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,0.9-0.3
c0.2-0.2,0.3-0.5,0.3-1v-3.5H1215.5z"/>
<path fill="#0D3547" d="M1219.1-52.6h-1.2v-4.7h-1.6v-1h4.3v1h-1.6V-52.6z"/>
<path fill="#0D3547" d="M1225-52.6h-3.8v-0.8l1.3-1.4c0.2-0.2,0.3-0.4,0.5-0.5c0.1-0.2,0.3-0.3,0.4-0.4
c0.1-0.1,0.2-0.3,0.2-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.6,0.2
c-0.2,0.1-0.4,0.2-0.6,0.4l-0.7-0.8c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
c0.2,0,0.4-0.1,0.6-0.1c0.3,0,0.5,0,0.7,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.5s0.1,0.4,0.1,0.7
c0,0.2,0,0.4-0.1,0.6s-0.2,0.4-0.3,0.6c-0.1,0.2-0.3,0.4-0.5,0.6c-0.2,0.2-0.4,0.4-0.6,0.6l-0.7,0.7v0.1h2.3V-52.6z"/>
</g>
</g>
<g id="Group_93_3_">
<g>
<path id="Intersection_1_6_" fill="none" stroke="#0D3547" stroke-width="2" d="M1191.8-72.8l-15.3,0l-7.8-13.3l6.9-12.1
l15.4,0.1l7.7,13.4L1191.8-72.8z"/>
<path fill="none" stroke="#715EC7" stroke-width="2" stroke-miterlimit="10" d="M1174.8-90.6c2.8-4.8,8.9-6.4,13.7-3.7
s6.4,8.9,3.7,13.7c-2.8,4.8-8.9,6.4-13.7,3.7C1173.7-79.7,1172.1-85.8,1174.8-90.6z"/>
<path fill="#715EC7" d="M1182.2-86.3c0.4-0.7,1.3-1,2-0.5c0.7,0.4,1,1.3,0.5,2c-0.4,0.7-1.3,1-2,0.5
C1182-84.7,1181.8-85.6,1182.2-86.3z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1209.7-104.4c0,0.9-0.2,1.7-0.7,2.2s-1.1,0.8-2,0.8s-1.5-0.3-2-0.8s-0.7-1.2-0.7-2.2s0.2-1.7,0.7-2.2
c0.5-0.5,1.1-0.8,2-0.8c0.9,0,1.5,0.3,2,0.8S1209.7-105.4,1209.7-104.4z M1205.5-104.4c0,0.6,0.1,1.1,0.4,1.4s0.6,0.5,1.1,0.5
c1,0,1.4-0.6,1.4-1.9c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.8,0.2-1.1,0.5C1205.6-105.6,1205.5-105.1,1205.5-104.4z"/>
<path fill="#0D3547" d="M1215.5-107.3v3.7c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.5,0.6-0.8,0.7c-0.4,0.2-0.8,0.3-1.3,0.3
c-0.7,0-1.3-0.2-1.7-0.6s-0.6-0.9-0.6-1.5v-3.7h1.2v3.5c0,0.4,0.1,0.8,0.3,1c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,0.9-0.3
c0.2-0.2,0.3-0.5,0.3-1v-3.5H1215.5z"/>
<path fill="#0D3547" d="M1219.1-101.6h-1.2v-4.7h-1.6v-1h4.3v1h-1.6V-101.6z"/>
<path fill="#0D3547" d="M1224-101.6h-1.2v-3.3c0-0.1,0-0.1,0-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3s0-0.2,0-0.3c0,0,0,0-0.1,0.1
s-0.1,0.1-0.1,0.1s-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1l-0.7,0.5l-0.6-0.7l1.8-1.5h1V-101.6z"/>
</g>
</g>
<g id="Group_93_2_">
<g>
<path id="Intersection_1_5_" fill="none" stroke="#0D3547" stroke-width="2" d="M1191.8-121.8l-15.3,0l-7.8-13.3l6.9-12.1
l15.4,0.1l7.7,13.4L1191.8-121.8z"/>
<path fill="none" stroke="#715EC7" stroke-width="2" stroke-miterlimit="10" d="M1174.8-139.6c2.8-4.8,8.9-6.4,13.7-3.7
c4.8,2.8,6.4,8.9,3.7,13.7c-2.8,4.8-8.9,6.4-13.7,3.7C1173.7-128.7,1172.1-134.8,1174.8-139.6z"/>
<path fill="#715EC7" d="M1182.2-135.3c0.4-0.7,1.3-1,2-0.5c0.7,0.4,1,1.3,0.5,2c-0.4,0.7-1.3,1-2,0.5
C1182-133.7,1181.8-134.6,1182.2-135.3z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1209.7-153.4c0,0.9-0.2,1.7-0.7,2.2s-1.1,0.8-2,0.8s-1.5-0.3-2-0.8s-0.7-1.2-0.7-2.2s0.2-1.7,0.7-2.2
c0.5-0.5,1.1-0.8,2-0.8c0.9,0,1.5,0.3,2,0.8S1209.7-154.4,1209.7-153.4z M1205.5-153.4c0,0.6,0.1,1.1,0.4,1.4s0.6,0.5,1.1,0.5
c1,0,1.4-0.6,1.4-1.9c0-1.3-0.5-1.9-1.4-1.9c-0.5,0-0.8,0.2-1.1,0.5C1205.6-154.6,1205.5-154.1,1205.5-153.4z"/>
<path fill="#0D3547" d="M1215.5-156.3v3.7c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.5,0.6-0.8,0.7c-0.4,0.2-0.8,0.3-1.3,0.3
c-0.7,0-1.3-0.2-1.7-0.6s-0.6-0.9-0.6-1.5v-3.7h1.2v3.5c0,0.4,0.1,0.8,0.3,1c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,0.9-0.3
c0.2-0.2,0.3-0.5,0.3-1v-3.5H1215.5z"/>
<path fill="#0D3547" d="M1219.1-150.6h-1.2v-4.7h-1.6v-1h4.3v1h-1.6V-150.6z"/>
<path fill="#0D3547" d="M1225-153.4c0,0.5,0,0.9-0.1,1.2c-0.1,0.4-0.2,0.7-0.3,0.9c-0.2,0.3-0.4,0.4-0.6,0.6
c-0.2,0.1-0.5,0.2-0.9,0.2c-0.3,0-0.6-0.1-0.9-0.2c-0.2-0.1-0.4-0.3-0.6-0.6c-0.2-0.3-0.3-0.6-0.4-0.9
c-0.1-0.4-0.1-0.8-0.1-1.2s0-0.9,0.1-1.2c0.1-0.4,0.2-0.7,0.3-0.9s0.4-0.4,0.6-0.6c0.2-0.1,0.5-0.2,0.9-0.2
c0.3,0,0.6,0.1,0.9,0.2c0.2,0.1,0.4,0.3,0.6,0.6s0.3,0.6,0.4,0.9C1224.9-154.3,1225-153.9,1225-153.4z M1222.3-153.4
c0,0.7,0.1,1.1,0.2,1.5c0.1,0.3,0.3,0.5,0.6,0.5c0.3,0,0.5-0.2,0.6-0.5c0.1-0.3,0.2-0.8,0.2-1.5c0-0.7-0.1-1.1-0.2-1.5
c-0.1-0.3-0.3-0.5-0.6-0.5c-0.1,0-0.3,0-0.3,0.1c-0.1,0.1-0.2,0.2-0.2,0.4c-0.1,0.2-0.1,0.4-0.1,0.6
C1222.3-154,1222.3-153.8,1222.3-153.4z"/>
</g>
</g>
<g id="Group_77_1_" transform="translate(-566 -67)">
<circle id="Ellipse_6-2_7_" fill="#0D3547" cx="1729.1" cy="257" r="8"/>
<rect id="Rectangle_2-2_7_" x="1728.1" y="253" fill="#FFFFFF" width="2" height="8"/>
<rect id="Rectangle_3-2_7_" x="1725.1" y="256" fill="#FFFFFF" width="8" height="2"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1157.8,133.1c0,0.6-0.2,1.1-0.6,1.4c-0.4,0.3-0.9,0.5-1.6,0.5h-0.5v2h-1.2v-5.7h1.8
c0.7,0,1.2,0.1,1.6,0.4C1157.6,132,1157.8,132.5,1157.8,133.1z M1155,134h0.4c0.4,0,0.7-0.1,0.8-0.2c0.2-0.1,0.3-0.4,0.3-0.6
c0-0.3-0.1-0.5-0.2-0.6c-0.2-0.1-0.4-0.2-0.7-0.2h-0.6V134z"/>
<path fill="#0D3547" d="M1164.4,137h-1.4l-0.8-3c0-0.1-0.1-0.3-0.1-0.7c-0.1-0.3-0.1-0.6-0.1-0.7c0,0.1-0.1,0.4-0.1,0.7
s-0.1,0.5-0.1,0.7l-0.8,3h-1.4l-1.5-5.7h1.2l0.7,3.1c0.1,0.6,0.2,1.1,0.3,1.5c0-0.1,0.1-0.4,0.1-0.7c0.1-0.3,0.1-0.6,0.2-0.7
l0.8-3.2h1.1l0.8,3.2c0,0.1,0.1,0.4,0.1,0.7s0.1,0.5,0.1,0.8c0-0.2,0.1-0.5,0.1-0.8c0.1-0.3,0.1-0.5,0.2-0.7l0.7-3.1h1.2
L1164.4,137z"/>
<path fill="#0D3547" d="M1167.8,134.8v2.2h-1.2v-5.7h1.7c0.8,0,1.3,0.1,1.7,0.4c0.4,0.3,0.6,0.7,0.6,1.3c0,0.3-0.1,0.6-0.3,0.9
c-0.2,0.3-0.4,0.5-0.8,0.6l1.7,2.5h-1.3l-1.4-2.2H1167.8z M1167.8,133.8h0.4c0.4,0,0.7-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.6
c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.1-0.5-0.2-0.9-0.2h-0.4V133.8z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1158.3,148h-1.2v-3.3c0-0.1,0-0.1,0-0.2c0-0.1,0-0.2,0-0.3s0-0.2,0-0.3s0-0.2,0-0.3c0,0,0,0-0.1,0.1
s-0.1,0.1-0.1,0.1s-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1l-0.7,0.5l-0.6-0.7l1.8-1.5h1V148z"/>
<path fill="#0D3547" d="M1163.7,148h-3.8v-0.8l1.3-1.4c0.2-0.2,0.3-0.4,0.5-0.5c0.1-0.2,0.3-0.3,0.4-0.4
c0.1-0.1,0.2-0.3,0.2-0.4s0.1-0.3,0.1-0.5c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.6,0.2
c-0.2,0.1-0.4,0.2-0.6,0.4l-0.7-0.8c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.3-0.1,0.5-0.2
c0.2,0,0.4-0.1,0.6-0.1c0.3,0,0.5,0,0.7,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.2,0.1,0.3,0.3,0.4,0.5s0.1,0.4,0.1,0.7
c0,0.2,0,0.4-0.1,0.6s-0.2,0.4-0.3,0.6c-0.1,0.2-0.3,0.4-0.5,0.6c-0.2,0.2-0.4,0.4-0.6,0.6l-0.7,0.7v0.1h2.3V148z"/>
<path fill="#0D3547" d="M1167.9,142.3h1.2l-1.9,5.7h-1.3l-1.9-5.7h1.2l1.1,3.4c0.1,0.2,0.1,0.4,0.2,0.7
c0.1,0.3,0.1,0.5,0.1,0.6c0-0.2,0.1-0.7,0.3-1.3L1167.9,142.3z"/>
</g>
<g enable-background="new ">
<path fill="#0D3547" d="M1158,156.1c0,0.5,0,0.9-0.1,1.2s-0.2,0.7-0.3,0.9s-0.4,0.4-0.6,0.6s-0.5,0.2-0.9,0.2
c-0.3,0-0.6-0.1-0.9-0.2s-0.4-0.3-0.6-0.6s-0.3-0.6-0.4-0.9s-0.1-0.8-0.1-1.2s0-0.9,0.1-1.2s0.2-0.7,0.3-0.9s0.4-0.4,0.6-0.6
s0.5-0.2,0.9-0.2c0.3,0,0.6,0.1,0.9,0.2s0.4,0.3,0.6,0.6s0.3,0.6,0.4,0.9S1158,155.7,1158,156.1z M1155.3,156.1
c0,0.7,0.1,1.1,0.2,1.5s0.3,0.5,0.6,0.5c0.3,0,0.5-0.2,0.6-0.5s0.2-0.8,0.2-1.5c0-0.7-0.1-1.1-0.2-1.5s-0.3-0.5-0.6-0.5
c-0.1,0-0.3,0-0.3,0.1s-0.2,0.2-0.2,0.4s-0.1,0.4-0.1,0.6S1155.3,155.8,1155.3,156.1z"/>
<path fill="#0D3547" d="M1158.7,158.4c0-0.1,0-0.2,0.1-0.3s0.1-0.2,0.1-0.2s0.1-0.1,0.2-0.1s0.2,0,0.3,0c0.1,0,0.2,0,0.3,0
s0.2,0.1,0.2,0.1s0.1,0.1,0.1,0.2s0.1,0.2,0.1,0.3c0,0.1,0,0.2-0.1,0.3s-0.1,0.2-0.1,0.2s-0.1,0.1-0.2,0.1s-0.2,0-0.3,0
c-0.1,0-0.2,0-0.3,0s-0.2-0.1-0.2-0.1s-0.1-0.1-0.1-0.2S1158.7,158.6,1158.7,158.4z"/>
<path fill="#0D3547" d="M1164.7,159h-3.8v-0.8l1.3-1.4c0.2-0.2,0.3-0.4,0.5-0.5s0.3-0.3,0.4-0.4s0.2-0.3,0.2-0.4
s0.1-0.3,0.1-0.5c0-0.2-0.1-0.3-0.2-0.4s-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.6,0.2s-0.4,0.2-0.6,0.4l-0.7-0.8
c0.1-0.1,0.2-0.2,0.4-0.3s0.3-0.2,0.4-0.3s0.3-0.1,0.5-0.2s0.4-0.1,0.6-0.1c0.3,0,0.5,0,0.7,0.1s0.4,0.2,0.6,0.3
s0.3,0.3,0.4,0.5s0.1,0.4,0.1,0.7c0,0.2,0,0.4-0.1,0.6s-0.2,0.4-0.3,0.6s-0.3,0.4-0.5,0.6s-0.4,0.4-0.6,0.6l-0.7,0.7v0.1h2.3
V159z"/>
<path fill="#0D3547" d="M1169.1,159l-0.4-1.4h-2.1l-0.4,1.4h-1.3l2-5.7h1.5l2,5.7H1169.1z M1168.4,156.6
c-0.4-1.2-0.6-1.9-0.6-2.1s-0.1-0.3-0.1-0.4c-0.1,0.3-0.3,1.2-0.7,2.5H1168.4z"/>
</g>
<g id="Group_99">
<g enable-background="new ">
<path fill="#0D3547" d="M1162.8,99.1c0,0.6-0.2,1.1-0.6,1.4c-0.4,0.3-0.9,0.5-1.6,0.5h-0.5v2h-1.2v-5.7h1.8
c0.7,0,1.2,0.1,1.6,0.4C1162.6,98,1162.8,98.5,1162.8,99.1z M1160,100h0.4c0.4,0,0.7-0.1,0.8-0.2c0.2-0.1,0.3-0.4,0.3-0.6
c0-0.3-0.1-0.5-0.2-0.6c-0.2-0.1-0.4-0.2-0.7-0.2h-0.6V100z"/>
<path fill="#0D3547" d="M1169.4,103h-1.4l-0.8-3c0-0.1-0.1-0.3-0.1-0.7c-0.1-0.3-0.1-0.6-0.1-0.7c0,0.1-0.1,0.4-0.1,0.7
s-0.1,0.5-0.1,0.7l-0.8,3h-1.4l-1.5-5.7h1.2l0.7,3.1c0.1,0.6,0.2,1.1,0.3,1.5c0-0.1,0.1-0.4,0.1-0.7c0.1-0.3,0.1-0.6,0.2-0.7
l0.8-3.2h1.1l0.8,3.2c0,0.1,0.1,0.4,0.1,0.7s0.1,0.5,0.1,0.8c0-0.2,0.1-0.5,0.1-0.8c0.1-0.3,0.1-0.5,0.2-0.7l0.7-3.1h1.2
L1169.4,103z"/>
<path fill=