This commit is contained in:
crusader 2018-09-10 21:38:28 +09:00
parent 1e0836ed42
commit 7979ed8cc9
41 changed files with 4910 additions and 80 deletions

View File

@ -2,7 +2,6 @@ import {
PropertyKeyType,
Decorator,
DecoratorHelper,
Type
} from '@overflow/core-js';
export interface RPCSubscriberDecoratorAttribute {

View File

@ -44,6 +44,7 @@
"@ngrx/store-devtools": "^6.1.0",
"@overflow/core-js": "0.0.10",
"@overflow/rpc-js": "0.0.7",
"@types/d3": "^5.0.0",
"@types/fs-extra": "^5.0.4",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
@ -52,6 +53,7 @@
"awesome-typescript-loader": "^5.2.0",
"codelyzer": "~4.2.1",
"core-js": "^2.5.4",
"d3": "^5.7.0",
"dexie": "^2.0.4",
"devtron": "^1.4.0",
"electron": "^2.0.7",
@ -86,4 +88,4 @@
"zone.js": "^0.8.26",
"ip-cidr": "^2.0.0"
}
}
}

View File

@ -1,27 +1,44 @@
<div *ngIf="showIntro" class="home-start">
<div class="start-button" (click)="discoveryConfigService.setStarted(true)">
<svg version="1.1" viewBox="0 0 200 210">
<path d="M8.3,193.5c0.1,2.4,0.8,4.9,2.1,7.1c4.5,7.7,14.3,10.4,22.1,5.9l152.1-87.8c2-1.3,3.8-3.1,5.1-5.4
<div class="start-button" (click)="discoveryConfigService.setStarted(true)">
<svg version="1.1" viewBox="0 0 200 210">
<path d="M8.3,193.5c0.1,2.4,0.8,4.9,2.1,7.1c4.5,7.7,14.3,10.4,22.1,5.9l152.1-87.8c2-1.3,3.8-3.1,5.1-5.4
c4.5-7.7,1.8-17.6-5.9-22.1L31.6,3.4c-2.2-1.1-4.6-1.7-7.2-1.7c-8.9,0-16.2,7.2-16.2,16.2V193.5z" />
</svg>
</div>
<div class="home-description">
<h1>overFlow Scanner </h1>
<br>
<b>를 이용해 주셔서 감사합니다.</b>
<br> 좌측의 버튼을 클릭 하시면 기본 설정으로 스캐닝이 시작 됩니다. 설정의 변경을 원하시면 상단의 설정 영역을 클릭하여 변경이 가능합니다.
</div>
</svg>
</div>
<div class="home-description">
<h1>overFlow Scanner </h1>
<br>
<b>를 이용해 주셔서 감사합니다.</b>
<br> 좌측의 버튼을 클릭 하시면 기본 설정으로 스캐닝이 시작 됩니다. 설정의 변경을 원하시면 상단의 설정 영역을 클릭하여 변경이 가능합니다.
</div>
</div>
<div *ngIf="!showIntro" #discoveryTarget class="vis-container">
<div *ngIf="!showIntro" class="vis-container">
<svg #discoveryTarget width="100%" height="100%">
<defs>
<pattern id="icon_db_mria" width="1" height="1" patternUnits="objectBoundingBox">
<image x="0" y="0" width="66" height="56" xlink:href="../../assets/image/icon/icon_db_mria.svg"></image>
</pattern>
</defs>
<g>
<g *ngFor="let link of links">
<line class="link" [attr.x1]="link.source.x" [attr.y1]="link.source.y" [attr.x2]="link.target.x" [attr.y2]="link.target.y"></line>
</g>
<g *ngFor="let node of nodes">
<g [attr.transform]="'translate(' + node.x + ',' + node.y + ')'">
<circle class="node" cx="0" cy="0" r="33" fill="url(#icon_db_mria)"></circle>
<text class="textClass" y="2.5em" text-anchor="middle">{{node.id}}</text>
</g>
</g>
</g>
</svg>
</div>
<p-sidebar [(visible)]="displaySidebar" styleClass="ui-sidebar-md" position="bottom">
<div *ngIf="selectedNode">
<app-node-detail [node]="selectedNode"></app-node-detail>
</div>
<div *ngIf="selectedNode">
<app-node-detail [node]="selectedNode"></app-node-detail>
</div>
</p-sidebar>

View File

@ -52,4 +52,17 @@
justify-content: center;
min-width: 400px;
//text-align: center;
}
.link {
stroke: #999;
stroke-opacity: 0.6;
}
.textClass {
stroke: #323232;
font-family: "Lucida Grande", "Droid Sans", Arial, Helvetica, sans-serif;
font-weight: normal;
stroke-width: .5;
font-size: 14px;
}

View File

@ -5,11 +5,15 @@ import { Component, OnInit, OnDestroy, ViewChild, ElementRef, ChangeDetectorRef
import { ProbeService, requesterID } from '../../../commons/service/probe.service';
import { Zone, Host, Port, Service, DiscoverHost } from '@overflow/model/discovery';
import { toMetaIPType, MetaIPTypeEnum } from '@overflow/model/meta';
import { RPCSubscriber } from '@overflow/commons/ui/decorator/RPCSubscriber';
import { DiscoveryConfigService } from '../../../commons/service/discovery-config.service';
import { Observable } from 'rxjs';
const vis = require('vis');
import * as d3 from 'd3';
import { Node } from '../../../commons/model/node';
import { Link } from '../../../commons/model/link';
@Component({
selector: 'app-pages-home',
@ -35,19 +39,25 @@ export class HomePageComponent implements OnInit, OnDestroy {
showIntro = true;
selectedNode = null;
private visNetwork: any;
private nodeSet: any;
private edgeSet: any;
// private visNetwork: any;
// private nodeSet: any;
// private edgeSet: any;
private nodes: Node[];
private links: Link[];
public simulation: d3.Simulation<Node, Link>;
constructor(
private changeDetector: ChangeDetectorRef,
private probeService: ProbeService,
private discoveryConfigService: DiscoveryConfigService,
) {
this.nodes = [];
this.links = [];
}
ngOnInit() {
// this.probeService.subscribeNotification(this);
this.probeService.subscribeNotification(this);
// this.startDiscovery("");
this.discoveryConfigService.zone.subscribe(res => {
this.zone = res as Zone;
@ -81,38 +91,91 @@ export class HomePageComponent implements OnInit, OnDestroy {
this.showIntro = false;
this.changeDetector.detectChanges();
this.nodeSet = new vis.DataSet([
{
id: '192.168.1.0/24', label: 'Zone', group: 'zone',
shape: "image",
image: "../../assets/Windows_logo.png",
const width = this.discoveryTargetRef.nativeElement.clientWidth;
const height = this.discoveryTargetRef.nativeElement.clientHeight;
this.simulation = d3
.forceSimulation<Node, Link>()
.nodes(this.nodes)
.force('charge', d3.forceManyBody().strength(-120))
.force('link', d3.forceLink(this.links).distance(150))
.force('center', d3.forceCenter(width / 2, height / 2))
.force('collision', d3.forceCollide().radius(function (node: Node) {
return node.r;
}))
;
this.nodes.push(
{ id: '192.168.1.0/24', fx: width / 2, fy: height / 2 },
// { id: '192.168.1.1' },
// { id: '192.168.1.2' },
);
this.links.push(
// { source: this.getNode('192.168.1.0/24'), target: this.getNode('192.168.1.1') },
// { source: this.getNode('192.168.1.0/24'), target: this.getNode('192.168.1.2') }
);
this.simulationRestart();
const zone: Zone = {
network: '192.168.1.0/24',
iface: 'enp3s0',
metaIPType: toMetaIPType(MetaIPTypeEnum.V4),
address: '192.168.1.101',
mac: '44:8a:5b:f1:f1:f3',
};
const discoverHost: DiscoverHost = {
metaIPType: toMetaIPType(MetaIPTypeEnum.V4),
firstScanRange: '192.168.1.1',
lastScanRange: '192.168.1.254',
discoveryConfig: {
},
]);
this.edgeSet = new vis.DataSet([]);
const options = {
width: '100%',
height: '100%',
groups: {
zone: { color: { background: 'red' }, borderWidth: 5 },
host: { color: { background: 'blue' }, borderWidth: 3 },
service: { color: { background: 'white' }, borderWidth: 1 },
discoverPort: {
firstScanRange: 1,
lastScanRange: 65535,
includeTCP: true,
includeUDP: true,
discoverService: {
}
}
};
this.visNetwork = new vis.Network(this.discoveryTargetRef.nativeElement, { nodes: this.nodeSet, edges: this.edgeSet }, options);
this.visNetwork.on('click', (params) => {
const ids = params.nodes;
const clickedNode = this.nodeSet.get(ids);
if (clickedNode.length > 0) {
this.displaySidebar = true;
this.selectedNode = clickedNode[0];
} else {
this.displaySidebar = false;
this.selectedNode = null;
}
});
this.probeService.send('DiscoveryService.DiscoverHost', requesterID, zone, discoverHost);
// this.nodeSet = new vis.DataSet([
// {
// id: '192.168.1.0/24', label: 'Zone', group: 'zone',
// shape: 'image',
// image: '../../assets/Windows_logo.png',
// },
// ]);
// this.edgeSet = new vis.DataSet([]);
// const options = {
// width: '100%',
// height: '100%',
// groups: {
// zone: { color: { background: 'red' }, borderWidth: 5 },
// host: { color: { background: 'blue' }, borderWidth: 3 },
// service: { color: { background: 'white' }, borderWidth: 1 },
// }
// };
// this.visNetwork = new vis.Network(this.discoveryTargetRef.nativeElement, { nodes: this.nodeSet, edges: this.edgeSet }, options);
// this.visNetwork.on('click', (params) => {
// const ids = params.nodes;
// const clickedNode = this.nodeSet.get(ids);
// if (clickedNode.length > 0) {
// this.displaySidebar = true;
// this.selectedNode = clickedNode[0];
// } else {
// this.displaySidebar = false;
// this.selectedNode = null;
// }
// });
// this.probeService.send(
// 'DiscoveryService.DiscoverHost',
@ -122,6 +185,16 @@ export class HomePageComponent implements OnInit, OnDestroy {
// );
}
simulationRestart() {
// Update and restart the simulation.
this.simulation
.nodes(this.nodes)
.force('link', d3.forceLink(this.links).distance(150))
.alpha(1)
.restart()
;
}
/**
* DiscoverHost
*/
@ -160,7 +233,10 @@ export class HomePageComponent implements OnInit, OnDestroy {
@RPCSubscriber({ method: 'DiscoveryService.DiscoveryStop' })
public DiscoveryStop(stopDate: Date) {
console.log('DiscoveryStop', stopDate);
this.visNetwork.stabilize();
this.simulationRestart();
this.simulation.stop();
}
/**
@ -178,20 +254,14 @@ export class HomePageComponent implements OnInit, OnDestroy {
public DiscoveredHost(host: Host) {
console.log('DiscoveredHost', host);
const hostId = `${host.address}`;
const zoneNode = this.getNode('192.168.1.0/24');
const hostNode = new Node(hostId);
hostNode.x = zoneNode.x;
hostNode.y = zoneNode.y;
if (null !== this.nodeSet.get(hostId)) {
this.nodeSet.update([
{ id: hostId, label: `${host.name}(${host.address})`, group: 'host', host: host },
]);
} else {
this.nodeSet.add([
{ id: hostId, label: `${host.name}(${host.address})`, group: 'host', host: host },
]);
this.edgeSet.add([
{ from: '192.168.1.0/24', to: hostId },
]);
}
this.nodes.push(hostNode);
this.links.push(new Link(zoneNode, hostNode));
this.simulationRestart();
}
/**
@ -210,12 +280,27 @@ export class HomePageComponent implements OnInit, OnDestroy {
console.log('DiscoveredService', service);
const hostId = service.port.host.address;
const serviceId = `${service.port.host.address}-${service.port.portNumber}-${service.key}`;
this.nodeSet.add([
{ id: `${serviceId}`, label: `${service.key}`, group: 'service', service: service }
]);
this.edgeSet.add([
{ from: `${hostId}`, label: `${service.port.portNumber}`, to: `${serviceId}` },
]);
const hostNode = this.getNode(hostId);
const serviceNode = new Node(serviceId);
serviceNode.x = hostNode.x;
serviceNode.y = hostNode.y;
this.nodes.push(serviceNode);
this.links.push(new Link(hostNode, serviceNode));
this.simulationRestart();
}
private getNode(id: string): Node {
let _n: Node;
this.nodes.some((node): boolean => {
if (node.id === id) {
_n = node;
return true;
}
return false;
});
return _n;
}
}

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#A3BAA6;}
.st2{fill:#FFFFFF;}
.st3{fill:#002B64;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<path class="st1" d="M33,46.3c-9,0-15.8-3-15.8-6.9V10.7c0-4,6.8-6.9,15.8-6.9s15.8,3,15.8,6.9v28.7C48.8,43.3,42,46.3,33,46.3z
M33.3,8.4c-6.4,0-9.7,1.6-9.8,2.2c0.1,0.6,3.4,2.1,9.8,2.1s9.7-1.6,9.8-2.2C43,10,39.7,8.4,33.3,8.4z"/>
<path class="st2" d="M33,4.7c8.2,0,14.8,2.7,14.8,5.9v28.7c0,3.3-6.6,5.9-14.8,5.9s-14.8-2.7-14.8-5.9V10.7
C18.2,7.4,24.8,4.7,33,4.7 M33.3,13.7c6,0,10.8-1.4,10.8-3.1s-4.8-3.1-10.8-3.1s-10.8,1.4-10.8,3.1S27.3,13.7,33.3,13.7 M33,2.7
c-8.3,0-16.8,2.7-16.8,7.9v28.7c0,5.2,8.4,7.9,16.8,7.9s16.8-2.7,16.8-7.9V10.7C49.8,5.5,41.3,2.7,33,2.7L33,2.7z M25.3,10.6
c1.4-0.5,4.2-1.1,8-1.1s6.6,0.6,8,1.1c-1.4,0.5-4.2,1.1-8,1.1S26.7,11.1,25.3,10.6L25.3,10.6z"/>
</g>
<path class="st3" d="M45.7,18.8c-0.4,0-0.3,0.1-1.2,0.4c-0.9,0.2-2.1,0.2-3.1,0.6c-3.1,1.3-3.7,5.7-6.4,7.2c-2.1,1.2-4.2,1.3-6,1.9
c-1.2,0.4-2.6,1.2-3.7,2.1c-0.9,0.7-0.9,1.4-1.8,2.3c-1,1-3.9,0-5.2,1.6c0.4,0.4,0.6,0.5,1.4,0.4c-0.2,0.3-1.2,0.6-1,1.1
c0.2,0.5,2.7,0.8,4.9-0.5c1-0.6,1.9-1.5,3.5-1.7c2.1-0.3,4.5,0.2,6.9,0.5c-0.4,1.1-1.1,1.8-1.7,2.6c-0.2,0.2,0.4,0.2,1,0.1
c1.1-0.3,1.9-0.5,2.7-1c1-0.6,1.2-2.1,2.4-2.5c0.7,1.1,2.6,1.3,3.8,0.5c-1-0.3-1.3-2.5-1-3.5c0.3-0.9,0.7-2.4,1-3.6
c0.4-1.3,0.5-3,0.9-3.6c0.7-1,1.4-1.3,2-1.9c0.6-0.6,1.2-1.1,1.2-2.4C46.3,19,46.1,18.8,45.7,18.8L45.7,18.8z"/>
<path class="st2" d="M19.1,36.3c1.6,0.2,2.6,0,3.8-0.6c1.1-0.5,2.1-1.4,3.4-1.9c1.9-0.6,3.9,0,6,0.1c0.5,0,1,0,1.5,0
c0.7-0.5,0.7-2.2,1.5-2.3c0,2.4-1,3.9-2,5.3c2.2-0.4,3.5-1.6,4.4-3.3c0.3-0.5,0.5-1.1,0.7-1.6c0.3,0.2,0.1,1,0.3,1.4
c1.5-0.8,2.4-2.8,2.9-4.7c0.7-2.2,0.9-4.5,1.4-5.2c0.4-0.6,1.1-1,1.7-1.5c0.7-0.5,1.3-1,1.4-1.9c-0.7-0.1-0.9-0.2-1-0.6
c-0.4,0.2-0.7,0.2-1,0.3c-0.3,0-0.7,0-1.1,0c-3.5,0.4-4,4.3-6.3,6.5c-0.2,0.2-0.3,0.3-0.5,0.5c-0.8,0.6-1.8,1-2.7,1.4
c-1.5,0.6-2.8,0.6-4.2,1.1c-1,0.4-2,0.9-2.8,1.4c-0.2,0.1-0.4,0.3-0.6,0.4c-0.5,0.4-0.8,0.8-1.1,1.3c-0.3,0.5-0.6,0.9-1.1,1.4
c-0.8,0.7-3.6,0.2-4.6,0.9c-0.1,0.1-0.2,0.2-0.3,0.3c0.5,0.2,0.9,0.1,1.5,0.2C20.2,35.7,18.9,36,19.1,36.3L19.1,36.3z M40.5,32
c0,0.7,0.4,2,0.8,2.3c-0.7,0.2-1.8-0.1-2.1-0.6C39.3,33.1,40.1,32.5,40.5,32L40.5,32z"/>
<path class="st3" d="M41.5,21.3c0.5,0.4,1.6,0.1,1.4-0.8C42.1,20.4,41.7,20.7,41.5,21.3z M45,20.3c-0.1,0.3-0.4,0.6-0.4,1.4
c0,0.1-0.1,0.2-0.1,0C44.6,21,44.7,20.7,45,20.3C45,20.1,45.1,20.2,45,20.3L45,20.3z"/>
<path class="st3" d="M44.9,20.2c-0.2,0.3-0.5,0.8-0.6,1.5c0,0.1-0.1,0.2-0.1,0C44.3,21,44.6,20.5,44.9,20.2
C44.9,20,45,20.1,44.9,20.2z M44.8,20c-0.2,0.3-0.8,0.8-0.9,1.5c0,0.1-0.1,0.2-0.1,0C43.9,20.9,44.4,20.4,44.8,20
C44.8,19.9,44.8,19.9,44.8,20z M44.7,19.9c-0.2,0.2-0.9,1-1.1,1.6c0,0.1-0.2,0.2-0.1,0C43.7,20.9,44.3,20.1,44.7,19.9
C44.7,19.7,44.8,19.8,44.7,19.9z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,264 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#A3BAA6;}
.st2{fill:#FFFFFF;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<path class="st1" d="M33,46.3c-9,0-15.8-3-15.8-6.9V10.7c0-4,6.8-6.9,15.8-6.9s15.8,3,15.8,6.9v28.7C48.8,43.3,42,46.3,33,46.3z
M33.3,8.4c-6.4,0-9.7,1.6-9.8,2.2c0.1,0.6,3.4,2.1,9.8,2.1s9.7-1.6,9.8-2.2C43,10,39.7,8.4,33.3,8.4z"/>
<path class="st2" d="M33,4.7c8.2,0,14.8,2.7,14.8,5.9v28.7c0,3.3-6.6,5.9-14.8,5.9s-14.8-2.7-14.8-5.9V10.7
C18.2,7.4,24.8,4.7,33,4.7 M33.3,13.7c6,0,10.8-1.4,10.8-3.1s-4.8-3.1-10.8-3.1s-10.8,1.4-10.8,3.1S27.3,13.7,33.3,13.7 M33,2.7
c-8.3,0-16.8,2.7-16.8,7.9v28.7c0,5.2,8.4,7.9,16.8,7.9s16.8-2.7,16.8-7.9V10.7C49.8,5.5,41.3,2.7,33,2.7L33,2.7z M25.3,10.6
c1.4-0.5,4.2-1.1,8-1.1s6.6,0.6,8,1.1c-1.4,0.5-4.2,1.1-8,1.1S26.7,11.1,25.3,10.6L25.3,10.6z"/>
</g>
<g transform="matrix(.569 0 0 .569 199.451 -82.735)">
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-295.3014" y1="184.6405" x2="-293.1859" y2="184.6405" gradientTransform="matrix(-9.485887e-03 0 0 -9.485887e-03 -264.3735 182.6886)">
<stop offset="0" style="stop-color:#909CA9"/>
<stop offset="1" style="stop-color:#EDEDEE"/>
</linearGradient>
<path class="st3" d="M-299.4,197.4c0,0,1.3-0.4,1.5-0.4c0,0,0-0.1,0-0.1c-0.2-1.1-0.3-2.3-0.4-3.6c0-0.9,0-3.4,0-4.1
c0.2-2.7,0.5-4.9,0.9-6.7c0.7-2.8,1.9-6.1,3.6-9.6c0.9-1.9,1-1.9,1.1-2c0,0,0.1-0.1,0.6-0.1c0.3,0,0.6,0,0.9,0
c2.8,0.1,7.9,0.8,10.5,1.5c1.6,0.4,3.7,1.1,4.9,1.7c2.5,1.1,4.6,2.7,5.7,4.3c0.9,1.3,1.1,2.6,0.6,4c-0.2,0.7-0.8,1.7-1.5,2.6
c-0.5,0.6-1.4,1.5-2.1,2c-0.6,0.4-1.3,1.1-2.1,1.7c-0.7,0.6-1.4,1.2-2,1.8l-2.6,0.7l-8.8,3.9l-10.4,3.4L-299.4,197.4z
M-296.7,192.9c0.1,1.3,0.2,3.1,0.3,3.6c0.6-0.2,2.5-0.8,3.5-1.1c0.1,0,0.2-0.1,0.2-0.1c-0.5-0.4-1.5-1-2.2-1.4
c-0.7-0.4-1.4-0.9-1.9-1.1C-296.7,192.8-296.7,192.9-296.7,192.9z M-296.5,192c1.1,0.5,3.1,1.6,4.6,2.6c0.1,0.1,0.3,0.2,0.4,0.3
c0-0.1,0-0.3,0-0.5c0-1.6,0.3-3.5,0.8-5.5c0,0-0.2,0.1-0.3,0.1c-2.1,0.9-3.9,1.9-5.3,2.8C-296.3,191.9-296.4,191.9-296.5,192z
M-289.3,189.2c-0.3,1.1-0.6,2.2-0.7,3.3c0,0.4-0.1,1.4-0.1,1.9c0.7-0.3,3.1-1.2,3.7-1.5c-0.1-0.2-0.2-0.6-0.4-0.8
c-0.3-0.7-0.8-1.4-1.4-2c-0.2-0.3-0.8-0.9-1.2-1.2C-289.3,189-289.3,189.1-289.3,189.2z M-288.3,188.1c0.6,0.5,1.3,1.2,1.8,2
c0.5,0.7,1.1,1.7,1.3,2.3c0,0,0,0,0,0c0.1-0.2,0.2-0.5,0.3-0.7c0.8-1.9,2.1-4.5,3-6l-0.8,0.3c-1.8,0.6-3.4,1.1-4.8,1.7
c-0.4,0.2-0.7,0.3-0.9,0.3C-288.4,188-288.4,188-288.3,188.1z M-280.1,186c-1.1,1.7-1.9,3.1-2.6,4.6c-0.2,0.4-0.4,0.8-0.5,1.1
c0.9-0.4,2.9-1.4,3.7-1.7c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.7,0.2-1.7,0-2.2c-0.1-0.6-0.3-1.2-0.5-1.7
C-280,185.7-280,185.8-280.1,186z M-296.3,185.5c-0.3,1.7-0.4,3.9-0.5,5.6c0.3-0.2,0.8-0.6,1.1-0.8c1.2-0.8,2.7-1.7,4.2-2.5
c0,0,0.4-0.2,0.4-0.2c-0.3-0.1-1-0.6-1.5-0.9c-1.1-0.6-2.3-1.1-3.5-1.5l-0.2-0.1C-296.3,185.2-296.3,185.3-296.3,185.5z
M-278.3,184.9c0.6,1.2,0.8,2,0.7,3.2c0,0.2,0,0.6-0.1,0.8c0.4-0.2,1.1-0.6,1.7-1c1.1-0.6,1.7-1.1,2.5-1.9
c1.1-1.1,1.9-2.5,2.1-3.5l-0.7,0.2c-1.5,0.4-5.5,1.6-6.5,1.9C-278.4,184.6-278.3,184.8-278.3,184.9z M-295.8,184.5
c1.9,0.5,4,1.3,5.6,2.2c0.1,0,0.1,0.1,0.2,0.1l0-0.1c0.5-1.5,1.4-3.7,2.4-5.5c0,0,0-0.1,0.1-0.1c-0.2,0.1-0.5,0.2-0.7,0.3
C-291.4,182.6-294.5,183.8-295.8,184.5z M-285.7,181.1c-1.1,1.9-1.9,3.6-2.6,5.2c0,0,0.1,0,0.1,0c2.1-0.9,4.3-1.7,6.8-2.3l0.4-0.1
c-0.9-1.1-2.3-2.3-3.9-3.3c-0.1-0.1-0.2-0.1-0.3-0.2C-285.4,180.5-285.5,180.8-285.7,181.1z M-294.4,178.2c-0.4,1.3-0.7,2.1-0.9,3
c-0.3,0.9-0.5,1.9-0.6,2.5c1.4-0.8,4.9-2.5,8.3-4c0.2-0.1,0.5-0.2,0.6-0.3c-0.3-0.1-0.6-0.3-0.9-0.4c-1.9-0.8-3.9-1.3-6.1-1.7
C-294.2,177.5-294.3,177.8-294.4,178.2z M-274.3,177.5c-0.2,0.3-0.5,0.7-0.7,1l-1.2,1.7c-0.9,1.3-1.6,2.3-2,2.9
c0.1,0,6.6-1.6,7-1.7c0,0,0-0.1-0.1-0.3c-0.2-0.8-0.6-1.6-1.2-2.4c-0.3-0.4-1-1.1-1.4-1.4l-0.2-0.1L-274.3,177.5z M-283.5,179.7
c1.4,0.8,2.6,1.8,3.7,3l0.1,0.1l1.2-1.4c2-2.4,2.9-3.5,3.6-4.6l0.1-0.1l0,0c-0.3,0.1-1.1,0.4-2.1,0.7
C-278.9,178-282.4,179.2-283.5,179.7C-283.5,179.6-283.5,179.6-283.5,179.7z M-293.1,176.6c1.2,0.2,2.6,0.4,3.7,0.7
c1.1,0.3,1.9,0.5,2.9,0.9c0.2,0.1,0.5,0.2,0.6,0.2c0,0,0.4-0.6,0.4-0.6c0.9-1.4,2-2.9,3.1-4.2c0.1-0.1,0.1-0.1,0.2-0.2
c-0.2,0.1-0.6,0.2-1,0.3c-3.3,0.9-7.3,2.1-8.7,2.6C-292.3,176.4-292.7,176.5-293.1,176.6z M-281.4,174.1l-0.6,1c0,0-1.8,2.8-2,3.2
c1.2-0.4,3.2-0.9,6.4-1.8c0,0,1.7-0.5,1.9-0.5c-0.2-0.2-0.6-0.4-0.9-0.6c-0.5-0.3-1.1-0.6-1.8-0.8c-0.5-0.2-2.3-0.8-2.7-0.9
L-281.4,174.1z M-292.2,171.8c-0.4,0.9-1.2,3.2-1.5,4.2c0,0,0,0,0.1,0c1.5-0.7,3-1.3,4.6-1.8c1.2-0.4,2.4-0.7,4.9-1.2l0.2,0
c-1.3-0.2-3.6-0.6-5.1-0.9c-1.1-0.2-2.5-0.4-2.9-0.4C-292.2,171.7-292.2,171.8-292.2,171.8z"/>
<path class="st2" d="M-292.1,171.1c0.3,0,0.6,0,0.9,0c2.8,0.1,7.8,0.8,10.4,1.5c1.6,0.4,3.7,1.1,4.9,1.6c2.4,1.1,4.5,2.6,5.6,4.2
c0.8,1.2,1,2.5,0.6,3.8c-0.2,0.7-0.8,1.6-1.5,2.5c-0.5,0.6-1.4,1.5-2,2c-0.6,0.4-1.3,1.1-2.1,1.7c-0.7,0.6-1.4,1.2-2,1.8l-2.5,0.7
l-8.9,3.9l-10.2,3.3l0,0h0v0l-0.3-0.6c1.3-0.4,1.3-0.4,1.4-0.4c0,0,0-0.2,0-0.3c-0.2-1.1-0.3-2.2-0.4-3.6c0-0.8,0-3.3,0-4.1
c0.2-2.7,0.5-4.9,0.9-6.6c0.7-2.8,1.9-6.1,3.6-9.6c0.5-1,0.9-1.8,1-1.9C-292.6,171.1-292.4,171.1-292.1,171.1 M-294.1,176.4
L-294.1,176.4L-294.1,176.4c0.1,0,0.3-0.1,0.5-0.2c1.5-0.7,3-1.3,4.5-1.7c1.2-0.4,2.4-0.7,4.8-1.2l1.1-0.3l-0.2,0
c-0.8-0.2-4-0.7-5.9-1c-1.1-0.2-2.9-0.4-3-0.4c0,0,0,0,0,0c0,0-0.1,0.1-0.2,0.3C-292.9,172.9-294.1,176.3-294.1,176.4
M-285.9,178.7C-285.9,178.7-285.9,178.7-285.9,178.7c0,0,0.2-0.3,0.5-0.7c0.9-1.4,2-2.9,3.1-4.2c0.2-0.3,0.4-0.5,0.4-0.5
c0,0-0.2-0.1-0.3-0.1c0,0,0,0,0,0c0,0-0.6,0.2-1.2,0.3c-3.3,0.9-7.3,2.1-8.7,2.6c-0.8,0.3-2,0.6-2,0.7c0,0,0.1,0,0.2,0.1
c1.1,0.1,3,0.4,4.3,0.7c1.1,0.3,1.9,0.5,2.9,0.9C-286.2,178.6-285.9,178.7-285.9,178.7 M-284.5,178.6
C-284.5,178.6-284.5,178.6-284.5,178.6L-284.5,178.6C-284.5,178.6-284.5,178.6-284.5,178.6C-284.5,178.6-284.5,178.6-284.5,178.6
c0,0,0.2-0.1,0.4-0.1c1.2-0.4,3.1-0.9,6.5-1.8c1.3-0.3,2.3-0.6,2.3-0.6c0.1,0-0.7-0.5-1.3-0.8c-0.5-0.3-1.2-0.6-1.8-0.8
c-0.5-0.2-2.5-0.9-2.7-1l-0.1,0l-0.2,0.4c-0.1,0.2-0.4,0.6-0.5,0.8c-0.2,0.3-0.6,1-1,1.6C-284,177.8-284.5,178.6-284.5,178.6
M-279.7,183.1l1.4-1.6c2-2.4,2.9-3.5,3.6-4.6l0.2-0.3l-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.1c0,0-1,0.3-2.2,0.8
c-2.2,0.8-6.9,2.4-6.9,2.5c0,0,0.2,0.1,0.4,0.3c1.4,0.8,2.5,1.7,3.6,3L-279.7,183.1 M-278.7,183.5c0,0,0.4-0.1,0.8-0.2
c0.4-0.1,1.7-0.4,2.8-0.6c1.9-0.4,4-0.9,4.1-1c0.1,0,0.1-0.2,0-0.6c-0.2-0.8-0.6-1.7-1.3-2.5c-0.3-0.4-1-1.1-1.4-1.5l-0.3-0.3
l-0.3,0.5c-0.2,0.3-0.5,0.7-0.7,1c-0.2,0.3-0.8,1.1-1.2,1.7C-277.8,182-278.7,183.4-278.7,183.5 M-296.3,184.1L-296.3,184.1
C-296.3,184.1-296.3,184.1-296.3,184.1c0,0,0.1,0,0.3-0.1c1.2-0.7,4.9-2.5,8.4-4c0.6-0.3,1-0.5,1-0.5c0,0-0.8-0.4-1.4-0.6
c-1.9-0.8-4-1.3-6.3-1.8c0,0-0.1,0-0.1,0c0,0-0.2,0.5-0.4,1.1c-0.4,1.3-0.7,2.1-0.9,3C-295.9,182.3-296.3,183.9-296.3,184.1
M-288.7,186.7c0,0,0.3-0.1,0.6-0.2c2.1-0.9,4.2-1.6,6.8-2.3l0.7-0.2l-0.1-0.2c-0.9-1.2-2.4-2.4-4-3.4c-0.3-0.2-0.5-0.3-0.5-0.3
c0,0-0.2,0.4-0.5,0.9c-1.1,2-2,3.8-2.7,5.4C-288.6,186.5-288.7,186.7-288.7,186.7 M-289.9,187.1
C-289.9,187.1-289.9,187.1-289.9,187.1c0,0,0-0.1,0.1-0.3c0.5-1.5,1.5-3.7,2.4-5.5c0.2-0.3,0.3-0.6,0.3-0.6c0,0,0,0,0,0
c0,0-0.1,0-0.2,0.1c-0.1,0-0.6,0.2-1.1,0.4c-3.4,1.3-6.8,2.7-7.8,3.3l-0.2,0.1l0.2,0c2,0.5,4.2,1.3,5.9,2.3
C-290.1,187-289.9,187.1-289.9,187.1 M-277.9,189.3L-277.9,189.3C-277.9,189.3-277.9,189.3-277.9,189.3c0.1,0,1.3-0.7,2.1-1.2
c1.1-0.6,1.7-1.1,2.5-1.9c1.2-1.2,2.1-2.7,2.2-3.9c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c0,0-0.4,0.1-0.9,0.3c-1.6,0.4-6.7,1.9-6.8,2
c0,0,0.1,0.3,0.3,0.6c0.6,1.1,0.7,2,0.7,3.1c0,0.3-0.1,0.6-0.1,0.8C-277.9,189.2-277.9,189.3-277.9,189.3 M-297,191.5L-297,191.5
l0.1-0.1c0.2-0.1,0.9-0.6,1.3-1c1.3-0.8,2.7-1.7,4.2-2.5c0.4-0.2,0.7-0.4,0.7-0.4c0,0-1.1-0.7-1.8-1.1c-1.1-0.6-2.4-1.2-3.5-1.5
c-0.3-0.1-0.5-0.1-0.5-0.1c0,0,0,0.3-0.1,0.6c-0.3,1.7-0.5,4.1-0.5,5.8V191.5 M-283.7,192.1c0.1,0,3.2-1.5,4.2-2
c0.2-0.1,0.2-0.1,0.3-0.6c0.1-0.6,0.2-1.7,0-2.3c-0.1-0.6-0.3-1.3-0.6-1.8c-0.1-0.2-0.1-0.2-0.1-0.2c0,0,0,0,0,0
c0,0-0.2,0.3-0.4,0.6c-1.1,1.7-1.9,3.2-2.7,4.6C-283.3,191.2-283.7,192.1-283.7,192.1C-283.7,192.1-283.7,192.1-283.7,192.1
M-285.3,192.7L-285.3,192.7c0,0,0.1,0,0.1,0c0.1-0.1,0.1-0.1,0.2-0.2c0-0.1,0.2-0.4,0.3-0.8c0.8-2,2.1-4.7,3-6.1
c0.2-0.3,0.2-0.3,0.2-0.3c0,0,0,0,0,0c-0.4,0.1-0.9,0.3-1.3,0.4c-1.8,0.6-3.4,1.1-4.9,1.7c-1.3,0.5-1.2,0.5-1.2,0.5
c0,0,0.2,0.2,0.4,0.3c0.6,0.5,1.3,1.2,1.8,1.9c0.5,0.6,1,1.6,1.3,2.3C-285.3,192.6-285.3,192.7-285.3,192.7
C-285.3,192.7-285.3,192.7-285.3,192.7 M-291.4,195.1c0.1,0,0.1,0,0.1-0.8c0-1.6,0.3-3.5,0.8-5.4c0.1-0.2,0.1-0.4,0.1-0.4
c0,0-0.3,0.1-0.7,0.3c-2.1,0.9-3.9,1.9-5.3,2.8c-0.7,0.4-0.6,0.4-0.3,0.5c0.9,0.4,3.1,1.6,4.7,2.6
C-291.6,195-291.4,195.1-291.4,195.1L-291.4,195.1C-291.3,195.1-291.3,195.1-291.4,195.1 M-290.3,194.7c0.1,0,4.1-1.5,4.2-1.6
c0,0-0.3-0.7-0.4-1c-0.3-0.7-0.8-1.4-1.4-2.1c-0.3-0.4-1.4-1.4-1.4-1.4c0,0,0,0,0,0c0,0-0.1,0.3-0.2,0.5c-0.4,1.2-0.6,2.2-0.7,3.3
C-290.3,192.9-290.3,194.6-290.3,194.7C-290.3,194.7-290.3,194.7-290.3,194.7 M-296.5,196.8c0.1,0,2.6-0.8,3.7-1.2
c0.6-0.2,0.6-0.2,0.6-0.3c-0.2-0.2-1.7-1.2-2.5-1.6c-0.9-0.6-2.1-1.3-2.2-1.3c0,0,0,0.2,0,0.5
C-296.9,194.4-296.6,196.8-296.5,196.8 M-292.1,170.6c-0.5,0-0.6,0-0.7,0.1c-0.1,0-0.2,0.1-1.1,2c-1.7,3.5-3,6.8-3.6,9.6
c-0.4,1.7-0.7,4-0.9,6.7c-0.1,0.7-0.1,3.3,0,4.2c0.1,1.4,0.2,2.5,0.4,3.6c-0.2,0.1-0.6,0.2-1,0.3l-0.5,0.1l0.2,0.5l0.3,0.6
l0.2,0.4l0.4-0.1l10.2-3.3l8.9-3.9l2.4-0.6l0.1,0l0.1-0.1c0.7-0.7,1.4-1.3,2-1.8c0.8-0.7,1.5-1.3,2.1-1.7c0.6-0.5,1.6-1.4,2.1-2.1
c0.7-0.9,1.3-1.9,1.6-2.7c0.5-1.4,0.2-2.9-0.7-4.2c-1.1-1.6-3.2-3.2-5.8-4.3c-1.3-0.6-3.4-1.3-5-1.7c-2.6-0.7-7.7-1.4-10.5-1.5
C-291.5,170.6-291.9,170.6-292.1,170.6L-292.1,170.6z M-293.4,175.6c0.4-1.1,1-2.9,1.4-3.7c0,0,0,0,0,0c0.5,0.1,1.8,0.3,2.8,0.4
c1.2,0.2,2.8,0.4,4.1,0.7c-1.9,0.4-2.9,0.7-4,1C-290.6,174.5-292,175-293.4,175.6L-293.4,175.6z M-292.1,176.6
c0.1,0,0.2-0.1,0.2-0.1c1.3-0.4,5.4-1.6,8.6-2.6c0.1,0,0.2-0.1,0.4-0.1c-1,1.3-2,2.6-2.9,3.9l-0.3,0.4c-0.1,0-0.3-0.1-0.4-0.2
c-1-0.4-1.8-0.6-2.9-0.9C-290.2,176.9-291.2,176.7-292.1,176.6L-292.1,176.6z M-283.5,177.9c0.2-0.3,0.5-0.8,0.9-1.4l0.8-1.2
l0.3-0.4c0.1-0.2,0.3-0.5,0.4-0.7l0.1-0.2l0.1-0.1c0.6,0.2,2,0.7,2.5,0.9c0.6,0.2,1.2,0.5,1.8,0.8c0.2,0.1,0.3,0.2,0.5,0.3
c-0.1,0-0.1,0-0.2,0.1l-1.2,0.3C-280.5,177-282.3,177.5-283.5,177.9L-283.5,177.9z M-283,179.7c1.4-0.5,4.4-1.6,6.1-2.1
c0.6-0.2,1.1-0.4,1.5-0.5c-0.7,0.9-1.6,2-3.3,4.2l-1,1.2C-280.7,181.3-281.8,180.4-283,179.7L-283,179.7z M-277.7,182.8
c0.4-0.6,1-1.4,1.7-2.4l0.9-1.3l0.3-0.4c0.2-0.3,0.5-0.8,0.7-1l0.1-0.1c0.4,0.3,1,1,1.3,1.4c0.6,0.8,1,1.6,1.2,2.3
c0,0,0,0.1,0,0.1c-0.6,0.2-2.3,0.5-3.8,0.9C-276.2,182.4-277.2,182.6-277.7,182.8L-277.7,182.8z M-295.7,183.2
c0.1-0.6,0.3-1.3,0.5-2c0.3-1,0.5-1.7,0.9-3c0.1-0.3,0.2-0.5,0.2-0.7c2.2,0.4,4.1,1,5.9,1.7c0.2,0.1,0.3,0.1,0.5,0.2
c-0.1,0-0.1,0-0.2,0.1C-290.9,180.9-294.1,182.4-295.7,183.2L-295.7,183.2z M-287.9,185.9c0.6-1.4,1.4-3,2.4-4.7
c0.1-0.2,0.2-0.4,0.3-0.5c0,0,0.1,0.1,0.1,0.1c1.4,0.9,2.7,1.9,3.6,3l0,0C-283.8,184.4-285.9,185.1-287.9,185.9L-287.9,185.9z
M-295.2,184.4c1.5-0.7,4.2-1.8,7-2.8c0.1,0,0.1,0,0.2-0.1c-0.9,1.7-1.7,3.6-2.2,5C-291.6,185.7-293.4,184.9-295.2,184.4
L-295.2,184.4z M-278.1,184.7c1.3-0.4,4.9-1.4,6.3-1.8l0.3-0.1c-0.3,1-1,2.1-2,3.1c-0.8,0.8-1.4,1.2-2.4,1.9
c-0.4,0.3-1,0.5-1.4,0.8c0-0.1,0-0.3,0-0.4c0.1-1.2-0.1-2.1-0.7-3.3C-278.1,184.8-278.1,184.7-278.1,184.7L-278.1,184.7z
M-296.5,190.6c0-1.6,0.2-3.7,0.4-5.2c0,0,0,0,0-0.1l0,0c1.1,0.4,2.4,0.9,3.5,1.5c0.4,0.2,0.8,0.5,1.2,0.7l-0.1,0
c-1.5,0.8-3,1.7-4.2,2.5C-296,190.3-296.3,190.5-296.5,190.6L-296.5,190.6z M-288,188c0.1,0,0.3-0.1,0.4-0.2l0.1,0
c1.5-0.6,3.1-1.1,4.8-1.7l0.2-0.1c-0.9,1.5-2,3.8-2.7,5.5c0,0.1-0.1,0.2-0.1,0.2c-0.3-0.6-0.7-1.4-1.1-1.9
C-286.8,189.2-287.5,188.5-288,188L-288,188z M-282.8,191.2c0.1-0.2,0.2-0.3,0.3-0.5c0.8-1.5,1.6-2.9,2.6-4.6
c0.1,0.4,0.3,0.8,0.4,1.2c0.1,0.5,0.1,1.5,0,2.1c0,0.1,0,0.2-0.1,0.3l0,0C-280.4,190.1-281.8,190.7-282.8,191.2L-282.8,191.2z
M-296.1,192c1.4-0.9,3-1.8,5.1-2.7c-0.5,1.8-0.7,3.6-0.7,5.1c0,0,0,0.1,0,0.1c0,0-0.1,0-0.1,0C-293.2,193.5-295,192.5-296.1,192
L-296.1,192z M-289.9,194.1c0-0.5,0-1.3,0.1-1.6c0.1-1.1,0.3-2.1,0.7-3.2c0.3,0.3,0.7,0.7,0.9,0.9c0.6,0.6,1,1.3,1.4,2
c0.1,0.2,0.2,0.4,0.3,0.6C-287.4,193.1-289,193.8-289.9,194.1L-289.9,194.1z M-296.2,196.3c-0.1-0.7-0.2-2-0.3-3.1
c0.4,0.2,1,0.6,1.5,0.9c0.5,0.3,1.3,0.8,1.8,1.2C-294.1,195.6-295.5,196-296.2,196.3L-296.2,196.3z"/>
</g>
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-293.5277" y1="217.0743" x2="-291.7983" y2="217.0743" gradientTransform="matrix(-9.485887e-03 0 0 -9.485887e-03 -264.3735 182.6886)">
<stop offset="0" style="stop-color:#939FAB"/>
<stop offset="1" style="stop-color:#DCDEE1"/>
</linearGradient>
<path class="st4" d="M-288.4,222.1c-0.2,0-0.3-0.2-0.4-0.7c-0.2-0.9-0.7-2.1-1.1-3.1c-0.6-1.4-1.6-3.3-2.5-4.9l-0.1-0.2l-0.8-0.1
h-0.2l0-0.2l0.1-0.8l6.9,1.2l5.8,1l2.5,0.8l1.1,1c0.1,0.3,0,0.4,0,0.5c-0.1,0.3-0.7,0.8-1.1,1.1c-1.1,0.8-3,1.7-5.4,2.7
C-285,221-288,222.1-288.4,222.1L-288.4,222.1z M-288.9,217.6c0.4,1.3,0.7,2.3,0.8,3.4c0,0.1,0,0.2,0,0.2c0.7-0.3,2.9-1.2,3.9-1.6
c0.6-0.3,1.5-0.8,2.1-1.1c0,0-0.1,0-0.1,0c-2.4-0.3-5.8-0.9-6.8-1.2C-289,217.4-288.9,217.5-288.9,217.6z M-288.8,216.2
c2,0.2,5.3,0.8,7.1,1.3c-0.5-0.5-1.4-1.4-2.5-2.4l-0.8-0.8l-0.2,0l-0.3,0c-0.1,0-0.2,0.1-0.4,0.2
C-286.7,215.1-287.8,215.7-288.8,216.2z M-280.5,217.5c1.1-0.8,1.6-1.5,1.6-1.8l-0.3-0.1c-0.5-0.2-0.9-0.3-1.7-0.4
c-0.5-0.1-1.3-0.3-1.8-0.4L-280.5,217.5z M-290.8,213.5c0.3,0.6,0.9,1.7,1.1,2.1c0,0,0,0,0,0l0.2-0.2c0.7-0.5,1.4-1,2.1-1.5
C-288,213.9-290.7,213.5-290.8,213.5z"/>
<path class="st2" d="M-293.3,212.3l6.7,1.1l5.8,1l2.5,0.8l1,1c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.6,0.7-1,1c-1.1,0.8-3,1.7-5.4,2.7
c-1.7,0.7-4.4,1.7-4.7,1.7c0,0,0,0,0,0v0h0v0c-0.1,0-0.1,0-0.2-0.6c-0.2-0.9-0.7-2.1-1.1-3.1c-0.6-1.3-1.6-3.3-2.5-4.9l-0.2-0.3
l-0.9-0.1c0,0,0,0-0.1,0L-293.3,212.3 M-289.7,216C-289.7,216-289.7,216-289.7,216c0.1,0,0.2-0.2,0.4-0.3c0.7-0.6,1.5-1.2,2.3-1.6
c0.1-0.1,0.2-0.1,0.2-0.1c0,0-0.8-0.2-3.4-0.6c-0.6-0.1-0.8-0.1-0.9-0.1c-0.1,0,0,0,0,0.1c0.2,0.3,1,1.9,1.3,2.4
C-289.8,215.9-289.8,216-289.7,216C-289.7,216-289.7,216-289.7,216 M-280.8,218.1l-0.4-0.4c-0.4-0.4-1.5-1.4-2.8-2.7l-0.8-0.8
l-0.3,0c-0.2,0-0.3-0.1-0.4-0.1c0,0-0.3,0.1-0.5,0.3c-0.8,0.5-2,1.2-3.1,1.7c-0.3,0.1-0.5,0.2-0.5,0.3c0,0,0.2,0,0.5,0
c2.3,0.2,6.4,1,8,1.5L-280.8,218.1 M-280.5,217.8l0.1-0.1c1.1-0.8,1.8-1.6,1.8-2.1v-0.1l-0.4-0.1c-0.5-0.2-0.9-0.3-1.7-0.4
c-0.8-0.2-2.2-0.5-2.4-0.5c0,0,0,0,0,0c0,0,0.1,0.1,0.2,0.3c0.1,0.2,0.7,0.9,1.3,1.6L-280.5,217.8 M-288.3,221.5L-288.3,221.5
c0.2,0,3.1-1.2,4.2-1.7c0.8-0.4,2.7-1.4,2.7-1.4c0,0-0.3-0.1-0.8-0.1c-2.5-0.4-6.1-1-6.9-1.2c-0.1,0-0.2-0.1-0.2-0.1
c-0.1,0,0,0.1,0.2,0.8c0.4,1.1,0.6,2.2,0.7,3.2C-288.3,221.3-288.3,221.5-288.3,221.5 M-293.6,211.8l-0.1,0.5l-0.1,0.6l-0.1,0.5
h0.5l0.7,0.1l0.1,0.1c0.9,1.6,1.9,3.5,2.5,4.9c0.4,1,0.9,2.2,1.1,3c0.1,0.6,0.2,0.8,0.6,0.9c0,0,0,0,0,0c0.5,0,3.8-1.3,4.9-1.7
c2.5-1,4.3-1.9,5.5-2.7c0.4-0.3,1.1-0.9,1.2-1.2c0.1-0.1,0.1-0.3,0.1-0.4V216l-0.1-0.1l-1-1l-0.1-0.1l-0.1,0l-2.5-0.8l-5.9-1.1
l-6.7-1.1L-293.6,211.8L-293.6,211.8z M-289.6,215.3c-0.2-0.4-0.5-1-0.8-1.5l0.1,0c0.9,0.2,1.7,0.3,2.3,0.4
C-288.6,214.5-289.1,214.9-289.6,215.3L-289.6,215.3z M-288.1,216.1c0.8-0.4,1.7-0.9,2.3-1.3c0.1-0.1,0.3-0.2,0.3-0.2l0,0l0.2,0
l0.2,0l0.7,0.7c0.7,0.7,1.4,1.4,1.9,1.8C-284.1,216.7-286.4,216.3-288.1,216.1L-288.1,216.1z M-280.4,217.2l-0.8-1
c-0.3-0.4-0.6-0.7-0.8-1c0.4,0.1,0.9,0.2,1.2,0.3c0.8,0.2,1.1,0.3,1.7,0.4l0.1,0C-279.3,216.2-279.6,216.6-280.4,217.2
L-280.4,217.2z M-287.9,220.9c-0.1-1.1-0.4-2.1-0.8-3.3l0,0c1.2,0.3,3.8,0.7,5.9,1c-0.5,0.3-1.1,0.6-1.5,0.8
C-285.1,219.8-287,220.6-287.9,220.9L-287.9,220.9z"/>
</g>
<g>
<radialGradient id="SVGID_3_" cx="-290.434" cy="206.117" r="2.6352" gradientTransform="matrix(-9.485887e-03 0 0 -9.485887e-03 -264.3735 182.6886)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#EE352C"/>
<stop offset="1" style="stop-color:#A91D22"/>
</radialGradient>
<path class="st5" d="M-277.6,216.7c-0.1-0.5-0.7-0.7-1.2-0.9l-0.2-0.1c-0.7-0.3-1.7-0.5-2-0.5c-0.9-0.2-2.2-0.4-3.1-0.6
c-2.5-0.4-4.8-0.8-8.3-1.4c-1.7-0.3-3.7-0.6-4.7-0.8c-5-1-8.9-2.3-11.9-4c-2.2-1.3-4-2.8-5.5-4.6c-0.5-0.7-1-1.3-1.6-2.2l-0.3-0.5
l1-0.2c6.8-1,18.5-4.2,25.7-6.9c5-1.9,9.1-3.7,12.7-5.7c1.6-0.9,2.2-1.3,2.7-1.6l0.8-0.3l1.1-0.4l-0.9,0.8
c-5.1,4.2-8.6,8.1-10.1,11.6c-0.9,1.9-1.2,3.5-1.2,5.4c0.1,2.9,0.9,5,2.7,7.2c0.4,0.5,3.8,3.8,3.8,3.8c0.3,0.3,0.7,0.6,0.8,0.9
c0.2,0.4,0.1,0.7,0,0.9l-0.3,0.4L-277.6,216.7z M-280.4,214.1c-1.1-1-2.1-2.1-2.9-3.2c0.3,1,0.7,2.3,0.8,2.6
C-282.5,213.6-280.5,214.1-280.4,214.1z M-288.6,212.4c1.4,0.2,3.7,0.7,5.1,1c0,0,0,0,0,0c-0.5-1.1-1.1-2.6-1.4-3.7l-0.1,0.1
c-0.6,0.6-1.3,1.2-2.2,1.8C-287.5,211.7-288.1,212.1-288.6,212.4z M-290.2,208c0,1.1,0.1,2.4,0.4,3.5c0,0.2,0.1,0.4,0.2,0.6
c0.4-0.3,2-1.5,2.7-2.2c0.3-0.3,0.8-0.8,1.1-1.1c-0.2-0.1-0.5-0.2-0.9-0.2c-1.2-0.3-2.5-0.7-3.3-1l-0.2-0.1
C-290.2,207.7-290.2,207.8-290.2,208z M-297.1,210.8c0.5,0.1,1.4,0.3,2.2,0.4c1.1,0.2,3.4,0.6,4.2,0.7c-0.5-1.2-0.8-2.7-0.8-4.2
c0,0,0-0.1,0-0.1c-0.1,0.1-0.3,0.2-0.4,0.3c-1.5,1-3,1.8-5.1,2.8C-297,210.8-297,210.8-297.1,210.8z M-306.4,207.9
c1.3,0.6,3.4,1.4,5.2,1.9c0.6,0.2,1.6,0.4,2,0.5l0,0c0.1-1.5,0.6-3.4,1.5-5.1C-300.5,206.3-303.2,207.1-306.4,207.9z
M-296.2,205.3c-0.9,1.6-1.6,3.3-1.9,4.4c0,0.2-0.1,0.4-0.1,0.6c0.5-0.3,1.6-0.9,2.4-1.4c1.1-0.7,2.8-1.8,3.4-2.2
c0,0-0.3-0.1-0.3-0.1c-1.1-0.5-2.2-1-3-1.5c-0.1-0.1-0.2-0.1-0.3-0.2C-296.1,205.1-296.1,205.2-296.2,205.3z M-289.1,206
c0.5,0.2,1.7,0.6,2.4,0.8c0.4,0.1,1,0.3,1.4,0.3l0-0.1c-0.2-1.5-0.3-3-0.2-4.2c-0.1,0.1-0.2,0.2-0.2,0.2c-1.2,1.2-2.2,2-3.2,2.9
L-289.1,206z M-304,202.8c-1.5,1.9-2.2,2.8-2.7,3.5c-0.2,0.2-0.4,0.5-0.5,0.8c0.4-0.1,0.9-0.3,1.4-0.4c1.8-0.5,4.1-1.4,5.9-2.1
c0.7-0.3,1.6-0.7,2-0.8c-0.1-0.1-0.3-0.2-0.5-0.4c-1.3-1-2.3-2.2-3.2-3.5c0,0,0,0,0-0.1C-301.6,199.8-303.2,201.7-304,202.8z
M-314.8,201.9c0.3,0.3,0.8,0.8,1.1,1.1c1.4,1.4,3.3,2.8,5.1,3.8c0.1,0.1,0.2,0.1,0.2,0.1c0.1-0.1,0.2-0.3,0.3-0.5
c1.3-2.6,2.4-4,4.7-6.3c0,0,0.1-0.1,0.1-0.1c-3.9,0.9-8,1.6-11.2,1.8L-314.8,201.9z M-294.3,203.6c0.4,0.2,0.9,0.5,1.4,0.7
c0.6,0.3,1.3,0.6,1.6,0.8c0.3-1.4,0.8-2.8,1.4-4c0,0,0,0-0.1,0c-1.3,0.8-2.6,1.5-4,2.2C-294,203.5-294.1,203.6-294.3,203.6z
M-288.1,200.8c-0.5,0.9-1,2.1-1.3,3.1c-0.1,0.3-0.2,0.6-0.3,0.9c0.5-0.4,1.3-1,1.8-1.5c0.8-0.7,1.8-1.5,2.1-1.9
c0,0-0.1,0-0.1-0.1c-0.5-0.3-1-0.6-1.5-1.1l-0.2-0.2L-288.1,200.8z M-300.4,199.2c0.4,0.3,0.9,0.8,1.3,1.1
c0.7,0.6,1.8,1.4,2.6,1.9l0.2,0.1l0.1-0.2c1.3-2,3.1-4.1,5.2-6c-3.1,1.1-5.7,2-9.2,2.9L-300.4,199.2z M-289.7,196.4
c-0.9,1.1-2.2,2.7-3,3.8c-0.4,0.5-0.9,1.2-1.2,1.7c0.5-0.3,1.2-0.6,1.7-0.9c1.4-0.8,3.4-1.9,3.7-2.1c0,0,0,0,0,0
c-0.1,0-0.1-0.2-0.2-0.2c-0.4-0.8-0.6-1.7-0.7-2.6C-289.5,196.1-289.6,196.2-289.7,196.4z M-286.2,198.9c0.3,0.3,0.7,0.5,1.1,0.7
c0.1,0,0.1,0.1,0.2,0.1c0,0,0-0.1,0-0.2c0.2-0.5,0.4-1.1,0.7-1.6c0.1-0.3,0.3-0.5,0.4-0.8c-0.7,0.5-1.6,1.2-2.2,1.6
C-286.1,198.7-286.2,198.8-286.2,198.9z M-288.4,195.3c0.1,0.8,0.4,1.5,0.8,2.1c0,0.1,0.1,0.1,0.1,0.2c0,0,0-0.1,0.1-0.1
c1.3-1.6,2.9-3.1,4.7-4.6c-1.2,0.5-2.9,1.3-4.8,2L-288.4,195.3z M-280.8,192.9c-1.4,1-2.6,2-3.8,3.2c-0.1,0.1-0.3,0.3-0.4,0.5
c0.8-0.5,1.8-1.3,2.5-1.7c0.4-0.3,0.4-0.3,0.7-0.7C-281.5,193.8-281.2,193.4-280.8,192.9z"/>
<path class="st2" d="M-273.3,186.8c-5.2,4.3-8.6,8.1-10.2,11.6c-0.9,1.9-1.3,3.6-1.2,5.5c0.1,3,0.9,5.1,2.8,7.3
c0.4,0.5,3.8,3.8,3.8,3.8c0.3,0.3,0.6,0.6,0.7,0.9c0.2,0.4,0,0.7,0,0.7v0c-0.2-0.7-1-0.9-1.5-1.1c-0.7-0.2-1.6-0.4-2-0.5
c-0.9-0.2-2.2-0.4-3.1-0.6c-2.5-0.4-4.8-0.8-8.3-1.4c-1.7-0.3-3.7-0.6-4.6-0.8c-4.9-1-8.8-2.3-11.9-4c-2.2-1.2-4-2.7-5.5-4.5
c-0.5-0.6-0.9-1.2-1.5-2.2l-0.1-0.2l0.7-0.1c6.7-1,18.6-4.2,25.8-6.9c5-1.9,9.1-3.7,12.7-5.7c1.6-0.9,2.2-1.3,2.7-1.6
L-273.3,186.8 M-287.5,197.9C-287.5,197.9-287.5,197.9-287.5,197.9L-287.5,197.9c0,0,0.2-0.2,0.3-0.4c1.5-1.8,3.5-3.7,5.8-5.3
c0.3-0.2,0.5-0.4,0.5-0.4c0,0,0,0,0,0c0,0-0.3,0.1-0.7,0.3c-0.4,0.2-1,0.5-1.3,0.6c-1.2,0.5-2.9,1.3-4.8,2l-1.1,0.4l0,0.2
c0.1,0.7,0.4,1.6,0.9,2.2C-287.5,197.8-287.5,197.9-287.5,197.9 M-286.3,197.6c0.1,0,2.6-1.7,3.8-2.6c0.4-0.3,0.5-0.4,0.8-0.7
c0.4-0.6,0.8-1,1.3-1.6c0.7-0.8,0.8-0.9,0.8-0.9c0,0,0,0,0,0c0,0-0.2,0.1-0.5,0.3c-1.8,1.2-3.3,2.3-4.8,3.9
C-285.4,196.6-286.3,197.6-286.3,197.6C-286.3,197.6-286.3,197.6-286.3,197.6 M-294.6,202.3c0.1,0,1.5-0.7,2.5-1.2
c1.4-0.8,3.7-2,3.8-2.2c0,0,0-0.1-0.2-0.5c-0.4-0.8-0.7-1.8-0.7-2.8c0-0.2,0-0.3,0-0.3c0,0,0,0,0,0c0,0-0.3,0.4-0.7,0.8
c-0.9,1.1-2.3,2.8-3,3.8C-293.6,200.8-294.6,202.3-294.6,202.3L-294.6,202.3C-294.6,202.3-294.6,202.3-294.6,202.3 M-296.2,202.7
L-296.2,202.7l0.3-0.4c1.3-2,3.1-4.1,5.2-5.9c0.7-0.7,0.8-0.7,0.7-0.7c0,0,0,0,0,0c0,0-0.3,0.1-0.7,0.2c-3.2,1.2-5.9,2-9.4,3
l-0.6,0.2l0.1,0.1c0.2,0.2,1,0.9,1.5,1.3c0.8,0.7,1.8,1.4,2.7,2L-296.2,202.7 M-284.9,200c0,0,0.1-0.2,0.2-0.4
c0.2-0.5,0.4-1.1,0.6-1.6c0.3-0.6,0.5-1,1-1.8c0,0,0-0.1,0-0.1c0,0-0.2,0.1-0.7,0.5c-0.6,0.5-1.8,1.4-2.5,1.9
c-0.3,0.2-0.5,0.4-0.4,0.4c0.4,0.3,0.8,0.6,1.3,0.9C-285.1,199.9-284.9,200-284.9,200 M-307.6,207.4c0.1,0,1-0.3,1.9-0.6
c1.8-0.5,4.1-1.4,5.9-2.1c1-0.4,2.3-1,2.3-1c0,0-0.1-0.1-0.2-0.1c-0.1-0.1-0.3-0.3-0.6-0.5c-1.2-1-2.3-2.1-3.1-3.4
c-0.1-0.2-0.2-0.3-0.2-0.3c0,0-0.3,0.3-0.6,0.7c-0.3,0.4-1.2,1.5-2,2.5c-1.5,1.9-2.2,2.8-2.7,3.5
C-307.1,206.5-307.6,207.3-307.6,207.4C-307.6,207.4-307.6,207.4-307.6,207.4 M-308.2,207.2C-308.2,207.2-308.2,207.2-308.2,207.2
C-308.2,207.2-308.2,207.2-308.2,207.2C-308.2,207.2-308.2,207.2-308.2,207.2c0,0,0.2-0.3,0.4-0.7c1.3-2.5,2.3-4,4.7-6.2
c0.4-0.4,0.7-0.7,0.7-0.7c0,0-0.3,0.1-0.5,0.1c-4,1-8.1,1.6-11.4,1.9c-0.4,0-0.8,0.1-0.8,0.1c0,0,1,1.1,1.4,1.5
c1.4,1.4,3.3,2.8,5.1,3.9C-308.4,207.1-308.3,207.2-308.2,207.2 M-290.1,205.3c0.1,0,1.6-1.2,2.3-1.8c1-0.9,2.3-2.1,2.3-2.1
c0,0-0.2-0.1-0.4-0.2c-0.5-0.3-0.9-0.6-1.4-1.1l-0.4-0.4l-0.2,0.3c-0.1,0.2-0.3,0.5-0.4,0.7c-0.5,0.9-1,2.1-1.4,3.1
C-289.8,204.3-290.1,205.2-290.1,205.3C-290.1,205.3-290.1,205.3-290.1,205.3 M-291.1,205.4c0,0,0.1-0.1,0.1-0.2
c0.3-1.5,0.9-3,1.6-4.2c0.2-0.4,0.2-0.4,0.2-0.4c0,0-0.3,0.2-0.7,0.4c-1.3,0.8-2.5,1.5-4,2.2c-0.5,0.2-0.8,0.4-0.8,0.4
c0.1,0,1.1,0.6,1.8,0.9C-292.2,205-291.2,205.4-291.1,205.4 M-285.2,207.4C-285.1,207.4-285.1,207.4-285.2,207.4c0,0,0-0.2,0-0.4
c-0.2-1.7-0.3-3.3-0.1-4.6c0-0.1,0-0.1,0-0.1c0,0-0.3,0.3-0.7,0.6c-1.2,1.1-2.1,2-3.1,2.8c-0.2,0.2-0.5,0.4-0.5,0.4
c0,0,1.9,0.7,2.7,0.9C-286.3,207.1-285.3,207.4-285.2,207.4 M-298.5,210.7c0.1,0,1.7-0.9,2.8-1.5c1.3-0.8,3.8-2.4,3.7-2.5
c0,0-0.3-0.1-0.6-0.3c-1.1-0.5-2.1-1-3-1.5c-0.2-0.1-0.4-0.2-0.5-0.2c0,0,0,0,0,0c0,0-0.2,0.2-0.3,0.5c-0.9,1.6-1.7,3.3-1.9,4.4
C-298.4,210-298.5,210.6-298.5,210.7C-298.5,210.7-298.5,210.7-298.5,210.7 M-299.1,210.6c0,0,0-0.1,0.1-0.3
c0.1-1.6,0.7-3.4,1.5-5.1c0.1-0.2,0.2-0.4,0.2-0.4c0,0-0.2,0.1-0.4,0.2c-2.7,1.1-5.6,2-8.9,2.7l-0.4,0.1l0.6,0.3
c1.4,0.6,3.4,1.4,5.2,1.9C-300.6,210.2-299.2,210.6-299.1,210.6 M-289.8,212.4c0.1,0,2.2-1.6,3-2.3c0.4-0.4,1.4-1.3,1.4-1.4
c0,0-0.5-0.2-1.2-0.4c-1.1-0.3-2.5-0.7-3.3-1l-0.4-0.1l0,0.1c0,0,0,0.3,0,0.7c0,1.2,0.1,2.4,0.4,3.5
C-289.9,212.1-289.8,212.3-289.8,212.4C-289.8,212.4-289.8,212.4-289.8,212.4 M-290.3,212.3C-290.3,212.3-290.3,212.3-290.3,212.3
c0,0,0-0.1-0.1-0.2c-0.5-1.2-0.8-2.7-0.8-4.2c0-0.3,0-0.5,0-0.5c0,0-0.3,0.2-0.7,0.5c-1.5,1-3,1.8-5,2.7c-0.5,0.2-0.7,0.3-0.6,0.3
c0.1,0,1.6,0.4,2.7,0.6C-293.5,211.8-290.5,212.3-290.3,212.3 M-283.1,213.6C-283.1,213.6-283.1,213.6-283.1,213.6
C-283.1,213.6-283.1,213.6-283.1,213.6C-283.1,213.6-283.1,213.6-283.1,213.6C-283.1,213.6-283.1,213.6-283.1,213.6
c0,0-0.1-0.2-0.1-0.3c-0.5-1.1-1.1-2.7-1.4-3.8c0-0.2-0.1-0.3-0.1-0.3s-0.2,0.2-0.4,0.4c-0.6,0.6-1.3,1.2-2.2,1.7
c-0.3,0.2-1.4,0.8-1.6,1c-0.1,0.1-0.2,0.1-0.2,0.1c0,0,0.2,0.1,0.5,0.1c1.5,0.3,3.8,0.7,5.2,1
C-283.3,213.6-283.2,213.6-283.1,213.6 M-279.3,214.7C-279.3,214.7-279.3,214.7-279.3,214.7c0,0-0.2-0.1-0.4-0.3
c-1.6-1.3-3.1-2.9-4-4.5c-0.1-0.2-0.2-0.3-0.2-0.3c0,0,0,0,0,0c0,0,0.1,0.3,0.2,0.7c0.3,1,1,3.4,1.1,3.5c0,0,0.4,0.1,0.9,0.2
c0.3,0.1,0.7,0.2,1,0.3c0.4,0.1,0.8,0.2,1.1,0.3C-279.5,214.6-279.4,214.7-279.3,214.7 M-271.2,185.6l-2.3,0.8l-0.8,0.3l-0.1,0
l-0.1,0c-0.5,0.3-1.1,0.7-2.7,1.6c-3.6,2-7.6,3.8-12.7,5.7c-7.2,2.7-19,5.9-25.7,6.9l-0.7,0.1l-0.7,0.1l0.4,0.6l0.1,0.2
c0.6,1,1,1.6,1.6,2.2c1.5,1.9,3.3,3.4,5.6,4.7c3.1,1.7,7,3,12,4c0.9,0.2,2.9,0.5,4.7,0.8c3.6,0.6,5.9,0.9,8.3,1.4
c0.8,0.1,2.2,0.4,3.1,0.6c0.4,0.1,1.3,0.3,2,0.5l0.2,0.1c0.4,0.2,1,0.4,1,0.7l0.3,1l0.5-0.9c0,0,0.3-0.5,0-1.1
c-0.1-0.3-0.4-0.6-0.8-1c-1.2-1.1-3.5-3.4-3.8-3.8c-1.8-2.1-2.6-4.2-2.7-7c0-1.9,0.3-3.5,1.2-5.3c1.6-3.4,4.9-7.3,10.1-11.5
L-271.2,185.6L-271.2,185.6z M-288.1,195.4l0.7-0.3c1.2-0.5,2.4-0.9,3.4-1.4c-1.3,1.1-2.4,2.3-3.4,3.4
C-287.8,196.7-288,196-288.1,195.4L-288.1,195.4z M-283.1,195c0.3-0.3,0.6-0.5,0.9-0.8c-0.2,0.3-0.3,0.3-0.6,0.5
C-282.8,194.8-283,194.9-283.1,195L-283.1,195z M-293.2,201.2c0.2-0.3,0.5-0.6,0.7-0.9c0.8-1,2.1-2.7,3-3.8c0,0,0,0,0,0
c0.1,0.7,0.3,1.5,0.6,2.2c0,0,0,0.1,0,0.1c-0.6,0.4-2.3,1.3-3.5,2C-292.6,200.9-292.9,201-293.2,201.2L-293.2,201.2z
M-299.9,199.3c3-0.8,5.5-1.6,8.1-2.5c-1.7,1.7-3.3,3.5-4.5,5.3l0,0.1l0,0c-0.9-0.6-1.9-1.3-2.6-1.9
C-299.2,200-299.6,199.6-299.9,199.3L-299.9,199.3z M-285.9,198.8C-285.9,198.8-285.9,198.8-285.9,198.8c0.4-0.3,0.9-0.7,1.4-1
c-0.2,0.5-0.5,1-0.6,1.5C-285.4,199.2-285.6,199-285.9,198.8L-285.9,198.8z M-306.7,206.6c0.1-0.1,0.1-0.2,0.2-0.3
c0.5-0.6,1.1-1.5,2.7-3.4c0.8-1,1.7-2.2,2-2.6l0.2-0.2c0.9,1.2,1.9,2.3,3.1,3.4c0.1,0,0.1,0.1,0.2,0.1c-0.5,0.2-1.1,0.5-1.6,0.7
c-1.7,0.7-4.1,1.5-5.9,2.1C-306.1,206.5-306.4,206.5-306.7,206.6L-306.7,206.6z M-289.3,204.1c0-0.1,0-0.1,0.1-0.2
c0.3-1,0.8-2.2,1.3-3l0.2-0.3l0.1-0.2l0,0c0.5,0.5,0.9,0.8,1.4,1.1c-0.4,0.4-1.2,1.1-1.9,1.7
C-288.4,203.4-288.9,203.8-289.3,204.1L-289.3,204.1z M-314.3,202c3-0.2,6.7-0.8,10.3-1.7c-2.1,2-3.1,3.5-4.3,5.9
c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0,0,0c-1.8-1.1-3.6-2.4-5.1-3.8C-313.7,202.6-314,202.3-314.3,202L-314.3,202z M-293.8,203.6
C-293.8,203.6-293.7,203.6-293.8,203.6c1.3-0.7,2.4-1.2,3.5-1.9c-0.4,1-0.8,2-1.1,3.1c-0.4-0.2-0.9-0.4-1.4-0.7
C-293.1,204-293.5,203.8-293.8,203.6L-293.8,203.6z M-288.7,205.9c0.9-0.7,1.8-1.6,2.9-2.6c-0.1,1.1,0,2.3,0.2,3.5
c-0.3-0.1-0.7-0.2-1-0.3C-287.3,206.4-288.1,206.1-288.7,205.9L-288.7,205.9z M-297.9,209.9c0,0,0-0.1,0-0.1
c0.3-1.1,1-2.8,1.9-4.3c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0,0.1,0.1c0.8,0.5,1.8,1,3,1.5c-0.8,0.5-2.2,1.4-3.1,2
C-296.6,209.1-297.4,209.6-297.9,209.9L-297.9,209.9z M-305.7,207.9c2.7-0.7,5.2-1.4,7.5-2.3c-0.7,1.5-1.1,3.1-1.2,4.4
c-0.5-0.1-1.2-0.3-1.7-0.5C-302.7,209.1-304.4,208.5-305.7,207.9L-305.7,207.9z M-289.6,211.7c0-0.1-0.1-0.2-0.1-0.3
c-0.3-1.1-0.4-2.3-0.4-3.4c0-0.1,0-0.1,0-0.2c0.8,0.3,2.1,0.6,3.2,0.9c0.2,0.1,0.4,0.1,0.5,0.1c-0.3,0.3-0.6,0.6-0.9,0.8
C-287.7,210.2-288.9,211.2-289.6,211.7L-289.6,211.7z M-296.4,210.8c1.8-0.8,3.2-1.6,4.6-2.6c0,0,0,0,0.1,0c0,1.2,0.3,2.5,0.7,3.6
c-1-0.2-2.8-0.5-3.9-0.7C-295.4,211-295.9,210.8-296.4,210.8L-296.4,210.8z M-287.9,212.3c0.3-0.2,0.7-0.4,0.8-0.5
c0.8-0.5,1.6-1.1,2.1-1.7c0.3,0.9,0.7,2.1,1.1,3C-285,212.8-286.7,212.5-287.9,212.3L-287.9,212.3z M-282.3,213.4
c-0.1-0.3-0.3-0.8-0.4-1.3c0.5,0.6,1,1.1,1.5,1.6c-0.1,0-0.3-0.1-0.4-0.1C-281.9,213.5-282.1,213.4-282.3,213.4L-282.3,213.4z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#A3BAA6;}
.st2{fill:#FFFFFF;}
.st3{fill:#00546B;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<path class="st1" d="M33,46.3c-9,0-15.8-3-15.8-6.9V10.7c0-4,6.8-6.9,15.8-6.9s15.8,3,15.8,6.9v28.7C48.8,43.3,42,46.3,33,46.3z
M33.3,8.4c-6.4,0-9.7,1.6-9.8,2.2c0.1,0.6,3.4,2.1,9.8,2.1s9.7-1.6,9.8-2.2C43,10,39.7,8.4,33.3,8.4z"/>
<path class="st2" d="M33,4.7c8.2,0,14.8,2.7,14.8,5.9v28.7c0,3.3-6.6,5.9-14.8,5.9s-14.8-2.7-14.8-5.9V10.7
C18.2,7.4,24.8,4.7,33,4.7 M33.3,13.7c6,0,10.8-1.4,10.8-3.1s-4.8-3.1-10.8-3.1s-10.8,1.4-10.8,3.1S27.3,13.7,33.3,13.7 M33,2.7
c-8.3,0-16.8,2.7-16.8,7.9v28.7c0,5.2,8.4,7.9,16.8,7.9s16.8-2.7,16.8-7.9V10.7C49.8,5.5,41.3,2.7,33,2.7L33,2.7z M25.3,10.6
c1.4-0.5,4.2-1.1,8-1.1s6.6,0.6,8,1.1c-1.4,0.5-4.2,1.1-8,1.1S26.7,11.1,25.3,10.6L25.3,10.6z"/>
</g>
<path class="st3" d="M43.6,34.6c-1.4,0-2.6,0.1-3.5,0.5c-0.3,0.1-0.7,0.1-0.7,0.5c0.1,0.1,0.2,0.4,0.3,0.6c0.2,0.4,0.6,0.8,0.9,1.1
c0.4,0.3,0.8,0.6,1.2,0.8c0.7,0.4,1.5,0.7,2.2,1.1c0.4,0.3,0.8,0.6,1.2,0.8c0.2,0.1,0.3,0.4,0.6,0.5v-0.1c-0.1-0.2-0.2-0.4-0.3-0.6
c-0.2-0.2-0.4-0.3-0.5-0.5c-0.5-0.7-1.2-1.3-1.9-1.8c-0.6-0.4-1.8-0.9-2.1-1.6c0,0,0,0,0,0c0.4,0,0.9-0.2,1.2-0.3
c0.6-0.2,1.2-0.1,1.8-0.3c0.3-0.1,0.6-0.2,0.9-0.3v-0.2c-0.3-0.3-0.6-0.8-0.9-1.1c-0.9-0.8-1.9-1.6-3-2.2c-0.6-0.4-1.3-0.6-1.9-0.9
c-0.2-0.1-0.6-0.2-0.7-0.3C38,30,37.8,29.5,37.6,29c-0.5-1-1-2.1-1.5-3.1c-0.3-0.7-0.5-1.4-0.9-2.1c-1.9-3.1-3.9-4.9-7-6.7
c-0.7-0.4-1.5-0.5-2.3-0.7c-0.5,0-0.9-0.1-1.4-0.1c-0.3-0.1-0.6-0.5-0.8-0.6c-1-0.6-3.7-2.1-4.4-0.2c-0.5,1.2,0.7,2.3,1.1,2.9
c0.3,0.4,0.7,0.9,0.9,1.4c0.1,0.3,0.2,0.6,0.3,1c0.3,0.8,0.6,1.7,0.9,2.4c0.2,0.4,0.4,0.8,0.7,1.1c0.1,0.2,0.4,0.3,0.5,0.6
c-0.3,0.4-0.3,0.9-0.4,1.4c-0.6,2-0.4,4.6,0.5,6.1c0.3,0.5,1,1.4,1.9,1.1c0.8-0.3,0.6-1.4,0.9-2.3c0.1-0.2,0-0.4,0.1-0.5v0
c0.3,0.5,0.5,1,0.7,1.5c0.6,0.9,1.5,1.8,2.3,2.4c0.4,0.3,0.8,0.9,1.3,1.1v-0.1h0c-0.1-0.2-0.3-0.2-0.4-0.4c-0.3-0.3-0.7-0.7-0.9-1.1
c-0.8-1-1.4-2.1-2-3.3c-0.3-0.6-0.5-1.2-0.8-1.7c-0.1-0.2-0.1-0.5-0.3-0.6c-0.3,0.4-0.7,0.7-0.9,1.2c-0.3,0.8-0.4,1.7-0.5,2.7
c-0.1,0,0,0-0.1,0c-0.6-0.1-0.8-0.7-1-1.2c-0.5-1.3-0.6-3.3-0.2-4.8c0.1-0.4,0.7-1.6,0.5-1.9c-0.1-0.3-0.5-0.5-0.7-0.8
c-0.2-0.3-0.5-0.8-0.6-1.2c-0.4-1-0.6-2.1-1.1-3.1c-0.2-0.5-0.6-1-0.9-1.4c-0.3-0.5-0.7-0.8-1-1.4c-0.1-0.2-0.2-0.5-0.1-0.7
c0-0.1,0.1-0.2,0.3-0.2c0.2-0.2,0.9,0.1,1.1,0.2c0.7,0.3,1.2,0.5,1.8,0.9c0.3,0.2,0.5,0.5,0.8,0.6h0.4c0.6,0.1,1.2,0,1.8,0.2
c1,0.3,1.8,0.8,2.6,1.2c2.4,1.5,4.3,3.6,5.6,6.2c0.2,0.4,0.3,0.8,0.5,1.2c0.4,0.9,0.8,1.8,1.2,2.6c0.4,0.8,0.7,1.7,1.3,2.4
c0.3,0.4,1.4,0.6,1.8,0.8c0.4,0.2,0.9,0.3,1.2,0.5c0.6,0.4,1.2,0.8,1.8,1.2C42.6,33.8,43.5,34.3,43.6,34.6L43.6,34.6z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#A3BAA6;}
.st2{fill:#FFFFFF;}
.st3{fill:#EA1B22;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<path class="st1" d="M33,46.3c-9,0-15.8-3-15.8-6.9V10.7c0-4,6.8-6.9,15.8-6.9s15.8,3,15.8,6.9v28.7C48.8,43.3,42,46.3,33,46.3z
M33.3,8.4c-6.4,0-9.7,1.6-9.8,2.2c0.1,0.6,3.4,2.1,9.8,2.1s9.7-1.6,9.8-2.2C43,10,39.7,8.4,33.3,8.4z"/>
<path class="st2" d="M33,4.7c8.2,0,14.8,2.7,14.8,5.9v28.7c0,3.3-6.6,5.9-14.8,5.9s-14.8-2.7-14.8-5.9V10.7
C18.2,7.4,24.8,4.7,33,4.7 M33.3,13.7c6,0,10.8-1.4,10.8-3.1s-4.8-3.1-10.8-3.1s-10.8,1.4-10.8,3.1S27.3,13.7,33.3,13.7 M33,2.7
c-8.3,0-16.8,2.7-16.8,7.9v28.7c0,5.2,8.4,7.9,16.8,7.9s16.8-2.7,16.8-7.9V10.7C49.8,5.5,41.3,2.7,33,2.7L33,2.7z M25.3,10.6
c1.4-0.5,4.2-1.1,8-1.1s6.6,0.6,8,1.1c-1.4,0.5-4.2,1.1-8,1.1S26.7,11.1,25.3,10.6L25.3,10.6z"/>
</g>
<path class="st3" d="M29,35.4c-4.1,0-7.4-3.3-7.4-7.3c0-4.1,3.3-7.4,7.4-7.4h8.6c4.1,0,7.4,3.3,7.4,7.4c0,4.1-3.3,7.3-7.4,7.3H29
L29,35.4z M37.4,32.8c2.6,0,4.8-2.1,4.8-4.8c0-2.6-2.1-4.8-4.8-4.8h-8.2c-2.6,0-4.8,2.1-4.8,4.8c0,2.6,2.1,4.8,4.8,4.8H37.4
L37.4,32.8z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#A3BAA6;}
.st2{fill:#FFFFFF;}
.st3{fill:#336791;}
.st4{fill:none;stroke:#FFFFFF;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<path class="st1" d="M33,46.3c-9,0-15.8-3-15.8-6.9V10.7c0-4,6.8-6.9,15.8-6.9s15.8,3,15.8,6.9v28.7C48.8,43.3,42,46.3,33,46.3z
M33.3,8.4c-6.4,0-9.7,1.6-9.8,2.2c0.1,0.6,3.4,2.1,9.8,2.1s9.7-1.6,9.8-2.2C43,10,39.7,8.4,33.3,8.4z"/>
<path class="st2" d="M33,4.7c8.2,0,14.8,2.7,14.8,5.9v28.7c0,3.3-6.6,5.9-14.8,5.9s-14.8-2.7-14.8-5.9V10.7
C18.2,7.4,24.8,4.7,33,4.7 M33.3,13.7c6,0,10.8-1.4,10.8-3.1s-4.8-3.1-10.8-3.1s-10.8,1.4-10.8,3.1S27.3,13.7,33.3,13.7 M33,2.7
c-8.3,0-16.8,2.7-16.8,7.9v28.7c0,5.2,8.4,7.9,16.8,7.9s16.8-2.7,16.8-7.9V10.7C49.8,5.5,41.3,2.7,33,2.7L33,2.7z M25.3,10.6
c1.4-0.5,4.2-1.1,8-1.1s6.6,0.6,8,1.1c-1.4,0.5-4.2,1.1-8,1.1S26.7,11.1,25.3,10.6L25.3,10.6z"/>
</g>
<g id="Layer_x0020_3">
<g>
<path d="M39.9,35.7c0.2-1.5,0.1-1.7,1.3-1.5l0.3,0c0.9,0,2-0.1,2.7-0.4c1.4-0.7,2.3-1.8,0.9-1.5c-3.2,0.7-3.5-0.4-3.5-0.4
c3.4-5.1,4.8-11.5,3.6-13.1c-3.4-4.3-9.2-2.3-9.3-2.2l0,0c-0.6-0.1-1.4-0.2-2.2-0.2c-1.5,0-2.6,0.4-3.4,1c0,0-10.4-4.3-9.9,5.4
c0.1,2.1,2.9,15.5,6.3,11.5c1.2-1.5,2.4-2.7,2.4-2.7c0.6,0.4,1.3,0.6,2,0.5l0.1,0c0,0.2,0,0.4,0,0.6c-0.9,1-0.6,1.1-2.4,1.5
c-1.8,0.4-0.7,1-0.1,1.2c0.8,0.2,2.7,0.5,4-1.3l-0.1,0.2c0.3,0.3,0.3,2,0.4,3.2c0,1.2,0.1,2.3,0.4,3c0.2,0.7,0.5,2.4,2.8,1.9
C38.3,41.8,39.7,41.2,39.9,35.7"/>
<path d="M35.6,43.5c-1,0-1.7-0.4-2.1-0.8c-0.6-0.6-0.9-1.3-1-1.8c0-0.1,0-0.1-0.1-0.2C32.1,40,32,38.8,32,37.4c0-0.2,0-0.4,0-0.7
c0-0.1,0-0.3,0-0.5c-1,0.4-2.1,0.5-3.4,0.2c-0.6-0.1-1.1-0.4-1.5-0.8c-1,0.8-1.9,0.7-2.4,0.5c-0.9-0.3-1.7-1.2-2.5-2.6
c-0.5-1-1.1-2.3-1.5-3.9c-0.8-2.8-1.4-5.7-1.4-6.7c-0.2-3,0.7-5.2,2.4-6.5c1.5-1,3.5-1.4,5.9-0.9c1.1,0.2,2,0.4,2.5,0.6
c1-0.6,2.2-0.9,3.6-0.9c0.7,0,1.4,0.1,2.1,0.2c0.7-0.2,2-0.5,3.5-0.5c2.8,0,5.2,1.1,6.8,3.2c1.1,1.4,0.7,4.2,0.2,6.3
c-0.6,2.3-1.6,4.8-2.9,7c0.3,0,0.8-0.1,1.4-0.2c1.6-0.3,2,0.6,2.1,0.9c0.5,1.5-1.6,2.6-2.2,2.9c-0.8,0.4-2.1,0.6-3.2,0.6l-0.1,0
l-0.2,0c0,0,0,0.1,0,0.1c0,0.1,0,0.1,0,0.2c-0.1,2.8-0.5,4.6-1.3,5.8c-0.9,1.2-2.1,1.6-3.2,1.8C36.2,43.5,35.9,43.5,35.6,43.5z
M33.5,33.2c0.7,0.5,0.7,1.5,0.8,3.4c0,0.2,0,0.4,0,0.6c0,0.6,0.1,2,0.3,2.6c0,0.1,0.1,0.2,0.1,0.3c0.2,0.8,0.4,1.1,1.4,0.9
c0.9-0.2,1.3-0.4,1.7-0.9c0.5-0.7,0.8-2.3,0.9-4.5l1.2,0l-1.2-0.1c0-0.1,0-0.2,0-0.3c0.1-0.9,0.2-1.6,0.8-2.1
c0.4-0.3,0.9-0.3,1.2-0.3c-0.3-0.3-0.4-0.7-0.5-0.8l-0.1-0.5l0.3-0.4c1.5-2.2,2.7-4.9,3.4-7.4c0.7-2.6,0.5-3.9,0.3-4.2
c-2.7-3.4-7.3-2-7.8-1.9l-0.1,0l-0.4,0.1l-0.2,0c-0.6-0.1-1.2-0.2-1.9-0.2c-1.1,0-2,0.2-2.7,0.8l-0.5,0.4l-0.6-0.3
C28.5,18,24.9,17,23,18.4c-1.1,0.7-1.5,2.2-1.4,4.4c0,0.7,0.5,3.6,1.4,6.2c1.1,3.7,2.2,4.7,2.5,4.8c0,0,0.2-0.1,0.4-0.3
c1.2-1.5,2.4-2.8,2.5-2.8l0.7-0.7l0.8,0.6c0.3,0.2,0.6,0.3,0.9,0.3l2-1.7l-0.3,3c0,0.1,0,0.1,0,0.3l0.1,0.6l-0.4,0.4c0,0,0,0,0,0
l0.9,0.4L33.5,33.2z"/>
</g>
<path class="st3" d="M45,32.3c-3.2,0.7-3.5-0.4-3.5-0.4c3.4-5.1,4.8-11.5,3.6-13.1c-3.4-4.3-9.2-2.3-9.3-2.2l0,0
c-0.6-0.1-1.4-0.2-2.2-0.2c-1.5,0-2.6,0.4-3.4,1c0,0-10.4-4.3-9.9,5.4c0.1,2.1,2.9,15.5,6.3,11.5c1.2-1.5,2.4-2.7,2.4-2.7
c0.6,0.4,1.3,0.6,2,0.5l0.1,0c0,0.2,0,0.4,0,0.6c-0.9,1-0.6,1.1-2.4,1.5c-1.8,0.4-0.7,1-0.1,1.2c0.8,0.2,2.7,0.5,4-1.3l-0.1,0.2
c0.3,0.3,0.6,1.8,0.5,3.1c0,1.4-0.1,2.3,0.2,3c0.3,0.7,0.5,2.4,2.8,1.9c1.9-0.4,2.9-1.5,3-3.2c0.1-1.3,0.3-1.1,0.3-2.2l0.2-0.5
c0.2-1.7,0-2.3,1.2-2l0.3,0c0.9,0,2-0.1,2.7-0.4C45.5,33.1,46.4,32,45,32.3L45,32.3z"/>
<path class="st2" d="M35.7,42.8c-1.9,0-2.5-1.5-2.8-2.1c-0.4-0.9-0.4-4.3-0.4-7.3c0-0.2,0.2-0.4,0.4-0.4c0.2,0,0.4,0.2,0.4,0.4
c-0.1,3.3,0,6.3,0.3,7c0.4,1,1,1.9,2.8,1.6c1.7-0.4,2.3-1,2.6-2.6c0.2-1.3,0.6-4.9,0.7-5.6c0-0.2,0.2-0.4,0.4-0.4
c0.2,0,0.4,0.2,0.4,0.4c-0.1,0.7-0.5,4.3-0.7,5.6c-0.3,2-1.2,2.8-3.2,3.3C36.3,42.7,36,42.8,35.7,42.8z"/>
<path class="st2" d="M25.4,35.4c-0.2,0-0.4,0-0.5-0.1c-1.3-0.4-2.4-2.4-3.5-6c-0.8-2.7-1.4-5.6-1.4-6.5C19.8,20,20.5,18.1,22,17
c3-2.1,8.1-0.1,8.3,0c0.2,0.1,0.3,0.3,0.2,0.5c-0.1,0.2-0.3,0.3-0.5,0.2c-0.1,0-4.9-2-7.6-0.1c-1.3,0.9-1.9,2.6-1.8,5.1
c0,0.8,0.5,3.5,1.4,6.3c1,3.2,2.1,5.2,3,5.5c0.1,0,0.6,0.2,1.2-0.6c1.2-1.5,2.4-2.7,2.4-2.7c0.2-0.2,0.4-0.2,0.6,0
c0.2,0.2,0.2,0.4,0,0.6c0,0-1.1,1.2-2.3,2.6C26.4,35.2,25.8,35.4,25.4,35.4z"/>
<path class="st2" d="M41.5,32.3c-0.1,0-0.2,0-0.2-0.1c-0.2-0.1-0.2-0.4-0.1-0.6c3.4-5.1,4.7-11.3,3.6-12.6
c-1.3-1.7-3.1-2.5-5.4-2.6c-1.7,0-3.1,0.4-3.3,0.5c0,0,0,0-0.1,0c-0.2,0.1-0.4-0.1-0.5-0.2c-0.1-0.2,0-0.4,0.2-0.5
c0.1-0.1,1.7-0.6,3.6-0.6c2.6,0,4.7,1,6.2,2.9c1,1.3,0.3,4.3,0,5.6c-0.7,2.7-2,5.6-3.6,8C41.7,32.2,41.6,32.3,41.5,32.3z"/>
<path class="st2" d="M41.7,34.6c-0.6,0-1.1-0.1-1.4-0.3c-0.3-0.2-0.4-0.5-0.4-0.6c-0.1-1.5,0.7-1.8,1.2-2c-0.1-0.1-0.1-0.2-0.2-0.3
c-0.3-0.3-0.6-0.8-0.9-1.4c0-0.1-0.2-0.3-0.3-0.6c-0.8-1.5-2.6-4.6-1.4-6.2c0.5-0.7,1.5-1,3-0.9c-0.2-0.6-0.7-1.7-1.6-2.8
c-1.1-1.3-3-2.8-5.9-2.8c-1.5,0-2.7,0.4-3.6,1.4c-2.1,2.1-2,5.9-2,5.9c0,0.2-0.2,0.4-0.4,0.4c-0.2,0-0.4-0.2-0.4-0.4
c0-0.2-0.1-4.2,2.2-6.5c1.1-1.1,2.5-1.6,4.2-1.6c3.2,0.1,5.3,1.7,6.5,3c1.3,1.5,1.9,3.1,2,3.7c0,0.4-0.3,0.5-0.3,0.5l-0.1,0
c-1-0.2-2.3-0.2-2.8,0.5c-0.8,1.2,0.8,4.1,1.5,5.4c0.2,0.3,0.3,0.6,0.4,0.7c0.2,0.6,0.5,0.9,0.8,1.2c0.2,0.3,0.4,0.5,0.5,0.8
c0,0.1,0.5,0.7,3,0.1c0.7-0.1,1.1,0,1.2,0.4c0.2,0.7-1.1,1.5-1.8,1.9C43.6,34.4,42.6,34.6,41.7,34.6z M40.6,33.6
c0.1,0.1,0.5,0.2,1.3,0.2c0.7,0,1.5-0.2,2-0.4c0.5-0.2,0.9-0.5,1.1-0.7c0,0,0,0,0,0c-1.6,0.3-2.8,0.3-3.5-0.1c0,0-0.1-0.1-0.1-0.1
c-0.1,0-0.1,0-0.2,0.1C40.9,32.6,40.6,32.7,40.6,33.6z"/>
<path class="st2" d="M30,35.8c-0.4,0-0.8-0.1-1.3-0.2c-0.1,0-1.2-0.3-1.2-1c0-0.7,0.9-0.8,1.3-0.9c1.2-0.3,1.3-0.4,1.7-0.8
c0.1-0.1,0.3-0.3,0.4-0.5c0.6-0.7,1.2-0.5,1.5-0.4c0.4,0.2,0.7,0.6,0.9,1.1c0.1,0.4,0.1,0.9-0.2,1.2C32.4,35.2,31.3,35.8,30,35.8z
M28.4,34.6c0.1,0.1,0.3,0.2,0.5,0.2c1.1,0.3,2.6,0.3,3.6-1.1c0.1-0.2,0.1-0.4,0.1-0.5c-0.1-0.2-0.2-0.5-0.4-0.5
c-0.2-0.1-0.3-0.1-0.6,0.2c0,0,0,0,0,0c-0.2,0.2-0.3,0.4-0.4,0.5c-0.5,0.6-0.7,0.8-2.2,1.1C28.6,34.5,28.5,34.5,28.4,34.6z
M31.2,32.5L31.2,32.5L31.2,32.5z"/>
<path class="st2" d="M31.2,32.9c-0.2,0-0.4-0.1-0.4-0.3c0-0.1,0-0.1,0-0.2c-0.9,0-1.8-0.4-2.5-1.2c-0.9-0.9-1.3-2.2-1.1-3.5
c0.2-1.4,0.1-2.6,0.1-3.3c0-0.2,0-0.3,0-0.4c0-0.1,0-0.4,1.1-1c0.4-0.2,1.1-0.5,1.9-0.6c1.4-0.1,2.3,0.5,2.5,1.7
c0.7,3.3,0.1,4.8-0.4,5.8c-0.1,0.2-0.2,0.4-0.2,0.6L32,30.8c-0.3,0.7-0.5,1.3-0.4,1.7C31.6,32.7,31.4,32.9,31.2,32.9
C31.2,32.9,31.2,32.9,31.2,32.9z M28,24.2c0,0.1,0,0.2,0,0.2c0,0.7,0.1,2-0.1,3.5c-0.1,1.1,0.2,2.1,0.9,2.8c0.6,0.6,1.3,0.9,2,0.9
c0.1-0.4,0.2-0.7,0.4-1.1l0.1-0.2c0.1-0.2,0.2-0.4,0.3-0.6c0.5-1,1-2.3,0.4-5.3c-0.1-0.6-0.4-0.9-0.9-1
C29.9,23.1,28.3,23.9,28,24.2z"/>
<g>
<path class="st2" d="M30.2,24c0,0.1,0.2,0.5,0.6,0.5c0.3,0,0.6-0.2,0.6-0.4c0-0.1-0.2-0.3-0.6-0.3C30.5,23.8,30.2,23.9,30.2,24
L30.2,24z"/>
<path class="st2" d="M30.8,24.7C30.8,24.7,30.8,24.7,30.8,24.7c-0.3,0-0.5-0.2-0.7-0.4c-0.1-0.1-0.1-0.2-0.1-0.3
c0,0,0-0.1,0.1-0.2c0.1-0.1,0.4-0.1,0.7-0.1c0.4,0,0.7,0.2,0.7,0.5C31.5,24.4,31.2,24.7,30.8,24.7z M30.3,24
c0,0.1,0.2,0.3,0.5,0.4c0.3,0,0.5-0.2,0.5-0.2c0,0-0.2-0.1-0.5-0.2C30.5,23.9,30.4,24,30.3,24z"/>
</g>
<g>
<path class="st2" d="M40.4,23.7c0,0.1-0.2,0.5-0.6,0.5c-0.3,0-0.6-0.2-0.6-0.4c0-0.1,0.2-0.3,0.6-0.3S40.4,23.6,40.4,23.7
L40.4,23.7z"/>
<path class="st2" d="M39.8,24.3c-0.3,0-0.6-0.3-0.6-0.4c0-0.2,0.3-0.4,0.6-0.4c0.3,0,0.7,0,0.7,0.2l0,0c0,0.1-0.1,0.2-0.2,0.4
C40.2,24.2,40.1,24.3,39.8,24.3C39.8,24.3,39.8,24.3,39.8,24.3z M40,23.6c-0.1,0-0.1,0-0.2,0c-0.4,0-0.5,0.2-0.5,0.2
c0,0.1,0.3,0.3,0.6,0.3c0.2,0,0.3-0.1,0.4-0.2c0.1-0.1,0.1-0.2,0.1-0.2l0,0C40.4,23.7,40.2,23.6,40,23.6z"/>
</g>
<path class="st2" d="M40.9,31.3c-0.1,0-0.2,0-0.2-0.1c-0.2-0.1-0.2-0.4-0.1-0.6c0.8-1.2,0.6-2.4,0.5-3.5c-0.1-0.5-0.1-1-0.1-1.5
c0-0.5,0.1-0.9,0.1-1.3c0.1-0.5,0.1-0.9,0.1-1.5c0-0.2,0.2-0.4,0.4-0.4c0.2,0,0.4,0.2,0.4,0.4c0,0.6,0,1.1-0.1,1.6
c-0.1,0.4-0.1,0.8-0.1,1.2c0,0.4,0,0.9,0.1,1.4c0.1,1.2,0.3,2.6-0.6,4.1C41.2,31.2,41,31.3,40.9,31.3z"/>
<path class="st4" d="M19.1,18.8"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
.st3{fill:#D19E60;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<path class="st3" d="M18.3,22.7h-1.1l1.9-5.4h1.3l1.9,5.4H21l-0.3-1.1h-2L18.3,22.7z M19,20.6h1.4l-0.7-2.1h0L19,20.6z"/>
<path class="st3" d="M26.1,21.2c0,0.3-0.2,0.7-0.4,0.9c-0.3,0.4-0.8,0.6-1.4,0.6c-0.7,0-1.1-0.2-1.4-0.7c-0.2-0.3-0.3-0.8-0.3-1.3
c0-0.7,0.1-1.2,0.4-1.6c0.3-0.4,0.8-0.6,1.4-0.6c0.4,0,0.7,0.1,1,0.3c0.4,0.3,0.6,0.7,0.7,1.2h-1c0-0.2-0.1-0.3-0.2-0.4
c-0.1-0.2-0.3-0.2-0.5-0.2h0c-0.3,0-0.5,0.1-0.6,0.4c-0.1,0.2-0.2,0.5-0.2,0.8c0,0.4,0,0.6,0.1,0.8c0.1,0.3,0.3,0.5,0.7,0.5
c0.2,0,0.4-0.1,0.5-0.3c0.1-0.1,0.2-0.3,0.2-0.4H26.1z"/>
<path class="st3" d="M27.8,18.7h0.6v0.7h-0.6v2.3c0,0.1,0,0.2,0.1,0.2C28,22,28.1,22,28.3,22l0.2,0v0.8l-0.2,0l-0.3,0h-0.1
c-0.4,0-0.7-0.1-0.9-0.2c-0.1-0.1-0.2-0.3-0.2-0.6v-2.5h-0.5v-0.7h0.5v-1.1h1V18.7z"/>
<path class="st3" d="M30.5,18.3h-1v-1h1V18.3z M30.5,18.7v3.9h-1v-3.9H30.5z"/>
<path class="st3" d="M33.7,22.8h-1.1l-1.4-4.2h1.1l0.8,3.1h0l0.8-3.1h1.1L33.7,22.8z"/>
<path class="st3" d="M38.9,21.5c-0.1,0.4-0.4,0.8-0.7,1c-0.3,0.2-0.6,0.3-1,0.3c-0.6,0-1-0.2-1.4-0.5c-0.4-0.4-0.5-0.9-0.5-1.7
c0-0.4,0.1-0.8,0.3-1.2c0.3-0.5,0.8-0.8,1.5-0.8c0.5,0,0.9,0.1,1.2,0.4c0.4,0.4,0.6,1,0.6,1.8V21h-2.6v0c0,0.3,0.1,0.5,0.2,0.6
c0.1,0.2,0.4,0.4,0.7,0.4c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3H38.9z M37.9,20.3c0-0.3-0.1-0.5-0.3-0.6
c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.2,0.3-0.2,0.6H37.9z"/>
<path class="st3" d="M17.6,24.3h2.3c0.8,0,1.4,0.3,1.7,0.9c0.3,0.4,0.4,1,0.4,1.7c0,0.7-0.1,1.3-0.4,1.8c-0.4,0.6-1,1-1.7,1h-2.3
V24.3z M18.6,28.7h1.1c0.4,0,0.7-0.2,0.9-0.6c0.2-0.3,0.3-0.7,0.3-1.2c0-0.7-0.1-1.2-0.4-1.5c-0.2-0.2-0.4-0.3-0.8-0.3h-1V28.7z"/>
<path class="st3" d="M23.9,25.3h-1v-1h1V25.3z M23.9,25.7v3.9h-1v-3.9H23.9z"/>
<path class="st3" d="M25,25.7h1v0.7h0c0.1-0.3,0.3-0.5,0.4-0.6c0.2-0.2,0.4-0.2,0.7-0.2l0.2,0v1.1c0,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0
c-0.4,0-0.6,0.1-0.8,0.3c-0.1,0.2-0.2,0.4-0.2,0.6v2.1h-1V25.7z"/>
<path class="st3" d="M31.2,28.5c-0.1,0.4-0.4,0.8-0.7,1c-0.3,0.2-0.6,0.3-1,0.3c-0.6,0-1-0.2-1.4-0.5c-0.4-0.4-0.5-0.9-0.5-1.7
c0-0.4,0.1-0.8,0.3-1.2c0.3-0.5,0.8-0.8,1.5-0.8c0.5,0,0.9,0.1,1.2,0.4c0.4,0.4,0.6,1,0.6,1.8V28h-2.6v0c0,0.3,0.1,0.5,0.2,0.6
c0.1,0.2,0.4,0.4,0.7,0.4c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3H31.2z M30.2,27.3c0-0.3-0.1-0.5-0.3-0.6
c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.2,0.3-0.2,0.6H30.2z"/>
<path class="st3" d="M35.2,28.2c0,0.3-0.2,0.7-0.4,0.9c-0.3,0.4-0.8,0.6-1.4,0.6c-0.7,0-1.1-0.2-1.4-0.7c-0.2-0.3-0.3-0.8-0.3-1.3
c0-0.7,0.1-1.2,0.4-1.6c0.3-0.4,0.8-0.6,1.4-0.6c0.4,0,0.8,0.1,1,0.3c0.4,0.3,0.6,0.7,0.7,1.2h-1c0-0.2-0.1-0.3-0.2-0.4
c-0.1-0.2-0.3-0.2-0.5-0.2h0c-0.3,0-0.5,0.1-0.6,0.4c-0.1,0.2-0.2,0.5-0.2,0.8c0,0.4,0,0.6,0.1,0.8c0.1,0.3,0.3,0.5,0.7,0.5
c0.2,0,0.4-0.1,0.5-0.3c0.1-0.1,0.2-0.3,0.2-0.4H35.2z"/>
<path class="st3" d="M37,25.7h0.6v0.7H37v2.3c0,0.1,0,0.2,0.1,0.2c0,0.1,0.2,0.1,0.4,0.1l0.2,0v0.8l-0.2,0l-0.3,0H37
c-0.4,0-0.7-0.1-0.9-0.2C36,29.4,36,29.2,36,28.9v-2.5h-0.5v-0.7H36v-1.1h1V25.7z"/>
<path class="st3" d="M41.5,29.3c-0.4,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.4-0.5c-0.4-0.4-0.6-0.9-0.6-1.6c0-0.7,0.2-1.2,0.6-1.6
c0.4-0.3,0.8-0.5,1.4-0.5c0.5,0,1,0.2,1.3,0.5c0.4,0.4,0.6,0.9,0.6,1.6C42.1,28.4,41.9,28.9,41.5,29.3z M40.9,26.9
c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.6,0.1-0.7,0.4c-0.1,0.2-0.2,0.5-0.2,0.8c0,0.3,0.1,0.6,0.2,0.8c0.2,0.3,0.4,0.4,0.7,0.4
c0.3,0,0.6-0.1,0.7-0.4c0.1-0.2,0.2-0.5,0.2-0.8C41.1,27.4,41,27.1,40.9,26.9z"/>
<path class="st3" d="M42.8,25.7h1v0.7h0c0.1-0.3,0.3-0.5,0.4-0.6c0.2-0.2,0.4-0.2,0.7-0.2l0.2,0v1.1c0,0-0.1,0-0.2,0
c0,0-0.1,0-0.1,0c-0.4,0-0.6,0.1-0.8,0.3c-0.1,0.2-0.2,0.4-0.2,0.6v2.1h-1V25.7z"/>
<path class="st3" d="M47.7,29.3c-0.1,0.3-0.2,0.6-0.3,0.7c-0.1,0.2-0.2,0.3-0.3,0.4s-0.2,0.2-0.4,0.2c-0.1,0-0.3,0.1-0.6,0.1
c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2,0-0.2,0v-0.8c0,0,0,0,0.1,0s0.1,0,0.1,0c0.2,0,0.4,0,0.5-0.1c0.1,0,0.2-0.1,0.3-0.2l-1.4-3.9h1.1
l0.8,2.7h0l0.8-2.7H49L47.7,29.3z"/>
</g>
<g>
<path class="st2" d="M18.3,22.7h-1.1l1.9-5.4h1.3l1.9,5.4H21l-0.3-1.1h-2L18.3,22.7z M19,20.6h1.4l-0.7-2.1h0L19,20.6z"/>
<path class="st2" d="M26.1,21.2c0,0.3-0.2,0.7-0.4,0.9c-0.3,0.4-0.8,0.6-1.4,0.6c-0.7,0-1.1-0.2-1.4-0.7c-0.2-0.3-0.3-0.8-0.3-1.3
c0-0.7,0.1-1.2,0.4-1.6c0.3-0.4,0.8-0.6,1.4-0.6c0.4,0,0.7,0.1,1,0.3c0.4,0.3,0.6,0.7,0.7,1.2h-1c0-0.2-0.1-0.3-0.2-0.4
c-0.1-0.2-0.3-0.2-0.5-0.2h0c-0.3,0-0.5,0.1-0.6,0.4c-0.1,0.2-0.2,0.5-0.2,0.8c0,0.4,0,0.6,0.1,0.8c0.1,0.3,0.3,0.5,0.7,0.5
c0.2,0,0.4-0.1,0.5-0.3c0.1-0.1,0.2-0.3,0.2-0.4H26.1z"/>
<path class="st2" d="M27.8,18.7h0.6v0.7h-0.6v2.3c0,0.1,0,0.2,0.1,0.2C28,22,28.1,22,28.3,22l0.2,0v0.8l-0.2,0l-0.3,0h-0.1
c-0.4,0-0.7-0.1-0.9-0.2c-0.1-0.1-0.2-0.3-0.2-0.6v-2.5h-0.5v-0.7h0.5v-1.1h1V18.7z"/>
<path class="st2" d="M30.5,18.3h-1v-1h1V18.3z M30.5,18.7v3.9h-1v-3.9H30.5z"/>
<path class="st2" d="M33.7,22.8h-1.1l-1.4-4.2h1.1l0.8,3.1h0l0.8-3.1h1.1L33.7,22.8z"/>
<path class="st2" d="M38.9,21.5c-0.1,0.4-0.4,0.8-0.7,1c-0.3,0.2-0.6,0.3-1,0.3c-0.6,0-1-0.2-1.4-0.5c-0.4-0.4-0.5-0.9-0.5-1.7
c0-0.4,0.1-0.8,0.3-1.2c0.3-0.5,0.8-0.8,1.5-0.8c0.5,0,0.9,0.1,1.2,0.4c0.4,0.4,0.6,1,0.6,1.8V21h-2.6v0c0,0.3,0.1,0.5,0.2,0.6
c0.1,0.2,0.4,0.4,0.7,0.4c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3H38.9z M37.9,20.3c0-0.3-0.1-0.5-0.3-0.6
c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.2,0.3-0.2,0.6H37.9z"/>
<path class="st2" d="M17.6,24.3h2.3c0.8,0,1.4,0.3,1.7,0.9c0.3,0.4,0.4,1,0.4,1.7c0,0.7-0.1,1.3-0.4,1.8c-0.4,0.6-1,1-1.7,1h-2.3
V24.3z M18.6,28.7h1.1c0.4,0,0.7-0.2,0.9-0.6c0.2-0.3,0.3-0.7,0.3-1.2c0-0.7-0.1-1.2-0.4-1.5c-0.2-0.2-0.4-0.3-0.8-0.3h-1V28.7z"/>
<path class="st2" d="M23.9,25.3h-1v-1h1V25.3z M23.9,25.7v3.9h-1v-3.9H23.9z"/>
<path class="st2" d="M25,25.7h1v0.7h0c0.1-0.3,0.3-0.5,0.4-0.6c0.2-0.2,0.4-0.2,0.7-0.2l0.2,0v1.1c0,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0
c-0.4,0-0.6,0.1-0.8,0.3c-0.1,0.2-0.2,0.4-0.2,0.6v2.1h-1V25.7z"/>
<path class="st2" d="M31.2,28.5c-0.1,0.4-0.4,0.8-0.7,1c-0.3,0.2-0.6,0.3-1,0.3c-0.6,0-1-0.2-1.4-0.5c-0.4-0.4-0.5-0.9-0.5-1.7
c0-0.4,0.1-0.8,0.3-1.2c0.3-0.5,0.8-0.8,1.5-0.8c0.5,0,0.9,0.1,1.2,0.4c0.4,0.4,0.6,1,0.6,1.8V28h-2.6v0c0,0.3,0.1,0.5,0.2,0.6
c0.1,0.2,0.4,0.4,0.7,0.4c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3H31.2z M30.2,27.3c0-0.3-0.1-0.5-0.3-0.6
c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.2,0.3-0.2,0.6H30.2z"/>
<path class="st2" d="M35.2,28.2c0,0.3-0.2,0.7-0.4,0.9c-0.3,0.4-0.8,0.6-1.4,0.6c-0.7,0-1.1-0.2-1.4-0.7c-0.2-0.3-0.3-0.8-0.3-1.3
c0-0.7,0.1-1.2,0.4-1.6c0.3-0.4,0.8-0.6,1.4-0.6c0.4,0,0.8,0.1,1,0.3c0.4,0.3,0.6,0.7,0.7,1.2h-1c0-0.2-0.1-0.3-0.2-0.4
c-0.1-0.2-0.3-0.2-0.5-0.2h0c-0.3,0-0.5,0.1-0.6,0.4c-0.1,0.2-0.2,0.5-0.2,0.8c0,0.4,0,0.6,0.1,0.8c0.1,0.3,0.3,0.5,0.7,0.5
c0.2,0,0.4-0.1,0.5-0.3c0.1-0.1,0.2-0.3,0.2-0.4H35.2z"/>
<path class="st2" d="M37,25.7h0.6v0.7H37v2.3c0,0.1,0,0.2,0.1,0.2c0,0.1,0.2,0.1,0.4,0.1l0.2,0v0.8l-0.2,0l-0.3,0H37
c-0.4,0-0.7-0.1-0.9-0.2C36,29.4,36,29.2,36,28.9v-2.5h-0.5v-0.7H36v-1.1h1V25.7z"/>
<path class="st2" d="M41.5,29.3c-0.4,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.4-0.5c-0.4-0.4-0.6-0.9-0.6-1.6c0-0.7,0.2-1.2,0.6-1.6
c0.4-0.3,0.8-0.5,1.4-0.5c0.5,0,1,0.2,1.3,0.5c0.4,0.4,0.6,0.9,0.6,1.6C42.1,28.4,41.9,28.9,41.5,29.3z M40.9,26.9
c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.6,0.1-0.7,0.4c-0.1,0.2-0.2,0.5-0.2,0.8c0,0.3,0.1,0.6,0.2,0.8c0.2,0.3,0.4,0.4,0.7,0.4
c0.3,0,0.6-0.1,0.7-0.4c0.1-0.2,0.2-0.5,0.2-0.8C41.1,27.4,41,27.1,40.9,26.9z"/>
<path class="st2" d="M42.8,25.7h1v0.7h0c0.1-0.3,0.3-0.5,0.4-0.6c0.2-0.2,0.4-0.2,0.7-0.2l0.2,0v1.1c0,0-0.1,0-0.2,0
c0,0-0.1,0-0.1,0c-0.4,0-0.6,0.1-0.8,0.3c-0.1,0.2-0.2,0.4-0.2,0.6v2.1h-1V25.7z"/>
<path class="st2" d="M47.7,29.3c-0.1,0.3-0.2,0.6-0.3,0.7c-0.1,0.2-0.2,0.3-0.3,0.4s-0.2,0.2-0.4,0.2c-0.1,0-0.3,0.1-0.6,0.1
c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2,0-0.2,0v-0.8c0,0,0,0,0.1,0s0.1,0,0.1,0c0.2,0,0.4,0,0.5-0.1c0.1,0,0.2-0.1,0.3-0.2l-1.4-3.9h1.1
l0.8,2.7h0l0.8-2.7H49L47.7,29.3z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M20.7,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h3.9c1.5,0,2.6,0.6,3.4,1.8
c0.5,0.8,0.8,1.9,0.8,3.1c0,1.3-0.3,2.5-0.8,3.4c-0.7,1.3-1.9,1.9-3.4,1.9H20.7z M24.3,27.4c0.5,0,0.9-0.2,1.1-0.7
c0.3-0.5,0.4-1.1,0.4-1.9c0-1-0.2-1.8-0.6-2.1c-0.2-0.2-0.5-0.3-1-0.3H23v5H24.3z"/>
<path class="st1" d="M24.6,20.3c1.3,0,2.3,0.5,2.9,1.5c0.5,0.8,0.7,1.7,0.7,2.8c0,1.2-0.3,2.3-0.8,3.1c-0.6,1.1-1.6,1.7-2.9,1.7
h-3.9v-9.2H24.6 M22.5,27.9h1.8c0.7,0,1.2-0.3,1.6-1c0.3-0.5,0.4-1.2,0.4-2.1c0-1.2-0.2-2-0.7-2.5c-0.3-0.3-0.8-0.4-1.3-0.4h-1.8
V27.9 M24.6,19.3h-3.9c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h3.9c1.7,0,3-0.7,3.8-2.2c0.6-1,0.9-2.2,0.9-3.6
c0-1.3-0.3-2.5-0.8-3.4C27.6,20,26.3,19.3,24.6,19.3L24.6,19.3z M23.5,22.9h0.8c0.3,0,0.5,0.1,0.6,0.2c0.1,0.1,0.4,0.5,0.4,1.8
c0,0.7-0.1,1.2-0.3,1.6c-0.2,0.4-0.4,0.5-0.7,0.5h-0.8V22.9L23.5,22.9z"/>
</g>
<g>
<path class="st2" d="M35,30c-0.2,0-0.3-0.1-0.4-0.3l-2.7-4.9v4.7c0,0.3-0.2,0.5-0.5,0.5h-1.7c-0.3,0-0.5-0.2-0.5-0.5v-9.2
c0-0.3,0.2-0.5,0.5-0.5h2c0.2,0,0.3,0.1,0.4,0.3l2.6,4.7v-4.5c0-0.3,0.2-0.5,0.5-0.5h1.7c0.3,0,0.5,0.2,0.5,0.5v9.2
c0,0.3-0.2,0.5-0.5,0.5H35z"/>
<path class="st1" d="M36.8,20.3v9.2H35l-3.6-6.5h0v6.5h-1.7v-9.2h2l3.5,6.4h0v-6.4H36.8 M36.8,19.3h-1.7c-0.6,0-1,0.4-1,1v2.6
l-1.7-3c-0.2-0.3-0.5-0.5-0.9-0.5h-2c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.7c0.6,0,1-0.4,1-1v-2.7l1.8,3.2
c0.2,0.3,0.5,0.5,0.9,0.5h1.9c0.6,0,1-0.4,1-1v-9.2C37.8,19.7,37.4,19.3,36.8,19.3L36.8,19.3z"/>
</g>
<g>
<path class="st2" d="M42,30.2c-1.6,0-2.8-0.4-3.5-1.3c-0.5-0.6-0.8-1.4-0.8-2.3c0-0.3,0.2-0.5,0.5-0.5h1.8c0.3,0,0.5,0.2,0.5,0.5
c0,0.2,0.1,0.4,0.2,0.6c0.2,0.2,0.6,0.4,1.2,0.4c0.4,0,0.8-0.1,1-0.2c0.3-0.1,0.3-0.3,0.3-0.5c0-0.1,0-0.2-0.2-0.3
c-0.1-0.1-0.4-0.2-1-0.3l-1-0.3c-0.5-0.1-0.9-0.2-1.1-0.3c-0.4-0.1-0.8-0.3-1-0.5c-0.4-0.3-0.6-0.6-0.8-0.9
c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.8,0.2-1.5,0.7-2.1c0.7-0.8,1.8-1.2,3.2-1.2c1.4,0,2.4,0.4,3.1,1.2c0.5,0.6,0.8,1.4,0.9,2.2
c0,0.1,0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.4,0.2h-1.8c-0.3,0-0.5-0.2-0.5-0.4c0-0.3-0.1-0.4-0.2-0.6c-0.2-0.2-0.6-0.4-1.1-0.4
c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.3,0.4c0,0.2,0.1,0.2,0.1,0.3c0,0,0.1,0.1,0.4,0.2c0,0,0,0,0.1,0l2.2,0.6
c0.8,0.2,1.4,0.5,1.8,0.8c0.6,0.5,0.9,1.2,0.9,2.1c0,1.3-0.6,2.4-1.7,3C43.6,30,42.8,30.2,42,30.2z"/>
<path class="st1" d="M41.7,20.1c1.2,0,2.1,0.4,2.8,1.1c0.5,0.5,0.7,1.2,0.7,1.9h-1.8c0-0.4-0.2-0.6-0.3-0.8
c-0.3-0.4-0.8-0.5-1.5-0.5c-0.4,0-0.8,0.1-1,0.2c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.3,0.1,0.5,0.3,0.7c0.1,0.1,0.3,0.2,0.6,0.3l0,0
l2.2,0.6c0.7,0.2,1.3,0.4,1.6,0.7c0.5,0.4,0.7,1,0.7,1.8c0,1.2-0.5,2-1.5,2.5c-0.6,0.3-1.3,0.5-2.1,0.5c-1.4,0-2.5-0.4-3.1-1.1
c-0.5-0.5-0.7-1.2-0.7-1.9h1.8c0,0.4,0.1,0.7,0.3,0.9c0.3,0.4,0.8,0.5,1.6,0.5c0.5,0,0.9-0.1,1.3-0.2c0.4-0.2,0.6-0.5,0.6-0.9
c0-0.3-0.2-0.6-0.5-0.8c-0.2-0.1-0.6-0.2-1.2-0.4l-1-0.2c-0.5-0.1-0.8-0.2-1.1-0.3c-0.4-0.1-0.7-0.3-0.9-0.4
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.2c0-0.7,0.2-1.3,0.6-1.8C39.5,20.4,40.4,20.1,41.7,20.1 M41.7,19.1
c-1.6,0-2.8,0.5-3.6,1.4c-0.6,0.7-0.9,1.5-0.9,2.5c0,0.6,0.1,1.2,0.3,1.6c0.2,0.5,0.5,0.8,1,1.1h-0.4c-0.6,0-1,0.4-1,1
c0,1,0.3,1.9,0.9,2.6c0.8,1,2.2,1.5,3.9,1.5c0.9,0,1.8-0.2,2.5-0.6c1.3-0.7,2-1.9,2-3.4c0-1.3-0.6-2.1-1.1-2.5
c-0.1-0.1-0.2-0.1-0.2-0.2h0c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.5,0.3-0.7c0-1-0.3-1.8-1-2.5C44.4,19.5,43.2,19.1,41.7,19.1
L41.7,19.1z M41.2,22.7c0.1,0,0.3-0.1,0.4-0.1c0.4,0,0.7,0.1,0.8,0.2c0,0,0,0.1,0.1,0.2l-1.1-0.3C41.3,22.8,41.2,22.7,41.2,22.7
C41.2,22.7,41.2,22.7,41.2,22.7L41.2,22.7z M41.8,27.1c-0.4,0-0.7-0.1-0.8-0.2c0,0-0.1-0.1-0.1-0.3c0,0,0-0.1,0-0.1l0.9,0.2
c0.4,0.1,0.7,0.2,0.8,0.2C42.5,27,42.3,27.1,41.8,27.1L41.8,27.1z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,79 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M22.6,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5H29c0.3,0,0.5,0.2,0.5,0.5v1.6
c0,0.3-0.2,0.5-0.5,0.5h-4v1.1h3.4c0.3,0,0.5,0.2,0.5,0.5v1.6c0,0.3-0.2,0.5-0.5,0.5H25v3.4c0,0.3-0.2,0.5-0.5,0.5H22.6z"/>
<path class="st1" d="M29,20.3v1.6h-4.5V24h3.9v1.6h-3.9v3.9h-1.9v-9.2H29 M29,19.3h-6.4c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.9
c0.6,0,1-0.4,1-1v-2.9h2.9c0.6,0,1-0.4,1-1V24c0-0.6-0.4-1-1-1h-2.9v-0.1H29c0.6,0,1-0.4,1-1v-1.6C30,19.7,29.6,19.3,29,19.3
L29,19.3z"/>
</g>
<g>
<path class="st2" d="M32.3,30c-0.3,0-0.5-0.2-0.5-0.5v-7.1h-2.3c-0.3,0-0.5-0.2-0.5-0.5v-1.6c0-0.3,0.2-0.5,0.5-0.5h7.4
c0.3,0,0.5,0.2,0.5,0.5v1.6c0,0.3-0.2,0.5-0.5,0.5h-2.3v7.1c0,0.3-0.2,0.5-0.5,0.5H32.3z"/>
<path class="st1" d="M36.9,20.3v1.6h-2.8v7.6h-1.9v-7.6h-2.8v-1.6H36.9 M36.9,19.3h-7.4c-0.6,0-1,0.4-1,1v1.6c0,0.6,0.4,1,1,1h1.8
v6.6c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-6.6h1.8c0.6,0,1-0.4,1-1v-1.6C37.9,19.7,37.5,19.3,36.9,19.3L36.9,19.3z"/>
</g>
<g>
<path class="st2" d="M37.9,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h4c1,0,1.8,0.3,2.4,1c0.6,0.6,0.9,1.5,0.9,2.5
c0,0.7-0.2,1.4-0.6,2c-0.6,0.9-1.5,1.4-2.7,1.4h-1.6v2.8c0,0.3-0.2,0.5-0.5,0.5H37.9z M41.5,24.1c0.5,0,0.7-0.2,0.8-0.3
c0-0.1,0.1-0.3,0.1-0.6c0-0.4-0.2-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.9-0.2h-0.9v1.7H41.5z"/>
<path class="st1" d="M42,20.3c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8c-0.5,0.8-1.3,1.2-2.3,1.2h-2.1
v3.3h-1.9v-9.2H42 M39.8,24.6h1.7c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1c-0.3-0.2-0.7-0.3-1.2-0.3
h-1.4V24.6 M42,19.3h-4c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-2.3h1.1c1.4,0,2.5-0.6,3.2-1.6
c0.4-0.7,0.7-1.5,0.7-2.3c0-1.2-0.3-2.1-1-2.9C44,19.7,43.1,19.3,42,19.3L42,19.3z M40.8,22.9h0.4c0.4,0,0.6,0.1,0.6,0.1
c0,0,0,0.1,0,0.2c0,0.3,0,0.4-0.1,0.4c0,0-0.1,0.1-0.3,0.1h-0.7V22.9L40.8,22.9z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M24.5,29.5h-1.9v-9.2H29v1.6h-4.5V24h3.9v1.6h-3.9V29.5z"/>
</g>
<g>
<path class="st2" d="M34.1,29.5h-1.9v-7.6h-2.8v-1.6h7.4v1.6h-2.8V29.5z"/>
</g>
<g>
<path class="st2" d="M39.8,29.5h-1.9v-9.2h4c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8
c-0.5,0.8-1.3,1.2-2.3,1.2h-2.1V29.5z M41.5,24.6c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4v2.7H41.5z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M23.1,30c-0.3,0-0.5-0.2-0.5-0.5v-3.6H20v3.6c0,0.3-0.2,0.5-0.5,0.5h-1.9c-0.3,0-0.5-0.2-0.5-0.5v-9.2
c0-0.3,0.2-0.5,0.5-0.5h1.9c0.3,0,0.5,0.2,0.5,0.5v3h2.6v-3c0-0.3,0.2-0.5,0.5-0.5h1.9c0.3,0,0.5,0.2,0.5,0.5v9.2
c0,0.3-0.2,0.5-0.5,0.5H23.1z"/>
<path class="st1" d="M24.9,20.3v9.2h-1.9v-4.1h-3.6v4.1h-1.9v-9.2h1.9v3.5h3.6v-3.5H24.9 M24.9,19.3h-1.9c-0.6,0-1,0.4-1,1v2.5
h-1.6v-2.5c0-0.6-0.4-1-1-1h-1.9c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-3.1h1.6v3.1c0,0.6,0.4,1,1,1h1.9
c0.6,0,1-0.4,1-1v-9.2C25.9,19.7,25.5,19.3,24.9,19.3L24.9,19.3z"/>
</g>
<g>
<path class="st2" d="M28.8,30c-0.3,0-0.5-0.2-0.5-0.5v-7.1H26c-0.3,0-0.5-0.2-0.5-0.5v-1.6c0-0.3,0.2-0.5,0.5-0.5h7.4
c0.3,0,0.5,0.2,0.5,0.5v1.6c0,0.3-0.2,0.5-0.5,0.5h-2.3v7.1c0,0.3-0.2,0.5-0.5,0.5H28.8z"/>
<path class="st1" d="M33.4,20.3v1.6h-2.8v7.6h-1.9v-7.6H26v-1.6H33.4 M33.4,19.3H26c-0.6,0-1,0.4-1,1v1.6c0,0.6,0.4,1,1,1h1.8v6.6
c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-6.6h1.8c0.6,0,1-0.4,1-1v-1.6C34.4,19.7,34,19.3,33.4,19.3L33.4,19.3z"/>
</g>
<g>
<path class="st2" d="M36.7,30c-0.3,0-0.5-0.2-0.5-0.5v-7.1h-2.3c-0.3,0-0.5-0.2-0.5-0.5v-1.6c0-0.3,0.2-0.5,0.5-0.5h7.4
c0.3,0,0.5,0.2,0.5,0.5v1.6c0,0.3-0.2,0.5-0.5,0.5H39v7.1c0,0.3-0.2,0.5-0.5,0.5H36.7z"/>
<path class="st1" d="M41.3,20.3v1.6h-2.8v7.6h-1.9v-7.6h-2.8v-1.6H41.3 M41.3,19.3h-7.4c-0.6,0-1,0.4-1,1v1.6c0,0.6,0.4,1,1,1h1.8
v6.6c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-6.6h1.8c0.6,0,1-0.4,1-1v-1.6C42.3,19.7,41.9,19.3,41.3,19.3L41.3,19.3z"/>
</g>
<g>
<path class="st2" d="M42.3,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h4c1,0,1.8,0.3,2.4,1c0.6,0.6,0.9,1.5,0.9,2.5
c0,0.7-0.2,1.4-0.6,2c-0.6,0.9-1.5,1.4-2.7,1.4h-1.6v2.8c0,0.3-0.2,0.5-0.5,0.5H42.3z M45.9,24.1c0.5,0,0.7-0.2,0.8-0.3
c0-0.1,0.1-0.3,0.1-0.6c0-0.4-0.2-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.9-0.2h-0.9v1.7H45.9z"/>
<path class="st1" d="M46.4,20.3c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8c-0.5,0.8-1.3,1.2-2.3,1.2
h-2.1v3.3h-1.9v-9.2H46.4 M44.2,24.6h1.7c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4V24.6 M46.4,19.3h-4c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-2.3h1.1
c1.4,0,2.5-0.6,3.2-1.6c0.4-0.7,0.7-1.5,0.7-2.3c0-1.2-0.3-2.1-1-2.9C48.4,19.7,47.5,19.3,46.4,19.3L46.4,19.3z M45.2,22.9h0.4
c0.4,0,0.6,0.1,0.6,0.1c0,0,0,0.1,0,0.2c0,0.3,0,0.4-0.1,0.4c0,0-0.1,0.1-0.3,0.1h-0.7V22.9L45.2,22.9z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M19.5,25.4v4.1h-1.9v-9.2h1.9v3.5h3.6v-3.5h1.9v9.2h-1.9v-4.1H19.5z"/>
</g>
<g>
<path class="st2" d="M30.6,29.5h-1.9v-7.6H26v-1.6h7.4v1.6h-2.8V29.5z"/>
</g>
<g>
<path class="st2" d="M38.5,29.5h-1.9v-7.6h-2.8v-1.6h7.4v1.6h-2.8V29.5z"/>
</g>
<g>
<path class="st2" d="M44.2,29.5h-1.9v-9.2h4c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8
c-0.5,0.8-1.3,1.2-2.3,1.2h-2.1V29.5z M45.9,24.6c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4v2.7H45.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M17.7,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h1.9c0.3,0,0.5,0.2,0.5,0.5v7H24
c0.3,0,0.5,0.2,0.5,0.5v1.7c0,0.3-0.2,0.5-0.5,0.5H17.7z"/>
<path class="st1" d="M19.5,20.3v7.5H24v1.7h-6.3v-9.2H19.5 M19.5,19.3h-1.9c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1H24
c0.6,0,1-0.4,1-1v-1.7c0-0.6-0.4-1-1-1h-3.4v-6.5C20.5,19.7,20.1,19.3,19.5,19.3L19.5,19.3z"/>
</g>
<g>
<path class="st2" d="M25.1,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5H29c1.5,0,2.6,0.6,3.4,1.8
c0.5,0.8,0.8,1.9,0.8,3.1c0,1.3-0.3,2.5-0.8,3.4C31.6,29.3,30.5,30,29,30H25.1z M28.7,27.4c0.5,0,0.9-0.2,1.1-0.7
c0.3-0.5,0.4-1.1,0.4-1.9c0-1-0.2-1.8-0.6-2.1c-0.2-0.2-0.5-0.3-1-0.3h-1.3v5H28.7z"/>
<path class="st1" d="M29,20.3c1.3,0,2.3,0.5,2.9,1.5c0.5,0.8,0.7,1.7,0.7,2.8c0,1.2-0.3,2.3-0.8,3.1c-0.6,1.1-1.6,1.7-2.9,1.7
h-3.9v-9.2H29 M26.9,27.9h1.8c0.7,0,1.2-0.3,1.6-1c0.3-0.5,0.4-1.2,0.4-2.1c0-1.2-0.2-2-0.7-2.5c-0.3-0.3-0.8-0.4-1.3-0.4h-1.8
V27.9 M29,19.3h-3.9c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1H29c1.7,0,3-0.7,3.8-2.2c0.6-1,0.9-2.2,0.9-3.6c0-1.3-0.3-2.5-0.8-3.4
C32,20,30.7,19.3,29,19.3L29,19.3z M27.9,22.9h0.8c0.3,0,0.5,0.1,0.6,0.2c0.1,0.1,0.4,0.5,0.4,1.8c0,0.7-0.1,1.2-0.3,1.6
c-0.2,0.4-0.4,0.5-0.7,0.5h-0.8V22.9L27.9,22.9z"/>
</g>
<g>
<path class="st2" d="M39.9,30c-0.2,0-0.4-0.1-0.5-0.3l-0.5-1.5h-2.7l-0.5,1.6c-0.1,0.2-0.3,0.3-0.5,0.3h-2c-0.2,0-0.3-0.1-0.4-0.2
c-0.1-0.1-0.1-0.3-0.1-0.5l3.2-9.2c0.1-0.2,0.3-0.3,0.5-0.3h2.2c0.2,0,0.4,0.1,0.5,0.3l3.2,9.2c0.1,0.2,0,0.3-0.1,0.5
c-0.1,0.1-0.2,0.2-0.4,0.2H39.9z M38.1,25.5L37.6,24l-0.5,1.5H38.1z"/>
<path class="st1" d="M38.7,20.3l3.2,9.2h-2l-0.6-1.9h-3.4l-0.6,1.9h-2l3.2-9.2H38.7 M36.4,26h2.3l-1.1-3.6h0L36.4,26 M38.7,19.3
h-2.2c-0.4,0-0.8,0.3-0.9,0.7l-3.2,9.2c-0.1,0.3-0.1,0.6,0.1,0.9c0.2,0.3,0.5,0.4,0.8,0.4h2c0.4,0,0.8-0.3,0.9-0.7l0.4-1.2h1.9
l0.4,1.2c0.1,0.4,0.5,0.7,1,0.7h2c0.3,0,0.6-0.2,0.8-0.4c0.2-0.3,0.2-0.6,0.1-0.9L39.7,20C39.5,19.6,39.1,19.3,38.7,19.3
L38.7,19.3z"/>
</g>
<g>
<path class="st2" d="M42.8,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h4c1,0,1.8,0.3,2.4,1c0.6,0.6,0.9,1.5,0.9,2.5
c0,0.7-0.2,1.4-0.6,2c-0.6,0.9-1.5,1.4-2.7,1.4h-1.6v2.8c0,0.3-0.2,0.5-0.5,0.5H42.8z M46.4,24.1c0.5,0,0.7-0.2,0.8-0.3
c0-0.1,0.1-0.3,0.1-0.6c0-0.4-0.2-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.9-0.2h-0.9v1.7H46.4z"/>
<path class="st1" d="M46.9,20.3c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8c-0.5,0.8-1.3,1.2-2.3,1.2
h-2.1v3.3h-1.9v-9.2H46.9 M44.7,24.6h1.7c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4V24.6 M46.9,19.3h-4c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-2.3h1.1
c1.4,0,2.5-0.6,3.2-1.6c0.4-0.7,0.7-1.5,0.7-2.3c0-1.2-0.3-2.1-1-2.9C48.9,19.7,48,19.3,46.9,19.3L46.9,19.3z M45.7,22.9h0.4
c0.4,0,0.6,0.1,0.6,0.1c0,0,0,0.1,0,0.2c0,0.3,0,0.4-0.1,0.4c0,0-0.1,0.1-0.3,0.1h-0.7V22.9L45.7,22.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M20.7,30.2c-1.6,0-2.8-0.4-3.5-1.3c-0.5-0.6-0.8-1.4-0.8-2.3c0-0.3,0.2-0.5,0.5-0.5h1.8
c0.3,0,0.5,0.2,0.5,0.5c0,0.2,0.1,0.4,0.2,0.6c0.2,0.2,0.6,0.4,1.2,0.4c0.4,0,0.8-0.1,1-0.2c0.3-0.1,0.3-0.3,0.3-0.5
c0-0.1,0-0.2-0.2-0.3c-0.1-0.1-0.4-0.2-1-0.3l-1-0.3c-0.5-0.1-0.9-0.2-1.1-0.3c-0.4-0.1-0.8-0.3-1-0.5c-0.4-0.3-0.6-0.6-0.8-0.9
c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.8,0.2-1.5,0.7-2.1c0.7-0.8,1.8-1.2,3.2-1.2c1.4,0,2.4,0.4,3.1,1.2c0.5,0.6,0.8,1.4,0.9,2.2
c0,0.1,0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.4,0.2h-1.8c-0.3,0-0.5-0.2-0.5-0.4c0-0.3-0.1-0.4-0.2-0.6c-0.2-0.2-0.6-0.4-1.1-0.4
c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.3,0.4c0,0.2,0.1,0.2,0.1,0.3c0,0,0.1,0.1,0.4,0.2c0,0,0,0,0.1,0l2.2,0.6
c0.8,0.2,1.4,0.5,1.8,0.8c0.6,0.5,0.9,1.2,0.9,2.1c0,1.3-0.6,2.4-1.7,3C22.3,30,21.6,30.2,20.7,30.2z"/>
<path class="st1" d="M20.5,20.1c1.2,0,2.1,0.4,2.8,1.1c0.5,0.5,0.7,1.2,0.7,1.9h-1.8c0-0.4-0.2-0.6-0.3-0.8
c-0.3-0.4-0.8-0.5-1.5-0.5c-0.4,0-0.8,0.1-1,0.2c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.3,0.1,0.5,0.3,0.7c0.1,0.1,0.3,0.2,0.6,0.3l0,0
l2.2,0.6c0.7,0.2,1.3,0.4,1.6,0.7c0.5,0.4,0.7,1,0.7,1.8c0,1.2-0.5,2-1.5,2.5c-0.6,0.3-1.3,0.5-2.1,0.5c-1.4,0-2.5-0.4-3.1-1.1
c-0.5-0.5-0.7-1.2-0.7-1.9h1.8c0,0.4,0.1,0.7,0.3,0.9c0.3,0.4,0.8,0.5,1.6,0.5c0.5,0,0.9-0.1,1.3-0.2c0.4-0.2,0.6-0.5,0.6-0.9
c0-0.3-0.2-0.6-0.5-0.8c-0.2-0.1-0.6-0.2-1.2-0.4l-1-0.2c-0.5-0.1-0.8-0.2-1.1-0.3c-0.4-0.1-0.7-0.3-0.9-0.4
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.2c0-0.7,0.2-1.3,0.6-1.8C18.3,20.4,19.2,20.1,20.5,20.1 M20.5,19.1
c-1.6,0-2.8,0.5-3.6,1.4C16.3,21.1,16,22,16,22.9c0,0.6,0.1,1.2,0.3,1.6c0.2,0.5,0.5,0.8,1,1.1h-0.4c-0.6,0-1,0.4-1,1
c0,1,0.3,1.9,0.9,2.6c0.8,1,2.2,1.5,3.9,1.5c0.9,0,1.8-0.2,2.5-0.6c1.3-0.7,2-1.9,2-3.4c0-1.3-0.6-2.1-1.1-2.5
c-0.1-0.1-0.2-0.1-0.2-0.2h0c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.5,0.3-0.7c0-1-0.3-1.8-1-2.5C23.2,19.5,22,19.1,20.5,19.1
L20.5,19.1z M19.9,22.7c0.1,0,0.3-0.1,0.4-0.1c0.4,0,0.7,0.1,0.8,0.2c0,0,0,0.1,0.1,0.2L20,22.8C20,22.8,20,22.7,19.9,22.7
C20,22.7,19.9,22.7,19.9,22.7L19.9,22.7z M20.6,27.1c-0.4,0-0.7-0.1-0.8-0.2c0,0-0.1-0.1-0.1-0.3c0,0,0-0.1,0-0.1l0.9,0.2
c0.4,0.1,0.7,0.2,0.8,0.2C21.3,27,21,27.1,20.6,27.1L20.6,27.1z"/>
</g>
<g>
<path class="st2" d="M30.7,30c-0.2,0-0.3-0.1-0.4-0.3l-2.7-4.9v4.7c0,0.3-0.2,0.5-0.5,0.5h-1.7c-0.3,0-0.5-0.2-0.5-0.5v-9.2
c0-0.3,0.2-0.5,0.5-0.5h2c0.2,0,0.3,0.1,0.4,0.3l2.6,4.7v-4.5c0-0.3,0.2-0.5,0.5-0.5h1.7c0.3,0,0.5,0.2,0.5,0.5v9.2
c0,0.3-0.2,0.5-0.5,0.5H30.7z"/>
<path class="st1" d="M32.6,20.3v9.2h-1.9l-3.6-6.5h0v6.5h-1.7v-9.2h2l3.5,6.4h0v-6.4H32.6 M32.6,19.3h-1.7c-0.6,0-1,0.4-1,1v2.6
l-1.7-3c-0.2-0.3-0.5-0.5-0.9-0.5h-2c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.7c0.6,0,1-0.4,1-1v-2.7l1.8,3.2
c0.2,0.3,0.5,0.5,0.9,0.5h1.9c0.6,0,1-0.4,1-1v-9.2C33.6,19.7,33.1,19.3,32.6,19.3L32.6,19.3z"/>
</g>
<g>
<path class="st2" d="M40.6,30c-0.3,0-0.5-0.2-0.5-0.5v-2.8l-0.7,2.9c-0.1,0.2-0.3,0.4-0.5,0.4h-1.8c-0.2,0-0.4-0.2-0.5-0.4l-0.7-3
v2.9c0,0.3-0.2,0.5-0.5,0.5h-1.7c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h2.7c0.2,0,0.4,0.2,0.5,0.4l1.1,4.9l1.1-4.9
c0.1-0.2,0.3-0.4,0.5-0.4h2.7c0.3,0,0.5,0.2,0.5,0.5v9.2c0,0.3-0.2,0.5-0.5,0.5H40.6z"/>
<path class="st1" d="M42.4,20.3v9.2h-1.7v-7.1l-1.7,7.1h-1.8l-1.6-7.1h0v7.1h-1.7v-9.2h2.7l1.6,6.9h0l1.6-6.9H42.4 M42.4,19.3
h-2.7c-0.5,0-0.9,0.3-1,0.8l-0.6,2.7l-0.6-2.7c-0.1-0.5-0.5-0.8-1-0.8h-2.7c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.7
c0.4,0,0.7-0.2,0.8-0.5c0.2,0.3,0.5,0.5,0.8,0.5h1.8c0.3,0,0.7-0.2,0.8-0.5c0.2,0.3,0.5,0.5,0.8,0.5h1.7c0.6,0,1-0.4,1-1v-9.2
C43.4,19.7,42.9,19.3,42.4,19.3L42.4,19.3z"/>
</g>
<g>
<path class="st2" d="M43.5,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h4c1,0,1.8,0.3,2.4,1c0.6,0.6,0.9,1.5,0.9,2.5
c0,0.7-0.2,1.4-0.6,2c-0.6,0.9-1.5,1.4-2.7,1.4h-1.6v2.8c0,0.3-0.2,0.5-0.5,0.5H43.5z M47,24.1c0.5,0,0.7-0.2,0.8-0.3
c0-0.1,0.1-0.3,0.1-0.6c0-0.4-0.2-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.9-0.2h-0.9v1.7H47z"/>
<path class="st1" d="M47.5,20.3c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8c-0.5,0.8-1.3,1.2-2.3,1.2
h-2.1v3.3h-1.9v-9.2H47.5 M45.4,24.6H47c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4V24.6 M47.5,19.3h-4c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-2.3h1.1
c1.4,0,2.5-0.6,3.2-1.6c0.4-0.7,0.7-1.5,0.7-2.3c0-1.2-0.3-2.1-1-2.9C49.6,19.7,48.7,19.3,47.5,19.3L47.5,19.3z M46.4,22.9h0.4
c0.4,0,0.6,0.1,0.6,0.1c0,0,0,0.1,0,0.2c0,0.3,0,0.4-0.1,0.4c0,0-0.1,0.1-0.3,0.1h-0.7V22.9L46.4,22.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@ -0,0 +1,93 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M24.2,30.2c-1.6,0-2.8-0.4-3.5-1.3c-0.5-0.6-0.8-1.4-0.8-2.3c0-0.3,0.2-0.5,0.5-0.5h1.8
c0.3,0,0.5,0.2,0.5,0.5c0,0.2,0.1,0.4,0.2,0.6c0.2,0.2,0.6,0.4,1.2,0.4c0.4,0,0.8-0.1,1-0.2c0.3-0.1,0.3-0.3,0.3-0.5
c0-0.1,0-0.2-0.2-0.3c-0.1-0.1-0.4-0.2-1-0.3l-1-0.3c-0.5-0.1-0.9-0.2-1.1-0.3c-0.4-0.1-0.8-0.3-1-0.5c-0.4-0.3-0.6-0.6-0.8-0.9
c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.8,0.2-1.5,0.7-2.1c0.7-0.8,1.8-1.2,3.2-1.2c1.4,0,2.4,0.4,3.1,1.2c0.5,0.6,0.8,1.4,0.9,2.2
c0,0.1,0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.4,0.2h-1.8c-0.3,0-0.5-0.2-0.5-0.4c0-0.3-0.1-0.4-0.2-0.6c-0.2-0.2-0.6-0.4-1.1-0.4
c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.3,0.4c0,0.2,0.1,0.2,0.1,0.3c0,0,0.1,0.1,0.4,0.2c0,0,0,0,0.1,0l2.2,0.6
c0.8,0.2,1.4,0.5,1.8,0.8c0.6,0.5,0.9,1.2,0.9,2.1c0,1.3-0.6,2.4-1.7,3C25.8,30,25,30.2,24.2,30.2z"/>
<path class="st1" d="M23.9,20.1c1.2,0,2.1,0.4,2.8,1.1c0.5,0.5,0.7,1.2,0.7,1.9h-1.8c0-0.4-0.2-0.6-0.3-0.8
c-0.3-0.4-0.8-0.5-1.5-0.5c-0.4,0-0.8,0.1-1,0.2c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.3,0.1,0.5,0.3,0.7c0.1,0.1,0.3,0.2,0.6,0.3l0,0
l2.2,0.6c0.7,0.2,1.3,0.4,1.6,0.7c0.5,0.4,0.7,1,0.7,1.8c0,1.2-0.5,2-1.5,2.5c-0.6,0.3-1.3,0.5-2.1,0.5c-1.4,0-2.5-0.4-3.1-1.1
c-0.5-0.5-0.7-1.2-0.7-1.9h1.8c0,0.4,0.1,0.7,0.3,0.9c0.3,0.4,0.8,0.5,1.6,0.5c0.5,0,0.9-0.1,1.3-0.2c0.4-0.2,0.6-0.5,0.6-0.9
c0-0.3-0.2-0.6-0.5-0.8c-0.2-0.1-0.6-0.2-1.2-0.4l-1-0.2c-0.5-0.1-0.8-0.2-1.1-0.3c-0.4-0.1-0.7-0.3-0.9-0.4
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.2c0-0.7,0.2-1.3,0.6-1.8C21.7,20.4,22.6,20.1,23.9,20.1 M23.9,19.1
c-1.6,0-2.8,0.5-3.6,1.4c-0.6,0.7-0.9,1.5-0.9,2.5c0,0.6,0.1,1.2,0.3,1.6c0.2,0.5,0.5,0.8,1,1.1h-0.4c-0.6,0-1,0.4-1,1
c0,1,0.3,1.9,0.9,2.6c0.8,1,2.2,1.5,3.9,1.5c0.9,0,1.8-0.2,2.5-0.6c1.3-0.7,2-1.9,2-3.4c0-1.3-0.6-2.1-1.1-2.5
c-0.1-0.1-0.2-0.1-0.2-0.2h0c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.5,0.3-0.7c0-1-0.3-1.8-1-2.5C26.6,19.5,25.4,19.1,23.9,19.1
L23.9,19.1z M23.4,22.7c0.1,0,0.3-0.1,0.4-0.1c0.4,0,0.7,0.1,0.8,0.2c0,0,0,0.1,0.1,0.2l-1.1-0.3C23.5,22.8,23.4,22.7,23.4,22.7
C23.4,22.7,23.4,22.7,23.4,22.7L23.4,22.7z M24.1,27.1c-0.4,0-0.7-0.1-0.8-0.2c0,0-0.1-0.1-0.1-0.3c0,0,0-0.1,0-0.1l0.9,0.2
c0.4,0.1,0.7,0.2,0.8,0.2C24.7,27,24.5,27.1,24.1,27.1L24.1,27.1z"/>
</g>
<g>
<path class="st2" d="M32.6,30.2c-1.6,0-2.8-0.4-3.5-1.3c-0.5-0.6-0.8-1.4-0.8-2.3c0-0.3,0.2-0.5,0.5-0.5h1.8
c0.3,0,0.5,0.2,0.5,0.5c0,0.2,0.1,0.4,0.2,0.6c0.2,0.2,0.6,0.4,1.2,0.4c0.4,0,0.8-0.1,1-0.2c0.3-0.1,0.3-0.3,0.3-0.5
c0-0.1,0-0.2-0.2-0.3c-0.1-0.1-0.4-0.2-1-0.3l-1-0.3c-0.5-0.1-0.9-0.2-1.1-0.3c-0.4-0.1-0.8-0.3-1-0.5c-0.4-0.3-0.6-0.6-0.8-0.9
c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.8,0.2-1.5,0.7-2.1c0.7-0.8,1.8-1.2,3.2-1.2c1.4,0,2.4,0.4,3.1,1.2c0.5,0.6,0.8,1.4,0.9,2.2
c0,0.1,0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.4,0.2H34c-0.3,0-0.5-0.2-0.5-0.4c0-0.3-0.1-0.4-0.2-0.6c-0.2-0.2-0.6-0.4-1.1-0.4
c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.3,0.2-0.3,0.4c0,0.2,0.1,0.2,0.1,0.3c0,0,0.1,0.1,0.4,0.2c0,0,0,0,0.1,0l2.2,0.6
c0.8,0.2,1.4,0.5,1.8,0.8c0.6,0.5,0.9,1.2,0.9,2.1c0,1.3-0.6,2.4-1.7,3C34.2,30,33.4,30.2,32.6,30.2z"/>
<path class="st1" d="M32.3,20.1c1.2,0,2.1,0.4,2.8,1.1c0.5,0.5,0.7,1.2,0.7,1.9H34c0-0.4-0.2-0.6-0.3-0.8
c-0.3-0.4-0.8-0.5-1.5-0.5c-0.4,0-0.8,0.1-1,0.2c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.3,0.1,0.5,0.3,0.7c0.1,0.1,0.3,0.2,0.6,0.3l0,0
l2.2,0.6c0.7,0.2,1.3,0.4,1.6,0.7c0.5,0.4,0.7,1,0.7,1.8c0,1.2-0.5,2-1.5,2.5c-0.6,0.3-1.3,0.5-2.1,0.5c-1.4,0-2.5-0.4-3.1-1.1
c-0.5-0.5-0.7-1.2-0.7-1.9h1.8c0,0.4,0.1,0.7,0.3,0.9c0.3,0.4,0.8,0.5,1.6,0.5c0.5,0,0.9-0.1,1.3-0.2c0.4-0.2,0.6-0.5,0.6-0.9
c0-0.3-0.2-0.6-0.5-0.8c-0.2-0.1-0.6-0.2-1.2-0.4l-1-0.2c-0.5-0.1-0.8-0.2-1.1-0.3c-0.4-0.1-0.7-0.3-0.9-0.4
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.2c0-0.7,0.2-1.3,0.6-1.8C30.1,20.4,31,20.1,32.3,20.1 M32.3,19.1
c-1.6,0-2.8,0.5-3.6,1.4c-0.6,0.7-0.9,1.5-0.9,2.5c0,0.6,0.1,1.2,0.3,1.6c0.2,0.5,0.5,0.8,1,1.1h-0.4c-0.6,0-1,0.4-1,1
c0,1,0.3,1.9,0.9,2.6c0.8,1,2.2,1.5,3.9,1.5c0.9,0,1.8-0.2,2.5-0.6c1.3-0.7,2-1.9,2-3.4c0-1.3-0.6-2.1-1.1-2.5
c-0.1-0.1-0.2-0.1-0.2-0.2h0c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.5,0.3-0.7c0-1-0.3-1.8-1-2.5C35,19.5,33.8,19.1,32.3,19.1
L32.3,19.1z M31.8,22.7c0.1,0,0.3-0.1,0.4-0.1c0.4,0,0.7,0.1,0.8,0.2c0,0,0,0.1,0.1,0.2l-1.1-0.3C31.9,22.8,31.8,22.7,31.8,22.7
C31.8,22.7,31.8,22.7,31.8,22.7L31.8,22.7z M32.5,27.1c-0.4,0-0.7-0.1-0.8-0.2c0,0-0.1-0.1-0.1-0.3c0,0,0-0.1,0-0.1l0.9,0.2
c0.4,0.1,0.7,0.2,0.8,0.2C33.1,27,32.9,27.1,32.5,27.1L32.5,27.1z"/>
</g>
<g>
<path class="st2" d="M42.9,30c-0.3,0-0.5-0.2-0.5-0.5v-3.6h-2.6v3.6c0,0.3-0.2,0.5-0.5,0.5h-1.9c-0.3,0-0.5-0.2-0.5-0.5v-9.2
c0-0.3,0.2-0.5,0.5-0.5h1.9c0.3,0,0.5,0.2,0.5,0.5v3h2.6v-3c0-0.3,0.2-0.5,0.5-0.5h1.9c0.3,0,0.5,0.2,0.5,0.5v9.2
c0,0.3-0.2,0.5-0.5,0.5H42.9z"/>
<path class="st1" d="M44.7,20.3v9.2h-1.9v-4.1h-3.6v4.1h-1.9v-9.2h1.9v3.5h3.6v-3.5H44.7 M44.7,19.3h-1.9c-0.6,0-1,0.4-1,1v2.5
h-1.6v-2.5c0-0.6-0.4-1-1-1h-1.9c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-3.1h1.6v3.1c0,0.6,0.4,1,1,1h1.9
c0.6,0,1-0.4,1-1v-9.2C45.7,19.7,45.3,19.3,44.7,19.3L44.7,19.3z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,131 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M18.2,30c-0.3,0-0.5-0.2-0.5-0.5v-7.1h-2.3c-0.3,0-0.5-0.2-0.5-0.5v-1.6c0-0.3,0.2-0.5,0.5-0.5h7.4
c0.3,0,0.5,0.2,0.5,0.5v1.6c0,0.3-0.2,0.5-0.5,0.5h-2.3v7.1c0,0.3-0.2,0.5-0.5,0.5H18.2z"/>
<path class="st1" d="M22.8,20.3v1.6h-2.8v7.6h-1.9v-7.6h-2.8v-1.6H22.8 M22.8,19.3h-7.4c-0.6,0-1,0.4-1,1v1.6c0,0.6,0.4,1,1,1h1.8
v6.6c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1v-6.6h1.8c0.6,0,1-0.4,1-1v-1.6C23.8,19.7,23.4,19.3,22.8,19.3L22.8,19.3z"/>
</g>
<g>
<path class="st2" d="M26.1,30.2c-1.1,0-2-0.3-2.7-1c-0.7-0.7-1.1-1.8-1.1-3.3c0-0.8,0.2-1.6,0.6-2.3c0.6-1.1,1.7-1.7,3.1-1.7
c0.9,0,1.7,0.3,2.3,0.8c0.8,0.7,1.2,1.9,1.2,3.4v0.4c0,0.2-0.1,0.4-0.3,0.5c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.3,0.1,0.4
c-0.2,0.9-0.7,1.5-1.4,2C27.5,30,26.8,30.2,26.1,30.2z M25.2,27.1c0,0.1,0.1,0.2,0.1,0.3c0.1,0.2,0.3,0.4,0.8,0.4
c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3c0-0.1,0.1-0.2,0.2-0.2H25.2z M26.6,24.9c0-0.1-0.1-0.2-0.2-0.2
c-0.1-0.1-0.3-0.2-0.5-0.2c-0.3,0-0.5,0.1-0.5,0.2c0,0.1-0.1,0.1-0.1,0.2H26.6z"/>
<path class="st1" d="M26,22.5c0.8,0,1.5,0.2,2,0.7c0.7,0.6,1,1.6,1,3v0.4h-4.5v0c0.1,0.4,0.2,0.8,0.3,1c0.2,0.4,0.6,0.6,1.2,0.6
c0.2,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.4-0.6H29c-0.2,0.8-0.6,1.3-1.2,1.7c-0.5,0.3-1,0.5-1.7,0.5c-1,0-1.8-0.3-2.3-0.8
c-0.6-0.6-0.9-1.6-0.9-2.9c0-0.8,0.2-1.4,0.5-2C23.9,23,24.7,22.5,26,22.5 M24.6,25.4h2.6c0-0.5-0.2-0.9-0.5-1.1
C26.5,24.1,26.3,24,26,24c-0.4,0-0.7,0.1-0.9,0.4C24.8,24.6,24.7,25,24.6,25.4 M26,21.5c-2,0-3,1-3.5,1.9C22,24.2,21.8,25,21.8,26
c0,1.6,0.4,2.8,1.2,3.6c0.8,0.7,1.8,1.1,3,1.1c0.8,0,1.6-0.2,2.2-0.7c0.8-0.5,1.3-1.3,1.6-2.3c0.1-0.2,0-0.5,0-0.7
C30,27,30,26.8,30,26.6v-0.4c0-1.7-0.5-2.9-1.4-3.8C27.9,21.8,27,21.5,26,21.5L26,21.5z"/>
</g>
<g>
<path class="st2" d="M29.9,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h1.7c0.3,0,0.5,0.2,0.5,0.5v9.2
c0,0.3-0.2,0.5-0.5,0.5H29.9z"/>
<path class="st1" d="M31.6,20.3v9.2h-1.7v-9.2H31.6 M31.6,19.3h-1.7c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.7c0.6,0,1-0.4,1-1
v-9.2C32.6,19.7,32.2,19.3,31.6,19.3L31.6,19.3z"/>
</g>
<g>
<path class="st2" d="M37,30c-0.3,0-0.5-0.2-0.5-0.5v-4.1c0-0.4-0.1-0.6-0.1-0.6c0-0.1-0.1-0.2-0.5-0.2c-0.3,0-0.5,0.1-0.6,0.2
C35.1,25,35,25.2,35,25.6v3.9c0,0.3-0.2,0.5-0.5,0.5h-1.7c-0.3,0-0.5-0.2-0.5-0.5v-6.8c0-0.3,0.2-0.5,0.5-0.5h1.7
c0.2,0,0.4,0.1,0.4,0.3c0.4-0.3,1-0.5,1.6-0.5c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.8,1.2,0.8,2.1v4.7c0,0.3-0.2,0.5-0.5,0.5H37z"/>
<path class="st1" d="M36.5,22.5c0.7,0,1.2,0.2,1.6,0.6c0.4,0.4,0.7,1,0.7,1.7v4.7H37v-4.1c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.3-0.5-0.5-1-0.5c-0.4,0-0.7,0.1-1,0.4c-0.3,0.3-0.4,0.7-0.4,1.2v3.9h-1.7v-6.8h1.7v1h0c0.2-0.3,0.4-0.6,0.6-0.8
C35.5,22.7,35.9,22.5,36.5,22.5 M36.5,21.5c-0.5,0-1,0.1-1.5,0.3c-0.2-0.1-0.3-0.1-0.5-0.1h-1.7c-0.6,0-1,0.4-1,1v6.8
c0,0.6,0.4,1,1,1h1.7c0.6,0,1-0.4,1-1v-3.9c0-0.2,0-0.4,0.1-0.5c0,0,0.1-0.1,0.3-0.1c0,0,0.1,0,0.1,0c0,0.1,0,0.2,0,0.4l0,4.1
c0,0.6,0.4,1,1,1h1.7c0.6,0,1-0.4,1-1v-4.7c0-1-0.3-1.8-1-2.4C38.2,21.8,37.4,21.5,36.5,21.5L36.5,21.5z"/>
</g>
<g>
<path class="st2" d="M42.5,30.2c-1.1,0-2-0.3-2.7-1c-0.7-0.7-1.1-1.8-1.1-3.3c0-0.8,0.2-1.6,0.6-2.3c0.6-1.1,1.7-1.7,3.1-1.7
c0.9,0,1.7,0.3,2.3,0.8c0.8,0.7,1.2,1.9,1.2,3.4v0.4c0,0.2-0.1,0.4-0.3,0.5c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.3,0.1,0.4
c-0.2,0.9-0.7,1.5-1.4,2C43.9,30,43.2,30.2,42.5,30.2z M41.6,27.1c0,0.1,0.1,0.2,0.1,0.3c0.1,0.2,0.3,0.4,0.8,0.4
c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3c0-0.1,0.1-0.2,0.2-0.2H41.6z M43,24.9c0-0.1-0.1-0.2-0.2-0.2
c-0.1-0.1-0.3-0.2-0.5-0.2c-0.3,0-0.5,0.1-0.5,0.2c0,0.1-0.1,0.1-0.1,0.2H43z"/>
<path class="st1" d="M42.4,22.5c0.8,0,1.5,0.2,2,0.7c0.7,0.6,1,1.6,1,3v0.4H41v0c0.1,0.4,0.2,0.8,0.3,1c0.2,0.4,0.6,0.6,1.2,0.6
c0.2,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.4-0.6h1.8c-0.2,0.8-0.6,1.3-1.2,1.7c-0.5,0.3-1,0.5-1.7,0.5c-1,0-1.8-0.3-2.3-0.8
c-0.6-0.6-0.9-1.6-0.9-2.9c0-0.8,0.2-1.4,0.5-2C40.3,23,41.1,22.5,42.4,22.5 M41,25.4h2.6c0-0.5-0.2-0.9-0.5-1.1
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.4,0-0.7,0.1-0.9,0.4C41.2,24.6,41.1,25,41,25.4 M42.4,21.5c-2,0-3,1-3.5,1.9
c-0.4,0.7-0.6,1.6-0.6,2.5c0,1.6,0.4,2.8,1.2,3.6c0.8,0.7,1.8,1.1,3,1.1c0.8,0,1.6-0.2,2.2-0.7c0.8-0.5,1.3-1.3,1.6-2.3
c0.1-0.2,0-0.5,0-0.7c0.1-0.2,0.1-0.3,0.1-0.5v-0.4c0-1.7-0.5-2.9-1.4-3.8C44.3,21.8,43.4,21.5,42.4,21.5L42.4,21.5z"/>
</g>
<g>
<path class="st2" d="M47.9,30.2c-0.9,0-1.5-0.2-1.8-0.6c-0.3-0.3-0.5-0.8-0.5-1.4v-3.8h-0.4c-0.3,0-0.5-0.2-0.5-0.5v-1.3
c0-0.3,0.2-0.5,0.5-0.5h0.4v-1.4c0-0.3,0.2-0.5,0.5-0.5h1.8c0.3,0,0.5,0.2,0.5,0.5v1.4h0.6c0.3,0,0.5,0.2,0.5,0.5v1.3
c0,0.3-0.2,0.5-0.5,0.5h-0.6c0,0,0,3.4,0,3.4c0,0,0.1,0,0.2,0c0,0,0.3,0,0.4,0c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.2,0.2,0.2,0.4v1.3
c0,0.3-0.2,0.5-0.5,0.5l-0.3,0c0,0-0.5,0-0.5,0H47.9z"/>
<path class="st1" d="M47.9,20.8v1.9h1.1v1.3h-1.1v3.9c0,0.2,0,0.4,0.1,0.4c0.1,0.1,0.3,0.1,0.6,0.1l0.4,0v1.3l-0.3,0l-0.5,0h-0.2
c-0.7,0-1.2-0.1-1.5-0.4c-0.2-0.2-0.3-0.6-0.3-1.1v-4.3h-0.9v-1.3h0.9v-1.9H47.9 M47.9,19.8h-1.8c-0.6,0-1,0.4-1,1v0.9
c-0.5,0.1-0.9,0.5-0.9,1v1.3c0,0.5,0.4,0.9,0.9,1v3.3c0,0.8,0.2,1.4,0.6,1.8c0.5,0.5,1.2,0.7,2.2,0.7h0.2c0,0,0,0,0.1,0l0.5,0
l0.3,0c0.5,0,1-0.5,1-1v-1.3c0-0.3-0.1-0.5-0.3-0.7c-0.2-0.2-0.4-0.3-0.7-0.3c0,0,0,0-0.1,0l0,0v-2.4h0.1c0.6,0,1-0.4,1-1v-1.3
c0-0.6-0.4-1-1-1h-0.1v-0.9C48.9,20.2,48.4,19.8,47.9,19.8L47.9,19.8z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M20.1,29.5h-1.9v-7.6h-2.8v-1.6h7.4v1.6h-2.8V29.5z"/>
</g>
<g>
<path class="st2" d="M29,27.5c-0.2,0.8-0.6,1.3-1.2,1.7c-0.5,0.3-1,0.5-1.7,0.5c-1,0-1.8-0.3-2.3-0.8c-0.6-0.6-0.9-1.6-0.9-2.9
c0-0.8,0.2-1.4,0.5-2c0.5-0.9,1.4-1.4,2.6-1.4c0.8,0,1.5,0.2,2,0.7c0.7,0.6,1,1.6,1,3v0.4h-4.5v0c0.1,0.4,0.2,0.8,0.3,1
c0.2,0.4,0.6,0.6,1.2,0.6c0.2,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.4-0.6H29z M27.3,25.4c0-0.5-0.2-0.9-0.5-1.1
C26.5,24.1,26.3,24,26,24c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.2-0.4,0.6-0.4,1H27.3z"/>
</g>
<g>
<path class="st2" d="M31.6,29.5h-1.7v-9.2h1.7V29.5z"/>
</g>
<g>
<path class="st2" d="M38.8,29.5H37v-4.1c0-0.4-0.1-0.7-0.2-0.9c-0.2-0.3-0.5-0.5-1-0.5c-0.4,0-0.7,0.1-1,0.4
c-0.3,0.3-0.4,0.7-0.4,1.2v3.9h-1.7v-6.8h1.7v1h0c0.2-0.3,0.4-0.6,0.6-0.8c0.4-0.3,0.8-0.4,1.4-0.4c0.7,0,1.2,0.2,1.6,0.6
c0.4,0.4,0.7,1,0.7,1.7V29.5z"/>
</g>
<g>
<path class="st2" d="M45.4,27.5c-0.2,0.8-0.6,1.3-1.2,1.7c-0.5,0.3-1,0.5-1.7,0.5c-1,0-1.8-0.3-2.3-0.8c-0.6-0.6-0.9-1.6-0.9-2.9
c0-0.8,0.2-1.4,0.5-2c0.5-0.9,1.4-1.4,2.6-1.4c0.8,0,1.5,0.2,2,0.7c0.7,0.6,1,1.6,1,3v0.4H41v0c0.1,0.4,0.2,0.8,0.3,1
c0.2,0.4,0.6,0.6,1.2,0.6c0.2,0,0.5-0.1,0.7-0.2c0.2-0.1,0.4-0.3,0.4-0.6H45.4z M43.7,25.4c0-0.5-0.2-0.9-0.5-1.1
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.2-0.4,0.6-0.4,1H43.7z"/>
</g>
<g>
<path class="st2" d="M47.9,22.6h1.1v1.3h-1.1v3.9c0,0.2,0,0.4,0.1,0.4c0.1,0.1,0.3,0.1,0.6,0.1l0.4,0v1.3l-0.3,0l-0.5,0h-0.2
c-0.7,0-1.2-0.1-1.5-0.4c-0.2-0.2-0.3-0.6-0.3-1.1v-4.3h-0.9v-1.3h0.9v-1.9h1.8V22.6z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#D19E60;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6
c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2
v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z"/>
</g>
<g>
<path class="st2" d="M14.4,45v-4.5h16.4v-2.9c-1.1-0.7-1.8-1.9-1.9-3.2h-6.4c-6.1,0-11.1-5-11.1-11.1c0-5.4,3.9-10,9.2-10.9
C22.3,7.5,27,4,32.4,4c6.7,0,12.1,5.3,12.4,11.9c0.2,0,0.3,0,0.5,0c5.1,0,9.3,4.2,9.3,9.3s-4.2,9.3-9.3,9.3h-8.2
c-0.1,1.3-0.8,2.5-1.9,3.2v2.9h16.4V45H14.4z M32.4,8.5c-3.8,0-7.1,2.7-7.8,6.5l-0.3,1.8h-1.8c-3.6,0.1-6.5,3-6.5,6.6
c0,3.7,3,6.6,6.6,6.6h22.8c2.7,0,4.8-2.2,4.8-4.8s-2.2-4.8-4.8-4.8c-1.1,0-2.7,0-2.7,0h-2.3l0.1-2.3c0-0.1,0-0.9,0-1.6
C40.4,12.1,36.8,8.5,32.4,8.5z"/>
<path class="st1" d="M32.4,5c6.3,0,11.4,5.1,11.4,11.4c0,0.1,0,0.3,0,0.4c0.5,0,1,0,1.5,0c4.6,0,8.3,3.7,8.3,8.3s-3.7,8.3-8.3,8.3
h-9.2c0,0.4,0,0.7,0,0.7c0,1.3-0.8,2.4-1.9,2.8v4.5h16.4V44H15.4v-2.5h16.4V37c-1.1-0.5-1.9-1.6-1.9-2.8c0,0,0-0.4,0-0.7h-7.4
c-5.6,0-10.1-4.5-10.1-10.1c0-5.1,3.9-9.4,8.9-10C22.7,8.5,27.2,5,32.4,5 M22.5,31h22.8c3.2,0,5.8-2.6,5.8-5.8s-2.6-5.8-5.8-5.8
c-1.1,0-2.7,0-2.7,0h-1.2v-1.2c0,0,0-0.8,0-1.6c0-5-4-9-9-9c-4.3,0-8,3.1-8.8,7.3l-0.2,1h-1c-4.1,0.1-7.5,3.5-7.5,7.6
C14.9,27.6,18.3,31,22.5,31 M32.4,3c-5.6,0-10.6,3.5-12.5,8.6c-5.5,1.2-9.4,6.1-9.4,11.8c0,6.7,5.4,12.1,12.1,12.1h5.6
c0.3,1,0.9,2,1.7,2.7v1.4H15.4h-2v2V44v2h2h35.2h2v-2v-2.5v-2h-2H36.2v-1.4c0.8-0.7,1.4-1.6,1.7-2.7h7.4c5.7,0,10.3-4.6,10.3-10.3
c0-5.5-4.4-10-9.8-10.3C45,8.2,39.3,3,32.4,3L32.4,3z M22.5,29c-3.1,0-5.6-2.5-5.6-5.6c0-3,2.5-5.6,5.5-5.6h1H25l0.3-1.6l0.2-1
c0.6-3.3,3.5-5.7,6.9-5.7c3.9,0,7,3.1,7,7c0,0.7,0,1.4,0,1.5l0,0v1.2l-0.1,2h2h1.2c0,0,1.7,0,2.8,0c2.1,0,3.8,1.7,3.8,3.8
s-1.7,3.8-3.8,3.8H22.5V29z"/>
</g>
</g>
<g>
<g>
<path class="st2" d="M26.9,30.2c-0.2,0-0.4-0.2-0.5-0.4c-0.5-2.2-0.8-3.7-0.9-4.5c-0.2,0.9-0.5,2.4-0.9,4.5c0,0.2-0.3,0.4-0.5,0.4
h-1.7c-0.2,0-0.4-0.2-0.5-0.4l-2.5-9.4c0-0.1,0-0.3,0.1-0.4s0.2-0.2,0.4-0.2h2c0.2,0,0.4,0.2,0.5,0.4c0.4,1.9,0.7,3.3,0.9,4.3
c0.2-1.1,0.5-2.5,0.8-4.3c0-0.2,0.3-0.4,0.5-0.4h2c0.2,0,0.4,0.2,0.5,0.4c0.4,2,0.7,3.5,0.9,4.5c0.2-1,0.5-2.5,1-4.5
c0.1-0.2,0.3-0.4,0.5-0.4h1.9c0.2,0,0.3,0.1,0.4,0.2c0.1,0.1,0.1,0.3,0.1,0.4l-2.5,9.4c-0.1,0.2-0.3,0.4-0.5,0.4H26.9z"/>
<path class="st1" d="M31.3,20.3L31.3,20.3 M31.3,20.3l-2.5,9.4h-1.8c-0.5-2.3-0.8-3.9-0.9-4.7c-0.2-0.9-0.3-1.8-0.4-2.7h0
c-0.2,1-0.3,1.9-0.5,2.6c-0.2,0.8-0.5,2.4-1,4.7h-1.7l-2.5-9.4h2c0.5,2.4,0.9,4.1,1.1,5c0.1,0.7,0.3,1.3,0.4,1.9h0l0.1-0.4
c0.1-0.7,0.2-1.3,0.3-2c0.2-1.1,0.5-2.6,0.9-4.5h2c0.5,2.4,0.8,4.1,1,5c0.1,0.6,0.2,1.3,0.4,1.9h0c0.1-0.5,0.2-1.1,0.3-1.8
c0.2-1,0.6-2.7,1.1-5.1H31.3 M31.3,19.3L31.3,19.3h-1.9c-0.5,0-0.9,0.3-1,0.8c-0.2,0.8-0.3,1.5-0.5,2.1c-0.1-0.6-0.3-1.3-0.4-2.1
c-0.1-0.5-0.5-0.8-1-0.8h-2c-0.5,0-0.9,0.3-1,0.8c-0.1,0.7-0.3,1.3-0.4,1.9c-0.1-0.6-0.3-1.2-0.4-1.9c-0.1-0.5-0.5-0.8-1-0.8h-2
c-0.3,0-0.6,0.1-0.8,0.4c-0.2,0.2-0.3,0.6-0.2,0.9l2.5,9.4c0.1,0.4,0.5,0.7,1,0.7h1.7c0.5,0,0.9-0.3,1-0.8
c0.2-0.8,0.3-1.5,0.4-2.1c0.1,0.6,0.3,1.3,0.4,2.1c0.1,0.5,0.5,0.8,1,0.8h1.8c0.5,0,0.8-0.3,1-0.7l2.5-9.3c0-0.1,0.1-0.2,0.1-0.3
C32.3,19.7,31.8,19.3,31.3,19.3L31.3,19.3z M31.3,21.3L31.3,21.3L31.3,21.3L31.3,21.3z"/>
</g>
<g>
<path class="st2" d="M38.8,30c-0.3,0-0.5-0.2-0.5-0.5v-2.8l-0.7,2.9c-0.1,0.2-0.3,0.4-0.5,0.4h-1.8c-0.2,0-0.4-0.2-0.5-0.4l-0.7-3
v2.9c0,0.3-0.2,0.5-0.5,0.5h-1.7c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h2.7c0.2,0,0.4,0.2,0.5,0.4l1.1,4.9l1.1-4.9
c0.1-0.2,0.3-0.4,0.5-0.4h2.7c0.3,0,0.5,0.2,0.5,0.5v9.2c0,0.3-0.2,0.5-0.5,0.5H38.8z"/>
<path class="st1" d="M40.5,20.3v9.2h-1.7v-7.1l-1.7,7.1h-1.8l-1.6-7.1h0v7.1h-1.7v-9.2h2.7l1.6,6.9h0l1.6-6.9H40.5 M40.5,19.3
h-2.7c-0.5,0-0.9,0.3-1,0.8l-0.6,2.7l-0.6-2.7c-0.1-0.5-0.5-0.8-1-0.8h-2.7c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.7
c0.4,0,0.7-0.2,0.8-0.5c0.2,0.3,0.5,0.5,0.8,0.5h1.8c0.3,0,0.7-0.2,0.8-0.5c0.2,0.3,0.5,0.5,0.8,0.5h1.7c0.6,0,1-0.4,1-1v-9.2
C41.5,19.7,41.1,19.3,40.5,19.3L40.5,19.3z"/>
</g>
<g>
<path class="st2" d="M42.2,30c-0.3,0-0.5-0.2-0.5-0.5v-9.2c0-0.3,0.2-0.5,0.5-0.5h1.9c0.3,0,0.5,0.2,0.5,0.5v9.2
c0,0.3-0.2,0.5-0.5,0.5H42.2z"/>
<path class="st1" d="M44.1,20.3v9.2h-1.9v-9.2H44.1 M44.1,19.3h-1.9c-0.6,0-1,0.4-1,1v9.2c0,0.6,0.4,1,1,1h1.9c0.6,0,1-0.4,1-1
v-9.2C45.1,19.7,44.6,19.3,44.1,19.3L44.1,19.3z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#7483B5;}
.st2{fill:#FFFFFF;}
</style>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.4L49.5,30.9h-33L0,43.4L16.5,56h33L66,43.4z"/>
<g>
<path class="st1" d="M20.8,44.3c-1.5,0-2.7-1.2-2.7-2.7v-37c0-1.5,1.2-2.7,2.7-2.7h24.3c1.5,0,2.7,1.2,2.7,2.7v37
c0,1.5-1.2,2.7-2.7,2.7H20.8z M24.9,14.5c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z M24.9,8
c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z"/>
<path class="st2" d="M45.2,2.8c1,0,1.7,0.8,1.7,1.7v37c0,1-0.8,1.7-1.7,1.7H20.8c-1,0-1.7-0.8-1.7-1.7v-37c0-1,0.8-1.7,1.7-1.7
H45.2 M24.9,10.9h16.3c1.1,0,2-0.9,2-2s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,10.9,24.9,10.9 M24.9,17.5h16.3c1.1,0,2-0.9,2-2
s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,17.5,24.9,17.5 M45.2,0.8H20.8c-2.1,0-3.7,1.7-3.7,3.7v37c0,2.1,1.7,3.7,3.7,3.7h24.3
c2.1,0,3.7-1.7,3.7-3.7v-37C48.9,2.5,47.3,0.8,45.2,0.8L45.2,0.8z"/>
</g>
<g>
<path class="st2" d="M20,26.1h3.2c1.1,0,1.9,0.5,2.4,1.4c0.4,0.7,0.6,1.6,0.6,2.6c0,1.1-0.2,2.1-0.6,2.9c-0.5,1-1.3,1.5-2.4,1.5H20
V26.1z M21.5,33H23c0.6,0,1-0.3,1.3-0.9c0.2-0.5,0.4-1.1,0.4-1.9c0-1.1-0.2-1.9-0.6-2.3c-0.3-0.3-0.6-0.4-1.1-0.4h-1.4V33z"/>
<path class="st2" d="M28.2,30.7v3.8h-1.5v-8.4h1.5v3.2h2.9v-3.2h1.5v8.4h-1.5v-3.8H28.2z"/>
<path class="st2" d="M38.1,28.9c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6
c-0.4,0.5-0.6,1.3-0.6,2.3c0,0.8,0.1,1.5,0.4,2c0.3,0.6,0.8,0.9,1.4,0.9c0.4,0,0.8-0.1,1-0.4c0.3-0.3,0.5-0.7,0.6-1.2h1.5
c-0.2,1-0.5,1.7-1,2.2c-0.6,0.6-1.3,0.9-2.1,0.9c-1,0-1.8-0.4-2.4-1.1c-0.6-0.8-0.9-1.9-0.9-3.3c0-1.4,0.3-2.5,1-3.3
c0.6-0.7,1.4-1.1,2.4-1.1c1,0,1.8,0.3,2.3,1c0.5,0.6,0.7,1.2,0.8,2H38.1z"/>
<path class="st2" d="M41.7,34.5h-1.5v-8.4h3.3c0.7,0,1.2,0.2,1.7,0.7c0.4,0.5,0.6,1.1,0.6,2c0,0.6-0.1,1.1-0.4,1.6
c-0.4,0.7-1,1.1-1.9,1.1h-1.7V34.5z M43,30c0.5,0,0.8-0.2,1-0.5c0.1-0.2,0.1-0.5,0.1-0.8c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-1-0.3h-1.2V30H43z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#7483B5;}
.st2{fill:#FFFFFF;}
</style>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.4L49.5,30.9h-33L0,43.4L16.5,56h33L66,43.4z"/>
<g>
<path class="st1" d="M20.8,44.3c-1.5,0-2.7-1.2-2.7-2.7v-37c0-1.5,1.2-2.7,2.7-2.7h24.3c1.5,0,2.7,1.2,2.7,2.7v37
c0,1.5-1.2,2.7-2.7,2.7H20.8z M24.9,14.5c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z M24.9,8
c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z"/>
<path class="st2" d="M45.2,2.8c1,0,1.7,0.8,1.7,1.7v37c0,1-0.8,1.7-1.7,1.7H20.8c-1,0-1.7-0.8-1.7-1.7v-37c0-1,0.8-1.7,1.7-1.7
H45.2 M24.9,10.9h16.3c1.1,0,2-0.9,2-2s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,10.9,24.9,10.9 M24.9,17.5h16.3c1.1,0,2-0.9,2-2
s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,17.5,24.9,17.5 M45.2,0.8H20.8c-2.1,0-3.7,1.7-3.7,3.7v37c0,2.1,1.7,3.7,3.7,3.7h24.3
c2.1,0,3.7-1.7,3.7-3.7v-37C48.9,2.5,47.3,0.8,45.2,0.8L45.2,0.8z"/>
</g>
<g>
<path class="st2" d="M21.1,26.1h3.6c1.2,0,2.1,0.5,2.7,1.4c0.4,0.7,0.6,1.6,0.6,2.6c0,1.1-0.2,2.1-0.7,2.9c-0.6,1-1.5,1.5-2.7,1.5
h-3.6V26.1z M22.8,33h1.7c0.6,0,1.1-0.3,1.4-0.9c0.3-0.5,0.4-1.1,0.4-1.9c0-1.1-0.2-1.9-0.7-2.3c-0.3-0.3-0.7-0.4-1.2-0.4h-1.6V33z
"/>
<path class="st2" d="M34.9,26.1h1.6v8.4h-1.7l-3.3-6h0v6h-1.6v-8.4h1.8l3.2,5.9h0V26.1z"/>
<path class="st2" d="M39.9,31.9c0,0.3,0.1,0.6,0.3,0.8c0.3,0.3,0.8,0.5,1.5,0.5c0.5,0,0.9-0.1,1.1-0.2c0.4-0.2,0.6-0.5,0.6-0.9
c0-0.3-0.1-0.5-0.4-0.7c-0.2-0.1-0.6-0.2-1.1-0.3L41,30.9c-0.4-0.1-0.8-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.8-0.4
c-0.3-0.2-0.5-0.4-0.6-0.7c-0.1-0.3-0.2-0.7-0.2-1.1c0-0.6,0.2-1.2,0.6-1.6c0.5-0.6,1.4-0.9,2.6-0.9c1.1,0,2,0.3,2.5,1
c0.4,0.5,0.7,1.1,0.7,1.7h-1.6c0-0.3-0.1-0.6-0.3-0.8c-0.3-0.3-0.8-0.5-1.4-0.5c-0.4,0-0.7,0.1-1,0.2c-0.3,0.2-0.5,0.4-0.5,0.8
c0,0.3,0.1,0.5,0.3,0.6c0.1,0.1,0.3,0.2,0.6,0.2l0,0l2,0.5c0.7,0.2,1.2,0.4,1.5,0.6c0.4,0.4,0.7,0.9,0.7,1.6c0,1.1-0.5,1.8-1.4,2.3
c-0.6,0.3-1.2,0.4-1.9,0.4c-1.3,0-2.3-0.3-2.9-1c-0.4-0.5-0.6-1.1-0.6-1.8H39.9z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,719 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#7483B5;}
.st2{fill:#FFFFFF;}
.st3{fill:#020204;}
.st4{fill:#FDFDFB;}
.st5{opacity:0.2588;}
.st6{opacity:0.3;enable-background:new ;}
.st7{fill:url(#path28795-9-5_1_);}
.st8{fill:url(#path28795-3_1_);}
.st9{fill:url(#path28849-2_1_);}
.st10{fill:#7C7C7C;}
.st11{fill:#141413;}
.st12{fill:url(#SVGID_1_);}
.st13{clip-path:url(#SVGID_3_);fill:url(#path28972-5_1_);}
.st14{fill:url(#SVGID_4_);}
.st15{fill:url(#SVGID_5_);}
.st16{fill:url(#SVGID_6_);}
.st17{fill:url(#path28461-2_1_);}
.st18{fill:#D9B30D;}
.st19{fill:#604405;}
.st20{fill:url(#path27476-4_1_);}
.st21{fill:#F6DA4A;}
.st22{opacity:0.8;enable-background:new ;}
.st23{fill:url(#SVGID_7_);}
.st24{fill:url(#SVGID_8_);}
.st25{fill:url(#SVGID_9_);}
.st26{clip-path:url(#SVGID_11_);fill:url(#path29551-9_1_);}
.st27{clip-path:url(#SVGID_13_);}
.st28{fill:#838384;}
.st29{opacity:0.25;enable-background:new ;}
.st30{fill:url(#SVGID_14_);}
.st31{opacity:0.42;enable-background:new ;}
.st32{fill:url(#SVGID_15_);}
.st33{opacity:0.2;enable-background:new ;}
.st34{fill:url(#SVGID_16_);}
.st35{opacity:0.11;enable-background:new ;}
.st36{fill:url(#SVGID_17_);}
.st37{clip-path:url(#SVGID_19_);fill:url(#path14296-0_1_);}
.st38{clip-path:url(#SVGID_21_);}
.st39{fill:#CD8907;}
.st40{clip-path:url(#SVGID_23_);}
.st41{fill:#F5C021;}
.st42{fill:url(#SVGID_24_);}
.st43{opacity:0.75;enable-background:new ;}
.st44{opacity:0.35;enable-background:new ;}
.st45{fill:url(#SVGID_25_);}
.st46{fill:url(#SVGID_26_);}
.st47{clip-path:url(#SVGID_28_);}
.st48{fill:url(#SVGID_29_);}
.st49{clip-path:url(#SVGID_31_);}
.st50{fill:url(#SVGID_32_);}
.st51{opacity:0.95;clip-path:url(#SVGID_34_);enable-background:new ;}
.st52{clip-path:url(#SVGID_36_);}
.st53{fill:url(#path4635-1_1_);}
.st54{fill:#D99A03;}
.st55{fill:#F5BD0C;}
.st56{fill:url(#SVGID_37_);}
</style>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.4L49.5,30.9h-33L0,43.4L16.5,56h33L66,43.4z"/>
<g>
<path class="st1" d="M20.8,44.3c-1.5,0-2.7-1.2-2.7-2.7v-37c0-1.5,1.2-2.7,2.7-2.7h24.3c1.5,0,2.7,1.2,2.7,2.7v37
c0,1.5-1.2,2.7-2.7,2.7H20.8z M24.9,14.5c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z M24.9,8
c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z"/>
<path class="st2" d="M45.2,2.8c1,0,1.7,0.8,1.7,1.7v37c0,1-0.8,1.7-1.7,1.7H20.8c-1,0-1.7-0.8-1.7-1.7v-37c0-1,0.8-1.7,1.7-1.7
H45.2 M24.9,10.9h16.3c1.1,0,2-0.9,2-2s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,10.9,24.9,10.9 M24.9,17.5h16.3c1.1,0,2-0.9,2-2
s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,17.5,24.9,17.5 M45.2,0.8H20.8c-2.1,0-3.7,1.7-3.7,3.7v37c0,2.1,1.7,3.7,3.7,3.7h24.3
c2.1,0,3.7-1.7,3.7-3.7v-37C48.9,2.5,47.3,0.8,45.2,0.8L45.2,0.8z"/>
</g>
<g id="layer1" transform="translate(160,-57.362183)" inkscape:groupmode="layer" inkscape:label="Layer 1">
<g id="g18680" transform="translate(-21.000155,8.0000019)">
<path id="path29670-2" inkscape:connector-curvature="0" inkscape:original-d="m 61.52407,172.7341 c 3.81516,6.80607 7.98928,13.60047 10.12118,21.106 8.01683,28.22391 16.18873,58.9928 9.34454,87.52376 -3.91404,16.31621 -14.85206,31.12082 -27.46966,42.18132 -14.74526,12.92561 -33.56645,23.37901 -53.07363986,25.37 C -12.40153,350.2265 -26.24845,346.51397 -37.164348,339.6122 -55.151202,328.2397 -71.16412,310.48663 -77.58788,290.1988 c -4.02672,-12.71739 -0.27151,-26.95553 2.89379,-39.91421 2.29344,-9.38928 7.91221,-17.64415 11.47203,-26.63004 3.886182,-9.80972 6.241682,-20.23698 10.783122,-29.76107 4.11546,-8.63075 10.69895,-15.93423 14.80419,-24.56984 4.86887,-10.24194 2.85632,-24.6886 11.51361,-32.01352 10.004808,-8.46505 25.60077814,-7.66957 38.688928,-6.99612 5.47743,0.28184 10.68539,2.60779 15.8054,4.57428 4.35849,1.67401 9.10391,3.02155 12.60195,6.11386 9.44129,8.34623 14.38718,20.73968 20.54893,31.73196 z" inkscape:path-effect="#path-effect29672-0" sodipodi:nodetypes="aaaaaaaaaaaaaaaa" class="st3" d="
M-101.1,76.1c0.3,0.6,0.5,1.1,0.8,1.7c0.5,1.1,0.9,2.2,1,3.4c0.2,1.2,0.1,2.4-0.3,3.5c-0.4,1.3-1.2,2.4-2.2,3.3
c-1.1,1.1-2.6,1.9-4.2,2c-1,0-2-0.3-3-0.7c-0.8-0.4-1.5-0.9-2-1.6c-0.6-0.7-1-1.4-1.2-2.3c-0.2-1-0.1-2.1,0.2-3.1
c0.3-0.7,0.6-1.4,0.9-2.1c0.3-0.8,0.5-1.6,0.8-2.3c0.4-0.7,0.9-1.2,1.2-1.9c0.2-0.4,0.2-0.9,0.3-1.3s0.3-0.9,0.6-1.2
c0.4-0.4,0.9-0.6,1.4-0.7c0.5-0.1,1.1,0,1.6,0.1c0.4,0.1,0.8,0.2,1.2,0.4c0.3,0.1,0.7,0.3,1,0.5c0.4,0.3,0.7,0.7,1,1.1
C-101.5,75.2-101.3,75.7-101.1,76.1"/>
<path id="path29676-3" inkscape:connector-curvature="0" inkscape:original-d="m 4.0355401,349.03896 c 5.31141,1.45915 10.9914099,0.86408 16.4392499,1.67728 4.79165,0.71525 9.50413,1.88631 14.25969,2.81161 7.43501,1.44665 14.74518,4.52367 22.31583,4.28409 3.91094,-0.12377 9.20178,0.32283 11.36517,-2.93761 5.98186,-9.01526 -0.551,-22.13144 -4.72871,-32.11164 -2.60789,-6.23005 -6.08594,-13.31892 -12.2082,-16.17069 -8.16275,-3.80224 -18.64853,-2.01042 -26.97766,1.41204 -6.03181,2.47849 -10.56582,7.89452 -14.6114899,13.00903 -2.84323,3.5944 -4.11374,8.20521 -6.53274,12.09779 -2.53370996,4.07718 -9.56405,7.10679 -8.33155,11.74619 0.85016,3.20019 5.81751004,3.30476 9.01041,4.18191 z" inkscape:path-effect="#path-effect29678-1" sodipodi:nodetypes="aaaaaaaaaaaa" class="st3" d="
M-105.6,90c0.4,0,0.9,0.1,1.3,0.1c0.4,0.1,0.7,0.1,1.1,0.2c0.6,0.1,1.2,0.3,1.8,0.3c0.2,0,0.3,0,0.5,0c0.2,0,0.3-0.1,0.4-0.2
c0.2-0.1,0.3-0.4,0.3-0.6c0-0.2,0-0.5-0.1-0.7c-0.1-0.4-0.4-0.8-0.7-1.2c-0.1-0.2-0.3-0.5-0.4-0.7c-0.1-0.2-0.3-0.4-0.6-0.6
c-0.3-0.2-0.7-0.3-1.1-0.2c-0.4,0-0.7,0.2-1.1,0.3c-0.5,0.2-0.9,0.6-1.1,1c-0.1,0.2-0.2,0.3-0.2,0.5c-0.1,0.2-0.2,0.3-0.3,0.5
c-0.1,0.1-0.3,0.2-0.5,0.4c-0.1,0.1-0.1,0.2-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.1,0.1,0.2,0.1
C-105.9,90-105.8,90-105.6,90"/>
<path id="path29676-7-1" inkscape:connector-curvature="0" inkscape:original-d="m -12.31313,348.6854 c -4.47031,0.99017 -9.10753,1.0238 -13.610282,1.85407 -4.309938,0.79472 -8.519237,2.06598 -12.803666,2.98838 -7.211653,1.5526 -14.339038,4.52326 -21.71205,4.28409 -3.811742,-0.12365 -8.953592,0.24319 -11.057672,-2.93761 -5.96574,-9.01859 0.51057,-22.10189 4.60077,-32.11164 2.52985,-6.19116 5.831856,-13.31131 11.877892,-16.17069 7.920757,-3.746 18.168716,-1.97914 26.24775,1.41204 5.922736,2.48608 10.294528,7.92178 14.216168,13.00903 2.78113,3.60775 4.49162,7.94151 6.3559901,12.09779 1.86656,4.16115 6.81989,8.71087 4.81434,12.80684 -1.37033,2.79864 -5.88686,2.09382 -8.9292401,2.7677 z" inkscape:path-effect="#path-effect29678-4-6" sodipodi:nodetypes="aaaaaaaaaaaa" class="st3" d="
M-106.9,89.9c-0.4,0-0.7,0.1-1.1,0.1c-0.3,0.1-0.7,0.1-1,0.2c-0.6,0.1-1.1,0.3-1.7,0.3c-0.2,0-0.3,0-0.5,0c-0.1,0-0.3-0.1-0.4-0.2
c-0.2-0.1-0.3-0.4-0.3-0.6c0-0.2,0-0.5,0-0.7c0.1-0.4,0.4-0.8,0.7-1.2c0.1-0.2,0.3-0.5,0.4-0.7s0.3-0.4,0.5-0.6
c0.3-0.2,0.7-0.3,1-0.2c0.4,0,0.7,0.2,1,0.3c0.4,0.2,0.9,0.6,1.1,1c0.2,0.3,0.3,0.7,0.5,0.9c0.1,0.2,0.3,0.3,0.4,0.5
c0,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.1-0.1,0.1s-0.1,0.1-0.2,0.1C-106.7,89.9-106.8,89.9-106.9,89.9"/>
<path id="path28712-2" inkscape:connector-curvature="0" inkscape:original-d="m -37.926938,157.79951 c -0.23874,-1.95114 -0.33098,-16.56748 -0.7792,-23.31507 -0.44822,-6.74759 -1.76054,-14.36597 -0.71488,-22.41592 1.04566,-8.04995 0.0202,-15.490812 4.91386,-22.131182 4.89365,-6.64038 10.00464,-13.918393 15.585408,-16.222143 5.58077,-2.30375 13.7623701,-5.136042 20.7339701,-4.774941 6.9716,0.361101 20.7187199,4.836184 27.3342999,8.744136 6.61558,3.907948 8.43934,7.041748 12.35777,13.315908 3.91843,6.27416 4.49106,4.95343 6.32522,14.191382 1.83416,9.23795 1.3417,23.63449 2.67383,31.79633 1.33213,8.16184 1.48408,25.53013 1.58126,30.25019 0.0972,4.72006 3.07989,1.70599 -1.33303,6.39902 -4.41292,4.69303 -16.29873,5.9193 -23.29303,7.12535 -6.9943,1.20605 -9.85748,4.18037 -18.2084499,3.81352 -8.35096996,-0.36685 -15.11868,1.16314 -22.1478801,0.0336 -7.0292,-1.12957 -13.384328,1.0334 -17.352208,-2.99749 -1.99863,-2.03037 -14.797502,9.88021 -6.87229,-8.12557 1.43517,-3.26065 0.118512,-5.40684 -0.315229,-8.18661 -0.433741,-2.77978 -0.250681,-5.54937 -0.489421,-7.50051 z" inkscape:path-effect="#path-effect28714-5" sodipodi:nodetypes="zzzzzzzzzzzzzzzcssz" class="st3" d="
M-108.9,75c-0.1-0.6,0-1.2-0.1-1.8c0-0.6-0.1-1.2-0.1-1.8c0-0.6,0.1-1.2,0.4-1.7c0.3-0.5,0.7-1,1.2-1.3c0.5-0.3,1.1-0.4,1.6-0.4
c0.8,0,1.5,0.2,2.1,0.7c0.4,0.3,0.7,0.6,1,1c0.2,0.3,0.4,0.7,0.5,1.1c0.2,0.8,0.2,1.7,0.2,2.5c0,0.8,0.2,1.6,0.1,2.4
c0,0.2,0,0.3-0.1,0.5c-0.1,0.2-0.2,0.3-0.3,0.4c-0.1,0.1-0.3,0.1-0.5,0.2c-0.3,0.1-0.7,0-1,0c-0.5,0-0.9,0.2-1.4,0.3
c-0.6,0.1-1.2,0-1.7,0c-0.2,0-0.5,0-0.7,0c-0.2,0-0.5-0.1-0.7-0.2c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.2-0.2-0.2-0.4
c-0.1-0.2,0-0.4,0-0.6C-108.9,75.4-108.9,75.2-108.9,75"/>
<path id="path29719-5" inkscape:connector-curvature="0" inkscape:original-d="m -26.295668,154.81433 c -4.91706,4.90258 -2.49185,14.09046 -3.57676,19.50419 -0.92511,4.61628 -3.47916,5.06947 -5.15761,9.37795 -2.60645,6.69062 -7.19429,10.29768 -9.02706,16.20217 -1.10811,3.56993 -1.04841,11.16474 -1.04841,11.16474 0,0 -7.73353,12.14529 -10.4229,18.78069 -4.06445,10.02809 -7.802842,20.54024 -8.454552,31.34105 -0.79301,13.14259 0.7101,26.88279 5.627472,39.09655 3.56234,8.84812 9.82005,16.62521 16.68566,23.2466 3.51109,3.3862 7.51286,6.71034 12.1895,8.09709 15.651498,4.64107 33.5785381,4.95299 48.972958,-0.48031 8.32552,-2.9384 14.37103,-10.35083 20.78084,-16.42232 3.86495,-3.66095 7.97806,-7.32358 10.56653,-11.97551 4.94842,-8.89317 7.85743,-19.10137 8.80544,-29.23436 1.64987,-17.6351 0.5844,-36.2488 -5.62137,-52.83816 -2.15724,-5.7668 -5.89812,-6.8616 -10.58065,-15.14052 0,0 -3.4629,-15.40009 -6.69212,-22.54215 -2.29859,-5.08378 -4.87111,-10.24883 -7.47079,-15.29085 -2.11783,-4.10746 -0.95591,-8.14744 -6.61792,-12.1824 -5.66201,-4.03496 -19.1925499,-4.63379 -27.4729899,-4.57888 -8.2804301,0.0549 -16.5682001,-1.02814 -21.4852681,3.87443 z" inkscape:path-effect="#path-effect29721-2" sodipodi:nodetypes="zssacaaaaaaaaaacsszzz" class="st4" d="
M-108,74.7c-0.1,0.1-0.1,0.2-0.2,0.4c0,0.1,0,0.3,0,0.4c0,0.3,0,0.5-0.1,0.8c-0.1,0.3-0.2,0.5-0.4,0.7c-0.3,0.4-0.6,0.8-0.7,1.3
c-0.1,0.3-0.1,0.6-0.1,0.9c-0.3,0.5-0.6,1-0.8,1.5c-0.3,0.8-0.6,1.6-0.7,2.5c-0.1,1,0,2.1,0.4,3.1c0.3,0.7,0.7,1.3,1.3,1.8
c0.3,0.3,0.6,0.5,1,0.6c1.2,0.6,2.7,0.6,3.8,0c0.6-0.3,1.1-0.8,1.6-1.3c0.3-0.3,0.6-0.6,0.8-0.9c0.4-0.7,0.6-1.5,0.7-2.3
c0.2-1.4,0.2-2.9-0.4-4.1c-0.2-0.4-0.5-0.8-0.8-1.2c-0.1-0.6-0.3-1.2-0.5-1.8c-0.2-0.4-0.4-0.8-0.6-1.2c-0.1-0.2-0.1-0.3-0.2-0.5
s-0.2-0.3-0.3-0.5c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.4,0-0.7,0-1.1,0c-0.3,0-0.6-0.1-0.9,0
c-0.1,0-0.3,0-0.4,0.1C-107.8,74.5-107.9,74.6-108,74.7"/>
<g id="path28461-8-7" inkscape:connector-curvature="0" inkscape:original-d="m -28.632498,172.60136 c 2.23213,4.64734 5.1083,9.28859 9.185848,12.44354 2.67894,2.07279 6.04343,3.90676 9.42861,3.78945 3.3622401,-0.11651 6.0939301,-2.85659 9.08171014,-4.403 2.58833996,-1.33967 5.14995996,-2.73491 7.65715996,-4.22092 2.86194,-1.69626 5.9692899,-3.93086 8.6646899,-5.95927 2.66807,-2.00786 4.92241,-3.81369 8.09533,-4.69539 2.21912,-0.61666 5.48141,1.97559 6.9076,0.16707 1.70503,-2.16211 -1.60778,-5.27845 -2.11947,-7.984 -0.48451,-2.56186 0.84312,-5.82511 -0.89253,-7.77072 -2.50413,-2.80705 -7.25561,-2.12043 -10.99221,-2.55407 -2.64137,-0.30654 -5.32254,-0.17467 -7.9772499,-0.0221 -3.30885,0.19016 -6.56151,1.0653 -9.87428,1.16645 -3.77345,0.11522 -7.54799,-0.98344 -11.3075401,-0.63996 -3.22265,0.29443 -6.24955,1.7137 -9.432818,2.2959 -3.39095,0.62019 -8.17713,-1.47499 -10.26342,1.2692 -1.23629,1.62615 0.48864,4.06098 0.90179,6.0615 0.77124,3.73443 1.28583,7.61901 2.93678,11.05632 z" inkscape:path-effect="#path-effect28463-8-0" sodipodi:nodetypes="aaaasssaaaaaaaaaaa">
<path class="st5" d="M-108.2,76.1c0.1,0.4,0.4,0.7,0.7,1c0.1,0.1,0.2,0.2,0.3,0.2c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3-0.1,0.4-0.1
s0.2-0.1,0.3-0.2c0.2-0.1,0.4-0.2,0.6-0.3c0.2-0.1,0.5-0.3,0.7-0.5c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.4-0.1
c0.1,0,0.2,0,0.3,0.1c0,0,0.1,0,0.1,0s0.1,0,0.1-0.1c0,0,0.1-0.1,0.1-0.2s0-0.1,0-0.2c-0.1-0.1-0.1-0.2-0.2-0.3
c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1-0.1-0.2-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4,0-0.6,0
c-0.3,0-0.5,0.1-0.8,0.1c-0.3,0-0.6-0.1-0.9-0.1c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.2,0.1-0.4,0.1c-0.1,0-0.3-0.1-0.4-0.1
c-0.1,0-0.1,0-0.2,0s-0.1,0.1-0.2,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0.1,0.1,0.2,0.1,0.2C-108.3,75.5-108.3,75.8-108.2,76.1
"/>
</g>
<g id="path28461-84-3" inkscape:connector-curvature="0" inkscape:original-d="m -54.3809,165.4735 c 0.42262,3.94579 5.99269,5.21651 8.76949,8.0515 2.57613,2.63011 4.25369,6.2205 7.29931,8.28886 2.13682,1.45118 4.72798,2.32091 7.29406,2.61606 3.02752,0.34823 6.14043,-0.25456 9.08171,-1.05205 2.73494,-0.74154 5.29165,-2.06969 7.78216,-3.4214 4.73271,-2.56865 8.94397,-6.00268 13.51002,-8.85709 1.94342,-1.2149 4.5936,-1.64009 5.9076,-3.51792 0.64675,-0.92426 0.48709,-2.20604 0.63053,-3.32496 0.30275,-2.3615 2.00411,-5.29507 0.48247,-7.12617 -2.16974,-2.61101 -7.28872,-2.3478 -10.99221,-2.20062 -3.24156,0.12882 -5.00591,0.003 -7.97725,-0.019 -3.30834,-0.0249 -6.567,0.91785 -9.87428,1.00503 -3.77235,0.0994 -7.54565,-0.84918 -11.30754,-0.55139 -3.20265,0.25352 -6.46266,0.75368 -9.43282,1.97817 -2.87625,1.18578 -4.86499,4.13836 -7.83062,5.07853 -0.38836,0.12312 -0.86326,-0.14716 -1.2213,0.0472 -1.0776,0.58505 -2.25191,1.78604 -2.12133,3.00524 z" inkscape:path-effect="#path-effect28463-0-7" sodipodi:nodetypes="caaaaaaaasssaaaaaac" class="st6">
<path d="M-108.6,75c0.3,0.2,0.5,0.4,0.7,0.6c0.2,0.2,0.3,0.4,0.6,0.6c0.2,0.1,0.4,0.2,0.6,0.2c0.2,0,0.5,0,0.7-0.1
c0.2-0.1,0.4-0.1,0.6-0.2c0.4-0.2,0.7-0.5,1.1-0.6c0.1,0,0.2-0.1,0.3-0.1s0.2-0.1,0.2-0.2c0-0.1,0-0.2,0-0.2c0-0.1,0-0.2,0.1-0.3
c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1,0-0.2-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4,0-0.6,0c-0.3,0-0.5,0.1-0.8,0.1
c-0.3,0-0.6,0-0.9,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c0,0-0.1,0.1-0.2,0.1
c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0.1C-108.6,74.9-108.6,75-108.6,75L-108.6,75"/>
</g>
<radialGradient id="path28795-9-5_1_" cx="-17.5405" cy="18.3412" r="1.1436" gradientTransform="matrix(0.8152 -3.431182e-02 -2.961133e-02 -1.248 -92.8706 94.9569)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#FEFEFC"/>
<stop offset="0.7573" style="stop-color:#FEFEFC"/>
<stop offset="1" style="stop-color:#D4D4D4"/>
</radialGradient>
<path id="path28795-9-5" inkscape:connector-curvature="0" inkscape:original-d="m -24.767558,113.36218 c -3.79199,4.78949 -8.5176,11.69104 -8.19273,17.25 0.32487,5.55896 3.86025,13.93486 8.37542,16 4.515168,2.06514 5.754358,0.0125 8.329018,-2.5 2.57466,-2.51247 3.85871,-7.34762 4.00585,-12.25 0.14713,-4.90238 -3.03534,-11.91949 -5.43855,-15.25 -2.40321,-3.33051 -3.28702,-8.03949 -7.079008,-3.25 z" inkscape:path-effect="#path-effect28797-8-1" sodipodi:nodetypes="zzzzzzz" class="st7" d="
M-107.9,71.5c-0.1,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.2,0.4c-0.1,0.3-0.1,0.6,0,0.8c0,0.3,0,0.5,0.1,0.7c0,0.1,0.1,0.2,0.2,0.3
s0.2,0.2,0.3,0.2c0.1,0,0.2,0,0.4,0c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.3,0.3-0.4c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.4-0.1-0.6
c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.1-0.2-0.1-0.3-0.2C-107.7,71.5-107.8,71.5-107.9,71.5"/>
<radialGradient id="path28795-3_1_" cx="-24.3832" cy="18.5293" r="1.1436" gradientTransform="matrix(1.0858 -3.431182e-02 -3.943781e-02 -1.248 -77.6333 94.9569)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#FEFEFC"/>
<stop offset="0.7573" style="stop-color:#FEFEFC"/>
<stop offset="1" style="stop-color:#D4D4D4"/>
</radialGradient>
<path id="path28795-3" inkscape:connector-curvature="0" inkscape:original-d="m 6.7500001,113.36218 c -2.54738,2.12715 -5.20812,4.59907 -6.24999996,7.75 -1.30914,3.95917 -1.63336004,8.91703 0.49999996,12.5 3.91901,6.58194 12.3835299,13.85135 19.7499999,11.75 4.87452,-1.3905 6.10748,-8.51023 7,-13.5 0.59149,-3.30679 0.59578,-7.19325 -1.25,-10 -3.61233,-5.49303 -10.4265,-9.89357 -16.9999999,-10 -1.04403,-0.0169 -1.94852,0.83074 -2.75,1.5 z" inkscape:path-effect="#path-effect28797-81" sodipodi:nodetypes="aaaaaaaa" class="st8" d="
M-105.4,71.5c-0.2,0.1-0.4,0.4-0.5,0.6c-0.1,0.3-0.1,0.7,0,1c0.1,0.3,0.3,0.6,0.6,0.8c0.1,0.1,0.3,0.2,0.5,0.2s0.3,0,0.5-0.1
c0.2-0.1,0.3-0.3,0.4-0.5c0.1-0.2,0.1-0.4,0.1-0.6c0-0.3,0-0.5-0.1-0.8c-0.1-0.3-0.3-0.5-0.5-0.7c-0.1-0.1-0.3-0.1-0.4-0.2
c-0.1,0-0.3,0-0.4,0C-105.3,71.4-105.4,71.4-105.4,71.5"/>
<g id="path27476-76-1" inkscape:connector-curvature="0" inkscape:original-d="m -25.360588,142.15408 c -1.72343,1.65346 -3.47073,2.79213 -5.13602,4.68523 -0.67024,0.76192 -1.67786,1.86642 -2.21459,3.09935 -0.51056,1.17281 -0.5698,2.47023 -0.46883,3.37902 0.13759,1.23827 -0.43061,1.86745 0.21079,2.24367 0.94624,0.55501 0.8908,-0.0592 1.82416,0.53809 3.65601,2.3398 5.04637,3.52997 7.55477,4.28011 3.832178,1.14603 14.7864681,1.87425 18.8563881,1.62308 4.06992004,-0.25116 3.55357,-1.03978 7.42544,-2.04356 4.59277,-1.19067 6.73031,-4.0403 10.1181899,-6.02193 1.52563,-0.89236 2.63774,-2.45071 4.13251,-3.41525 0.95714,-0.61762 1.79052,-1.78779 2.89354,-2.15317 0.83694,-0.27725 1.93519,0.22703 2.74819,-0.0495 1.53471,-0.52198 3.45072,0.98536 3.93565,-0.56145 0.30463,-0.97172 -1.21998,-3.55757 -2.03449,-4.27281 -1.28865,-1.13157 -2.17893,-0.30695 -3.60551,-1.05573 -3.29939,-1.7318 -6.67755,-1.42704 -10.83577,-3.95385 -1.6088399,-0.97764 -3.3502799,-1.86082 -5.0717499,-2.70037 -1.76687,-0.86171 -3.45734,-2.03073 -5.38902996,-2.39536 -4.25510004,-0.80319 -8.87065004,-0.78681 -12.97748014,0.58609 -4.58384,1.53237 -7.99448,4.37791 -11.966158,8.18832 z" inkscape:path-effect="#path-effect28273-4-2" sodipodi:nodetypes="sssssssssssssssssaaas" class="st6">
<path d="M-107.9,73.7c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0,0.1c0,0,0,0,0,0s0,0,0,0
c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.1,0.3,0.1s0.2,0.1,0.3,0.2c0.2,0.1,0.5,0.2,0.7,0.2c0.3,0,0.5,0,0.8-0.1
c0.2,0,0.4-0.1,0.6-0.2c0.3-0.1,0.5-0.3,0.8-0.5c0.1-0.1,0.2-0.2,0.3-0.3c0,0,0.1-0.1,0.1-0.1s0.1-0.1,0.1-0.1c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0s0,0,0.1,0c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.3-0.1-0.6-0.2-0.9-0.3c-0.1-0.1-0.3-0.1-0.4-0.2c-0.1-0.1-0.3-0.1-0.4-0.2c-0.3-0.1-0.7-0.1-1,0
C-107.4,73.2-107.7,73.4-107.9,73.7L-107.9,73.7"/>
</g>
<radialGradient id="path28849-2_1_" cx="85.367" cy="92.4146" r="1.2071" gradientTransform="matrix(0.6978 -0.5072 -0.4603 -0.6334 -123.7291 175.2944)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#020204"/>
<stop offset="0.7345" style="stop-color:#020204"/>
<stop offset="1" style="stop-color:#5C5C5C"/>
</radialGradient>
<path id="path28849-2" inkscape:connector-curvature="0" inkscape:original-d="m -16.39938,136.86218 c 2.36858,-2.71553 5.49188,-12.81068 11.4723401,-10 5.98046,2.81068 5.18243004,3.47651 6.45272,5.5 1.27028,2.02349 0.98505,2.86855 1.97912,3.75 0.99407,0.88145 7.7816499,4.54964 6.08048,6.5 -1.70117,1.95036 -7.94588,4.73939 -14.76286,5.63406 -6.8169701,0.89467 -15.9670901,-1.59131 -15.9204901,-4.13406 0.0466,-2.54275 2.33012,-4.53447 4.69869,-7.25 z" inkscape:path-effect="#path-effect28851-0" sodipodi:nodetypes="zzzzzzzz" class="st9" d="
M-107.2,73.3c0.1-0.2,0.2-0.3,0.4-0.5c0.1-0.1,0.1-0.2,0.2-0.2s0.2-0.1,0.3-0.1c0.1,0,0.2,0.1,0.3,0.1s0.1,0.2,0.2,0.3
c0,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.2,0.2,0.3,0.2c0,0,0.1,0.1,0.1,0.1s0.1,0.1,0.1,0.2c0,0.1,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.1
c-0.1,0.1-0.2,0.1-0.3,0.1c-0.2,0-0.5,0-0.7,0c-0.2,0-0.5,0.1-0.7,0.1c-0.1,0-0.2,0-0.3-0.1c-0.1,0-0.1-0.1-0.1-0.1
c0-0.1-0.1-0.1-0.1-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0.1-0.1,0.1-0.1C-107.4,73.5-107.3,73.4-107.2,73.3"/>
<g id="path28767-3" inkscape:connector-curvature="0" sodipodi:nodetypes="zzzscz">
<path class="st10" d="M-104.5,69c-0.2,0.1-0.1,0.3,0,0.5s-0.2,0.7-0.2,0.7c0,0,0.5-0.3,0.7-0.4c0.2-0.2,0.6,0.3,0.6,0.2
C-103.5,69.8-104.3,68.9-104.5,69z"/>
</g>
<g id="g28965-1" transform="translate(-289,-9.0000017)">
<path id="path28879-6" inkscape:connector-curvature="0" inkscape:original-d="m 302.16152,130.75695 c -2.87406,0.28374 -6.31396,5.24276 -6.98136,9.11066 -0.66739,3.86789 10e-4,5.84562 3.24521,8.51228 3.24384,2.66666 7.36541,2.15444 8.9859,0.41434 1.62049,-1.7401 5.91927,-0.97024 3.64196,-6.52864 -2.27731,-5.5584 -3.90199,-8.54921 -6.00366,-11.06301 -2.10166,-2.5138 -0.0139,-0.72937 -2.88805,-0.44563 z" inkscape:path-effect="#path-effect28881-6" sodipodi:nodetypes="zzzzzzz" class="st3" d="
M184.1,81.1c-0.1,0-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.2c-0.1,0.1-0.1,0.3-0.1,0.5c0,0.1,0,0.2,0,0.4s0.1,0.2,0.2,0.3
c0.1,0.1,0.2,0.1,0.3,0.1s0.3,0,0.4-0.1c0.1-0.1,0.1-0.1,0.2-0.2c0-0.1,0.1-0.2,0.1-0.3c0-0.2,0-0.4-0.1-0.5
c-0.1-0.2-0.2-0.3-0.4-0.3C184.2,81.1,184.2,81.1,184.1,81.1"/>
<g id="path28891-5" inkscape:connector-curvature="0" sodipodi:nodetypes="aaaaaa">
<path class="st11" d="M184.3,81.7c-0.1,0-0.2,0-0.2,0.1c0,0,0,0.1,0,0.1C184.2,81.9,184.3,81.8,184.3,81.7
C184.4,81.7,184.3,81.7,184.3,81.7C184.3,81.6,184.3,81.7,184.3,81.7L184.3,81.7z"/>
</g>
<g id="path28887-6" inkscape:connector-curvature="0" sodipodi:nodetypes="sazas">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="244.1452" y1="35.0725" x2="244.6724" y2="34.4482" gradientTransform="matrix(1 0 0 -1 -60.0002 116.3622)">
<stop offset="0" style="stop-color:#949494;stop-opacity:0.3922"/>
<stop offset="0.5" style="stop-color:#949494"/>
<stop offset="1" style="stop-color:#949494;stop-opacity:0.3922"/>
</linearGradient>
<path class="st12" d="M184.6,81.8c0.1-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.1-0.3-0.1c0,0.1,0.1,0.2,0.2,0.3
C184.4,81.7,184.5,81.9,184.6,81.8z"/>
</g>
</g>
<g>
<defs>
<path id="SVGID_2_" d="M-105.4,71.5c-0.2,0.1-0.4,0.4-0.5,0.6c-0.1,0.3-0.1,0.7,0,1c0.1,0.3,0.3,0.6,0.6,0.8
c0.1,0.1,0.3,0.2,0.5,0.2s0.3,0,0.5-0.1c0.2-0.1,0.3-0.3,0.4-0.5c0.1-0.2,0.1-0.4,0.1-0.6c0-0.3,0-0.5-0.1-0.8
c-0.1-0.3-0.3-0.5-0.5-0.7c-0.1-0.1-0.3-0.1-0.4-0.2c-0.1,0-0.3,0-0.4,0C-105.3,71.4-105.4,71.4-105.4,71.5"/>
</defs>
<clipPath id="SVGID_3_">
<use xlink:href="#SVGID_2_" style="overflow:visible;"/>
</clipPath>
<linearGradient id="path28972-5_1_" gradientUnits="userSpaceOnUse" x1="84.7883" y1="27.2395" x2="86.4657" y2="26.2586" gradientTransform="matrix(1 0 0 -1 -190.0002 98.3622)">
<stop offset="0" style="stop-color:#747474"/>
<stop offset="0.125" style="stop-color:#8C8C8C"/>
<stop offset="0.25" style="stop-color:#A4A4A4"/>
<stop offset="0.5" style="stop-color:#D4D4D4"/>
<stop offset="0.6192" style="stop-color:#D4D4D4"/>
<stop offset="1" style="stop-color:#7C7C7C"/>
</linearGradient>
<path id="path28972-5" inkscape:connector-curvature="0" inkscape:original-d="m 75.25,132.48718 c 3.40869,-2.58262 3.43954,-3.7535 8.12154,-4.40008 6.48923,-0.89617 13.89382,-2.20956 18.37846,2.27508 2.43992,2.43992 8.15822,6.01661 10.875,7.375 1.34807,0.67404 3.06358,1.37285 3.5,0.5 3.11882,-6.23764 2.95419,-14.85407 1.625,-21.5 -0.24753,-1.23763 -1.28796,-2.50314 -2,-3.5 -5.7778,-8.08891 -13.00963,-8.54882 -22.125,-9.25 -1.8014,-0.13857 -3.68357,-0.45182 -5.5,-0.25 -2.11904,0.23545 -4.07227,1.28288 -6.125,1.625 -1.70198,0.28366 -4.22575,0.8806 -5.625,2 -3.09692,2.47754 -0.75,12.88557 -0.75,16.75 0,2.02376 -0.625,4.18464 -0.625,6 0,0.72634 0.25,2.77521 0.25,1.75" inkscape:path-effect="#path-effect28974-8" sodipodi:nodetypes="cssssssssssssc" class="st13" d="
M-106.2,72.3c0.2-0.2,0.4-0.3,0.6-0.3c0.5-0.1,1-0.1,1.4,0.2c0.1,0.1,0.3,0.2,0.4,0.3s0.3,0.2,0.4,0.3c0.1,0,0.2,0,0.3,0
c0.1,0,0.2,0,0.2-0.1c0.1,0,0.1-0.1,0.2-0.2c0.1-0.1,0.1-0.3,0.1-0.5c0-0.3-0.2-0.6-0.4-0.9c0-0.1-0.1-0.2-0.2-0.3
c-0.2-0.3-0.5-0.4-0.8-0.5c-0.3-0.1-0.6-0.1-1-0.2c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3,0.1-0.5,0.1c-0.1,0-0.2,0-0.2,0.1
c-0.1,0-0.2,0.1-0.2,0.1c-0.1,0.1-0.1,0.2-0.2,0.3c0,0.1,0,0.2,0,0.3c0,0.2,0.1,0.4,0.1,0.7c0,0.2-0.1,0.3,0,0.5
C-106.3,72.1-106.3,72.2-106.2,72.3"/>
</g>
<g id="path28795-92-2" inkscape:connector-curvature="0">
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="35.3157" y1="27.5579" x2="36.4324" y2="26.5035" gradientTransform="matrix(1 0 0 -1 -140.0002 98.3622)">
<stop offset="0" style="stop-color:#646464;stop-opacity:0"/>
<stop offset="0.3063" style="stop-color:#646464;stop-opacity:0.5825"/>
<stop offset="0.47" style="stop-color:#646464"/>
<stop offset="0.7283" style="stop-color:#646464;stop-opacity:0.2573"/>
<stop offset="1" style="stop-color:#646464;stop-opacity:0"/>
</linearGradient>
<path class="st14" d="M-104.7,70.8c0,0-0.1,0.1-0.1,0.2c0.2,0,0.3,0.1,0.5,0.2c0.3,0.2,0.5,0.5,0.6,0.8c0,0,0.1-0.1,0.1-0.1
c-0.1-0.3-0.4-0.6-0.7-0.8C-104.4,70.9-104.5,70.9-104.7,70.8z"/>
</g>
<g id="path28795-9-2-2" inkscape:connector-curvature="0">
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="32.1086" y1="27.5038" x2="33.1601" y2="26.4911" gradientTransform="matrix(1 0 0 -1 -140.0002 98.3622)">
<stop offset="0" style="stop-color:#646464;stop-opacity:0"/>
<stop offset="0.3063" style="stop-color:#646464;stop-opacity:0.5825"/>
<stop offset="0.47" style="stop-color:#646464"/>
<stop offset="0.7283" style="stop-color:#646464;stop-opacity:0.2573"/>
<stop offset="1" style="stop-color:#646464;stop-opacity:0"/>
</linearGradient>
<path class="st15" d="M-107.9,71C-107.9,71-108,71-107.9,71C-108,71-108,71-107.9,71c0,0,0.1,0,0.2,0.1c0.1,0.1,0.3,0.1,0.4,0.2
c0.2,0.2,0.3,0.4,0.4,0.7c0-0.2-0.1-0.4-0.2-0.5c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.2-0.4-0.2C-107.6,71-107.8,71-107.9,71
L-107.9,71z"/>
</g>
<g id="g29497-8" transform="translate(-189,-9.0000017)">
<path id="path29453-9" inkscape:connector-curvature="0" inkscape:original-d="m 159.93889,137.11161 c -0.53598,2.1893 -0.29829,4.59426 0.3864,6.74344 0.45146,1.41707 1.22553,2.82851 2.37218,3.79935 1.42209,1.20405 3.35513,2.58699 5.18611,2.16989 1.71244,-0.3901 2.83925,-2.29855 3.43783,-3.91749 0.91837,-2.48389 0.61882,-5.38417 -0.12241,-7.92418 -0.53777,-1.84279 -1.43149,-3.81646 -3.02664,-4.9268 -1.44141,-1.00332 -3.5767,-1.77017 -5.19233,-1.06601 -1.8424,0.803 -2.57096,3.20131 -3.04114,5.1218 z" inkscape:path-effect="#path-effect29455-3" sodipodi:nodetypes="aaaaaaaaa" class="st3" d="
M80.8,81.6c0,0.2,0,0.4,0,0.5c0,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.1,0.1,0.2,0.1c0.1,0,0.2,0,0.2,0c0.1,0,0.1-0.1,0.2-0.1
c0-0.1,0.1-0.1,0.1-0.2c0.1-0.2,0.1-0.4,0-0.6c0-0.1-0.1-0.3-0.2-0.4c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2,0
c-0.1,0-0.1,0.1-0.2,0.2C80.8,81.5,80.8,81.6,80.8,81.6"/>
<g id="path29465-8" inkscape:connector-curvature="0" sodipodi:nodetypes="aaaaaaaaa">
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="131.0991" y1="35.1344" x2="131.5569" y2="34.3159" gradientTransform="matrix(1 0 0 -1 -50.0002 116.3622)">
<stop offset="0" style="stop-color:#757574;stop-opacity:0"/>
<stop offset="0.2629" style="stop-color:#757574"/>
<stop offset="0.5" style="stop-color:#757574"/>
<stop offset="1" style="stop-color:#757574;stop-opacity:0"/>
</linearGradient>
<path class="st16" d="M81.1,81.5c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1c0,0.1,0,0.2,0,0.3c0,0,0.1,0,0.1,0
c0.1-0.1,0.1-0.2,0-0.4c0-0.1-0.1-0.2-0.2-0.3C81.3,81.4,81.2,81.4,81.1,81.5C81.1,81.4,81.1,81.5,81.1,81.5z"/>
</g>
</g>
<g id="g29634-9" transform="translate(-79,-9.0000017)">
<radialGradient id="path28461-2_1_" cx="159.9201" cy="76.7411" r="2.4415" gradientTransform="matrix(0.9362 -0.3864 -0.2713 -0.6574 -155.4863 195.6596)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#D2940A"/>
<stop offset="0.7514" style="stop-color:#D89C08"/>
<stop offset="0.8658" style="stop-color:#B67E07"/>
<stop offset="1" style="stop-color:#946106"/>
</radialGradient>
<path id="path28461-2" inkscape:connector-curvature="0" inkscape:original-d="m 45.751683,165.03156 c 0.148121,1.38293 -0.722765,-0.12789 0.32709,0.8395 0.737626,0.67969 1.188342,0.87488 2.385083,1.94685 1.959822,1.75549 4.805452,4.52447 5.924734,5.70709 2.530665,2.67388 4.25369,6.2205 7.29931,8.28886 2.13682,1.45118 4.72798,2.32091 7.29406,2.61606 3.02752,0.34823 6.14043,-0.25456 9.08171,-1.05205 2.73494,-0.74154 5.29165,-2.06969 7.78216,-3.4214 4.73271,-2.56865 8.94397,-6.00268 13.51002,-8.85709 1.94342,-1.2149 4.5936,-1.64009 5.9076,-3.51792 0.64675,-0.92426 0.48709,-2.20604 0.63053,-3.32496 0.30275,-2.3615 2.00411,-5.29507 0.48247,-7.12617 -2.16974,-2.61101 -7.28872,-2.3478 -10.99221,-2.20062 -3.24156,0.12882 -5.00591,0.003 -7.97725,-0.019 -3.30834,-0.0249 -6.567,0.91785 -9.87428,1.00503 -3.77235,0.0994 -7.54565,-0.84918 -11.30754,-0.55139 -3.20265,0.25352 -6.46266,0.75368 -9.43282,1.97817 -2.87625,1.18578 -4.86499,4.13836 -7.83062,5.07853 -0.38836,0.12312 -0.84368,-0.10571 -1.2213,0.0472 -0.465286,0.18841 -0.808048,0.61301 -1.12133,1.00524 -0.370969,0.46445 -0.867417,1.55807 -0.867417,1.55807 z" inkscape:path-effect="#path-effect28463-4" sodipodi:nodetypes="csssaaaaaaasssaaaaaac" class="st17" d="
M-29.6,83.8C-29.6,83.8-29.6,83.9-29.6,83.8c0,0.1,0.1,0.1,0.1,0.2c0,0,0.1,0,0.1,0.1c0.2,0.1,0.3,0.3,0.5,0.4
c0.2,0.2,0.3,0.5,0.6,0.7c0.2,0.1,0.4,0.2,0.6,0.2c0.2,0,0.5,0,0.7-0.1c0.2-0.1,0.4-0.2,0.6-0.3c0.4-0.2,0.7-0.5,1.1-0.7
c0.1,0,0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.2-0.2c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.1-0.2-0.2
c-0.1,0-0.1-0.1-0.2-0.1c-0.2,0-0.3,0-0.5,0c-0.2,0-0.4,0-0.6,0c-0.3,0-0.5,0.1-0.8,0.1c-0.3,0-0.6,0-0.9,0c-0.1,0-0.3,0-0.4,0
c-0.1,0-0.3,0.1-0.4,0.1c-0.1,0.1-0.2,0.2-0.3,0.2c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0
c0,0,0,0,0,0C-29.5,83.7-29.5,83.8-29.6,83.8"/>
<g id="path28487-2" inkscape:connector-curvature="0" inkscape:original-d="m 60.55673,169.09742 c -0.54703,3.32203 1.69481,6.46443 4.3459,7.84743 1.79901,0.93849 4.37406,0.50871 6.05477,-0.62813 1.83031,-1.23803 3.82944,-3.78343 3.08901,-5.86538 -0.82717,-2.32586 -4.36847,-2.56115 -6.81338,-2.90215 -1.98628,-0.27703 -3.98503,-0.0399 -5.9692,0.75318" inkscape:path-effect="#path-effect28489-4" sodipodi:nodetypes="caaaac">
<path class="st18" d="M-28.4,84.1c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.2c0.2,0.1,0.3,0,0.5,0c0.1,0,0.2-0.1,0.2-0.2
c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0-0.1-0.1-0.1-0.1s-0.1-0.1-0.1-0.1c-0.1,0-0.2,0-0.3,0C-28,84-28.2,84-28.4,84.1"/>
</g>
<g id="path27476-7-8" inkscape:connector-curvature="0" inkscape:original-d="m 54.0663,156.67992 c -1.30783,0.90456 -2.63378,1.5275 -3.8975,2.56317 -0.50862,0.41682 -1.27325,1.02107 -1.68056,1.69557 -0.38744,0.64161 -0.43239,2.47023 -0.35577,3.37902 0.10441,1.23827 -0.32677,1.86745 0.15996,2.24367 0.71806,0.55501 0.67599,-0.0592 1.38427,0.53809 2.77439,2.3398 3.82947,3.52997 5.73299,4.28011 2.90807,1.14603 14.78647,1.87425 18.85639,1.62308 4.06992,-0.25116 3.55357,-1.03978 7.42544,-2.04356 4.59277,-1.19067 6.73031,-4.0403 10.11819,-6.02193 1.52563,-0.89236 2.63774,-2.4507 4.13251,-3.41525 1.6834,-1.08626 3.90896,-1.56172 4.20633,-2.20265 0.24218,-0.52198 0.54453,0.98536 0.62105,-0.56145 0.0481,-0.97172 -0.19251,-0.95848 -0.32105,-1.34977 -0.20335,-0.61905 -0.34383,-0.16792 -0.56895,-0.57756 -0.52065,-0.94742 -6.67755,-0.7807 -10.83577,-2.16305 -1.60884,-0.53484 -3.37054,-1.02294 -5.07175,-1.4773 -1.78609,-0.47703 -3.5509,-1.11316 -5.38903,-1.31044 -4.30244,-0.46177 -8.73445,-0.52844 -12.97748,0.32063 -4.04588,0.80962 -8.52533,2.39504 -11.53927,4.47962 z" inkscape:path-effect="#path-effect28273-54-7" sodipodi:nodetypes="ssssssssssssssssaaas">
<path class="st19" d="M-28.9,83.2c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0-0.1,0.1-0.1,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1
c0,0,0,0.1,0,0.1c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0.1,0s0,0,0.1,0c0.1,0,0.2,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.2
c0.2,0.2,0.5,0.2,0.7,0.2c0.3,0,0.5,0,0.8-0.1c0.2,0,0.4-0.1,0.6-0.2c0.3-0.1,0.6-0.3,0.8-0.5c0.1-0.1,0.2-0.2,0.3-0.3
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c-0.1-0.1-0.3-0.1-0.4-0.1
c-0.1,0-0.3,0-0.4,0c-0.1,0-0.3-0.1-0.4-0.1c-0.1,0-0.3-0.1-0.4-0.1c-0.3-0.1-0.7,0-1,0C-28.3,82.9-28.6,83-28.9,83.2"/>
</g>
<linearGradient id="path27476-4_1_" gradientUnits="userSpaceOnUse" x1="120.5221" y1="33.0923" x2="124.9544" y2="33.127" gradientTransform="matrix(1 0 0 -1 -150.0002 116.3622)">
<stop offset="0" style="stop-color:#AD780A"/>
<stop offset="0.1197" style="stop-color:#D89E08"/>
<stop offset="0.2551" style="stop-color:#EDB80B"/>
<stop offset="0.3919" style="stop-color:#EBC80D"/>
<stop offset="0.5274" style="stop-color:#F5D838"/>
<stop offset="0.7691" style="stop-color:#F6D811"/>
<stop offset="1" style="stop-color:#F5CD31"/>
</linearGradient>
<path id="path27476-4" inkscape:connector-curvature="0" inkscape:original-d="m 53.63941,152.15408 c -1.72343,1.65346 -3.47073,2.79213 -5.13602,4.68523 -0.67024,0.76192 -1.49036,2.17892 -2.02709,3.41185 -0.51056,1.17281 -0.7573,2.15773 -0.65633,3.06652 0.13759,1.23827 -0.43061,1.86745 0.21079,2.24367 0.94624,0.55501 0.8908,-0.0592 1.82416,0.53809 3.65601,2.3398 5.04637,3.52997 7.55477,4.28011 3.83218,1.14603 14.78647,1.87425 18.85639,1.62308 4.06992,-0.25116 3.55357,-1.03978 7.42544,-2.04356 4.59277,-1.19067 6.73031,-4.0403 10.11819,-6.02193 1.52563,-0.89236 2.63774,-2.45071 4.13251,-3.41525 0.95714,-0.61762 1.79052,-1.78779 2.89354,-2.15317 0.83694,-0.27725 1.93519,0.22703 2.74819,-0.0495 1.53471,-0.52198 3.45072,0.98536 3.93565,-0.56145 0.30463,-0.97172 -1.21998,-3.55757 -2.03449,-4.27281 -1.28865,-1.13157 -2.17893,-0.30695 -3.60551,-1.05573 -3.29939,-1.7318 -6.67755,-1.42704 -10.83577,-3.95385 -1.60884,-0.97764 -3.35028,-1.86082 -5.07175,-2.70037 -1.76687,-0.86171 -3.45734,-2.03073 -5.38903,-2.39536 -4.2551,-0.80319 -8.87065,-0.78681 -12.97748,0.58609 -4.58384,1.53237 -7.99448,4.37791 -11.96616,8.18832 z" inkscape:path-effect="#path-effect28273-44" sodipodi:nodetypes="cssssssssssssssssaaasc" class="st20" d="
M-28.9,82.8c-0.2,0.1-0.3,0.2-0.4,0.4c-0.1,0.1-0.1,0.2-0.2,0.3c0,0.1,0,0.2-0.1,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0
c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.1,0.3,0.1s0.2,0.1,0.3,0.2c0.2,0.1,0.5,0.2,0.7,0.2c0.3,0,0.5,0,0.8-0.1
c0.2,0,0.4-0.1,0.6-0.2c0.3-0.1,0.5-0.3,0.8-0.5c0.1-0.1,0.2-0.2,0.3-0.3c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1-0.1-0.1-0.2-0.1
c-0.1,0-0.2-0.1-0.3-0.1c-0.3-0.1-0.6-0.2-0.9-0.3c-0.1-0.1-0.3-0.1-0.4-0.2c-0.1-0.1-0.3-0.1-0.4-0.2c-0.3-0.1-0.7-0.1-1,0
C-28.4,82.3-28.7,82.5-28.9,82.8L-28.9,82.8"/>
<g id="path28357-7" inkscape:connector-curvature="0" inkscape:original-d="m 83.23853,153.07989 c -0.83393,-0.70454 -2.39138,-0.39122 -3.95147,0.28468 -1.5601,0.67591 -3.09977,2.31714 -4.53731,4.22977 -1.43754,1.91264 -3.41044,5.49785 -3.66755,7.27489 -0.25712,1.77703 -0.51151,1.98373 0.4805,2.62368 0.992,0.63995 1.8301,0.69055 4.29304,-0.94759 2.46294,-1.63813 6.85656,-8.34912 7.55957,-10.87877 0.70301,-2.52965 0.65715,-1.88212 -0.17678,-2.58666 z" inkscape:path-effect="#path-effect28384-7" sodipodi:nodetypes="zzzzzzzz">
<path class="st21" d="M-26.6,82.9C-26.6,82.9-26.7,82.8-26.6,82.9c-0.1-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2,0.1
c-0.1,0.1-0.3,0.2-0.4,0.3c-0.1,0.2-0.2,0.4-0.3,0.6c0,0,0,0.1,0,0.1s0,0.1,0,0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0
c0.1,0,0.1-0.1,0.2-0.1c0.3-0.2,0.5-0.5,0.6-0.9C-26.6,83.1-26.6,83-26.6,82.9C-26.6,82.9-26.6,82.9-26.6,82.9"/>
</g>
<g id="path28396-7" inkscape:connector-curvature="0" sodipodi:nodetypes="aaaaaaa" class="st22">
<radialGradient id="SVGID_7_" cx="-87.0594" cy="76.0623" r="0.2535" gradientTransform="matrix(1 0 0 -0.5833 59.9998 126.7933)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#3A2903"/>
<stop offset="0.5547" style="stop-color:#735208"/>
<stop offset="1" style="stop-color:#AC8C04"/>
</radialGradient>
<path class="st23" d="M-27.2,82.4c0,0.1,0.1,0,0.2,0.1c0,0,0.1,0.1,0.1,0.1c0.1,0,0.1,0,0.1-0.1c0-0.1-0.1-0.1-0.2-0.1
C-27,82.3-27.1,82.3-27.2,82.4C-27.2,82.4-27.3,82.4-27.2,82.4z"/>
</g>
<g id="path28398-7" inkscape:connector-curvature="0" sodipodi:nodetypes="asssa" class="st22">
<radialGradient id="SVGID_8_" cx="-88.201" cy="29.7824" r="0.1205" gradientTransform="matrix(1 0 0 -1.0751 59.9998 114.4597)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#3A2903"/>
<stop offset="0.5547" style="stop-color:#735208"/>
<stop offset="1" style="stop-color:#AC8C04"/>
</radialGradient>
<path class="st24" d="M-28.1,82.4c-0.1,0-0.2,0.1-0.1,0.2c0,0,0,0,0.1,0C-28.2,82.5-28.2,82.5-28.1,82.4
C-28.1,82.4-28.1,82.4-28.1,82.4z"/>
</g>
<g id="path28570-8" sodipodi:cx="243.29688" sodipodi:cy="158.28406" sodipodi:rx="2.608083" sodipodi:ry="2.328125" sodipodi:type="arc">
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="58.4942" y1="9.5593" x2="58.5285" y2="9.3435" gradientTransform="matrix(1.0956 0 0.1702 -1.5181 -90.7568 97.6444)">
<stop offset="0" style="stop-color:#F5CE2D"/>
<stop offset="1" style="stop-color:#D79B08"/>
</linearGradient>
<path class="st25" d="M-24.8,83.3c0,0.2-0.1,0.3-0.3,0.3c-0.1,0-0.2-0.1-0.2-0.3c0-0.2,0.1-0.3,0.3-0.3
C-24.9,83-24.8,83.1-24.8,83.3z"/>
</g>
</g>
<g>
<defs>
<path id="SVGID_10_" d="M-107.9,71.5c-0.1,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.2,0.4c-0.1,0.3-0.1,0.6,0,0.8
c0,0.3,0,0.5,0.1,0.7c0,0.1,0.1,0.2,0.2,0.3s0.2,0.2,0.3,0.2c0.1,0,0.2,0,0.4,0s0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.3,0.3-0.4
c0-0.2,0.1-0.3,0.1-0.5c0-0.2,0-0.4-0.1-0.6c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.1-0.2-0.1-0.3-0.2
C-107.7,71.5-107.8,71.5-107.9,71.5"/>
</defs>
<clipPath id="SVGID_11_">
<use xlink:href="#SVGID_10_" style="overflow:visible;"/>
</clipPath>
<radialGradient id="path29551-9_1_" cx="-218.8454" cy="271.8997" r="2.7868" gradientTransform="matrix(0.2014 -3.316079e-02 -3.065006e-02 -0.1862 -55.4472 115.3313)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#C8C8C8"/>
<stop offset="1" style="stop-color:#797978"/>
</radialGradient>
<path id="path29551-9" inkscape:connector-curvature="0" inkscape:original-d="m 50.39208,129.52717 c 5.72488,-2.01902 12.34972,-1.23742 18.208,0.35356 4.30268,1.16851 7.7277,4.45307 11.66726,6.54073 1.04782,0.55526 2.17323,2.21443 3.18198,1.59099 0.35087,-0.21685 0.0966,-0.83643 0,-1.23743 -0.66673,-2.76698 -2.60447,-5.06163 -3.88909,-7.6014 -0.77312,-1.5285 -1.10691,-3.36531 -2.2981,-4.5962 -7.82943,-8.09033 -18.68537,-13.74897 -29.69848,-16.08667 -6.64902,-1.41135 -13.92233,-0.67879 -20.32932,1.59099 -5.19202,1.83935 -12.53778,3.96668 -13.61181,9.36916 -1.06055,5.33467 4.85697,10.02899 8.88027,13.6891 4.04123,3.67642 9.09885,8.17338 14.53016,7.58306 5.77607,-0.62779 7.87981,-9.26347 13.35913,-11.19589 z" inkscape:path-effect="#path-effect29553-7" sodipodi:nodetypes="aaaaaaaaaaaaa" class="st26" d="
M-108.2,72c0.2-0.1,0.5-0.2,0.7-0.1s0.5,0.1,0.7,0.2c0.2,0,0.3,0.1,0.5,0.2c0.2,0.1,0.3,0.2,0.4,0.3c0,0,0,0.1,0,0.1
c0,0,0,0,0.1,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.6
c-0.1-0.1-0.1-0.2-0.2-0.4c-0.2-0.4-0.6-0.7-1-0.9c-0.4-0.2-0.9-0.3-1.3-0.3c-0.5,0-1.1,0-1.6,0.1c-0.2,0-0.5,0.1-0.7,0.2
c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.2,0.2,0.3c0.1,0.2,0.3,0.3,0.5,0.5
c0.2,0.1,0.3,0.3,0.5,0.4c0.1,0.1,0.2,0.1,0.3,0.1s0.2,0,0.3,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.2,0.2-0.2
C-108.5,72.3-108.4,72.2-108.2,72"/>
</g>
<path id="path29705-5-0" inkscape:connector-curvature="0" inkscape:original-d="m 66.1015,216.44951 c 5.14766,5.63479 9.90415,12.47181 11.14096,20.00305 1.95189,11.88535 -5.05988,23.58228 -6.56241,35.53274 -0.58686,4.66766 -2.89986,9.7988 -0.95215,14.08107 1.12328,2.46967 3.82952,4.35176 6.48184,4.92292 5.17406,1.1142 12.17329,2.41291 15.47656,-3.54776 6.1876,-11.16533 10.78761,-26.78642 9.63039,-38.64225 -0.92237,-9.44981 -3.93849,-18.61978 -7.87991,-27.40773 -2.86791,-6.39442 -6.25814,-12.5833 -9.79135,-18.52016 -3.50366,-5.88721 -8.34872,-10.94245 -13.34018,-15.63502 -6.46315,-6.07614 -12.62727,-17.98386 -21.27161,-15.99204 -5.58412,1.28669 -7.58494,9.57719 -7.83486,15.30218 -0.17557,4.02188 2.50878,7.71677 4.54639,11.18873 2.30327,3.92465 5.19673,7.56255 8.53596,10.65407 3.49947,3.23988 8.60383,4.53927 11.82037,8.0602 z" inkscape:path-effect="#path-effect29707-7-6" sodipodi:nodetypes="aaaaassssaaaaaa" class="st3" d="
M-100.8,79.6c0.5,0.4,0.8,1,0.9,1.6c0.1,0.5,0,1-0.1,1.4c-0.1,0.5-0.3,0.9-0.4,1.4c-0.1,0.2-0.1,0.4-0.2,0.5c0,0.2,0,0.4,0.1,0.6
c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.6,0c0.2-0.1,0.4-0.2,0.6-0.3c0.4-0.3,0.7-0.9,0.8-1.4c0.1-0.5,0.1-1.1,0-1.6
c-0.1-0.7-0.3-1.5-0.6-2.2c-0.2-0.5-0.4-1-0.8-1.5c-0.3-0.4-0.7-0.8-1-1.2c-0.2-0.3-0.4-0.6-0.7-0.9c-0.1-0.1-0.3-0.2-0.5-0.3
c-0.2-0.1-0.4-0.1-0.5,0c-0.2,0.1-0.4,0.3-0.5,0.5c-0.1,0.2-0.1,0.5-0.1,0.7c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.4,0.6,0.7,0.8
C-101.4,79.2-101.1,79.3-100.8,79.6"/>
<g>
<defs>
<path id="SVGID_12_" d="M-100.8,79.6c0.5,0.4,0.8,1,0.9,1.6c0.1,0.9-0.2,1.9-0.5,2.8c-0.1,0.2-0.1,0.4-0.2,0.5
c0,0.2,0,0.4,0.1,0.6c0.1,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.1,0.6,0c0.2-0.1,0.4-0.2,0.6-0.3c0.4-0.3,0.7-0.9,0.8-1.4
s0.1-1.1,0-1.6c-0.1-0.7-0.3-1.5-0.6-2.2c-0.2-0.5-0.4-1-0.8-1.5c-0.3-0.4-0.7-0.8-1-1.2c-0.2-0.3-0.4-0.6-0.7-0.9
c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.6,0c-0.1,0-0.2,0.1-0.3,0.2s-0.2,0.2-0.2,0.3c-0.1,0.2-0.1,0.5-0.1,0.7
c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.4,0.6,0.7,0.8C-101.4,79.2-101.1,79.3-100.8,79.6"/>
</defs>
<clipPath id="SVGID_13_">
<use xlink:href="#SVGID_12_" style="overflow:visible;"/>
</clipPath>
<g id="path29705-9" inkscape:connector-curvature="0" sodipodi:nodetypes="cssssssccsssscc" class="st27">
<path class="st28" d="M-101.9,78.8c0,0,0.1,0.1,0.1,0.1c0.3,0.2,0.4,0.5,0.7,0.7c0.5,0.4,1,1,1.1,1.7c0.1,0.5,0,0.7-0.1,1.3
s-0.5,1.3-0.6,1.9c-0.1,0.2,0.1,0.1,0.1,0.4c0,0.1,0,0.2,0,0.3c0,0,0,0,0-0.1c0-0.3,0.1-0.6,0.2-0.9c0.2-0.6,0.4-1.1,0.6-1.7
c0.2-0.6,0.1-1,0.1-1.5c-0.1-0.6-0.5-1.2-1-1.6C-101.1,79.2-101.5,79.1-101.9,78.8L-101.9,78.8z"/>
</g>
</g>
<g id="path4400-1" inkscape:connector-curvature="0" sodipodi:nodetypes="scccczzcs" class="st29">
<radialGradient id="SVGID_14_" cx="256.032" cy="55.9797" r="2.1495" gradientTransform="matrix(-0.8062 0 0 -0.7634 96.3988 121.7559)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#000000"/>
<stop offset="1" style="stop-color:#000000;stop-opacity:0.2489"/>
</radialGradient>
<path class="st30" d="M-109.3,78.5c0.1,0.1,0,0.5,1.8,0.3c0,0-0.3,0-0.6,0.1c-0.5,0.2-0.9,0.4-1.3,0.6c-0.3,0.2-0.6,0.6-0.9,0.8
c0,0,0.5-0.9,0.6-1.2c0.1-0.3,0-0.3,0.1-0.7c0.1-0.4,0.3-0.8,0.3-0.8S-109.5,78.2-109.3,78.5z"/>
</g>
<g id="path4400-2-8" inkscape:connector-curvature="0" sodipodi:nodetypes="zzczzaczzcz" class="st31">
<radialGradient id="SVGID_15_" cx="45.8611" cy="54.7376" r="2.1495" gradientTransform="matrix(1 0 0 -0.7634 -150.0002 121.7559)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#000000"/>
<stop offset="1" style="stop-color:#000000;stop-opacity:0.2489"/>
</radialGradient>
<path class="st32" d="M-103.4,78.4c-0.4,0.3-0.6,0.2-1.1,0.3c-0.5,0.1-1.7,0-1.7,0s0.2,0,0.6,0.1c0.4,0.1,1.2,0.1,1.7,0.3
s0.6,0.2,0.9,0.4c0.4,0.3,0.7,0.6,1.1,0.9c0,0,0-0.4-0.1-0.6s-0.6-0.7-0.7-1.1c-0.1-0.4-0.2-1.2-0.2-1.2S-103,78.1-103.4,78.4
L-103.4,78.4z"/>
</g>
<g id="path4491-9" inkscape:connector-curvature="0" inkscape:original-d="m -12.3301,194.04012 c 0,0 -0.18895,2.10823 -0.69695,4.34431 -0.3665,1.61325 -0.99282,2.8868 -1.7403,3.88945 -0.39443,0.52907 -1.0418,0.72797 -1.62069,0.97975 -2.25867,0.98236 -7.107978,2.01899 -7.107978,2.01899 0,0 1.970608,0.0819 2.935278,0.2682 1.20102,0.23198 2.49357,0.37942 3.51591,1.05104 0.56269,0.36966 0.99362,0.94651 1.29931,1.54636 0.60986,1.19672 0.80514,2.57764 0.97272,3.91031 0.2156,1.7146 0.033,5.18419 0.033,5.18419 0,0 0.30468,-2.31722 0.72,-3.39797 0.74429,-1.9368 1.80667,-3.77987 3.11974,-5.38642 0.524,-0.64112 1.1250901,-1.26403 1.8587601,-1.6479 2.19957,-1.15087 3.52381,-1.05422 7.23612,-1.76133 0,0 -5.69576,-0.73259 -7.19419,-2.23302 -0.93024,-0.93148 -2.0314901,-1.24056 -2.5797601,-2.90463 -0.81092,-2.46127 -0.75098,-5.86133 -0.75098,-5.86133 z" inkscape:path-effect="#path-effect4500-7" sodipodi:nodetypes="cssacaaaacaaacssc" class="st33">
<radialGradient id="SVGID_16_" cx="42.9896" cy="10.9937" r="0.8511" gradientTransform="matrix(1 0 0 -1.0692 -150.0002 91.3505)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#000000"/>
<stop offset="1" style="stop-color:#000000;stop-opacity:0.2489"/>
</radialGradient>
<path class="st34" d="M-106.9,77.8c0,0.1,0,0.2-0.1,0.3c0,0.1,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1
c-0.2,0.1-0.4,0.1-0.6,0.2c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0.1c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.1,0.2,0.1,0.3
c0,0.1,0,0.3,0,0.4c0-0.1,0-0.2,0.1-0.3c0.1-0.2,0.1-0.3,0.2-0.4c0,0,0.1-0.1,0.1-0.1c0.2-0.1,0.4-0.2,0.6-0.1
c-0.2,0-0.4-0.1-0.6-0.2c-0.1-0.1-0.2-0.1-0.2-0.2C-106.9,78.1-107,78-106.9,77.8"/>
</g>
<g id="path4542-7" inkscape:connector-curvature="0" inkscape:original-d="m -18.5,228.08093 c 0,0 -2.83319,7.63194 -2.52566,14.27665 0.36417,7.86841 -0.75232,13.84623 -0.84934,20.5046 -0.10408,7.14298 -0.578798,10.12831 0.0159,17.3737 0.31126,3.79246 2.55456,7.87467 2.55456,7.87467 0,0 0.37323,-1.90819 0.42239,-2.87583 0.23593,-4.64359 -0.68055,-10.28581 -0.61781,-13.93504 0.14017,-8.15326 0.96458,-16.28461 1.125,-24.4375 0.12316,-6.25934 -0.125,-18.78125 -0.125,-18.78125 z" inkscape:path-effect="#path-effect4582-3" sodipodi:nodetypes="cssscasacc" class="st35">
<path d="M-107.4,80.5c-0.1,0.4-0.2,0.7-0.2,1.1c0,0.5,0,1.1-0.1,1.6c0,0.5-0.1,0.9,0,1.4c0,0.2,0.1,0.4,0.2,0.6
c0-0.1,0-0.1,0-0.2c0-0.4,0-0.7,0-1.1c0-0.6,0.1-1.3,0.1-1.9C-107.4,81.5-107.4,81-107.4,80.5L-107.4,80.5"/>
</g>
<g id="path4596-3" inkscape:connector-curvature="0" sodipodi:nodetypes="asassa">
<path class="st28" d="M-103,75c-0.2,0.2,0.1,0.4,0.2,0.7c0.1,0.2,0.3,0.4,0.5,0.4c0.1,0,0.2-0.2,0.2-0.4c0-0.3-0.3-0.4-0.4-0.5
C-102.7,75.1-102.9,74.9-103,75z"/>
</g>
<g id="g17048" transform="translate(21,-9.0000017)">
<g id="path14483-7-4" inkscape:connector-curvature="0" inkscape:original-d="m 516.00562,331.8756 c 0.90859,1.59687 -1.57016,3.38773 -2.81579,4.73826 -2.74207,2.97299 -6.45099,4.90178 -9.89648,7.01985 -5.91373,3.63539 -12.61918,5.90302 -18.41964,9.71654 -3.88318,2.553 -7.32809,5.72221 -10.86016,8.74238 -3.0221,2.58411 -5.48201,5.87643 -8.83247,8.01771 -3.3519,2.1422 -7.0437,4.15414 -10.99061,4.6502 -4.78298,0.60114 -9.87221,-0.25577 -14.29898,-2.16416 -3.0947,-1.33413 -6.16113,-3.38144 -7.96301,-6.22931 -1.81288,-2.86525 -2.06093,-6.5375 -2.23266,-9.92375 -0.30734,-6.06031 1.36252,-12.0605 2.17848,-18.07349 0.67882,-5.00236 1.85312,-9.94325 2.26013,-14.97502 0.73946,-9.14185 -0.7797,-18.40771 0.3199,-27.51327 0.35468,-2.93704 -0.181,-6.65876 2.01238,-8.64398 2.0384,-1.84494 5.43058,-1.1212 8.17929,-1.06253 3.34492,0.0714 6.63224,0.95108 9.88917,1.71656 2.05612,0.48325 3.99816,1.41138 6.0722,1.81081 3.44031,0.66255 6.96573,1.06623 10.46739,0.95192 3.78516,-0.12356 7.43659,-1.79636 11.22363,-1.76474 1.55185,0.013 3.12359,0.28186 4.58649,0.79985 1.48266,0.52499 2.98786,1.20618 4.12281,2.29512 0.86547,0.83038 1.42933,1.95676 1.87872,3.06879 0.67163,1.66196 0.8942,3.4778 1.16703,5.24945 0.24238,1.57389 -0.1531,3.27141 0.41433,4.75933 1.83023,4.79924 5.57666,8.72712 9.22489,12.34277 1.74278,1.93455 4.03041,3.53404 6.16708,4.82839 2.26886,1.37444 4.3675,2.44991 5.46279,4.81597 0.65901,1.48517 -0.54371,3.76097 0.68307,4.82635 z" inkscape:transform-center-x="-21.512644" inkscape:transform-center-y="-26.916075" sodipodi:nodetypes="aaaaaaaaaaaaaaaaaaaaaaaacscaa" class="st33">
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="33.6822" y1="20.2833" x2="33.9723" y2="18.1185" gradientTransform="matrix(1.0269 0 0 -1 -156.1847 116.3622)">
<stop offset="0" style="stop-color:#000000"/>
<stop offset="1" style="stop-color:#000000;stop-opacity:0"/>
</linearGradient>
<path class="st36" d="M-118.6,96.6c0,0.1-0.1,0.2-0.2,0.3c-0.2,0.2-0.4,0.4-0.6,0.6c-0.4,0.3-0.8,0.5-1.2,0.9
c-0.2,0.2-0.5,0.5-0.7,0.7c-0.2,0.2-0.3,0.4-0.5,0.6c-0.2,0.2-0.4,0.3-0.7,0.4c-0.3,0.1-0.6,0.1-1,0c-0.2-0.1-0.4-0.1-0.6-0.3
c-0.1-0.2-0.2-0.4-0.2-0.6c0-0.4,0-0.8,0.1-1.2c0-0.3,0.1-0.7,0.1-1c0-0.6,0-1.2-0.1-1.8c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0.1-0.3
c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.3,0c0.2,0,0.4,0,0.7,0c0.1,0,0.3,0,0.4,0.1c0.2,0,0.5,0,0.7-0.1
c0.2-0.1,0.5-0.2,0.7-0.2c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0.1c0.1,0,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.2,0.1,0.3
c0,0.1,0,0.2,0,0.3c0,0.2,0.1,0.3,0.3,0.4c0.1,0.1,0.3,0.2,0.4,0.3c0.1,0.1,0.3,0.2,0.4,0.2c0.1,0,0.1,0.1,0.2,0.1
s0.1,0.1,0.2,0.2C-118.6,96.4-118.5,96.5-118.6,96.6L-118.6,96.6"/>
</g>
<g>
<defs>
<path id="SVGID_18_" d="M-117,96.9c-0.1,0.1-0.1,0.3-0.2,0.4c-0.2,0.2-0.5,0.4-0.8,0.6c-0.5,0.2-1,0.5-1.4,0.8
c-0.3,0.2-0.6,0.4-0.9,0.7c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.3-0.9,0.4c-0.4,0.1-0.8,0-1.1-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.5,0.1-0.9,0.2-1.4c0.1-0.4,0.1-0.8,0.2-1.2c0.1-0.7,0.1-1.4,0-2.2
c0-0.1,0-0.2,0-0.4c0-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.3,0c0.3,0,0.5,0.1,0.8,0.1
c0.2,0,0.3,0.1,0.5,0.1c0.3,0.1,0.5,0.1,0.8,0.1c0.3,0,0.6-0.1,0.9-0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0.1,0.3,0.2
c0.1,0.1,0.1,0.2,0.1,0.2c0.1,0.1,0.1,0.3,0.1,0.4c0,0.1,0,0.3,0,0.4c0,0.2,0.1,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.4,0.4
c0.2,0.1,0.3,0.3,0.5,0.4c0.1,0.1,0.2,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.2C-117,96.7-117,96.8-117,96.9L-117,96.9"/>
</defs>
<clipPath id="SVGID_19_">
<use xlink:href="#SVGID_18_" style="overflow:visible;"/>
</clipPath>
<linearGradient id="path14296-0_1_" gradientUnits="userSpaceOnUse" x1="126.9788" y1="16.4748" x2="130.7522" y2="22.5927" gradientTransform="matrix(1 0 0 -1 -250.0002 116.3622)">
<stop offset="0" style="stop-color:#3E2A06"/>
<stop offset="1" style="stop-color:#AD780A"/>
</linearGradient>
<path id="path14296-0" inkscape:connector-curvature="0" inkscape:original-d="m 516.00562,331.87559 c 0.90859,1.59687 -1.57016,3.38773 -2.81579,4.73826 -2.74207,2.97299 -6.45099,4.90178 -9.89648,7.01985 -5.91373,3.63539 -12.61918,5.90302 -18.41964,9.71654 -3.88318,2.553 -7.32809,5.72221 -10.86016,8.74238 -3.0221,2.58411 -5.48201,5.87643 -8.83247,8.01771 -3.3519,2.1422 -7.0437,4.15414 -10.99061,4.6502 -4.78298,0.60114 -9.87221,-0.25577 -14.29898,-2.16416 -3.0947,-1.33413 -6.16113,-3.38144 -7.96301,-6.22931 -1.81288,-2.86525 -2.06093,-6.5375 -2.23266,-9.92375 -0.30734,-6.06031 1.36252,-12.0605 2.17848,-18.07349 0.67882,-5.00236 1.85312,-9.94325 2.26013,-14.97502 0.73946,-9.14185 -0.7797,-18.40771 0.3199,-27.51327 0.35468,-2.93704 -0.181,-6.65876 2.01238,-8.64398 2.0384,-1.84494 5.43058,-1.1212 8.17929,-1.06253 3.34492,0.0714 6.63224,0.95108 9.88917,1.71656 2.05612,0.48325 3.99816,1.41138 6.0722,1.81081 3.44031,0.66255 6.96573,1.06623 10.46739,0.95192 3.78516,-0.12356 7.43659,-1.79636 11.22363,-1.76474 1.55185,0.013 3.12359,0.28186 4.58649,0.79985 1.48266,0.52499 2.98786,1.20618 4.12281,2.29512 0.86547,0.83038 1.42933,1.95676 1.87872,3.06879 0.67163,1.66196 0.8942,3.4778 1.16703,5.24945 0.24238,1.57389 -0.1531,3.27141 0.41433,4.75933 1.83023,4.79924 5.57666,8.72712 9.22489,12.34277 1.74278,1.93455 4.03041,3.53404 6.16708,4.82839 2.26886,1.37444 4.3675,2.44991 5.46279,4.81597 0.65901,1.48517 -0.54371,3.76097 0.68307,4.82635 z" inkscape:path-effect="#path-effect14300-7" sodipodi:nodetypes="aaaaaaaaaaaaaaaaaaaaaaaacscaa" class="st37" d="
M-117,96.9c-0.1,0.1-0.1,0.3-0.2,0.4c-0.2,0.2-0.5,0.4-0.8,0.6c-0.5,0.2-1,0.5-1.4,0.8c-0.3,0.2-0.6,0.4-0.9,0.7
c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.3-0.9,0.4c-0.4,0.1-0.8,0-1.1-0.2c-0.2-0.1-0.5-0.3-0.6-0.5c-0.1-0.2-0.2-0.5-0.2-0.8
c0-0.5,0.1-0.9,0.2-1.4c0.1-0.4,0.1-0.8,0.2-1.2c0.1-0.7,0.1-1.4,0-2.2c0-0.1,0-0.2,0-0.4c0-0.1,0.1-0.2,0.2-0.3
c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.3,0c0.3,0,0.5,0.1,0.8,0.1c0.2,0,0.3,0.1,0.5,0.1c0.3,0.1,0.5,0.1,0.8,0.1
c0.3,0,0.6-0.1,0.9-0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.2c0.1,0.1,0.1,0.3,0.1,0.4
c0,0.1,0,0.3,0,0.4c0,0.2,0.1,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.4,0.4c0.2,0.1,0.3,0.3,0.5,0.4c0.1,0.1,0.2,0.1,0.2,0.2
c0.1,0.1,0.1,0.1,0.2,0.2C-117,96.7-117,96.8-117,96.9L-117,96.9"/>
</g>
<g>
<defs>
<path id="SVGID_20_" d="M-117,96.9c-0.1,0.1-0.1,0.3-0.2,0.4c-0.2,0.2-0.5,0.4-0.8,0.6c-0.5,0.2-1,0.5-1.4,0.8
c-0.3,0.2-0.6,0.4-0.9,0.7c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.3-0.9,0.4c-0.4,0.1-0.8,0-1.1-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.5,0.1-0.9,0.2-1.4c0.1-0.4,0.1-0.8,0.2-1.2c0.1-0.7,0.1-1.4,0-2.2
c0-0.1,0-0.2,0-0.4c0-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.3,0c0.3,0,0.5,0.1,0.8,0.1
c0.2,0,0.3,0.1,0.5,0.1c0.3,0.1,0.5,0.1,0.8,0.1c0.3,0,0.6-0.1,0.9-0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0.1,0.3,0.2
c0.1,0.1,0.1,0.2,0.1,0.2c0.1,0.1,0.1,0.3,0.1,0.4c0,0.1,0,0.3,0,0.4c0,0.2,0.1,0.4,0.3,0.5c0.1,0.2,0.3,0.3,0.4,0.4
c0.2,0.1,0.3,0.3,0.5,0.4c0.1,0.1,0.2,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.2C-117,96.7-117,96.8-117,96.9L-117,96.9"/>
</defs>
<clipPath id="SVGID_21_">
<use xlink:href="#SVGID_20_" style="overflow:visible;"/>
</clipPath>
<g id="path14296-3-7" inkscape:connector-curvature="0" inkscape:original-d="m 512.89128,328.72435 c -0.32971,1.61954 -1.43391,3.04564 -2.57146,4.2598 -2.50413,2.67278 -5.89122,4.40681 -9.03774,6.31099 -5.40058,3.2683 -11.52419,5.30695 -16.82133,8.73539 -3.54623,2.2952 -6.69222,5.14439 -9.9178,7.85959 -2.75987,2.32317 -5.00633,5.28303 -8.06607,7.20809 -3.06104,1.92589 -6.4325,3.73466 -10.03693,4.18063 -4.36794,0.54044 -9.01558,-0.22995 -13.05822,-1.94562 -2.82617,-1.19941 -5.62652,-3.03999 -7.27205,-5.60029 -1.65557,-2.57592 -1.8821,-5.87735 -2.03893,-8.92166 -0.28067,-5.44835 1.24429,-10.84265 1.98945,-16.24846 0.61992,-4.49723 1.69233,-8.9392 2.06402,-13.46287 0.67529,-8.21873 -0.71205,-16.54892 0.29214,-24.73502 0.3239,-2.64046 -0.16529,-5.98638 1.83776,-7.77113 1.86152,-1.65864 4.95936,-1.008 7.46956,-0.95524 3.05467,0.0642 6.05674,0.85504 9.03106,1.54323 1.87772,0.43446 3.65124,1.26885 5.54531,1.62795 3.14178,0.59565 6.36129,0.95858 9.55911,0.8558 3.45671,-0.11108 6.79131,-1.61497 10.24974,-1.58654 1.41719,0.0117 2.85255,0.2534 4.1885,0.71908 1.35401,0.47199 2.7286,1.0844 3.76507,2.06337 0.79037,0.74652 1.3053,1.75917 1.7157,2.75891 0.61335,1.49413 0.90381,3.11575 1.06577,4.71936 0.16999,1.68319 -0.627,3.46414 -0.10594,5.07338 0.83498,2.57873 2.27856,4.92504 4.02315,7.06981 1.67725,2.06198 3.63272,3.93769 5.5931,5.65457 2.27474,1.99219 5.43558,2.71601 7.89508,4.46732 0.73195,0.52119 1.59274,0.99606 2.01814,1.78058 0.69876,1.28862 0.91539,2.90672 0.62379,4.33898 z" inkscape:path-effect="#path-effect14300-2-7" sodipodi:nodetypes="caaaaaaaaaaaaaaaaaaaaaasssaaac" class="st38">
<path class="st39" d="M-117.2,96.7c0,0.1-0.1,0.2-0.2,0.3c-0.2,0.2-0.4,0.4-0.7,0.5c-0.4,0.2-0.9,0.4-1.3,0.7
c-0.3,0.2-0.5,0.4-0.8,0.6c-0.2,0.2-0.4,0.4-0.6,0.6c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0.1-0.7,0-1-0.2c-0.2-0.1-0.4-0.2-0.6-0.4
c-0.1-0.2-0.2-0.5-0.2-0.7c0-0.4,0.1-0.9,0.2-1.3c0.1-0.4,0.1-0.7,0.2-1.1c0.1-0.6,0.1-1.3,0-1.9c0-0.1,0-0.2,0-0.3
s0.1-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1s0.2,0,0.3,0c0.2,0,0.5,0.1,0.7,0.1c0.1,0,0.3,0.1,0.4,0.1c0.2,0.1,0.5,0.1,0.8,0.1
c0.3,0,0.5-0.1,0.8-0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.1,0.1,0.2c0,0.1,0.1,0.2,0.1,0.4
c0,0.1,0,0.3,0,0.4c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0.2,0.3,0.3,0.4,0.4c0.2,0.1,0.4,0.2,0.6,0.4
c0.1,0,0.1,0.1,0.2,0.1C-117.2,96.4-117.2,96.6-117.2,96.7L-117.2,96.7"/>
</g>
</g>
<g>
<defs>
<path id="SVGID_22_" d="M-117,96.9c-0.1,0.1-0.1,0.3-0.2,0.4c-0.2,0.3-0.5,0.4-0.8,0.6c-0.5,0.2-1,0.5-1.4,0.8
c-0.3,0.2-0.6,0.4-0.9,0.7c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.3-0.9,0.4c-0.4,0.1-0.8,0-1.1-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.5,0.1-0.9,0.2-1.4c0.1-0.4,0.1-0.8,0.2-1.2c0.1-0.7,0.1-1.4,0-2.2
c0-0.1,0-0.2,0-0.4c0-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1s0.2,0,0.3,0c0.3,0,0.5,0.1,0.8,0.1c0.2,0,0.3,0.1,0.5,0.1
c0.3,0.1,0.5,0.1,0.8,0.1c0.3,0,0.6-0.1,0.9-0.1c0.1,0,0.2,0,0.4,0.1c0.1,0,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.2
c0.1,0.1,0.1,0.3,0.1,0.4c0,0.1,0,0.3,0,0.4c0,0.2,0.1,0.4,0.3,0.6c0.1,0.2,0.3,0.3,0.4,0.4c0.2,0.1,0.3,0.3,0.5,0.4
c0.1,0.1,0.2,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.2C-117,96.6-117,96.8-117,96.9L-117,96.9"/>
</defs>
<clipPath id="SVGID_23_">
<use xlink:href="#SVGID_22_" style="overflow:visible;"/>
</clipPath>
<g id="path14296-3-1-9" inkscape:connector-curvature="0" inkscape:original-d="m 508.79285,327.92545 c -0.29636,1.32737 -1.3157,2.51324 -2.31134,3.49133 -2.29002,2.24964 -5.13162,3.87855 -8.12349,5.1725 -4.84184,2.09404 -10.59305,2.0369 -15.49471,4.01618 -3.05157,1.23221 -5.63379,3.23956 -8.47914,4.81871 -2.29564,1.27407 -4.45463,2.79322 -6.93206,3.75622 -2.74042,1.06523 -5.6496,1.94708 -8.62582,2.17857 -3.70618,0.28826 -7.76598,0.459 -11.10283,-1.01388 -1.33982,-0.59139 -2.41204,-1.72007 -3.07596,-2.91839 -0.77968,-1.40725 -0.77962,-3.07996 -0.86243,-4.64917 -0.22355,-4.23633 1.02984,-8.45091 0.99617,-12.69186 -0.0293,-3.69111 -0.84765,-7.34711 -1.04231,-11.03419 -0.37398,-7.0834 -0.64984,-14.19332 -0.23989,-21.27287 0.12373,-2.13672 -0.82081,-4.98664 0.81301,-6.36923 1.40832,-1.19177 3.69422,0.0386 5.53048,0.21708 2.72563,0.26495 5.44405,0.70079 8.11748,1.26484 1.68777,0.35608 3.28189,1.03995 4.98436,1.33427 2.82396,0.48819 5.71779,0.78565 8.59212,0.70142 3.10703,-0.091 6.10431,-1.32363 9.21289,-1.30034 1.27382,0.01 2.56399,0.20769 3.76479,0.58936 1.21704,0.38684 2.45258,0.88877 3.38421,1.69114 0.71041,0.61185 1.17325,1.44181 1.54214,2.26121 0.5513,1.22459 0.81238,2.55367 0.95796,3.868 0.15279,1.37954 -0.49789,2.81974 -0.0953,4.15815 0.39044,1.29776 1.55489,2.29862 2.34088,3.44209 2.2099,3.21498 3.74455,7.03949 6.6776,9.61184 2.00118,1.75508 4.86545,2.20959 7.09642,3.66141 0.65045,0.42328 1.42513,0.78777 1.81399,1.45937 0.60132,1.03853 -0.35157,2.77654 0.56069,3.55624 2e-5,2e-5 9e-5,0 9e-5,0 z" inkscape:path-effect="#path-effect14300-2-2-0" sodipodi:nodetypes="caaaaaaaaaaaaaaaaaaaaaaaaaaaac" class="st40">
<path class="st41" d="M-117.3,96.5c-0.1,0.1-0.1,0.2-0.2,0.3c-0.2,0.2-0.5,0.4-0.7,0.5c-0.5,0.2-0.9,0.2-1.4,0.4
c-0.3,0.1-0.5,0.3-0.8,0.5c-0.2,0.1-0.4,0.3-0.6,0.4c-0.2,0.1-0.5,0.2-0.8,0.2c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0-0.5-0.1
c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.4,0.1-0.8,0.1-1.2c0-0.4-0.1-0.7-0.1-1.1c0-0.7,0.1-1.4,0-2.1
c0-0.1,0-0.2,0-0.3c0-0.1,0-0.1,0-0.2c0-0.1,0.1-0.1,0.1-0.1c0,0,0.1,0,0.1-0.1c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.2,0.1
c0.2,0.1,0.5,0.1,0.7,0.1c0.2,0,0.3,0.1,0.4,0.1c0.3,0.1,0.5,0.1,0.8,0.1c0.3,0,0.5-0.1,0.8-0.1c0.1,0,0.2,0,0.3,0.1
c0.1,0,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2
c0,0.1,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0.1,0.2,0.3,0.3,0.5c0.1,0.2,0.2,0.3,0.3,0.4c0.2,0.2,0.4,0.2,0.6,0.4
c0.1,0,0.1,0.1,0.2,0.1c0,0,0.1,0.1,0.1,0.2C-117.2,96.4-117.2,96.5-117.3,96.5L-117.3,96.5"/>
</g>
</g>
<g id="path16493" inkscape:connector-curvature="0">
<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="28.9528" y1="22.686" x2="28.8419" y2="21.6872" gradientTransform="matrix(1 0 0 -1 -150.0002 116.3622)">
<stop offset="0" style="stop-color:#F3CD0C"/>
<stop offset="1" style="stop-color:#F3CD0C;stop-opacity:0"/>
</linearGradient>
<path class="st42" d="M-123.2,93.7c0.3-0.1,0.5,0.1,0.7,0.3c0.1,0.1,0.3,0.1,0.4,0.1c0.2,0,0.5,0,0.7,0c0.5,0,1-0.2,1.4-0.2
c0.2,0,0.5,0,0.7,0.1c0.1,0.1,0.2,0.3,0.3,0.2c0-0.2-0.2-0.5-0.5-0.6c-0.2,0-0.4,0-0.6,0c-0.6,0-1.2-0.1-1.7-0.1
c-0.4,0-0.8,0-1.2,0C-123.1,93.5-123.1,93.6-123.2,93.7"/>
</g>
</g>
<g id="path15189-4" inkscape:connector-curvature="0" sodipodi:nodetypes="zzzzsz" class="st43">
<path class="st10" d="M-101,79.9c0.1,0,0.7,0.5,0.6,0.7c-0.1,0.2-0.2,0.1-0.3,0.1c-0.1,0-0.4,0.1-0.4,0c0-0.1,0.1-0.3,0.2-0.4
C-100.9,80.1-101.1,80-101,79.9L-101,79.9z"/>
</g>
<g id="path28767-9-3" inkscape:connector-curvature="0" sodipodi:nodetypes="aaaa" class="st29">
<path class="st10" d="M-109.1,76.9c0-0.1-0.2-0.1-0.2-0.1c-0.1,0-0.1,0.2-0.1,0.3C-109.3,77.2-109.1,77-109.1,76.9z"/>
</g>
<g id="g14955-4" transform="translate(21,-9.0000017)">
<g id="path29714-8-2" inkscape:connector-curvature="0" inkscape:original-d="m 71.48366,295.64014 c -3.03909,-3.54191 -9.19822,-1.59957 -13.76291,-2.57159 -2.04149,-0.43472 -4.0198,-1.18969 -6.08982,-1.45739 -2.11778,-0.27388 -4.37068,-0.79332 -6.40465,-0.14297 -2.14711,0.68652 -4.01341,-0.40651 -5.41915,4.04541 -1.06111,3.36046 -1.68036,8.0542 -1.54296,11.86969 0.12198,3.38745 0.89866,5.78784 2.43372,8.37372 1.01503,1.70984 3.17277,3.05661 5.06938,3.67497 3.26443,1.06434 6.87999,0.9445 10.13167,-0.17718 5.58422,-2.5803 10.34841,-6.58209 13.36879,-12.29857 1.00249,-1.9127 2.01077,-3.9367 2.38189,-6.16513 0.28036,-1.68349 0.95269,-3.84723 -0.16596,-5.15096 z" inkscape:path-effect="#path-effect29716-0-0" sodipodi:nodetypes="aaaasssaccaa" class="st44">
<radialGradient id="SVGID_25_" cx="38.5164" cy="-73.7903" r="1.322" gradientTransform="matrix(1.3082 0.3505 0.368 -1.3732 -144.3707 -20.1301)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#110800"/>
<stop offset="0.5907" style="stop-color:#A65A00;stop-opacity:0.8"/>
<stop offset="1" style="stop-color:#FF921E;stop-opacity:0"/>
</radialGradient>
<path class="st45" d="M-119.7,94.1c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0c-0.2,0-0.4,0.1-0.6,0c-0.2,0-0.3-0.1-0.5-0.1
c-0.2,0-0.3-0.1-0.5,0c-0.2,0-0.3,0.2-0.4,0.3c-0.1,0.1-0.1,0.3-0.1,0.5s0,0.3,0,0.5c0,0.1,0,0.2,0.1,0.3c0,0.1,0.1,0.2,0.1,0.3
c0.1,0.1,0.2,0.2,0.4,0.3c0.3,0.1,0.5,0.1,0.8,0c0.4-0.2,0.8-0.5,1-1c0.1-0.2,0.1-0.3,0.2-0.5c0-0.1,0-0.1,0-0.2
C-119.7,94.2-119.7,94.1-119.7,94.1"/>
</g>
<g id="path29714-8-3-0" inkscape:connector-curvature="0" inkscape:original-d="m 71.483661,295.64014 c -3.03909,-3.54191 -9.19822,-1.59957 -13.76291,-2.57159 -2.04149,-0.43472 -4.0198,-1.18969 -6.08982,-1.45739 -2.11778,-0.27388 -4.37068,-0.79332 -6.40465,-0.14297 -2.14711,0.68652 -4.01341,-0.40651 -5.41915,4.04541 -1.06111,3.36046 -1.68036,8.0542 -1.54296,11.86969 0.12198,3.38745 0.89866,5.78784 2.43372,8.37372 1.01503,1.70984 3.17277,3.05661 5.06938,3.67497 3.26443,1.06434 6.87999,0.9445 10.13167,-0.17718 5.58422,-2.5803 10.34841,-6.58209 13.36879,-12.29857 1.00249,-1.9127 2.01077,-3.9367 2.38189,-6.16513 0.28036,-1.68349 0.95269,-3.84723 -0.16596,-5.15096 z" inkscape:path-effect="#path-effect29716-0-8-3" sodipodi:nodetypes="aaaasssaccaa" class="st44">
<radialGradient id="SVGID_26_" cx="24.4739" cy="-23.8643" r="1.322" gradientTransform="matrix(1.3082 0.2534 0.368 -0.9927 -144.3707 64.5435)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#110800"/>
<stop offset="0.5907" style="stop-color:#A65A00;stop-opacity:0.8"/>
<stop offset="1" style="stop-color:#FF921E;stop-opacity:0"/>
</radialGradient>
<path class="st46" d="M-119.7,94c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.4,0-0.6,0c-0.2,0-0.3-0.1-0.5-0.1
c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0.1,0.2
c0,0.1,0.1,0.2,0.1,0.2c0.1,0.1,0.2,0.2,0.4,0.2c0.3,0.1,0.5,0.1,0.8,0c0.4-0.1,0.8-0.4,1-0.7c0.1-0.1,0.1-0.2,0.2-0.3
c0,0,0-0.1,0-0.1C-119.7,94.1-119.7,94-119.7,94"/>
</g>
</g>
<g id="g14884-8" transform="translate(21,-9.0000017)">
<path id="path29714-5-4" inkscape:connector-curvature="0" inkscape:original-d="m 76.1875,285.32775 c -2.36571,-3.81321 -7.59294,-4.9003 -11.805,-6.41698 -2.08672,-0.75138 -4.32322,-1.04333 -6.52782,-1.27734 -2.27612,-0.2416 -4.71593,-0.91505 -6.8653,-0.1253 -3.64566,1.33955 -7.24986,3.80684 -8.75671,7.70871 -1.13743,2.94527 -1.80122,7.05909 -1.65394,10.40316 0.13075,2.96891 0.9633,5.07273 2.60877,7.33912 1.08803,1.49859 3.40096,2.67896 5.43398,3.22092 3.49923,0.93284 7.37483,0.82779 10.86038,-0.1553 5.98587,-2.2615 11.09272,-5.76885 14.33034,-10.77903 1.07459,-1.67639 2.15539,-3.45031 2.5532,-5.4034 0.30053,-1.4755 0.61519,-3.23621 -0.1779,-4.51456 z" inkscape:path-effect="#path-effect29716-6-1" sodipodi:nodetypes="aaaasssaccaa" class="st3" d="
M-119.3,93.3c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.1-0.1-0.2-0.1c-0.2-0.1-0.4-0.1-0.5-0.1c-0.2,0-0.3-0.1-0.5-0.1
c-0.2,0-0.4,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.3,0.4c-0.1,0.3-0.2,0.5-0.1,0.8c0,0.2,0.1,0.4,0.2,0.6
c0.1,0.1,0.3,0.2,0.4,0.3c0.3,0.1,0.6,0.1,0.9,0c0.5-0.2,0.9-0.5,1.1-0.8c0.1-0.1,0.2-0.3,0.2-0.4
C-119.3,93.5-119.3,93.4-119.3,93.3"/>
<g>
<defs>
<path id="SVGID_27_" d="M-119.3,93.3c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.1-0.1-0.2-0.1c-0.2-0.1-0.4-0.1-0.5-0.1
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.4,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.2s-0.2,0.2-0.3,0.4c-0.1,0.3-0.2,0.5-0.1,0.8
c0,0.2,0.1,0.4,0.2,0.6c0.1,0.1,0.3,0.2,0.4,0.3c0.3,0.1,0.6,0.1,0.9,0c0.5-0.2,0.9-0.5,1.1-0.8c0.1-0.1,0.2-0.3,0.2-0.4
C-119.3,93.5-119.3,93.4-119.3,93.3"/>
</defs>
<clipPath id="SVGID_28_">
<use xlink:href="#SVGID_27_" style="overflow:visible;"/>
</clipPath>
<g id="path29714-3-9-9" inkscape:connector-curvature="0" class="st47">
<radialGradient id="SVGID_29_" cx="-400.4519" cy="399.2375" r="1.6117" gradientTransform="matrix(0.3603 0.1568 7.246786e-02 -0.1665 -4.4487 222.3401)" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#7C7C7C"/>
<stop offset="1" style="stop-color:#7C7C7C;stop-opacity:0.3294"/>
</radialGradient>
<path class="st48" d="M-121.2,92.6c0,0-0.1,0-0.1,0c-0.3,0-0.5,0.2-0.7,0.5c-0.1,0.2-0.1,0.4-0.1,0.6c0-0.1,0-0.3,0.1-0.4
c0.1-0.2,0.3-0.4,0.5-0.4c0.1,0,0.3,0,0.4,0c0.1,0,0.3,0,0.4,0.1c0.2,0,0.4,0.1,0.6,0.2c0,0,0.1,0.1,0.1,0.1s0.1,0.1,0.1,0.1
c0,0.1,0,0.1,0,0.2s-0.1,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.1c0.2,0,0.4-0.1,0.6-0.2c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.2,0-0.3
c0-0.1,0-0.1-0.1-0.2s-0.1-0.1-0.1-0.1c-0.2-0.1-0.5-0.2-0.7-0.3c-0.2,0-0.3-0.1-0.5-0.1C-120.9,92.6-121.1,92.6-121.2,92.6
L-121.2,92.6z"/>
</g>
</g>
<g>
<defs>
<path id="SVGID_30_" d="M-119.3,93.3c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.1-0.1-0.2-0.1c-0.2-0.1-0.4-0.1-0.5-0.1
c-0.2,0-0.3-0.1-0.5-0.1c-0.2,0-0.4,0-0.5,0c-0.2,0-0.3,0.1-0.4,0.2s-0.2,0.2-0.3,0.4c-0.1,0.3-0.2,0.5-0.1,0.8
c0,0.2,0.1,0.4,0.2,0.6c0.1,0.1,0.3,0.2,0.4,0.3c0.3,0.1,0.6,0.1,0.9,0c0.5-0.2,0.9-0.5,1.1-0.8c0.1-0.1,0.2-0.3,0.2-0.4
C-119.3,93.5-119.3,93.4-119.3,93.3"/>
</defs>
<clipPath id="SVGID_31_">
<use xlink:href="#SVGID_30_" style="overflow:visible;"/>
</clipPath>
<g id="path29714-3-9-3-8" inkscape:connector-curvature="0" class="st49">
<linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="28.5173" y1="23.1235" x2="28.7527" y2="23.1333" gradientTransform="matrix(1 0 0 -1 -150.0002 116.3622)">
<stop offset="0" style="stop-color:#7C7C7C"/>
<stop offset="1" style="stop-color:#7C7C7C;stop-opacity:0.3294"/>
</linearGradient>
<path class="st50" d="M-121.2,92.6c0,0-0.1,0-0.1,0c-0.3,0-0.5,0.2-0.7,0.5c-0.1,0.2-0.1,0.4-0.1,0.6c0-0.1,0-0.3,0.1-0.4
c0.1-0.2,0.3-0.4,0.5-0.4c0.1,0,0.3,0,0.4,0c0.1,0,0.3,0,0.4,0.1c0.2,0,0.4,0.1,0.6,0.2c0,0,0.1,0.1,0.1,0.1s0.1,0.1,0.1,0.1
c0,0.1,0,0.1,0,0.2s-0.1,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.1c0.2,0,0.4-0.1,0.6-0.2c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.2,0-0.3
c0-0.1,0-0.1-0.1-0.2s-0.1-0.1-0.1-0.1c-0.2-0.1-0.5-0.2-0.7-0.3c-0.2,0-0.3-0.1-0.5-0.1C-120.9,92.6-121.1,92.6-121.2,92.6
L-121.2,92.6z"/>
</g>
</g>
</g>
<g id="g15037-4" transform="translate(21,-9.0000017)">
<path id="path14967-1-0" inkscape:connector-curvature="0" inkscape:original-d="m -61.50184,184.42468 c 0,0 -5.54376,6.53277 -8.33445,10.43446 -2.7907,3.9017 -5.73652,6.64881 -8.58729,10.75139 -2.85076,4.10259 -7.36482,9.43164 -9.44912,13.93045 -2.08429,4.49881 -2.32047,9.0356 -4.26498,13.84932 -1.94451,4.81371 -3.70129,10.64183 -5.97071,15.33612 -2.26943,4.69429 -5.37093,9.68473 -6.93891,13.53553 -1.56799,3.8508 -3.81119,5.72384 -4.10782,10.22071 -0.29663,4.49686 -0.57747,8.31749 3.77151,16.77227 4.34898,8.45478 17.23626,22.00721 24.24176,27.92472 7.00549,5.9175 9.39133,7.22492 14.60245,8.52595 5.21112,1.30104 13.85627,2.9981 16.72874,-1.2702 2.87246,-4.26829 2.27191,-5.96483 -0.74863,-10.66616 -3.02055,-4.70132 -4.82469,-5.30209 -9.79642,-9.57343 -4.97172,-4.27133 -18.63696,-14.87266 -22.68212,-19.23996 -4.04516,-4.36729 -7.10731,-3.41164 -5.53019,-6.28412 1.57712,-2.87249 -2.20738,-4.00856 -2.65783,-7.69253 -0.76361,-6.24511 0.9436,-18.71046 1.45958,-22.13343 0.51598,-3.42296 1.22371,-2.92446 3.51815,-8.03965 2.29444,-5.11519 4.12424,-8.62435 7.04933,-13.46723 2.92509,-4.84289 8.62493,-10.12787 11.15147,-15.27803 2.52654,-5.15017 3.50393,-10.72068 4.36185,-15.31831 0.85792,-4.59763 2.18363,-12.31787 2.18363,-12.31787 z" inkscape:path-effect="#path-effect14972-2-2" sodipodi:nodetypes="czzzzzzzzzzzzzzzszzzzzc" class="st3" d="
M-130.1,85.3c-0.2,0.3-0.4,0.5-0.7,0.8c-0.2,0.3-0.4,0.6-0.7,0.8c-0.3,0.3-0.6,0.7-0.7,1.1c-0.2,0.3-0.2,0.7-0.3,1.1
c-0.1,0.4-0.3,0.8-0.5,1.2c-0.2,0.4-0.4,0.7-0.5,1.1c-0.1,0.3-0.3,0.5-0.3,0.8c0,0.2,0,0.5,0,0.7c0.1,0.2,0.1,0.4,0.3,0.6
c0.4,0.9,1.1,1.6,1.9,2.2c0.4,0.3,0.7,0.5,1.1,0.7c0.2,0.1,0.4,0.2,0.7,0.2c0.1,0,0.2,0,0.4-0.1s0.2-0.1,0.3-0.2
c0.1-0.1,0.1-0.3,0.1-0.4s-0.1-0.3-0.2-0.4c-0.2-0.3-0.5-0.5-0.8-0.8c-0.6-0.5-1.2-1-1.8-1.5c-0.2-0.1-0.3-0.3-0.4-0.5
c-0.1-0.2-0.2-0.4-0.2-0.6c-0.1-0.6-0.1-1.2,0.1-1.7c0.1-0.2,0.2-0.4,0.3-0.6c0.2-0.4,0.3-0.7,0.6-1.1c0.3-0.4,0.6-0.8,0.9-1.2
c0.2-0.4,0.3-0.8,0.3-1.2C-130.2,86-130.2,85.7-130.1,85.3"/>
<g>
<defs>
<path id="SVGID_33_" d="M-130.2,85.4c-0.2,0.3-0.4,0.5-0.6,0.8c-0.2,0.3-0.4,0.6-0.7,0.8c-0.3,0.3-0.6,0.7-0.7,1.1
c-0.2,0.3-0.2,0.7-0.3,1.1c-0.1,0.4-0.3,0.8-0.5,1.2c-0.2,0.4-0.4,0.7-0.5,1.1c-0.1,0.3-0.3,0.5-0.3,0.8c0,0.2,0,0.5,0,0.7
c0.1,0.2,0.1,0.4,0.3,0.6c0.4,0.9,1.1,1.6,1.9,2.2c0.4,0.3,0.7,0.5,1.1,0.7c0.2,0.1,0.4,0.2,0.7,0.2c0.1,0,0.2,0,0.4-0.1
c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.1-0.3,0.1-0.4s-0.1-0.3-0.2-0.4c-0.2-0.3-0.5-0.5-0.8-0.8c-0.6-0.5-1.2-1-1.8-1.5
c-0.2-0.1-0.3-0.3-0.4-0.5c-0.1-0.2-0.2-0.4-0.2-0.6c-0.1-0.6-0.1-1.2,0.1-1.7c0.1-0.2,0.2-0.4,0.3-0.6
c0.2-0.4,0.3-0.7,0.6-1.1c0.3-0.4,0.6-0.8,0.9-1.2c0.2-0.4,0.3-0.8,0.3-1.2C-130.3,86-130.2,85.7-130.2,85.4"/>
</defs>
<clipPath id="SVGID_34_">
<use xlink:href="#SVGID_33_" style="overflow:visible;"/>
</clipPath>
<g id="path15007-0" inkscape:connector-curvature="0" inkscape:original-d="m 232.33049,224.26954 c -1.81005,2.05515 -3.0096,3.31357 -5.95338,7.31823 -2.95599,4.02128 -5.17965,11.14462 -6.17809,14.28882 -0.98641,3.1131 -2.83359,7.8009 -3.32662,11.05622 -0.49303,3.25532 0.25493,8.98869 -0.83296,11.73556 -1.08788,2.74687 -3.73298,3.14402 -3.73298,3.14402 0,0 3.38312,2.30694 5.33532,3.86539 1.9522,1.55845 1.25313,4.32419 2.79609,4.85091 1.54296,0.52672 4.54513,4.41776 7.06011,5.25756 2.71529,0.90669 4.92126,-1.27475 5.76541,-1.84225 -5.78987,-19.78198 -2.98725,-28.87509 5.15013,-53.80008 1.25232,-4.05236 -0.37075,-6.29764 -0.0538,-6.59883 0.31694,-0.30119 -4.21917,-1.33071 -6.02921,0.72445 z" inkscape:path-effect="#path-effect15017-9" sodipodi:nodetypes="csczzczzsccczc" class="st51">
<path class="st10" d="M-131.4,88.5c-0.2,0.2-0.3,0.4-0.5,0.6c-0.2,0.3-0.3,0.7-0.5,1.1c-0.1,0.3-0.2,0.6-0.3,0.9
c0,0.2,0,0.3,0,0.5c0,0.2,0,0.3-0.1,0.5c-0.1,0.1-0.2,0.2-0.3,0.2c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.1,0.1,0.3,0.2,0.4
c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.2,0.1,0.3,0.1c0.2,0,0.3,0,0.5-0.1c-0.2-1.4,0-2.9,0.4-4.2c0-0.1,0.1-0.2,0.1-0.3
s0-0.2-0.1-0.3c0,0-0.1-0.1-0.1-0.1c0,0-0.1,0-0.1,0s-0.1,0-0.1,0.1C-131.4,88.4-131.4,88.4-131.4,88.5L-131.4,88.5"/>
</g>
</g>
</g>
<g>
<defs>
<path id="SVGID_35_" d="M-112.3,83.9c0.1-0.1,0.3-0.1,0.4,0c0.1,0,0.3,0.1,0.4,0.2c0.2,0.2,0.4,0.4,0.6,0.6c0.4,0.5,0.7,1,1,1.6
c0.3,0.4,0.5,0.9,0.8,1.3c0.2,0.3,0.4,0.5,0.6,0.8c0.2,0.3,0.4,0.6,0.5,0.9c0.1,0.4,0.1,0.9-0.1,1.3c-0.1,0.3-0.4,0.5-0.6,0.7
s-0.6,0.2-0.9,0.2c-0.5,0-0.9-0.3-1.4-0.4c-0.9-0.4-1.9-0.5-2.8-0.8c-0.3-0.1-0.6-0.2-0.9-0.3c-0.1,0-0.3-0.1-0.4-0.1
c-0.1-0.1-0.2-0.1-0.3-0.3c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1,0-0.2,0.1-0.3c0.1-0.2,0.2-0.4,0.3-0.6c0.1-0.3,0.1-0.7,0.1-1
c0-0.3-0.1-0.7-0.1-1c0-0.2,0-0.3,0-0.5s0.1-0.3,0.2-0.4c0.1-0.1,0.2-0.2,0.4-0.2c0.1,0,0.3,0,0.4,0c0.1,0,0.3,0,0.4,0
c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.1-0.2,0.2-0.3
C-112.6,84.1-112.5,84-112.3,83.9"/>
</defs>
<clipPath id="SVGID_36_">
<use xlink:href="#SVGID_35_" style="overflow:visible;"/>
</clipPath>
<g id="g14180-6" transform="translate(-219,-9.0000017)" class="st52">
<linearGradient id="path4635-1_1_" gradientUnits="userSpaceOnUse" x1="185.1526" y1="21.6077" x2="188.8983" y2="15.3234" gradientTransform="matrix(1 0 0 -1 -80.0002 116.3622)">
<stop offset="0" style="stop-color:#B98309"/>
<stop offset="1" style="stop-color:#382605"/>
</linearGradient>
<path id="path4635-1" inkscape:connector-curvature="0" inkscape:original-d="m 137.57703,281.0191 c 6.32494,-1.3585 11.99755,4.87308 16.86679,9.13228 6.42572,5.62067 -8.54781,26.01622 13.24488,19.8293 5.86081,-1.66388 6.89528,11.31183 10.16415,16.45304 4.09971,6.44793 11.58575,13.6827 13.65231,21.03883 1.58383,5.63779 1.34339,10.90606 -1.62666,15.95302 -3.57124,6.06857 -11.7907,10.42929 -18.78877,11.20919 -5.73056,0.63864 -11.87822,-3.8351 -17.38362,-5.54906 -12.31617,-3.83432 -23.77946,-5.82074 -36.09666,-9.65174 -2.50091,-0.77785 -8.28361,-2.638 -10.96988,-3.42629 -4.51043,-1.3236 -6.46556,-0.99271 -8.72046,-4.76819 -2.68251,-4.49147 0.68051,-9.72669 3.16379,-14.79408 4.06995,-8.30524 1.91195,-17.82603 0.46203,-25.51057 -0.92235,-4.8884 -0.66071,-7.92707 2.7425,-10.79139 4.99476,-4.20385 14.53027,-1.53186 20.35272,-4.08305 5.82246,-2.55119 6.66365,-13.6939 12.93688,-15.04129 z" inkscape:path-effect="#path-effect4669-1" sodipodi:nodetypes="ssssssssssssssss" class="st53" d="
M106.7,92.9c0.1-0.1,0.3-0.1,0.4,0c0.1,0,0.3,0.1,0.4,0.2c0.2,0.2,0.4,0.4,0.6,0.6c0.4,0.5,0.7,1,1,1.6c0.3,0.4,0.5,0.9,0.8,1.3
c0.2,0.3,0.4,0.5,0.6,0.8c0.2,0.3,0.4,0.6,0.5,0.9c0.1,0.4,0.1,0.9-0.1,1.3c-0.1,0.3-0.4,0.5-0.6,0.7s-0.6,0.2-0.9,0.2
c-0.5,0-0.9-0.3-1.4-0.4c-0.9-0.4-1.9-0.5-2.8-0.8c-0.3-0.1-0.6-0.2-0.9-0.3c-0.1,0-0.3-0.1-0.4-0.1c-0.1-0.1-0.2-0.1-0.3-0.3
c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1,0-0.2,0.1-0.3c0.1-0.2,0.2-0.4,0.3-0.6c0.1-0.3,0.1-0.7,0.1-1s-0.1-0.7-0.1-1
c0-0.2,0-0.3,0-0.5c0-0.1,0.1-0.3,0.2-0.4c0.1-0.1,0.2-0.2,0.4-0.2c0.1,0,0.3,0,0.4,0s0.3,0,0.4,0c0.1,0,0.3,0,0.4-0.1
c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.1-0.2,0.2-0.3C106.4,93.1,106.5,93,106.7,92.9"/>
<g id="path13596-6" inkscape:connector-curvature="0">
<path class="st54" d="M106.9,93.1c0.1,0,0.2-0.1,0.4,0s0.2,0.1,0.3,0.2c0.2,0.2,0.3,0.4,0.5,0.6c0.3,0.5,0.6,1,0.9,1.5
c0.2,0.4,0.4,0.8,0.7,1.2c0.2,0.2,0.4,0.5,0.6,0.7s0.3,0.5,0.4,0.8c0.1,0.4,0.1,0.8-0.1,1.1c-0.1,0.2-0.3,0.5-0.6,0.6
c-0.2,0.1-0.5,0.2-0.8,0.2c-0.4,0-0.8-0.2-1.3-0.4c-0.8-0.3-1.7-0.3-2.5-0.6c-0.3-0.1-0.6-0.2-0.9-0.3c-0.1,0-0.3-0.1-0.4-0.1
c-0.1-0.1-0.2-0.1-0.3-0.2c0-0.1-0.1-0.2-0.1-0.3c0-0.1,0-0.2,0.1-0.3c0.1-0.2,0.2-0.4,0.3-0.5c0.1-0.3,0.1-0.6,0.1-0.9
c0-0.3-0.1-0.6-0.1-0.9c0-0.1,0-0.3,0-0.4c0-0.1,0.1-0.3,0.2-0.4c0.1-0.1,0.2-0.2,0.4-0.2c0.1,0,0.3,0,0.4,0c0.1,0,0.3,0,0.4,0
c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3s0.1-0.2,0.2-0.4c0-0.1,0.1-0.2,0.2-0.4C106.6,93.3,106.7,93.2,106.9,93.1"/>
</g>
<g id="path4635-2-4" inkscape:connector-curvature="0" inkscape:original-d="m 138.7532,281.23531 c 5.41543,-1.6348 10.39595,5.08652 14.23153,9.24438 4.91429,5.32718 6.52275,12.96596 10.33791,19.12824 2.76884,4.47225 6.16086,8.87233 9.08155,12.90479 3.66304,5.05738 6.7128,13.02461 8.45639,19.50682 1.33629,4.96802 1.13343,9.61041 -1.37244,14.05779 -3.0131,5.34762 -10.16907,7.60542 -15.85228,8.25963 -4.65388,0.53571 -9.64647,-3.21701 -14.11748,-4.65475 -10.00213,-3.21635 -13.66301,-2.75358 -25.73435,-6.1187 -2.45098,-0.68327 -8.11826,-2.31721 -10.7509,-3.00963 -4.4204,-1.16265 -6.33652,-0.872 -8.5464,-4.18837 -2.62896,-3.94526 0.66692,-8.54385 3.10064,-12.99502 3.98871,-7.29527 -1.14215,-13.98168 -2.35808,-20.00898 -0.77349,-3.83418 -0.55407,-6.21753 2.29991,-8.46413 4.18868,-3.29726 18.06887,-1.20151 22.37138,-3.20251 4.30252,-2.001 1.73881,-18.31205 8.85262,-20.45956 z" inkscape:path-effect="#path-effect4669-4-3" sodipodi:nodetypes="aaassssssssssssa">
<path class="st55" d="M106.7,92.9c0.1-0.1,0.2-0.1,0.4,0c0.1,0,0.2,0.1,0.3,0.2c0.2,0.2,0.3,0.4,0.4,0.6c0.3,0.5,0.5,1,0.8,1.5
c0.2,0.3,0.5,0.7,0.7,1c0.3,0.5,0.6,1,0.7,1.5c0.1,0.4,0.1,0.8-0.1,1.1c-0.1,0.2-0.3,0.4-0.5,0.5c-0.2,0.1-0.5,0.2-0.7,0.1
c-0.4,0-0.7-0.2-1.1-0.4c-0.6-0.2-1.4-0.3-2-0.5c-0.3-0.1-0.6-0.2-0.8-0.2c-0.1,0-0.3,0-0.4-0.1c-0.1,0-0.2-0.1-0.3-0.2
c0-0.1-0.1-0.2-0.1-0.3s0-0.2,0.1-0.3c0.1-0.2,0.2-0.3,0.2-0.5c0.1-0.2,0-0.5,0-0.8c-0.1-0.3-0.1-0.5-0.2-0.8
c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.3-0.2,0.4-0.2c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0,0.4-0.1
c0.1-0.1,0.2-0.2,0.2-0.4c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0-0.3,0.1-0.4S106.6,92.9,106.7,92.9"/>
</g>
<g id="path4792-8" inkscape:connector-curvature="0" sodipodi:nodetypes="cssscsssc">
<linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="189.8346" y1="18.4491" x2="191.0138" y2="16.2295" gradientTransform="matrix(1 0 0 -1 -80.5305 114.5944)">
<stop offset="0" style="stop-color:#EBC40C"/>
<stop offset="1" style="stop-color:#EBC40C;stop-opacity:0"/>
</linearGradient>
<path class="st56" d="M108.1,94.1c0.2,0.4,0.3,0.8,0.5,1.2c0.2,0.3,0.4,0.7,0.6,1c0.1,0.1,0.3,0.4,0.5,0.7
c0.2,0.3,0.4,0.7,0.5,0.9c-0.1-0.2-0.2-0.6-0.3-0.9c-0.1-0.3-0.3-0.5-0.4-0.6c-0.2-0.3-0.4-0.6-0.6-0.9
C108.6,95,108.4,94.5,108.1,94.1L108.1,94.1z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 78 KiB

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#7483B5;}
.st2{fill:#FFFFFF;}
</style>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.4L49.5,30.9h-33L0,43.4L16.5,56h33L66,43.4z"/>
<g>
<path class="st1" d="M20.8,44.3c-1.5,0-2.7-1.2-2.7-2.7v-37c0-1.5,1.2-2.7,2.7-2.7h24.3c1.5,0,2.7,1.2,2.7,2.7v37
c0,1.5-1.2,2.7-2.7,2.7H20.8z M24.9,14.5c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z M24.9,8
c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z"/>
<path class="st2" d="M45.2,2.8c1,0,1.7,0.8,1.7,1.7v37c0,1-0.8,1.7-1.7,1.7H20.8c-1,0-1.7-0.8-1.7-1.7v-37c0-1,0.8-1.7,1.7-1.7
H45.2 M24.9,10.9h16.3c1.1,0,2-0.9,2-2s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,10.9,24.9,10.9 M24.9,17.5h16.3c1.1,0,2-0.9,2-2
s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,17.5,24.9,17.5 M45.2,0.8H20.8c-2.1,0-3.7,1.7-3.7,3.7v37c0,2.1,1.7,3.7,3.7,3.7h24.3
c2.1,0,3.7-1.7,3.7-3.7v-37C48.9,2.5,47.3,0.8,45.2,0.8L45.2,0.8z"/>
</g>
<g>
<path class="st2" d="M31.2,32.7c0-1,0.1-1.7,0.3-2.2c0.2-0.6,0.8-1.1,1.6-1.7c0.4-0.3,0.7-0.6,0.8-0.9c0.2-0.3,0.3-0.7,0.3-1.2
c0-0.7-0.2-1.2-0.6-1.5c-0.3-0.2-0.7-0.4-1.2-0.4c-0.8,0-1.3,0.3-1.7,0.8c-0.2,0.4-0.4,0.9-0.4,1.4v0h-2.6c0-1.5,0.5-2.7,1.5-3.5
c0.8-0.7,1.8-1,3-1c1.1,0,2,0.2,2.8,0.6c1.3,0.7,2,1.8,2,3.5c0,0.8-0.2,1.5-0.6,2.1c-0.3,0.5-0.9,1-1.7,1.6
c-0.4,0.3-0.7,0.6-0.9,0.9c-0.2,0.3-0.3,0.8-0.3,1.5H31.2z M33.9,36.6h-2.7v-2.7h2.7V36.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#7483B5;}
.st2{fill:#FFFFFF;}
.st3{fill:#00ADEF;}
</style>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.4L49.5,30.9h-33L0,43.4L16.5,56h33L66,43.4z"/>
<g>
<path class="st1" d="M20.8,44.3c-1.5,0-2.7-1.2-2.7-2.7v-37c0-1.5,1.2-2.7,2.7-2.7h24.3c1.5,0,2.7,1.2,2.7,2.7v37
c0,1.5-1.2,2.7-2.7,2.7H20.8z M24.9,14.5c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z M24.9,8
c-0.5,0-1,0.4-1,1c0,0.5,0.4,1,1,1h16.3c0.5,0,1-0.4,1-1c0-0.5-0.4-1-1-1H24.9z"/>
<path class="st2" d="M45.2,2.8c1,0,1.7,0.8,1.7,1.7v37c0,1-0.8,1.7-1.7,1.7H20.8c-1,0-1.7-0.8-1.7-1.7v-37c0-1,0.8-1.7,1.7-1.7
H45.2 M24.9,10.9h16.3c1.1,0,2-0.9,2-2s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,10.9,24.9,10.9 M24.9,17.5h16.3c1.1,0,2-0.9,2-2
s-0.9-2-2-2H24.9c-1.1,0-2,0.9-2,2S23.8,17.5,24.9,17.5 M45.2,0.8H20.8c-2.1,0-3.7,1.7-3.7,3.7v37c0,2.1,1.7,3.7,3.7,3.7h24.3
c2.1,0,3.7-1.7,3.7-3.7v-37C48.9,2.5,47.3,0.8,45.2,0.8L45.2,0.8z"/>
</g>
<path class="st3" d="M22.9,22.7l8.3-1.1l0,8l-8.3,0L22.9,22.7L22.9,22.7z M31.1,30.5l0,8l-8.3-1.1l0-6.9L31.1,30.5L31.1,30.5z
M32.1,21.4l11-1.6v9.6l-11,0.1V21.4L32.1,21.4z M43.1,30.6l0,9.6l-11-1.6l0-8.1L43.1,30.6z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#BFA361;}
</style>
<g>
<g>
<path class="st0" d="M44.9,52.5H21.3l-12-9l12-9h23.6l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M17.3,42.2c-1.6,0-2.8-1.3-2.8-2.9V16.9c0-1.6,1.3-2.9,2.8-2.9h31.3c1.6,0,2.9,1.3,2.9,2.9v22.4
c0,1.6-1.3,2.9-2.9,2.9H17.3z"/>
<path class="st1" d="M48.7,15.1c1,0,1.8,0.8,1.8,1.8v22.4c0,1-0.8,1.8-1.8,1.8H17.3c-1,0-1.8-0.8-1.8-1.8V16.9
c0-1,0.8-1.8,1.8-1.8L48.7,15.1 M48.7,13.1H17.3c-2.1,0-3.8,1.7-3.8,3.8v22.4c0,2.1,1.7,3.8,3.8,3.8h31.3c2.1,0,3.8-1.7,3.8-3.8
V16.9C52.5,14.8,50.8,13.1,48.7,13.1L48.7,13.1z"/>
</g>
<g>
<path class="st2" d="M17.3,42.2c-1.6,0-2.8-1.3-2.8-2.9V16.9c0-1.6,1.3-2.9,2.8-2.9h31.3c1.6,0,2.9,1.3,2.9,2.9v22.4
c0,1.6-1.3,2.9-2.9,2.9H17.3z M47.1,38.7c0.1,0.1,0.3,0.2,0.5,0.2s0.3-0.1,0.4-0.2c0.3-0.2,0.3-0.6,0-0.9L35.6,24.6l12.3-6.1
c0.2-0.1,0.3-0.2,0.3-0.4s0-0.3,0-0.5c-0.1-0.2-0.3-0.4-0.6-0.4c-0.1,0-0.2,0-0.3,0.1L33,24.4l-14.3-7.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.2,0-0.5,0.1-0.6,0.4c-0.2,0.3,0,0.7,0.3,0.8l12.3,6.1L18,37.8c-0.2,0.3-0.2,0.7,0,0.9c0.1,0.1,0.2,0.2,0.3,0.2
c0.1,0,0.2-0.1,0.3-0.2l13-13.5l1.1,0.6c0.1,0,0.2,0.1,0.3,0.1s0.2,0,0.3-0.1l1.1-0.6L47.1,38.7z"/>
<path class="st1" d="M48.7,15.1c1,0,1.8,0.8,1.8,1.8v22.4c0,1-0.8,1.8-1.8,1.8H17.3c-1,0-1.8-0.8-1.8-1.8V16.9
c0-1,0.8-1.8,1.8-1.8L48.7,15.1 M18.3,39.9c0.4,0,0.7-0.2,1-0.5l12.5-13l0.5,0.2c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l0.5-0.2
l12.2,13c0.3,0.3,0.8,0.5,1.2,0.5s0.8-0.1,1.1-0.4c0.7-0.6,0.7-1.6,0.1-2.3L37.2,24.9l11-5.5c0.8-0.4,1.1-1.4,0.7-2.2
c-0.3-0.6-0.9-0.9-1.5-0.9c-0.2,0-0.5,0.1-0.7,0.2L33,23.3l-13.8-6.8c-0.2-0.1-0.5-0.2-0.7-0.2c-0.6,0-1.2,0.3-1.5,0.9
c-0.4,0.8-0.1,1.8,0.7,2.2l11,5.5L17.2,37.1c-0.6,0.7-0.6,1.7,0.1,2.3C17.6,39.7,18,39.9,18.3,39.9 M48.7,13.1H17.3
c-2.1,0-3.8,1.7-3.8,3.8v22.4c0,2.1,1.7,3.8,3.8,3.8h31.3c2.1,0,3.8-1.7,3.8-3.8V16.9C52.5,14.8,50.8,13.1,48.7,13.1L48.7,13.1z"
/>
</g>
</g>
<g>
<g>
<path class="st1" d="M18.8,38.3c-0.6,0-1-0.4-1-1v-9.2c0-0.6,0.4-1,1-1h1.9c0.6,0,1,0.4,1,1v9.2c0,0.6-0.4,1-1,1H18.8z"/>
<path class="st2" d="M20.7,28.1v9.2h-1.9v-9.2H20.7 M20.7,26.1h-1.9c-1.1,0-2,0.9-2,2v9.2c0,1.1,0.9,2,2,2h1.9c1.1,0,2-0.9,2-2
v-9.2C22.7,27,21.8,26.1,20.7,26.1L20.7,26.1z"/>
</g>
<g>
<path class="st1" d="M29.2,38.3c-0.4,0-0.7-0.2-0.8-0.5c-0.2,0.3-0.5,0.5-0.8,0.5h-1.8c-0.3,0-0.7-0.2-0.8-0.5
c-0.2,0.3-0.5,0.5-0.8,0.5h-1.7c-0.6,0-1-0.4-1-1v-9.2c0-0.6,0.4-1,1-1H25c0.5,0,0.9,0.3,1,0.8l0.6,2.7l0.6-2.7
c0.1-0.5,0.5-0.8,1-0.8H31c0.6,0,1,0.4,1,1v9.2c0,0.6-0.4,1-1,1H29.2z"/>
<path class="st2" d="M31,28.1v9.2h-1.7v-7.1l-1.7,7.1h-1.8l-1.6-7.1h0v7.1h-1.7v-9.2H25l1.6,6.9h0l1.6-6.9H31 M31,26.1h-2.7
c-0.6,0-1.2,0.3-1.6,0.8c-0.4-0.5-1-0.8-1.6-0.8h-2.7c-1.1,0-2,0.9-2,2v9.2c0,1.1,0.9,2,2,2H24c0.3,0,0.6-0.1,0.8-0.2
c0.3,0.1,0.5,0.2,0.8,0.2h1.8c0.3,0,0.6-0.1,0.8-0.2c0.3,0.1,0.5,0.2,0.8,0.2H31c1.1,0,2-0.9,2-2v-9.2C33,27,32.1,26.1,31,26.1
L31,26.1z"/>
</g>
<g>
<path class="st1" d="M38.3,38.3c-0.4,0-0.8-0.3-1-0.7L37,36.4h-1.9l-0.4,1.2c-0.1,0.4-0.5,0.7-0.9,0.7h-2c-0.3,0-0.6-0.2-0.8-0.4
c-0.2-0.3-0.2-0.6-0.1-0.9l3.2-9.2c0.1-0.4,0.5-0.7,0.9-0.7h2.2c0.4,0,0.8,0.3,0.9,0.7l3.2,9.2c0.1,0.3,0.1,0.6-0.1,0.9
s-0.5,0.4-0.8,0.4H38.3z"/>
<path class="st2" d="M37.2,28.1l3.2,9.2h-2l-0.6-1.9h-3.4l-0.6,1.9h-2l3.2-9.2H37.2 M34.9,33.8h2.3l-1.1-3.6h0L34.9,33.8
M37.2,26.1H35c-0.8,0-1.6,0.5-1.9,1.3l-3.2,9.2c-0.2,0.6-0.1,1.3,0.3,1.8c0.4,0.5,1,0.8,1.6,0.8h2c0.9,0,1.6-0.6,1.9-1.4l0.2-0.5
h0.5l0.2,0.5c0.3,0.8,1,1.4,1.9,1.4h2c0.6,0,1.3-0.3,1.6-0.8c0.4-0.5,0.5-1.2,0.3-1.8L39,27.5C38.8,26.7,38,26.1,37.2,26.1
L37.2,26.1z"/>
</g>
<g>
<path class="st1" d="M41.3,38.3c-0.6,0-1-0.4-1-1v-9.2c0-0.6,0.4-1,1-1h4c1.1,0,2.1,0.4,2.8,1.1c0.7,0.7,1,1.7,1,2.8
c0,0.8-0.2,1.6-0.7,2.3c-0.7,1.1-1.8,1.6-3.2,1.6h-1.1v2.3c0,0.6-0.4,1-1,1H41.3z M44.8,31.4c0.2,0,0.3,0,0.4-0.1c0,0,0,0,0,0
c0,0,0-0.1,0-0.4c0-0.1,0-0.2,0-0.2c0,0,0,0,0,0c0,0-0.2-0.1-0.6-0.1h-0.4v0.7H44.8z"/>
<path class="st2" d="M45.3,28.1c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8C47,33.6,46.3,34,45.2,34h-2.1
v3.3h-1.9v-9.2H45.3 M43.2,32.4h1.7c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1c-0.3-0.2-0.7-0.3-1.2-0.3
h-1.4V32.4 M45.3,26.1h-4c-1.1,0-2,0.9-2,2v9.2c0,1.1,0.9,2,2,2h1.9c1.1,0,2-0.9,2-2V36h0.1c1.7,0,3.1-0.7,4-2.1
c0.6-0.9,0.8-1.8,0.9-2.8c0-1.5-0.4-2.6-1.3-3.6C48.2,26.9,47.1,26.1,45.3,26.1L45.3,26.1z"/>
</g>
</g>
<g>
<g>
<rect x="18.8" y="28.1" class="st1" width="1.9" height="9.2"/>
</g>
<g>
<polygon class="st1" points="26.7,35.1 26.7,35.1 25,28.1 22.3,28.1 22.3,37.3 24,37.3 24,30.2 24.1,30.2 25.7,37.3 27.5,37.3
29.2,30.2 29.2,37.3 31,37.3 31,28.1 28.3,28.1 "/>
</g>
<g>
<path class="st1" d="M35,28.1l-3.2,9.2h2l0.6-1.9h3.4l0.6,1.9h2l-3.2-9.2H35z M34.9,33.8l1.2-3.6h0l1.1,3.6H34.9z"/>
</g>
<g>
<path class="st1" d="M47.3,28.9c-0.5-0.5-1.2-0.8-2-0.8h-4v9.2h1.9V34h2.1c1,0,1.8-0.4,2.3-1.2c0.3-0.5,0.5-1.1,0.5-1.8
C48.1,30.2,47.8,29.5,47.3,28.9z M46,31.9c-0.2,0.4-0.6,0.6-1.2,0.6h-1.7v-2.7h1.4c0.6,0,1,0.1,1.2,0.3c0.3,0.2,0.4,0.5,0.4,1
C46.2,31.4,46.2,31.7,46,31.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#BFA361;}
.st3{fill:#BFA361;stroke:#FFFFFF;stroke-width:4;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<g>
<g>
<path class="st0" d="M44.9,52.5H21.3l-12-9l12-9h23.6l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M17.3,42.2c-1.6,0-2.8-1.3-2.8-2.9V16.9c0-1.6,1.3-2.9,2.8-2.9h31.3c1.6,0,2.9,1.3,2.9,2.9v22.4
c0,1.6-1.3,2.9-2.9,2.9H17.3z"/>
<path class="st1" d="M48.7,15.1c1,0,1.8,0.8,1.8,1.8v22.4c0,1-0.8,1.8-1.8,1.8H17.3c-1,0-1.8-0.8-1.8-1.8V16.9
c0-1,0.8-1.8,1.8-1.8L48.7,15.1 M48.7,13.1H17.3c-2.1,0-3.8,1.7-3.8,3.8v22.4c0,2.1,1.7,3.8,3.8,3.8h31.3c2.1,0,3.8-1.7,3.8-3.8
V16.9C52.5,14.8,50.8,13.1,48.7,13.1L48.7,13.1z"/>
</g>
<g>
<path class="st2" d="M17.3,42.2c-1.6,0-2.8-1.3-2.8-2.9V16.9c0-1.6,1.3-2.9,2.8-2.9h31.3c1.6,0,2.9,1.3,2.9,2.9v22.4
c0,1.6-1.3,2.9-2.9,2.9H17.3z M47.1,38.7c0.1,0.1,0.3,0.2,0.5,0.2s0.3-0.1,0.4-0.2c0.3-0.2,0.3-0.6,0-0.9L35.6,24.6l12.3-6.1
c0.2-0.1,0.3-0.2,0.3-0.4s0-0.3,0-0.5c-0.1-0.2-0.3-0.4-0.6-0.4c-0.1,0-0.2,0-0.3,0.1L33,24.4l-14.3-7.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.2,0-0.5,0.1-0.6,0.4c-0.2,0.3,0,0.7,0.3,0.8l12.3,6.1L18,37.8c-0.2,0.3-0.2,0.7,0,0.9c0.1,0.1,0.2,0.2,0.3,0.2
c0.1,0,0.2-0.1,0.3-0.2l13-13.5l1.1,0.6c0.1,0,0.2,0.1,0.3,0.1s0.2,0,0.3-0.1l1.1-0.6L47.1,38.7z"/>
<path class="st1" d="M48.7,15.1c1,0,1.8,0.8,1.8,1.8v22.4c0,1-0.8,1.8-1.8,1.8H17.3c-1,0-1.8-0.8-1.8-1.8V16.9
c0-1,0.8-1.8,1.8-1.8L48.7,15.1 M18.3,39.9c0.4,0,0.7-0.2,1-0.5l12.5-13l0.5,0.2c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l0.5-0.2
l12.2,13c0.3,0.3,0.8,0.5,1.2,0.5s0.8-0.1,1.1-0.4c0.7-0.6,0.7-1.6,0.1-2.3L37.2,24.9l11-5.5c0.8-0.4,1.1-1.4,0.7-2.2
c-0.3-0.6-0.9-0.9-1.5-0.9c-0.2,0-0.5,0.1-0.7,0.2L33,23.3l-13.8-6.8c-0.2-0.1-0.5-0.2-0.7-0.2c-0.6,0-1.2,0.3-1.5,0.9
c-0.4,0.8-0.1,1.8,0.7,2.2l11,5.5L17.2,37.1c-0.6,0.7-0.6,1.7,0.1,2.3C17.6,39.7,18,39.9,18.3,39.9 M48.7,13.1H17.3
c-2.1,0-3.8,1.7-3.8,3.8v22.4c0,2.1,1.7,3.8,3.8,3.8h31.3c2.1,0,3.8-1.7,3.8-3.8V16.9C52.5,14.8,50.8,13.1,48.7,13.1L48.7,13.1z"
/>
</g>
</g>
<g>
<path class="st3" d="M23.5,37.3h-1.9v-9.2h4c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8
c-0.5,0.8-1.3,1.2-2.3,1.2h-2.1V37.3z M25.1,32.4c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4v2.7H25.1z"/>
<path class="st3" d="M30.8,28.7c0.7-0.5,1.6-0.8,2.6-0.8c1,0,1.8,0.3,2.6,0.8c1.1,0.8,1.7,2.2,1.7,4c0,1.9-0.6,3.2-1.7,4
c-0.7,0.5-1.6,0.8-2.6,0.8c-1,0-1.8-0.3-2.6-0.8c-1.1-0.8-1.7-2.2-1.7-4C29.1,30.9,29.7,29.5,30.8,28.7z M31.8,35.3
c0.4,0.4,0.9,0.6,1.6,0.6c0.6,0,1.1-0.2,1.6-0.6c0.6-0.5,0.8-1.4,0.8-2.5c0-1.1-0.3-2-0.8-2.6c-0.4-0.4-0.9-0.6-1.6-0.6
c-0.6,0-1.2,0.2-1.6,0.6c-0.5,0.6-0.8,1.4-0.8,2.6C31,33.9,31.3,34.7,31.8,35.3z"/>
<path class="st3" d="M40.8,37.3h-1.9v-9.2h4c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8
c-0.5,0.8-1.3,1.2-2.3,1.2h-2.1V37.3z M42.4,32.4c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4v2.7H42.4z"/>
</g>
<g>
<path class="st2" d="M23.5,37.3h-1.9v-9.2h4c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8
c-0.5,0.8-1.3,1.2-2.3,1.2h-2.1V37.3z M25.1,32.4c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4v2.7H25.1z"/>
<path class="st2" d="M30.8,28.7c0.7-0.5,1.6-0.8,2.6-0.8c1,0,1.8,0.3,2.6,0.8c1.1,0.8,1.7,2.2,1.7,4c0,1.9-0.6,3.2-1.7,4
c-0.7,0.5-1.6,0.8-2.6,0.8c-1,0-1.8-0.3-2.6-0.8c-1.1-0.8-1.7-2.2-1.7-4C29.1,30.9,29.7,29.5,30.8,28.7z M31.8,35.3
c0.4,0.4,0.9,0.6,1.6,0.6c0.6,0,1.1-0.2,1.6-0.6c0.6-0.5,0.8-1.4,0.8-2.5c0-1.1-0.3-2-0.8-2.6c-0.4-0.4-0.9-0.6-1.6-0.6
c-0.6,0-1.2,0.2-1.6,0.6c-0.5,0.6-0.8,1.4-0.8,2.6C31,33.9,31.3,34.7,31.8,35.3z"/>
<path class="st2" d="M40.8,37.3h-1.9v-9.2h4c0.9,0,1.5,0.3,2,0.8c0.5,0.5,0.7,1.2,0.7,2.2c0,0.6-0.2,1.2-0.5,1.8
c-0.5,0.8-1.3,1.2-2.3,1.2h-2.1V37.3z M42.4,32.4c0.6,0,1-0.2,1.2-0.6c0.1-0.2,0.2-0.5,0.2-0.9c0-0.5-0.1-0.8-0.4-1
c-0.3-0.2-0.7-0.3-1.2-0.3h-1.4v2.7H42.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#BFA361;}
.st3{fill:#BFA361;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{font-family:'H2gtrE';}
.st5{font-size:12px;}
.st6{letter-spacing:-1;}
</style>
<g>
<g>
<path class="st0" d="M44.9,52.5H21.3l-12-9l12-9h23.6l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M17.3,42.2c-1.6,0-2.8-1.3-2.8-2.9V16.9c0-1.6,1.3-2.9,2.8-2.9h31.3c1.6,0,2.9,1.3,2.9,2.9v22.4
c0,1.6-1.3,2.9-2.9,2.9H17.3z"/>
<path class="st1" d="M48.7,15.1c1,0,1.8,0.8,1.8,1.8v22.4c0,1-0.8,1.8-1.8,1.8H17.3c-1,0-1.8-0.8-1.8-1.8V16.9
c0-1,0.8-1.8,1.8-1.8L48.7,15.1 M48.7,13.1H17.3c-2.1,0-3.8,1.7-3.8,3.8v22.4c0,2.1,1.7,3.8,3.8,3.8h31.3c2.1,0,3.8-1.7,3.8-3.8
V16.9C52.5,14.8,50.8,13.1,48.7,13.1L48.7,13.1z"/>
</g>
<g>
<path class="st2" d="M17.3,42.2c-1.6,0-2.8-1.3-2.8-2.9V16.9c0-1.6,1.3-2.9,2.8-2.9h31.3c1.6,0,2.9,1.3,2.9,2.9v22.4
c0,1.6-1.3,2.9-2.9,2.9H17.3z M47.1,38.7c0.1,0.1,0.3,0.2,0.5,0.2s0.3-0.1,0.4-0.2c0.3-0.2,0.3-0.6,0-0.9L35.6,24.6l12.3-6.1
c0.2-0.1,0.3-0.2,0.3-0.4s0-0.3,0-0.5c-0.1-0.2-0.3-0.4-0.6-0.4c-0.1,0-0.2,0-0.3,0.1L33,24.4l-14.3-7.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.2,0-0.5,0.1-0.6,0.4c-0.2,0.3,0,0.7,0.3,0.8l12.3,6.1L18,37.8c-0.2,0.3-0.2,0.7,0,0.9c0.1,0.1,0.2,0.2,0.3,0.2
c0.1,0,0.2-0.1,0.3-0.2l13-13.5l1.1,0.6c0.1,0,0.2,0.1,0.3,0.1s0.2,0,0.3-0.1l1.1-0.6L47.1,38.7z"/>
<path class="st1" d="M48.7,15.1c1,0,1.8,0.8,1.8,1.8v22.4c0,1-0.8,1.8-1.8,1.8H17.3c-1,0-1.8-0.8-1.8-1.8V16.9
c0-1,0.8-1.8,1.8-1.8L48.7,15.1 M18.3,39.9c0.4,0,0.7-0.2,1-0.5l12.5-13l0.5,0.2c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l0.5-0.2
l12.2,13c0.3,0.3,0.8,0.5,1.2,0.5s0.8-0.1,1.1-0.4c0.7-0.6,0.7-1.6,0.1-2.3L37.2,24.9l11-5.5c0.8-0.4,1.1-1.4,0.7-2.2
c-0.3-0.6-0.9-0.9-1.5-0.9c-0.2,0-0.5,0.1-0.7,0.2L33,23.3l-13.8-6.8c-0.2-0.1-0.5-0.2-0.7-0.2c-0.6,0-1.2,0.3-1.5,0.9
c-0.4,0.8-0.1,1.8,0.7,2.2l11,5.5L17.2,37.1c-0.6,0.7-0.6,1.7,0.1,2.3C17.6,39.7,18,39.9,18.3,39.9 M48.7,13.1H17.3
c-2.1,0-3.8,1.7-3.8,3.8v22.4c0,2.1,1.7,3.8,3.8,3.8h31.3c2.1,0,3.8-1.7,3.8-3.8V16.9C52.5,14.8,50.8,13.1,48.7,13.1L48.7,13.1z"
/>
</g>
</g>
<g>
<text transform="matrix(1 0 0 1 16.5002 37.3333)" class="st3 st4 st5 st6">SMTP</text>
</g>
<g>
<text transform="matrix(1 0 0 1 16.5002 37.3333)" class="st2 st4 st5 st6">SMTP</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#AEC07E;}
.st2{fill:#FFFFFF;}
.st3{fill:#BBE6FB;}
.st4{fill:#373535;}
.st5{fill:#1287B1;}
.st6{fill:#373535;fill-opacity:0.35;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<path class="st1" d="M33,46.3c-9,0-15.8-3-15.8-6.9V10.7c0-4,6.8-6.9,15.8-6.9s15.8,3,15.8,6.9v28.7C48.8,43.3,42,46.3,33,46.3z
M33.3,8.4c-6.4,0-9.7,1.6-9.8,2.2c0.1,0.6,3.4,2.1,9.8,2.1s9.7-1.6,9.8-2.2C43,10,39.7,8.4,33.3,8.4z"/>
<path class="st2" d="M33,4.7c8.2,0,14.8,2.7,14.8,5.9v28.7c0,3.3-6.6,5.9-14.8,5.9s-14.8-2.7-14.8-5.9V10.7
C18.2,7.4,24.8,4.7,33,4.7 M33.3,13.7c6,0,10.8-1.4,10.8-3.1s-4.8-3.1-10.8-3.1s-10.8,1.4-10.8,3.1S27.3,13.7,33.3,13.7 M33,2.7
c-8.3,0-16.8,2.7-16.8,7.9v28.7c0,5.2,8.4,7.9,16.8,7.9s16.8-2.7,16.8-7.9V10.7C49.8,5.5,41.3,2.7,33,2.7L33,2.7z M25.3,10.6
c1.4-0.5,4.2-1.1,8-1.1s6.6,0.6,8,1.1c-1.4,0.5-4.2,1.1-8,1.1S26.7,11.1,25.3,10.6L25.3,10.6z"/>
</g>
<path class="st3" d="M42,24.8c0.2,2.5-3.7,4.9-8.8,5.3s-9.4-1.2-9.6-3.7s3.7-4.9,8.8-5.3C37.5,20.7,41.8,22.3,42,24.8"/>
<path class="st2" d="M32.6,21.4c-1.9,0-4.2,0.7-5.9,1.5c-0.2,0.5-0.3,1-0.3,1.6c0,3,2.7,5.4,6,5.4s6-2.4,6-5.4
c0-0.9-0.3-1.8-0.7-2.6C36.3,21.6,34.5,21.4,32.6,21.4"/>
<path class="st2" d="M32.4,21.4c-1.1-0.1-2.9,0.5-4.5,1c-0.2,0.5-0.4,1.2-0.4,1.8c0,2.6,2.4,4.7,4.8,4.7c2.5,0,4.7-2.1,4.8-4.7
c0.1-0.8-0.2-1.6-0.6-2.3C35.1,21.6,33.4,21.4,32.4,21.4"/>
<path class="st4" d="M29.7,23.9c0.1-0.3,0.3-0.4,0.5-0.7c0-0.1-0.1-0.3-0.1-0.3c0-0.3,0.2-0.5,0.5-0.5c0.1,0,0.1,0,0.2,0
c0.9-0.7,2-1,3.2-0.7c0.1,0,0.2,0.1,0.3,0.1c-1.1-0.2-2.4,0.3-3.3,1c0,0.1,0.1,0.2,0.1,0.3c0,0.3-0.2,0.4-0.5,0.4
c-0.1,0-0.1,0-0.2,0c-0.2,0.3-0.4,0.8-0.6,1.1c0.5,0.4,0.9,0.6,1.5,0.8c0,0,0-0.1,0-0.1c0-0.9,0.8-1.6,1.7-1.6
c0.8,0,1.4,0.6,1.6,1.3c0.4-0.3,0.8-0.4,1.1-0.8c-0.1-0.1-0.1-0.3-0.1-0.4c0-0.3,0.2-0.5,0.5-0.5c0,0,0.1,0,0.1,0
c0.1-0.3,0.3-0.6,0.3-1c-1.4-1-4.1-0.9-4.1-0.9s-2.1-0.1-3.6,0.6C29,22.7,29.3,23.3,29.7,23.9"/>
<path class="st4" d="M36.3,23.5c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.2-0.1,0.4-0.4,0.4c0,0-0.1,0-0.1,0c-0.3,0.5-0.8,1.1-1.3,1.4
c0.7,0.1,1.4,0.4,1.9,0.8c0.4-0.7,0.7-1.7,0.7-2.6c0-0.7-0.3-1.1-0.7-1.5C36.6,22.7,36.4,23.2,36.3,23.5 M30.5,27.9
c0.2-0.7,0.8-1.2,1.4-1.6c-0.1-0.1-0.2-0.4-0.3-0.5c-0.7-0.2-1.3-0.6-1.7-1.1c0,0,0,0,0,0c-0.1,0.4-0.1,0.8-0.1,1.2
c0.3,0.1,0.6,0.3,0.6,0.7c0,0.2-0.2,0.5-0.3,0.6C30.2,27.5,30.3,27.7,30.5,27.9"/>
<path class="st4" d="M30.4,28.5c-0.3-0.3-0.5-0.8-0.7-1.2c0,0-0.1,0-0.1,0c-0.4,0-0.8-0.3-0.7-0.7c0-0.2,0.2-0.3,0.4-0.5
c-0.1-0.4-0.1-1,0-1.5c0-0.1,0.1-0.2,0.1-0.3c-0.4-0.6-0.7-1.4-0.7-2.2V22c-0.7,0.4-1.3,0.9-1.3,1.8C27.6,25.8,28.7,27.7,30.4,28.5
L30.4,28.5 M34.6,25.7c-0.2,0.6-0.8,1.1-1.5,1.1c-0.4,0-0.7-0.1-1-0.3c-0.6,0.4-1.1,1.2-1.3,1.9c0.1,0.1,0.2,0.2,0.3,0.3
c0.4,0.1,0.9,0,1.4,0c1.7,0,3.2-0.8,4.1-2.1C36,26.2,35.3,25.8,34.6,25.7"/>
<path class="st5" d="M29.6,24.1c0.1-0.3,0.3-0.6,0.5-0.8c0-0.1,0-0.1,0-0.2c0-0.3,0.2-0.5,0.5-0.5c0.1,0,0.1,0,0.2,0
c0.9-0.7,2-1,3.2-0.7c0.1,0,0.2,0.1,0.3,0.1c-1.1-0.2-2.3,0.2-3.2,0.9c0,0.1,0,0.1,0,0.2c0,0.3-0.2,0.5-0.5,0.5c-0.1,0-0.1,0-0.2,0
c-0.2,0.3-0.4,0.6-0.5,0.9c0.4,0.4,0.9,0.8,1.5,1v-0.1c0-0.9,0.7-1.6,1.6-1.6c0.8,0,1.4,0.6,1.6,1.3c0.4-0.3,0.7-0.6,1-0.9
c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.3,0.2-0.5,0.5-0.5c0,0,0.1,0,0.1,0c0.1-0.3,0.3-0.6,0.3-1c-1.4-1-4.1-0.9-4.1-0.9s-2.1-0.1-3.6,0.6
C29,22.9,29.2,23.6,29.6,24.1"/>
<path class="st5" d="M36.3,23.6c0.1,0.1,0.2,0.2,0.2,0.4c0,0.3-0.2,0.5-0.5,0.5c0,0-0.1,0-0.1,0c-0.3,0.5-0.7,0.9-1.2,1.2
c0.7,0.1,1.3,0.4,1.9,0.8c0.4-0.7,0.6-1.5,0.6-2.4c0-0.7-0.3-1.1-0.7-1.5C36.5,22.9,36.5,23.3,36.3,23.6 M30.5,28.1
c0.2-0.7,0.7-1.2,1.2-1.7c-0.1-0.1-0.1-0.2-0.2-0.4c-0.7-0.2-1.3-0.6-1.7-1.1c0,0,0,0,0,0c-0.1,0.4-0.1,0.8-0.1,1.2
c0.3,0.1,0.6,0.3,0.6,0.7c0,0.2-0.1,0.4-0.2,0.5C30.2,27.6,30.4,27.8,30.5,28.1"/>
<path class="st5" d="M30.4,28.5c-0.3-0.3-0.5-0.6-0.7-1c0,0-0.1,0-0.1,0c-0.4,0-0.7-0.3-0.7-0.7c0-0.3,0.2-0.5,0.4-0.6
c-0.1-0.4,0-0.9,0.1-1.3c0-0.1,0.1-0.3,0.1-0.4c-0.4-0.6-0.7-1.4-0.7-2.2v-0.1c-0.7,0.4-1.3,0.9-1.3,1.8
C27.6,26,28.7,27.7,30.4,28.5C30.4,28.5,30.4,28.5,30.4,28.5 M34.6,26C34.3,26.6,33.7,27,33,27c-0.4,0-0.7-0.1-1-0.3
c-0.6,0.4-1,1-1.2,1.7c0.1,0.1,0.2,0.2,0.4,0.4c0.4,0.1,0.8,0.2,1.2,0.2c1.7,0,3.2-0.9,4.1-2.2C35.9,26.3,35.2,26,34.6,26"/>
<path class="st2" d="M34.6,25.6l1.5-0.4l-1.5-0.1l1.2-0.9l-1.4,0.5l0.9-1.3l-1.3,0.9l0.4-1.5L33.6,24l0-1.6L33,23.8l-0.5-1.4l0,1.7
l-0.8-1.5l0.5,1.6l-1.4-1l1.1,1.3l-1.7-0.6l1.3,1L29.8,25l1.7,0.4l-1.7,0.4l1.7,0.1l-1.4,0.9l1.5-0.5l-1,1.3l1.3-1.1l-0.5,1.8l1-1.4
l-0.1,1.7l0.6-1.5l0.5,1.6l0.1-1.6l0.7,1.4l-0.4-1.6l1.3,1l-0.9-1.3l1.5,0.6L34.6,26l1.5,0.1L34.6,25.6z"/>
<path class="st6" d="M18.9,28.4c4.6-4.6,8.2-6,11.5-6.6c0.4-0.1,0.5-1,0.5-1s0.1,0.7,0.4,0.8s0.7-1.1,0.7-1.1s-0.4,1.1,0,1.1
c0.4,0.1,1-1,1-1s-0.3,0.9-0.1,1c0.2,0.1,1.1-1.4,1.1-1.4s-0.5,0.9,0,1c0.5,0.1,1.3-0.7,1.3-0.7s-0.6,0.7-0.3,0.8
c1.1,0.4,2.1-1.1,2.1-1.1s-0.2,0.7-0.8,1.4c1.2,0.3,2.1-1.5,2.1-1.5l-0.9,1.8c0.5,0.2,2.3-1.9,2.3-1.9s-0.9,1.7-1.5,2
c0.3,0.3,1.4-0.7,1.4-0.7s-0.9,1.1-0.5,1.2c0.5,0.4,2.3-2.1,2.3-2.1s-0.7,1.4-1.7,2.6c0.9,0.4,3-2.4,3-2.4s-0.1,0.9-1.6,2.3
c1.2-0.1,2.7-2.4,2.7-2.4s-0.5,1.7-1.9,2.8c1.1-0.1,3-2.9,3-2.9s-0.7,2-2.1,3.1c1.6,0.4,3.9-2,3.9-2s-0.9,1.7-2.1,2.4
c1.3,0.5,3.1-1.6,3.1-1.6S45.9,25.1,43,25c-0.9,0-3.8-2.9-10-2.6C24.9,22.6,23.2,26,18.9,28.4"/>
<path class="st4" d="M19.1,28c4.6-4.6,8.2-6,11.5-6.6c0.4-0.1,0.5-1,0.5-1s0.1,0.7,0.4,0.8s0.7-1.1,0.7-1.1s-0.4,1.1,0,1.1
c0.4,0.1,1-1,1-1s-0.3,0.9-0.1,1c0.2,0.1,1.1-1.4,1.1-1.4s-0.5,0.9,0,1c0.5,0.1,1.3-0.7,1.3-0.7s-0.6,0.7-0.3,0.8
c1.1,0.4,2.1-1.1,2.1-1.1s-0.2,0.7-0.8,1.4c1.2,0.3,2.1-1.5,2.1-1.5l-0.9,1.8c0.5,0.3,2.3-1.9,2.3-1.9s-0.9,1.7-1.5,2
c0.3,0.2,1.4-0.8,1.4-0.8S39,22,39.4,22.1c0.5,0.4,2.3-2.1,2.3-2.1s-0.7,1.4-1.8,2.6c0.9,0.4,3-2.4,3-2.4s-0.1,0.9-1.6,2.3
c1.2-0.1,2.7-2.4,2.7-2.4s-0.5,1.7-1.9,2.8c1.1-0.1,3-2.9,3-2.9s-0.7,2-2.1,3.1c1.6,0.4,3.9-2,3.9-2s-0.9,1.7-2.1,2.4
c1.3,0.5,3.1-1.6,3.1-1.6s-1.8,2.8-4.7,2.7c-0.9,0-3.8-2.9-10-2.6C25.1,22.3,23.4,25.7,19.1,28"/>
<path class="st6" d="M18.8,28.9c2.4,1.2,4.6-0.2,7.4,0.6c2.1,0.6,4.7,1.3,8.2,0.8c3.5-0.5,6.5-2,7.9-4.7c0.4-1.2,2.3,0.3,2.3,0.3
s-1.3-0.5-1.3-0.3c0,0.3,2,1.2,2,1.2s-1.8-0.5-1.7-0.1c0.1,0.4,2.2,2.1,2.2,2.1s-2.4-1.8-2.6-1.6c-0.2,0.3,1,1.2,1,1.2
s-2-1.2-2.7-0.9c-0.5,0.3,2.1,2,2.1,2s-1.7-1.3-2.1-0.9s1.9,3.1,1.9,3.1s-2.6-2.8-2.9-2.7c-0.3,0.1,0.7,1.5,0.7,1.5S40,29,39.7,29.2
c-0.4,0.3,1.8,3.9,1.8,3.9s-2.4-3.8-3.4-3.1c1.5,3.4,1,3.9,1,3.9s-0.2-3.5-2.1-3.4c-1,0,0.5,2.6,0.5,2.6s-1.3-2.3-2.2-2.3
c1.6,3.1,1,4.3,1,4.3s0.3-2.6-1.9-4.1c0.8,0.7-0.5,4.1-0.5,4.1s1.2-4.9-0.9-4c-0.3,0.1,0,2.4,0,2.4s-0.4-2.6-1-2.5
c-0.4,0.1-2.3,3.6-2.3,3.6s1.6-3.8,1.1-3.7c-0.4,0.1-1,1.7-1,1.7s0.3-1.6,0-1.7c-0.3-0.1-2.1,1.7-2.1,1.7s1.3-1.6,1.1-1.9
c-0.4-0.5-0.8-0.5-1.2-0.3c-0.7,0.3-1.7,1.6-1.7,1.6s0.9-1.3,0.8-1.8c-0.3-0.8-3,1.5-3,1.5s1.6-1.5,1.2-1.8c-0.4-0.3-2.4-0.2-3-0.2
C20,29.8,19.3,29.3,18.8,28.9"/>
<path class="st4" d="M18.7,28.6c2.4,1.2,4.6-0.2,7.4,0.6c2.1,0.6,4.7,1.3,8.2,0.8c3.5-0.5,6.5-2,7.9-4.7c0.4-1.2,2.3,0.3,2.3,0.3
s-1.3-0.5-1.3-0.3c0,0.3,2,1.2,2,1.2s-1.8-0.5-1.7-0.1c0.1,0.4,2.2,2.1,2.2,2.1s-2.4-1.8-2.6-1.6c-0.2,0.3,1,1.2,1,1.2
s-2-1.2-2.7-0.9c-0.5,0.3,2.1,2,2.1,2s-1.7-1.3-2.1-0.9s1.9,3.1,1.9,3.1s-2.6-2.8-2.9-2.7c-0.3,0.1,0.7,1.5,0.7,1.5
s-1.3-1.4-1.7-1.2c-0.4,0.3,1.8,3.9,1.8,3.9S39,29.1,38,29.7c1.6,3.4,1,3.9,1,3.9s-0.2-3.5-2.1-3.4c-1,0,0.5,2.6,0.5,2.6
s-1.3-2.3-2.2-2.3c1.6,3.1,1,4.3,1,4.3s0.3-2.6-1.9-4.1c0.8,0.7-0.5,4.1-0.5,4.1s1.2-4.9-0.9-4c-0.3,0.1,0,2.4,0,2.4s-0.4-2.6-1-2.5
c-0.4,0.1-2.3,3.6-2.3,3.6s1.6-3.8,1.1-3.7c-0.4,0.1-1,1.7-1,1.7s0.3-1.6,0-1.7s-2.1,1.7-2.1,1.7s1.3-1.6,1.1-1.9
c-0.4-0.5-0.8-0.5-1.2-0.3c-0.7,0.3-1.7,1.6-1.7,1.6s0.9-1.3,0.8-1.8c-0.3-0.8-3,1.5-3,1.5s1.6-1.5,1.2-1.8c-0.4-0.3-2.4-0.2-3-0.2
C19.9,29.5,19.2,29,18.7,28.6"/>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#AEC07E;}
.st2{fill:#FFFFFF;}
.st3{fill:#A6A385;}
.st4{fill:#499D4A;}
.st5{fill:#58AA50;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<path class="st1" d="M33,46.3c-9,0-15.8-3-15.8-6.9V10.7c0-4,6.8-6.9,15.8-6.9s15.8,3,15.8,6.9v28.7C48.8,43.3,42,46.3,33,46.3z
M33.3,8.4c-6.4,0-9.7,1.6-9.8,2.2c0.1,0.6,3.4,2.1,9.8,2.1s9.7-1.6,9.8-2.2C43,10,39.7,8.4,33.3,8.4z"/>
<path class="st2" d="M33,4.7c8.2,0,14.8,2.7,14.8,5.9v28.7c0,3.3-6.6,5.9-14.8,5.9s-14.8-2.7-14.8-5.9V10.7
C18.2,7.4,24.8,4.7,33,4.7 M33.3,13.7c6,0,10.8-1.4,10.8-3.1s-4.8-3.1-10.8-3.1s-10.8,1.4-10.8,3.1S27.3,13.7,33.3,13.7 M33,2.7
c-8.3,0-16.8,2.7-16.8,7.9v28.7c0,5.2,8.4,7.9,16.8,7.9s16.8-2.7,16.8-7.9V10.7C49.8,5.5,41.3,2.7,33,2.7L33,2.7z M25.3,10.6
c1.4-0.5,4.2-1.1,8-1.1s6.6,0.6,8,1.1c-1.4,0.5-4.2,1.1-8,1.1S26.7,11.1,25.3,10.6L25.3,10.6z"/>
</g>
<g>
<path class="st2" d="M33.6,42.2L32.9,42c0,0,0.1-3.5-1.2-3.8c-0.8-1,0.1-41.6,3.2-0.1c0,0-1,0.5-1.2,1.4
C33.5,40.4,33.6,42.2,33.6,42.2L33.6,42.2z"/>
<path class="st3" d="M33.6,42.2L32.9,42c0,0,0.1-3.5-1.2-3.8c-0.8-1,0.1-41.6,3.2-0.1c0,0-1,0.5-1.2,1.4
C33.5,40.4,33.6,42.2,33.6,42.2L33.6,42.2z"/>
<path class="st2" d="M34,38.8c0,0,6.1-4,4.7-12.3c-1.4-6-4.6-8-5-8.8c-0.4-0.5-0.8-1.5-0.8-1.5L33.2,33
C33.2,33.1,32.6,38.2,34,38.8"/>
<path class="st4" d="M34,38.8c0,0,6.1-4,4.7-12.3c-1.4-6-4.6-8-5-8.8c-0.4-0.5-0.8-1.5-0.8-1.5L33.2,33
C33.2,33.1,32.6,38.2,34,38.8"/>
<path class="st2" d="M32.5,39c0,0-5.7-3.9-5.4-10.7c0.3-6.9,4.3-10.2,5.1-10.8c0.5-0.5,0.5-0.7,0.6-1.3c0.4,0.8,0.3,11.4,0.3,12.6
C33.4,33.6,32.9,38.1,32.5,39z"/>
<path class="st5" d="M32.5,39c0,0-5.7-3.9-5.4-10.7c0.3-6.9,4.3-10.2,5.1-10.8c0.5-0.5,0.5-0.7,0.6-1.3c0.4,0.8,0.3,11.4,0.3,12.6
C33.4,33.6,32.9,38.1,32.5,39z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#AEC07E;}
.st2{fill:#FFFFFF;}
.st3{fill:#912626;}
.st4{fill:#C6302B;}
.st5{fill:#621B1C;}
.st6{fill:#9A2928;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<path class="st1" d="M33,46.3c-9,0-15.8-3-15.8-6.9V10.7c0-4,6.8-6.9,15.8-6.9s15.8,3,15.8,6.9v28.7C48.8,43.3,42,46.3,33,46.3z
M33.3,8.4c-6.4,0-9.7,1.6-9.8,2.2c0.1,0.6,3.4,2.1,9.8,2.1s9.7-1.6,9.8-2.2C43,10,39.7,8.4,33.3,8.4z"/>
<path class="st2" d="M33,4.7c8.2,0,14.8,2.7,14.8,5.9v28.7c0,3.3-6.6,5.9-14.8,5.9s-14.8-2.7-14.8-5.9V10.7
C18.2,7.4,24.8,4.7,33,4.7 M33.3,13.7c6,0,10.8-1.4,10.8-3.1s-4.8-3.1-10.8-3.1s-10.8,1.4-10.8,3.1S27.3,13.7,33.3,13.7 M33,2.7
c-8.3,0-16.8,2.7-16.8,7.9v28.7c0,5.2,8.4,7.9,16.8,7.9s16.8-2.7,16.8-7.9V10.7C49.8,5.5,41.3,2.7,33,2.7L33,2.7z M25.3,10.6
c1.4-0.5,4.2-1.1,8-1.1s6.6,0.6,8,1.1c-1.4,0.5-4.2,1.1-8,1.1S26.7,11.1,25.3,10.6L25.3,10.6z"/>
</g>
<g>
<path class="st3" d="M44.1,35.3c-1.3,0.7-7.9,3.4-9.3,4.1c-1.4,0.7-2.2,0.7-3.3,0.2c-1.1-0.5-8.2-3.4-9.4-4c-0.6-0.3-1-0.6-1-0.8
v-2.4c0,0,9.2-2,10.7-2.5c1.5-0.5,2-0.6,3.3-0.1c1.3,0.5,8.8,1.8,10,2.3l0,2.4C45,34.7,44.7,35,44.1,35.3"/>
<path class="st4" d="M44.1,32.9c-1.3,0.7-7.9,3.4-9.3,4.1c-1.4,0.7-2.2,0.7-3.3,0.2c-1.1-0.5-8.2-3.4-9.4-4c-1.3-0.6-1.3-1,0-1.5
c1.2-0.5,8.3-3.2,9.7-3.8c1.5-0.5,2-0.6,3.3-0.1c1.3,0.5,7.8,3.1,9.1,3.5C45.3,31.9,45.3,32.2,44.1,32.9"/>
<path class="st3" d="M44.1,31.4c-1.3,0.7-7.9,3.4-9.3,4.1c-1.4,0.7-2.2,0.7-3.3,0.2c-1.1-0.5-8.2-3.4-9.4-4c-0.6-0.3-1-0.6-1-0.8
v-2.4c0,0,9.2-2,10.7-2.5c1.5-0.5,2-0.6,3.3-0.1c1.3,0.5,8.8,1.8,10,2.3l0,2.4C45,30.8,44.7,31,44.1,31.4"/>
<path class="st4" d="M44.1,29c-1.3,0.7-7.9,3.4-9.3,4.1c-1.4,0.7-2.2,0.7-3.3,0.2c-1.1-0.5-8.2-3.4-9.4-4c-1.3-0.6-1.3-1,0-1.5
c1.2-0.5,8.3-3.2,9.7-3.8c1.5-0.5,2-0.6,3.3-0.1c1.3,0.5,7.8,3.1,9.1,3.5C45.3,27.9,45.3,28.3,44.1,29"/>
<path class="st3" d="M44.1,27.3c-1.3,0.7-7.9,3.4-9.3,4.1c-1.4,0.7-2.2,0.7-3.3,0.2c-1.1-0.5-8.2-3.4-9.4-4c-0.6-0.3-1-0.6-1-0.8
v-2.4c0,0,9.2-2,10.7-2.5c1.5-0.5,2-0.6,3.3-0.1c1.3,0.5,8.8,1.8,10,2.3l0,2.4C45,26.7,44.7,27,44.1,27.3"/>
<path class="st4" d="M44.1,24.9c-1.3,0.7-7.9,3.4-9.3,4.1c-1.4,0.7-2.2,0.7-3.3,0.2c-1.1-0.5-8.2-3.4-9.4-4c-1.3-0.6-1.3-1,0-1.5
c1.2-0.5,8.3-3.2,9.7-3.8c1.5-0.5,2-0.6,3.3-0.1c1.3,0.5,7.8,3.1,9.1,3.5C45.3,23.9,45.3,24.2,44.1,24.9"/>
<path class="st2" d="M35.9,22.6l-2.1,0.2l-0.5,1.1l-0.7-1.2l-2.4-0.2l1.8-0.6l-0.5-1l1.7,0.7l1.6-0.5l-0.4,1L35.9,22.6 M33.3,27.9
l-3.8-1.6l5.5-0.8L33.3,27.9 M28,23.2c1.6,0,2.9,0.5,2.9,1.1c0,0.6-1.3,1.1-2.9,1.1S25,24.9,25,24.3C25,23.7,26.3,23.2,28,23.2"/>
<path class="st5" d="M38.4,22.9l3.3,1.3l-3.3,1.3L38.4,22.9"/>
<path class="st6" d="M34.8,24.3l3.6-1.4l0,2.6L38,25.6L34.8,24.3"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 80 70" style="enable-background:new 0 0 80 70;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#5D6AA4;}
.st2{fill:#D8D8D8;}
.st3{fill:#2C2E73;}
</style>
<g>
<g>
<path class="st0" d="M50.6,23.1H29.3c-1.1,0-2,0.9-2,2v16.6c0,1.1,0.9,2,2,2h8v2.8c-2.8,0.3-4.9,1.2-4.9,2.2h15.1
c0-1-2-1.9-4.9-2.2v-2.8h8c1.1,0,2-0.9,2-2V25.1C52.6,24,51.7,23.1,50.6,23.1z"/>
</g>
<g>
<path class="st1" d="M50.6,23.1H29.3c-1.1,0-2,0.9-2,2v16.6c0,1.1,0.9,2,2,2h8v2.8c-2.8,0.3-4.9,1.2-4.9,2.2h15.1
c0-1-2-1.9-4.9-2.2v-2.8h8c1.1,0,2-0.9,2-2V25.1C52.6,24,51.7,23.1,50.6,23.1z M51,42.1h-22V24.8h22V42.1z"/>
</g>
</g>
<path class="st2" d="M16,35.3l12-20.8l24,0l12,20.8L52,56.1l-24,0L16,35.3z M20,69.9l40,0l20-34.6L60,0.7l-40,0L0,35.3L20,69.9z"/>
<g>
<g>
<path class="st3" d="M37.4,35.4h-2.3l-1.1-2l1.1-2h2.3l1.1,2L37.4,35.4z M40,33.4l-1.9-3.3h-3.8l-1.9,3.3l1.9,3.3h3.8L40,33.4z"/>
<path class="st3" d="M36.4,34.1H41v-1.3h-4.5V34.1z"/>
</g>
<g>
<g>
<path class="st3" d="M43.7,35.1l1.1,2l-1.1,2l-2.3,0l-1.1-2l1.1-2H43.7z M40.7,33.8l-1.9,3.3l1.9,3.3l3.8,0l1.9-3.3l-1.9-3.3
L40.7,33.8z"/>
<path class="st3" d="M43,36.6l-2.3-3.9l-1.1,0.7l2.3,3.9L43,36.6z"/>
</g>
<g>
<path class="st3" d="M40.3,29.8l1.1-2l2.3,0l1.1,2l-1.1,2l-2.3,0L40.3,29.8z M40.7,33.1l3.8,0l1.9-3.3l-1.9-3.3l-3.8,0l-1.9,3.3
L40.7,33.1z"/>
<path class="st3" d="M41.9,29.7l-2.3,3.9l1.1,0.7l2.3-3.9L41.9,29.7z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#81A6AF;}
.st2{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.2l-11.9-9l11.9-9h23.7l11.9,9L44.9,52.5z M66,43.5L49.6,30.9h-33L0.1,43.5L16.6,56h33L66,43.5z"
/>
</g>
<g>
<g>
<path class="st1" d="M15.9,45v-4.5h14.9V38c-1-0.7-1.6-1.8-1.6-3H18.4c-1.5,0-2.7-1.2-2.7-2.7v-7.6c0-1.5,1.2-2.7,2.7-2.7h0.2
v-9.6c0-1.6,1.3-3,3-3s3,1.3,3,3V22h23.2c1.5,0,2.7,1.2,2.7,2.7v7.6c0,1.5-1.2,2.7-2.7,2.7H36.9c0,1.2-0.6,2.3-1.6,3v2.5h14.9V45
H15.9z M42.9,27.4c-0.6,0-1.1,0.5-1.1,1.1c0,0.6,0.5,1.1,1.1,1.1s1.1-0.5,1.1-1.1C44,27.9,43.5,27.4,42.9,27.4z M36.3,27.4
c-0.6,0-1.1,0.5-1.1,1.1c0,0.6,0.5,1.1,1.1,1.1s1.1-0.5,1.1-1.1C37.5,27.9,37,27.4,36.3,27.4z M29.8,27.4c-0.6,0-1.1,0.5-1.1,1.1
c0,0.6,0.5,1.1,1.1,1.1c0.6,0,1.1-0.5,1.1-1.1C31,27.9,30.4,27.4,29.8,27.4z M23.3,27.4c-0.6,0-1.1,0.5-1.1,1.1
c0,0.6,0.5,1.1,1.1,1.1c0.6,0,1.1-0.5,1.1-1.1C24.4,27.9,23.9,27.4,23.3,27.4z"/>
<path class="st2" d="M21.6,10.4c1.1,0,2,0.9,2,2V23h24.2c1,0,1.7,0.8,1.7,1.7v7.6c0,1-0.8,1.7-1.7,1.7H35.9c0,0.4,0,0.8,0,0.9
c0,1.1-0.7,2.1-1.6,2.6v4.1h14.9V44H16.9v-2.5h14.9v-4.1c-1-0.5-1.6-1.4-1.6-2.6c0,0,0-0.4,0-0.9H18.4c-1,0-1.7-0.8-1.7-1.7v-7.6
c0-1,0.8-1.7,1.7-1.7h1.2V12.4C19.6,11.3,20.5,10.4,21.6,10.4 M42.9,30.7c1.2,0,2.1-1,2.1-2.1s-1-2.1-2.1-2.1
c-1.2,0-2.1,1-2.1,2.1S41.7,30.7,42.9,30.7 M36.3,30.7c1.2,0,2.1-1,2.1-2.1s-1-2.1-2.1-2.1c-1.2,0-2.1,1-2.1,2.1
S35.2,30.7,36.3,30.7 M29.8,30.7c1.2,0,2.1-1,2.1-2.1s-1-2.1-2.1-2.1c-1.2,0-2.1,1-2.1,2.1S28.6,30.7,29.8,30.7 M23.3,30.7
c1.2,0,2.1-1,2.1-2.1s-1-2.1-2.1-2.1c-1.2,0-2.1,1-2.1,2.1S22.1,30.7,23.3,30.7 M21.6,8.4c-2.2,0-4,1.8-4,4v8.7
c-1.7,0.4-2.9,1.9-2.9,3.7v7.6c0,2.1,1.7,3.7,3.7,3.7h10c0.2,1,0.7,1.8,1.5,2.5v1H16.9h-2v2V44v2h2h32.3h2v-2v-2.5v-2h-2H36.3v-1
c0.7-0.6,1.2-1.5,1.5-2.5h10c2.1,0,3.7-1.7,3.7-3.7v-7.6c0-2.1-1.7-3.7-3.7-3.7H25.6v-8.6C25.6,10.2,23.8,8.4,21.6,8.4L21.6,8.4z
M42.9,28.7c-0.1,0-0.1-0.1-0.1-0.1s0.1-0.1,0.1-0.1c0.1,0,0.1,0.1,0.1,0.1S43,28.7,42.9,28.7L42.9,28.7z M36.3,28.7
c-0.1,0-0.1-0.1-0.1-0.1s0.1-0.1,0.1-0.1c0.1,0,0.1,0.1,0.1,0.1S36.4,28.7,36.3,28.7L36.3,28.7z M29.8,28.7
c-0.1,0-0.1-0.1-0.1-0.1s0.1-0.1,0.1-0.1s0.1,0.1,0.1,0.1S29.9,28.7,29.8,28.7L29.8,28.7z M23.3,28.7c-0.1,0-0.1-0.1-0.1-0.1
s0.1-0.1,0.1-0.1s0.1,0.1,0.1,0.1S23.4,28.7,23.3,28.7L23.3,28.7z"/>
</g>
<g>
<path class="st1" d="M33.4,23c-0.6,0-1.1-0.2-1.6-0.5c-0.6-0.4-1-1.1-1.2-1.8c-0.1-0.7,0-1.5,0.5-2.1c1.3-1.9,2-4.2,2-6.5
c0-2.3-0.7-4.5-2-6.4c-0.9-1.3-0.5-3.1,0.8-3.9c0.5-0.3,1-0.5,1.6-0.5c0.9,0,1.8,0.5,2.4,1.2c1.9,2.8,2.9,6.2,2.9,9.6
c0,3.5-1,6.8-3,9.7C35.2,22.5,34.3,23,33.4,23z"/>
<path class="st2" d="M33.4,2.2C34,2.2,34.6,2.5,35,3c1.8,2.7,2.8,5.8,2.8,9c0,3.3-1,6.4-2.8,9.1C34.5,21.7,34,22,33.4,22
c-0.4,0-0.7-0.1-1-0.3c-0.8-0.6-1-1.7-0.5-2.6c1.4-2.1,2.2-4.5,2.2-7.1c0-2.5-0.7-4.9-2.1-7c-0.6-0.8-0.3-2,0.5-2.6
C32.7,2.3,33.1,2.2,33.4,2.2 M33.4,0.2c-0.8,0-1.5,0.2-2.1,0.7c-1.8,1.2-2.2,3.6-1,5.3C31.4,7.9,32,10,32,12.1
c0,2.1-0.6,4.2-1.8,5.9c-0.6,0.8-0.8,1.9-0.6,2.9c0.2,1,0.8,1.9,1.6,2.5c0.6,0.4,1.4,0.7,2.2,0.7c1.3,0,2.4-0.6,3.2-1.7
c2.1-3,3.2-6.6,3.2-10.3c0-3.6-1.1-7.2-3.1-10.2C35.9,0.8,34.7,0.2,33.4,0.2L33.4,0.2z"/>
</g>
<g>
<path class="st1" d="M28.4,19.5c-0.6,0-1.1-0.2-1.6-0.5c-1.3-0.9-1.6-2.6-0.8-3.9c0.6-0.9,0.9-1.9,0.9-3c0-1.1-0.3-2.1-0.9-3
c-0.4-0.6-0.6-1.4-0.4-2.1c0.2-0.7,0.6-1.4,1.2-1.8c0.5-0.3,1-0.5,1.6-0.5c1,0,1.8,0.5,2.4,1.3c1.2,1.8,1.8,3.9,1.8,6.1
c0,2.2-0.7,4.4-1.9,6.2C30.2,19.1,29.4,19.5,28.4,19.5z"/>
<path class="st2" d="M28.5,5.7c0.6,0,1.2,0.3,1.5,0.8c1.1,1.7,1.7,3.6,1.7,5.5c0,2-0.6,4-1.7,5.7c-0.4,0.5-0.9,0.8-1.5,0.8
c-0.4,0-0.7-0.1-1-0.3c-0.8-0.6-1.1-1.7-0.5-2.6c0.7-1.1,1.1-2.3,1.1-3.6c0-1.3-0.4-2.5-1.1-3.5c-0.6-0.8-0.3-2,0.5-2.5
C27.8,5.8,28.1,5.7,28.5,5.7 M28.5,3.7c-0.7,0-1.5,0.2-2.1,0.6c-1.8,1.2-2.3,3.5-1.1,5.3c0.5,0.7,0.7,1.6,0.7,2.4
c0,0.9-0.3,1.7-0.8,2.5c-1.2,1.8-0.7,4.1,1,5.3c0.6,0.4,1.4,0.7,2.1,0.7c1.3,0,2.5-0.6,3.2-1.7c1.4-2,2.1-4.3,2.1-6.8
c0-2.4-0.7-4.7-2-6.6C31,4.3,29.8,3.7,28.5,3.7L28.5,3.7z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M35.9,34.9c0,0,0-0.4,0-0.9h11.9c1,0,1.7-0.8,1.7-1.7v-7.6c0-1-0.8-1.7-1.7-1.7H23.6V12.4c0-1.1-0.9-2-2-2
s-2,0.9-2,2V23h-1.2c-1,0-1.7,0.8-1.7,1.7v7.6c0,1,0.8,1.7,1.7,1.7h11.9c0,0.4,0,0.8,0,0.9c0,1.1,0.7,2.1,1.6,2.6v4.1H16.9V44
h32.3v-2.5H34.3v-4.1C35.3,37,35.9,36,35.9,34.9z M42.9,26.4c1.2,0,2.1,1,2.1,2.1c0,1.2-1,2.1-2.1,2.1c-1.2,0-2.1-1-2.1-2.1
C40.7,27.3,41.7,26.4,42.9,26.4z M36.3,26.4c1.2,0,2.1,1,2.1,2.1c0,1.2-1,2.1-2.1,2.1c-1.2,0-2.1-1-2.1-2.1
C34.2,27.3,35.2,26.4,36.3,26.4z M23.3,30.7c-1.2,0-2.1-1-2.1-2.1c0-1.2,1-2.1,2.1-2.1s2.1,1,2.1,2.1
C25.4,29.7,24.5,30.7,23.3,30.7z M27.7,28.5c0-1.2,1-2.1,2.1-2.1c1.2,0,2.1,1,2.1,2.1c0,1.2-1,2.1-2.1,2.1
C28.6,30.7,27.7,29.7,27.7,28.5z"/>
</g>
<g>
<path class="st1" d="M34,12.1c0,2.5-0.8,5-2.2,7.1c-0.6,0.8-0.4,2,0.5,2.6c0.3,0.2,0.7,0.3,1,0.3c0.6,0,1.2-0.3,1.5-0.8
c1.9-2.7,2.8-5.9,2.8-9.1c0-3.2-1-6.4-2.8-9c-0.6-0.8-1.7-1.1-2.6-0.5c-0.8,0.6-1.1,1.7-0.5,2.6C33.3,7.1,34,9.6,34,12.1z"/>
</g>
<g>
<path class="st1" d="M27.4,18.2c0.3,0.2,0.7,0.3,1,0.3c0.6,0,1.2-0.3,1.5-0.8c1.1-1.7,1.7-3.6,1.7-5.7c0-2-0.6-3.9-1.7-5.5
c-0.6-0.8-1.7-1.1-2.5-0.5c-0.8,0.6-1.1,1.7-0.5,2.5c0.7,1.1,1.1,2.3,1.1,3.5c0,1.3-0.4,2.5-1.1,3.6
C26.3,16.5,26.5,17.6,27.4,18.2z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#7761A7;}
.st2{fill:#FFFFFF;}
.st3{clip-path:url(#SVGID_2_);fill:#F0BF1C;}
.st4{clip-path:url(#SVGID_4_);fill:#46B8AD;}
.st5{clip-path:url(#SVGID_6_);fill:#15A5DF;}
.st6{clip-path:url(#SVGID_8_);fill:#231F20;}
.st7{fill:#D7A32A;}
.st8{fill:#009B8F;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.1l-11.9-9l11.9-9h23.8l11.9,9L44.9,52.5z M66,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66,43.5z"/>
</g>
<g>
<g>
<path class="st1" d="M26.7,39.6v-4.1c-0.3-0.1-0.7-0.3-1-0.4l-2.9,2.9l-6.2-6.2l2.9-2.9c-0.2-0.3-0.3-0.7-0.4-1h-4.1V19h4.1
c0.1-0.3,0.3-0.7,0.4-1l-2.9-2.9l6.2-6.2l2.9,2.9c0.3-0.2,0.7-0.3,1-0.4V7.3h8.8v4.1c0.3,0.1,0.7,0.3,1,0.4l2.9-2.9l6.2,6.2
L42.7,18c0.2,0.3,0.3,0.7,0.4,1h4.1v8.8h-4.1c-0.1,0.3-0.3,0.7-0.4,1l2.9,2.9l-6.2,6.2L36.5,35c-0.3,0.2-0.7,0.3-1,0.4v4.1H26.7z
M31.1,20.5c-1.6,0-2.9,1.3-2.9,2.9s1.3,2.9,2.9,2.9c1.6,0,2.9-1.3,2.9-2.9S32.7,20.5,31.1,20.5z"/>
<path class="st2" d="M34.5,8.3v3.9c0.8,0.2,1.5,0.5,2.2,0.9l2.7-2.7l4.8,4.8l-2.7,2.7c0.4,0.7,0.7,1.4,0.9,2.2h3.9v6.8h-3.9
c-0.2,0.8-0.5,1.5-0.9,2.2l2.7,2.7l-4.8,4.8l-2.7-2.7c-0.7,0.4-1.4,0.7-2.2,0.9v3.9h-6.8v-3.9c-0.8-0.2-1.5-0.5-2.2-0.9l-2.7,2.7
L18,31.7l2.7-2.7c-0.4-0.7-0.7-1.4-0.9-2.2h-3.9V20h3.9c0.2-0.8,0.5-1.5,0.9-2.2L18,15.1l4.8-4.8l2.7,2.7c0.7-0.4,1.4-0.7,2.2-0.9
V8.3H34.5 M31.1,27.3c2.1,0,3.9-1.7,3.9-3.9c0-2.1-1.7-3.9-3.9-3.9s-3.9,1.7-3.9,3.9C27.2,25.5,28.9,27.3,31.1,27.3 M36.5,6.3h-2
h-6.8h-2v2v2.1l-1.5-1.5l-1.4-1.4l-1.4,1.4l-4.8,4.8l-1.4,1.4l1.4,1.4l1.5,1.5h-2.1h-2v2v6.8v2h2h2.1l-1.5,1.5l-1.4,1.4l1.4,1.4
l4.8,4.8l1.4,1.4l1.4-1.4l1.5-1.5v2.1v2h2h6.8h2v-2v-2.1l1.5,1.5l1.4,1.4l1.4-1.4l4.8-4.8l1.4-1.4l-1.4-1.4l-1.5-1.5h2.1h2v-2V20
v-2h-2h-2.1l1.5-1.5l1.4-1.4l-1.4-1.4l-4.8-4.8l-1.4-1.4L38,8.9l-1.5,1.5V8.3V6.3L36.5,6.3z M31.1,25.3c-1,0-1.9-0.8-1.9-1.9
c0-1,0.8-1.9,1.9-1.9s1.9,0.8,1.9,1.9C33,24.4,32.1,25.3,31.1,25.3L31.1,25.3z"/>
</g>
<g>
<path class="st1" d="M50.5,48.1c-0.7,0-1.3-0.3-1.8-0.8l-4.6-4.8c-0.5-0.5-0.7-1.1-0.7-1.8c0-0.3,0.1-0.6,0.2-0.9l-0.2-0.2
c-3.6,2.7-8,4.2-12.5,4.2c-11.3,0-20.5-9.2-20.5-20.5S19.8,2.9,31.1,2.9s20.5,9.2,20.5,20.5c0,4.7-1.6,9.3-4.6,12.9l0.2,0.2
c0.3-0.1,0.6-0.2,0.9-0.2c0.7,0,1.3,0.3,1.8,0.8l4.6,4.8c0.9,1,0.9,2.5-0.1,3.5l-2.1,2C51.8,47.9,51.2,48.1,50.5,48.1L50.5,48.1z
M31.1,6.9c-9.1,0-16.5,7.4-16.5,16.5c0,9.1,7.4,16.5,16.5,16.5s16.5-7.4,16.5-16.5C47.5,14.3,40.1,6.9,31.1,6.9z"/>
<path class="st2" d="M31.1,3.9c10.8,0,19.5,8.7,19.5,19.5c0,5-1.9,9.5-4.9,13l1.4,1.5l0,0c0.3-0.3,0.6-0.4,1-0.4
c0.4,0,0.8,0.2,1.1,0.4l4.6,4.8c0.5,0.6,0.5,1.5-0.1,2l-2.1,2c-0.3,0.3-0.6,0.4-1,0.4c-0.4,0-0.8-0.2-1.1-0.4l-4.6-4.8
c-0.5-0.6-0.5-1.5,0.1-2l0,0l-1.4-1.4c-3.4,2.9-7.8,4.6-12.6,4.6c-10.8,0-19.5-8.7-19.5-19.5C11.6,12.6,20.3,3.9,31.1,3.9
M31.1,40.9c9.6,0,17.5-7.8,17.5-17.5c0-9.6-7.8-17.5-17.5-17.5c-9.6,0-17.5,7.8-17.5,17.5C13.6,33,21.4,40.9,31.1,40.9 M31.1,1.9
c-11.9,0-21.5,9.6-21.5,21.5c0,11.9,9.6,21.5,21.5,21.5c4.1,0,8.1-1.2,11.5-3.3c0.1,0.6,0.4,1.2,0.9,1.6L48,48
c0.6,0.7,1.6,1.1,2.5,1.1c0.9,0,1.7-0.3,2.4-0.9l2.1-2c1.4-1.3,1.4-3.5,0.1-4.9l-4.6-4.8c-0.5-0.5-1.1-0.8-1.7-1
c2.4-3.6,3.7-7.8,3.7-12.1C52.6,11.6,42.9,1.9,31.1,1.9L31.1,1.9z M31.1,38.9c-8.5,0-15.5-6.9-15.5-15.5c0-8.5,6.9-15.5,15.5-15.5
s15.5,6.9,15.5,15.5C46.5,31.9,39.6,38.9,31.1,38.9L31.1,38.9z"/>
</g>
</g>
<circle class="st2" cx="31.1" cy="23.4" r="10.3"/>
<g>
<g>
<defs>
<circle id="SVGID_1_" cx="31.1" cy="23.4" r="9.3"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st3" d="M35,19.3H22.4c-0.3,0-0.6-0.3-0.6-0.6v-4.1c0-0.3,0.3-0.6,0.6-0.6h16.5c0.3,0,0.6,0.3,0.6,0.6v0.2
C39.5,17.3,37.5,19.3,35,19.3z"/>
</g>
<g>
<defs>
<circle id="SVGID_3_" cx="31.1" cy="23.4" r="9.3"/>
</defs>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
</clipPath>
<path class="st4" d="M39.5,32.7H21.8v-5.2h13.3c2.4,0,4.4,2,4.4,4.4V32.7z"/>
</g>
<g>
<g>
<defs>
<circle id="SVGID_5_" cx="31.1" cy="23.4" r="9.3"/>
</defs>
<clipPath id="SVGID_6_">
<use xlink:href="#SVGID_5_" style="overflow:visible;"/>
</clipPath>
<path class="st5" d="M34,26H20.9v-5.2H34c1.5,0,2.6,1.2,2.6,2.6S35.4,26,34,26z"/>
</g>
</g>
<g>
<g>
<defs>
<circle id="SVGID_7_" cx="31.1" cy="23.4" r="9.3"/>
</defs>
<clipPath id="SVGID_8_">
<use xlink:href="#SVGID_7_" style="overflow:visible;"/>
</clipPath>
<path class="st6" d="M29.9,20.8h-8.6V26h8.6c0.2-0.8,0.3-1.7,0.3-2.6S30.1,21.6,29.9,20.8z"/>
</g>
</g>
<path class="st7" d="M26.4,15.4c-1.6,0.9-2.9,2.3-3.7,4h6.9C28.9,17.7,27.8,16.4,26.4,15.4z"/>
<path class="st8" d="M26.7,31.6c1.3-1.1,2.4-2.5,3.1-4.1h-7.1C23.6,29.2,25,30.7,26.7,31.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#7994BB;}
.st3{fill:#7A95BB;}
.st4{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
.st5{fill:#D1A41A;}
.st6{fill:#FFDC76;}
</style>
<g>
<path class="st0" d="M45,52.5H21.2l-11.9-9l11.9-9.1H45l11.9,9.1L45,52.5z M66.1,43.5L49.6,30.9H16.5L0,43.5L16.5,56h33.1
L66.1,43.5z"/>
</g>
<g>
<circle class="st1" cx="45.4" cy="36.7" r="3.5"/>
</g>
<g>
<g>
<circle class="st1" cx="33" cy="23.5" r="21.2"/>
</g>
<g>
<path class="st2" d="M33,4c-10.8,0-19.5,8.7-19.5,19.5S22.3,43,33,43s19.5-8.7,19.5-19.5S43.8,4,33,4z M28.3,7.2
c-1.9,1.8-3.5,4-4.7,6.4c-1-0.5-2-1.1-2.9-1.7C22.8,9.7,25.4,8,28.3,7.2z M19.4,13.4c1.1,0.8,2.2,1.5,3.4,2.1
c-0.8,2.2-1.4,4.6-1.5,7.1h-5.3C16.3,19.1,17.5,15.9,19.4,13.4z M16.1,24.5h5.3c0.1,2.5,0.6,4.9,1.5,7.1c-1.2,0.6-2.4,1.3-3.4,2.1
C17.5,31.1,16.3,27.9,16.1,24.5z M20.7,35.2c0.9-0.7,1.9-1.2,2.9-1.7c1.2,2.4,2.8,4.5,4.7,6.4C25.4,39,22.8,37.3,20.7,35.2z
M32,40.3c-2.7-2-5-4.6-6.5-7.6c2-0.7,4.2-1.2,6.5-1.2V40.3z M32,29.4c-2.6,0-5,0.5-7.3,1.4c-0.7-2-1.2-4.1-1.3-6.3H32V29.4z
M32,22.5h-8.6c0.1-2.2,0.6-4.3,1.3-6.3c2.3,0.8,4.7,1.3,7.3,1.4V22.5z M32,15.6c-2.3,0-4.4-0.5-6.5-1.2c1.5-3,3.7-5.6,6.5-7.6
V15.6z M49.9,22.5h-5.3c-0.1-2.7-0.7-5.3-1.7-7.6c1.1-0.6,2.2-1.3,3.2-2.1C48.4,15.4,49.7,18.8,49.9,22.5z M44.8,11.3
c-0.8,0.7-1.7,1.3-2.7,1.8c-1.1-2.2-2.6-4.2-4.4-5.9C40.4,8,42.8,9.4,44.8,11.3z M34,6.7c2.6,1.9,4.8,4.3,6.3,7.2
c-2,0.8-4.1,1.4-6.3,1.6V6.7z M34,17.5c2.5-0.2,4.9-0.8,7.1-1.8c0.9,2.1,1.4,4.4,1.5,6.7H34V17.5z M34,24.5h8.6
c-0.1,2.4-0.6,4.6-1.5,6.7c-2.2-1-4.6-1.6-7.1-1.8V24.5z M34,40.3v-8.8c2.2,0.2,4.3,0.7,6.3,1.6C38.8,35.9,36.6,38.4,34,40.3z
M37.7,39.8c1.8-1.7,3.3-3.7,4.4-5.9c0.9,0.5,1.8,1.1,2.7,1.8C42.8,37.6,40.4,39,37.7,39.8z M46.1,34.3c-1-0.8-2.1-1.5-3.2-2.1
c1-2.4,1.6-4.9,1.7-7.6h5.3C49.7,28.2,48.4,31.6,46.1,34.3z"/>
</g>
</g>
<g>
<path class="st3" d="M42.5,47.3v-2.6c-0.3-0.1-0.5-0.2-0.8-0.3l-1.8,1.8l-3.7-3.7l1.8-1.8c-0.1-0.3-0.2-0.5-0.3-0.8h-2.6v-5.2h2.6
c0.1-0.3,0.2-0.5,0.3-0.8l-1.8-1.8l3.7-3.7l1.8,1.8c0.3-0.1,0.5-0.2,0.8-0.3v-2.6h5.2v2.6c0.3,0.1,0.5,0.2,0.8,0.3l1.8-1.8l3.7,3.7
l-1.8,1.8c0.1,0.3,0.2,0.5,0.3,0.8h2.6v5.2h-2.6c-0.1,0.3-0.2,0.5-0.3,0.8l1.8,1.8l-3.7,3.7l-1.8-1.8c-0.3,0.1-0.5,0.2-0.8,0.3v2.6
H42.5z M45.1,35.4c-1.1,0-1.9,0.9-1.9,1.9s0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9S46.2,35.4,45.1,35.4z"/>
<path class="st1" d="M47.2,27.9v2.4c0.5,0.1,0.9,0.3,1.4,0.6l1.7-1.7l3,3l-1.7,1.7c0.2,0.4,0.4,0.9,0.6,1.4h2.4v4.2h-2.4
c-0.1,0.5-0.3,0.9-0.6,1.4l1.7,1.7l-3,3l-1.7-1.7c-0.4,0.2-0.9,0.4-1.4,0.6v2.4H43v-2.4c-0.5-0.1-0.9-0.3-1.4-0.6l-1.7,1.7l-3-3
l1.7-1.7c-0.2-0.4-0.4-0.9-0.6-1.4h-2.4v-4.2H38c0.1-0.5,0.3-0.9,0.6-1.4l-1.7-1.7l3-3l1.7,1.7c0.4-0.2,0.9-0.4,1.4-0.6v-2.4
L47.2,27.9 M45.1,39.8c1.3,0,2.4-1.1,2.4-2.4S46.4,35,45.1,35s-2.4,1.1-2.4,2.4S43.8,39.8,45.1,39.8 M48.2,26.9h-1H43h-1v1v1.7
c-0.1,0-0.1,0-0.2,0.1l-1.2-1.2l-0.7-0.7l-0.7,0.7l-3,3l-0.7,0.7l0.7,0.7l1.2,1.2c0,0.1,0,0.1-0.1,0.2h-1.7h-1v1v4.2v1h1h1.7
c0,0.1,0,0.1,0.1,0.2l-1.2,1.2l-0.7,0.7l0.7,0.7l3,3l0.7,0.7l0.7-0.7l1.2-1.2c0.1,0,0.1,0,0.2,0.1v1.7v1h1h4.2h1v-1v-1.7
c0.1,0,0.1,0,0.2-0.1l1.2,1.2l0.7,0.7l0.7-0.7l3-3l0.7-0.7L54,41.8l-1.2-1.2c0-0.1,0-0.1,0.1-0.2h1.7h1v-1v-4.2v-1h-1h-1.7
c0-0.1,0-0.1-0.1-0.2l1.2-1.2l0.7-0.7L54,31.4l-3-3l-0.7-0.7l-0.7,0.7l-1.2,1.2c-0.1,0-0.1,0-0.2-0.1v-1.7L48.2,26.9L48.2,26.9z
M45.1,38.8c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4C46.5,38.1,45.9,38.8,45.1,38.8L45.1,38.8z"/>
</g>
<path class="st4" d="M47.3,32.4c-0.6-0.6-1.7-0.9-2.6-0.9c-0.6-0.7-3.7-4-4.3-4.6c1.3-0.9,2.4-2.1,3.3-3.5h1.7V23h-1.5
c0.1-0.2,0.2-0.3,0.3-0.5h1.2v-0.4h-1c0.8-1.7,1.2-3.6,1.2-5.7l0,0c0-0.6-0.2-3-0.5-3.7c-0.9,0.3-2.5,1.4-2.9,2.6
c-1.8-0.3-3.7-0.2-5.5,0.1c-0.3-1.2-1.7-2.1-2.8-2.6c-0.5,0.8-0.7,2.6-0.6,3.9l0,0c0,1.2,0.2,2.2,0.5,3.2c-3.8,0.9-7.9,3.4-10.2,5.8
c-1.1-1.5-1.5-2.7-1.6-3.6c-0.2-1.1,0.1-2.2,0.8-3c1.1-1.3,2.6-1.4,4.1-1.2c0,0.2,0,0.5,0.1,0.6c0.4,0.6,2.6,0.8,3.9,0.2
c-1-1.4-2.9-2-3.5-1.8c-0.2,0.1-0.3,0.3-0.4,0.4c-0.5-0.1-1.1-0.2-1.5-0.2c-1.4,0-2.4,0.5-3.2,1.5c-0.8,1-1.1,2.1-0.9,3.4
c0.2,1.2,0.8,2.5,1.8,3.9c-0.2,0.2-0.3,0.4-0.5,0.5c-2.5,2.8-4.3,5.7-4.3,6.2v0.3h3.3l-0.1-0.3c-0.2-1,0.2-2.2,0.9-3.1
c0.5-0.6,1.3-1.2,2.5-1.5c1.1,1.1,2.5,2.2,4,3.3h2.4V31c0-0.3-0.1-0.5-0.4-0.7c-0.4-0.2-1-0.3-1.5-0.1c-0.5-0.6-0.8-1.3-0.9-2.3
c5.3,0.5,10.3,2.6,15.9,5.5h3.1v-0.2C47.7,33.1,47.6,32.7,47.3,32.4L47.3,32.4z M22,29.3c-0.8,0.9-1.2,2.2-1.1,3.2h-2.1
c0.4-0.9,2.1-3.5,4.5-6.1c0.3,0.4,0.7,0.8,1.1,1.3C23.3,28.1,22.5,28.8,22,29.3z"/>
<path class="st5" d="M23.4,26.5c0.4,0.4,0.7,0.9,1.1,1.3c-1.2,0.4-2,1-2.5,1.6c-0.8,0.9-1.2,2.2-1.1,3.2h-2.1
C19.3,31.7,20.9,29.1,23.4,26.5 M47.1,33.1h-2.5c-5.7-3-10.7-5.1-16.1-5.6c0-0.7,0.1-1.6,0.4-2.5l-0.5-0.1c-0.3,1-0.4,1.8-0.4,2.6
c-0.6,0-1.1-0.1-1.7-0.1c-0.5,0-0.9,0-1.3,0.1c-0.5-0.5-1-1-1.3-1.5c2.5-2.6,6.5-4.9,10-5.8c1,3.3,3.1,5.6,5.7,7.1
c0.2-0.1,0.4-0.2,0.6-0.3l4.5,4.9h0.2c1.2-0.1,1.9,0.6,2.1,0.8C47,32.9,47.1,33,47.1,33.1"/>
<path class="st6" d="M44.9,16.9c0.1,4.5-2.2,8.1-5.4,9.9c-5.4-2.7-6.5-9.6-5.5-13.3c0.3,1.4,0.7,2.3,1.7,2.7
c2.2-0.6,5.2-0.7,7.5-0.1c0.9-0.7,1.3-1.7,1.5-2.6C45,14.6,44.9,16.9,44.9,16.9"/>
<path d="M37.6,17.5c0.2,0,0.3,0.1,0.4,0.2c0.2,0.4,0.2,1.1,0,1.9h-1.5V20h1.4c-0.2,0.5-0.4,1.1-0.6,1.5l-0.1,0.1l1.9,1.2L38,23.5
l0.2,0.3l1.2-0.8l1.3,0.8l0.2-0.3l-1.2-0.7c0,0,1.8-1.2,1.9-1.2l0,0l0,0c-0.4-0.6-0.5-1.1-0.4-1.6h0.1h1.4v-0.3h-1.4
c0.3-0.6,0.6-1.2,2-1.2v-0.3c-1.2,0-2,0.5-2.3,1.5h-2.6c0.2-0.8,0.2-1.6-0.1-2.1c-0.2-0.3-0.4-0.4-0.7-0.4c-1.1,0-1.5,1.1-1.5,1.2
l0.3,0.1C36.4,18.4,36.8,17.5,37.6,17.5L37.6,17.5z M39.4,22.6L38,21.7h2.7L39.4,22.6L39.4,22.6z M40.9,20c-0.1,0.4-0.1,0.9,0.2,1.4
h-3.4c0.2-0.4,0.4-0.9,0.5-1.4H40.9z"/>
<path d="M36.4,18.4L36.4,18.4L36.4,18.4L36.4,18.4"/>
<path d="M47.3,32.4c-0.6-0.6-1.7-0.9-2.6-0.9c-0.6-0.7-3.7-4-4.3-4.6c1.3-0.9,2.4-2.1,3.3-3.5h1.7V23h-1.5c0.1-0.2,0.2-0.3,0.3-0.5
h1.2v-0.4h-1c0.8-1.7,1.2-3.6,1.2-5.7l0,0c0-0.6-0.2-3-0.5-3.7c-0.9,0.3-2.5,1.4-2.9,2.6c-1.8-0.3-3.7-0.2-5.5,0.1
c-0.3-1.2-1.7-2.1-2.8-2.6c-0.5,0.8-0.7,2.6-0.6,3.9l0,0c0,1.2,0.2,2.2,0.5,3.2c-3.8,0.9-7.9,3.4-10.2,5.8c-1.1-1.5-1.5-2.7-1.6-3.6
c-0.2-1.1,0.1-2.2,0.8-3c1.1-1.3,2.6-1.4,4.1-1.2c0,0.2,0,0.5,0.1,0.6c0.4,0.6,2.6,0.8,3.9,0.2c-1-1.4-2.9-2-3.5-1.8
c-0.2,0.1-0.3,0.3-0.4,0.4c-0.5-0.1-1.1-0.2-1.5-0.2c-1.4,0-2.4,0.5-3.2,1.5c-0.8,1-1.1,2.1-0.9,3.4c0.2,1.2,0.8,2.5,1.8,3.9
c-0.2,0.2-0.3,0.4-0.5,0.5c-2.5,2.8-4.3,5.7-4.3,6.2v0.3h3.3l-0.1-0.3c-0.2-1,0.2-2.2,0.9-3.1c0.5-0.6,1.3-1.2,2.5-1.5
c1.1,1.1,2.5,2.2,4,3.3h2.4V31c0-0.3-0.1-0.5-0.4-0.7c-0.4-0.2-1-0.3-1.5-0.1c-0.5-0.6-0.8-1.3-0.9-2.3c5.3,0.5,10.3,2.6,15.9,5.5
h3.1v-0.2C47.7,33.1,47.6,32.7,47.3,32.4L47.3,32.4z M34,13.5c0.3,1.4,0.7,2.3,1.7,2.7c0.9-0.3,1.9-0.4,3-0.5l0.9,1.9l0.6-2
c1.1,0,2.1,0.2,3,0.4c0.9-0.7,1.3-1.7,1.5-2.6c0.2,1.1,0.2,3.3,0.2,3.3c0,0.8-0.1,1.7-0.2,2.4l-1,0.4l0.9,0.1
c-0.1,0.3-0.2,0.6-0.2,0.9L43.5,21l0.7,0.2c-0.1,0.3-0.2,0.6-0.4,0.9h-1.4v0.4h1.2c-0.1,0.2-0.2,0.3-0.3,0.5h-0.9v0.4h0.7
c-0.9,1.4-2.2,2.6-3.6,3.4c-1.6-0.8-2.9-2-3.8-3.4h0.5V23h-0.8c-0.1-0.2-0.2-0.3-0.3-0.5h1.1v-0.4h-1.3c-0.2-0.4-0.4-0.9-0.6-1.3
l0.6-0.2l-0.8-0.3c-0.1-0.3-0.2-0.5-0.2-0.8l1.2-0.1l-1.4-0.8C33.6,16.8,33.6,14.9,34,13.5L34,13.5z M22,29.3
c-0.8,0.9-1.2,2.2-1.1,3.2h-2.1c0.4-0.9,2.1-3.5,4.5-6.1c0.3,0.4,0.7,0.8,1.1,1.3C23.3,28.1,22.5,28.8,22,29.3z M44.6,33.1
c-5.7-3-10.7-5.1-16.1-5.6c0-0.7,0.1-1.6,0.4-2.5l-0.5-0.1c-0.3,1-0.4,1.8-0.4,2.6c-0.6,0-1.1-0.1-1.7-0.1c-0.5,0-0.9,0-1.3,0.1
c-0.5-0.5-1-1-1.3-1.5c0.7-0.7,1.5-1.4,2.3-2l1.2,0.8l-0.4-1.4c0.4-0.2,0.7-0.5,1.1-0.7l1.8,0.9l-0.8-1.4c0.2-0.1,0.5-0.3,0.7-0.4
l2.5,1.7l-0.8-2.4c0.8-0.3,1.7-0.6,2.5-0.8c0.2,0.6,0.4,1.2,0.7,1.8h-1.1v0.4h1.3c0.1,0.2,0.2,0.3,0.3,0.5h-1.6v0.4h1.8
c1.1,1.7,2.6,3.1,4.3,4.1c0.2-0.1,0.4-0.2,0.6-0.3l0.4,0.5l-0.8,1.2l1.3-0.6l0.7,0.8l-1.3,1l1.7-0.4l2.3,2.5h0.2
c1.2-0.1,1.9,0.6,2.1,0.8c0.1,0.2,0.2,0.3,0.3,0.4h-2.4V33.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 91 KiB

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#7994BB;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.2l-11.9-9l11.9-9H45l11.9,9L44.9,52.5z M66.1,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66.1,43.5z"
/>
</g>
<g>
<g>
<circle class="st1" cx="33" cy="23.5" r="21.2"/>
</g>
<g>
<path class="st2" d="M33,4c-10.8,0-19.5,8.7-19.5,19.5S22.2,43,33,43s19.5-8.7,19.5-19.5S43.8,4,33,4z M28.3,7.2
c-1.9,1.8-3.5,4-4.7,6.4c-1-0.5-2-1.1-2.9-1.7C22.8,9.7,25.4,8,28.3,7.2z M19.4,13.4c1.1,0.8,2.2,1.5,3.4,2.1
c-0.8,2.2-1.4,4.6-1.5,7.1h-5.3C16.3,19.1,17.5,15.9,19.4,13.4z M16.1,24.5h5.3c0.1,2.5,0.6,4.9,1.5,7.1c-1.2,0.6-2.4,1.3-3.4,2.1
C17.5,31.1,16.3,27.9,16.1,24.5z M20.7,35.2c0.9-0.7,1.9-1.2,2.9-1.7c1.2,2.4,2.8,4.5,4.7,6.4C25.4,39,22.8,37.3,20.7,35.2z
M32,40.3c-2.7-2-5-4.6-6.5-7.6c2-0.7,4.2-1.2,6.5-1.2V40.3z M32,29.4c-2.6,0-5,0.5-7.3,1.4c-0.7-2-1.2-4.1-1.3-6.3H32V29.4z
M32,22.5h-8.6c0.1-2.2,0.6-4.3,1.3-6.3c2.3,0.8,4.7,1.3,7.3,1.4V22.5z M32,15.6c-2.3,0-4.4-0.5-6.5-1.2c1.5-3,3.7-5.6,6.5-7.6
V15.6z M49.9,22.5h-5.3c-0.1-2.7-0.7-5.3-1.7-7.6c1.1-0.6,2.2-1.3,3.2-2.1C48.3,15.4,49.7,18.8,49.9,22.5z M44.7,11.3
c-0.8,0.7-1.7,1.3-2.7,1.8c-1.1-2.2-2.6-4.2-4.4-5.9C40.4,8,42.8,9.4,44.7,11.3z M34,6.7c2.6,1.9,4.8,4.3,6.3,7.2
c-2,0.8-4.1,1.4-6.3,1.6V6.7z M34,17.5c2.5-0.2,4.9-0.8,7.1-1.8c0.9,2.1,1.4,4.4,1.5,6.7H34V17.5z M34,24.5h8.6
c-0.1,2.4-0.6,4.6-1.5,6.7c-2.2-1-4.6-1.6-7.1-1.8V24.5z M34,40.3v-8.8c2.2,0.2,4.3,0.7,6.3,1.6C38.8,35.9,36.6,38.4,34,40.3z
M37.7,39.8c1.8-1.7,3.3-3.7,4.4-5.9c0.9,0.5,1.8,1.1,2.7,1.8C42.8,37.6,40.4,39,37.7,39.8z M46.1,34.3c-1-0.8-2.1-1.5-3.2-2.1
c1-2.4,1.6-4.9,1.7-7.6h5.3C49.7,28.2,48.3,31.6,46.1,34.3z"/>
</g>
</g>
<path d="M36.4,18.4L36.4,18.4L36.4,18.4L36.4,18.4"/>
<g>
<g>
<rect x="24.8" y="18.1" class="st2" width="3.9" height="11.2"/>
<path class="st1" d="M27.7,19.1v9.2h-1.9v-9.2H27.7 M29.7,17.1h-2h-1.9h-2v2v9.2v2h2h1.9h2v-2v-9.2V17.1L29.7,17.1z"/>
</g>
<g>
<rect x="29.3" y="18.1" class="st2" width="3.9" height="11.2"/>
<path class="st1" d="M32.2,19.1v9.2h-1.9v-9.2H32.2 M34.2,17.1h-2h-1.9h-2v2v9.2v2h2h1.9h2v-2v-9.2V17.1L34.2,17.1z"/>
</g>
<g>
<path class="st2" d="M38.1,29.5c-1.7,0-3-0.5-3.9-1.5c-0.6-0.7-0.9-1.6-0.9-2.6v-1h1.4c-0.4-0.3-0.7-0.7-1-1.1
c-0.2-0.5-0.3-1-0.3-1.6c0-0.9,0.3-1.8,0.9-2.4c0.8-0.9,2-1.4,3.6-1.4c1.5,0,2.7,0.5,3.5,1.4c0.6,0.7,1,1.6,1,2.5l0,1h-1
c0.1,0.1,0.2,0.1,0.2,0.2c0.5,0.4,1.1,1.2,1.1,2.5c0,1.5-0.7,2.7-2,3.4C39.9,29.3,39.1,29.5,38.1,29.5z M37.1,25.5
c0,0.2,0.1,0.2,0.1,0.3c0.1,0.1,0.4,0.2,0.8,0.2c0.4,0,0.7-0.1,0.8-0.1c-0.1,0-0.4-0.1-0.7-0.2L37.1,25.5L37.1,25.5z M38.6,21.9
c0-0.1-0.1-0.2-0.1-0.2c-0.1-0.1-0.4-0.2-0.8-0.2c-0.2,0-0.3,0-0.4,0.1c0,0,0.2,0,0.2,0L38.6,21.9z"/>
<path class="st1" d="M37.9,18.9c1.2,0,2.1,0.4,2.8,1.1c0.5,0.5,0.7,1.2,0.7,1.9h-1.8c0-0.4-0.2-0.6-0.3-0.8
c-0.3-0.4-0.8-0.5-1.5-0.5c-0.4,0-0.8,0.1-1,0.2c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.3,0.1,0.5,0.3,0.7c0.1,0.1,0.3,0.2,0.6,0.3l0,0
l2.2,0.6c0.7,0.2,1.3,0.4,1.6,0.7c0.5,0.4,0.7,1,0.7,1.8c0,1.2-0.5,2-1.5,2.5c-0.6,0.3-1.3,0.5-2.1,0.5c-1.4,0-2.5-0.4-3.1-1.1
c-0.5-0.5-0.7-1.2-0.7-1.9h1.8c0,0.4,0.1,0.7,0.3,0.9c0.3,0.4,0.8,0.5,1.6,0.5c0.5,0,0.9-0.1,1.3-0.2c0.4-0.2,0.6-0.5,0.6-0.9
c0-0.3-0.2-0.6-0.5-0.8c-0.2-0.1-0.6-0.2-1.2-0.4l-1-0.2c-0.5-0.1-0.8-0.2-1.1-0.3c-0.4-0.1-0.7-0.3-0.9-0.4
c-0.3-0.2-0.5-0.5-0.6-0.8c-0.2-0.3-0.2-0.7-0.2-1.2c0-0.7,0.2-1.3,0.6-1.8C35.7,19.2,36.6,18.9,37.9,18.9 M37.9,16.9
c-1.9,0-3.3,0.6-4.3,1.7c-0.7,0.9-1.1,1.9-1.1,3.1c0,0.6,0.1,1.2,0.3,1.8h-0.4v2c0,1.2,0.4,2.4,1.2,3.3c1,1.2,2.6,1.8,4.6,1.8
c1.1,0,2.1-0.2,3-0.7c1.6-0.8,2.6-2.4,2.6-4.3c0-0.7-0.1-1.2-0.3-1.7h0l0-2c0-1.2-0.4-2.3-1.2-3.2C41.4,17.8,40.1,16.9,37.9,16.9
L37.9,16.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 66 56" style="enable-background:new 0 0 66 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E3E3E2;}
.st1{fill:#FFFFFF;}
.st2{fill:#7994BB;}
.st3{fill:#009900;stroke:#FFFFFF;stroke-width:4;stroke-miterlimit:10;}
.st4{fill:#009900;}
</style>
<g>
<path class="st0" d="M44.9,52.5H21.2l-11.9-9l11.9-9H45l11.9,9L44.9,52.5z M66.1,43.5L49.5,30.9h-33L0,43.5L16.5,56h33L66.1,43.5z"
/>
</g>
<g>
<g>
<circle class="st1" cx="33" cy="23.5" r="21.2"/>
</g>
<g>
<path class="st2" d="M33,4c-10.8,0-19.5,8.7-19.5,19.5S22.2,43,33,43s19.5-8.7,19.5-19.5S43.8,4,33,4z M28.3,7.2
c-1.9,1.8-3.5,4-4.7,6.4c-1-0.5-2-1.1-2.9-1.7C22.8,9.7,25.4,8,28.3,7.2z M19.4,13.4c1.1,0.8,2.2,1.5,3.4,2.1
c-0.8,2.2-1.4,4.6-1.5,7.1h-5.3C16.3,19.1,17.5,15.9,19.4,13.4z M16.1,24.5h5.3c0.1,2.5,0.6,4.9,1.5,7.1c-1.2,0.6-2.4,1.3-3.4,2.1
C17.5,31.1,16.3,27.9,16.1,24.5z M20.7,35.2c0.9-0.7,1.9-1.2,2.9-1.7c1.2,2.4,2.8,4.5,4.7,6.4C25.4,39,22.8,37.3,20.7,35.2z
M32,40.3c-2.7-2-5-4.6-6.5-7.6c2-0.7,4.2-1.2,6.5-1.2V40.3z M32,29.4c-2.6,0-5,0.5-7.3,1.4c-0.7-2-1.2-4.1-1.3-6.3H32V29.4z
M32,22.5h-8.6c0.1-2.2,0.6-4.3,1.3-6.3c2.3,0.8,4.7,1.3,7.3,1.4V22.5z M32,15.6c-2.3,0-4.4-0.5-6.5-1.2c1.5-3,3.7-5.6,6.5-7.6
V15.6z M49.9,22.5h-5.3c-0.1-2.7-0.7-5.3-1.7-7.6c1.1-0.6,2.2-1.3,3.2-2.1C48.3,15.4,49.7,18.8,49.9,22.5z M44.7,11.3
c-0.8,0.7-1.7,1.3-2.7,1.8c-1.1-2.2-2.6-4.2-4.4-5.9C40.4,8,42.8,9.4,44.7,11.3z M34,6.7c2.6,1.9,4.8,4.3,6.3,7.2
c-2,0.8-4.1,1.4-6.3,1.6V6.7z M34,17.5c2.5-0.2,4.9-0.8,7.1-1.8c0.9,2.1,1.4,4.4,1.5,6.7H34V17.5z M34,24.5h8.6
c-0.1,2.4-0.6,4.6-1.5,6.7c-2.2-1-4.6-1.6-7.1-1.8V24.5z M34,40.3v-8.8c2.2,0.2,4.3,0.7,6.3,1.6C38.8,35.9,36.6,38.4,34,40.3z
M37.7,39.8c1.8-1.7,3.3-3.7,4.4-5.9c0.9,0.5,1.8,1.1,2.7,1.8C42.8,37.6,40.4,39,37.7,39.8z M46.1,34.3c-1-0.8-2.1-1.5-3.2-2.1
c1-2.4,1.6-4.9,1.7-7.6h5.3C49.7,28.2,48.3,31.6,46.1,34.3z"/>
</g>
</g>
<path d="M36.4,18.4L36.4,18.4L36.4,18.4L36.4,18.4"/>
<g>
<path class="st3" d="M22.5,27.1c-0.2,0-0.4-0.1-0.5-0.2l-4.5-4.5v3.9c0,0.4-0.3,0.8-0.8,0.8c-0.4,0-0.8-0.3-0.8-0.8v-5.8
c0-0.3,0.2-0.6,0.5-0.7c0.3-0.1,0.6-0.1,0.8,0.2l4.5,4.5v-3.9c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.3,0.8,0.8v5.8
C23.3,26.8,22.9,27.1,22.5,27.1 M26,19.8l-0.2,0.4l-1.6,2.9L24,23.5l0.2,0.4l1.6,2.8l0.2,0.4h4.2l0.2-0.4l1.2-2.4l0.5-1.1H31
l-3.1,0c-0.4,0-0.8,0.4-0.8,0.8c0,0.4,0.4,0.8,0.8,0.8l1.9,0l-0.5,0.9h-2.4l-1.2-2.1l1.2-2.2h2.5l0.6,1.2h1.5l-1-2.3l-0.2-0.4H26
M33.7,19.8c-0.4,0-0.8,0.4-0.7,0.8v2h1.5v-2C34.5,20.2,34.1,19.8,33.7,19.8 M36.1,27.1c-0.4,0-0.8-0.3-0.8-0.8v-5.8
c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.3,0.8,0.8v3.9l4.5-4.5c0.2-0.2,0.5-0.3,0.8-0.2c0.3,0.1,0.5,0.4,0.5,0.7v5.8
c0,0.4-0.3,0.8-0.8,0.8c-0.4,0-0.8-0.3-0.8-0.8v-3.9l-4.5,4.5C36.5,27,36.3,27.1,36.1,27.1 M48.3,23.5l2.4-2.3
c0.3-0.3,0.3-0.8,0-1.1c-0.3-0.3-0.8-0.3-1.1,0l-2.4,2.3L44.8,20c-0.3-0.3-0.8-0.3-1.1,0c-0.3,0.3-0.3,0.8,0,1.1l2.4,2.3l-2.3,2.3
c-0.3,0.3-0.3,0.8,0,1.1c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2l2.4-2.3l2.4,2.3c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.8,0-1.1L48.3,23.5 M33.7,27.1c-0.4,0-0.8-0.4-0.7-0.8v-3.2h1.5v3.2
C34.5,26.7,34.1,27.1,33.7,27.1"/>
</g>
<g>
<path class="st4" d="M22.5,27.1c-0.2,0-0.4-0.1-0.5-0.2l-4.5-4.5v3.9c0,0.4-0.3,0.8-0.8,0.8c-0.4,0-0.8-0.3-0.8-0.8v-5.8
c0-0.3,0.2-0.6,0.5-0.7c0.3-0.1,0.6-0.1,0.8,0.2l4.5,4.5v-3.9c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.3,0.8,0.8v5.8
C23.3,26.8,22.9,27.1,22.5,27.1 M26,19.8l-0.2,0.4l-1.6,2.9L24,23.5l0.2,0.4l1.6,2.8l0.2,0.4h4.2l0.2-0.4l1.2-2.4l0.5-1.1H31
l-3.1,0c-0.4,0-0.8,0.4-0.8,0.8c0,0.4,0.4,0.8,0.8,0.8l1.9,0l-0.5,0.9h-2.4l-1.2-2.1l1.2-2.2h2.5l0.6,1.2h1.5l-1-2.3l-0.2-0.4H26
M33.7,19.8c-0.4,0-0.8,0.4-0.7,0.8v2h1.5v-2C34.5,20.2,34.1,19.8,33.7,19.8 M36.1,27.1c-0.4,0-0.8-0.3-0.8-0.8v-5.8
c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.3,0.8,0.8v3.9l4.5-4.5c0.2-0.2,0.5-0.3,0.8-0.2c0.3,0.1,0.5,0.4,0.5,0.7v5.8
c0,0.4-0.3,0.8-0.8,0.8c-0.4,0-0.8-0.3-0.8-0.8v-3.9l-4.5,4.5C36.5,27,36.3,27.1,36.1,27.1 M48.3,23.5l2.4-2.3
c0.3-0.3,0.3-0.8,0-1.1c-0.3-0.3-0.8-0.3-1.1,0l-2.4,2.3L44.8,20c-0.3-0.3-0.8-0.3-1.1,0c-0.3,0.3-0.3,0.8,0,1.1l2.4,2.3l-2.3,2.3
c-0.3,0.3-0.3,0.8,0,1.1c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2l2.4-2.3l2.4,2.3c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.8,0-1.1L48.3,23.5 M33.7,27.1c-0.4,0-0.8-0.4-0.7-0.8v-3.2h1.5v3.2
C34.5,26.7,34.1,27.1,33.7,27.1"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

15
src/commons/model/link.ts Normal file
View File

@ -0,0 +1,15 @@
import * as d3 from 'd3';
import { Node } from './node';
export class Link implements d3.SimulationLinkDatum<Node> {
source: Node;
target: Node;
index?: number;
constructor(source, target) {
this.source = source;
this.target = target;
}
}

42
src/commons/model/node.ts Normal file
View File

@ -0,0 +1,42 @@
import * as d3 from 'd3';
export class Node implements d3.SimulationNodeDatum {
/**
* Nodes zero-based index into nodes array. This property is set during the initialization process of a simulation.
*/
index?: number;
/**
* Nodes current x-position
*/
x?: number;
/**
* Nodes current y-position
*/
y?: number;
/**
* Nodes current x-velocity
*/
vx?: number;
/**
* Nodes current y-velocity
*/
vy?: number;
/**
* Nodes fixed x-position (if position was fixed)
*/
fx?: number | null;
/**
* Nodes fixed y-position (if position was fixed)
*/
fy?: number | null;
r?: number;
id: string;
constructor(id) {
this.id = id;
this.r = 50;
}
}

View File

@ -1,6 +1,6 @@
import { Injectable } from "@angular/core";
import { DiscoverHost, Zone } from "@overflow/model/discovery";
import { Observable, BehaviorSubject } from "rxjs";
import { Injectable } from '@angular/core';
import { DiscoverHost, Zone } from '@overflow/model/discovery';
import { Observable, BehaviorSubject } from 'rxjs';
@Injectable({
providedIn: 'root'
@ -35,4 +35,4 @@ export class DiscoveryConfigService {
this.startSubject.next(isStarted);
}
}
}

471
yarn.lock
View File

@ -261,6 +261,190 @@
semver "^5.3.0"
semver-intersect "^1.1.2"
"@types/d3-array@*":
version "1.2.1"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-array/-/d3-array-1.2.1.tgz#e489605208d46a1c9d980d2e5772fa9c75d9ec65"
"@types/d3-axis@*":
version "1.0.10"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-axis/-/d3-axis-1.0.10.tgz#41d6b3ea9032f9531ec0d71d83bcf49294511210"
dependencies:
"@types/d3-selection" "*"
"@types/d3-brush@*":
version "1.0.8"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-brush/-/d3-brush-1.0.8.tgz#2bb9b93e58115da9e0c94ac2b865e34d3631b69b"
dependencies:
"@types/d3-selection" "*"
"@types/d3-chord@*":
version "1.0.7"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-chord/-/d3-chord-1.0.7.tgz#6cb982d84c02bf1b05874d921316451546fde9c3"
"@types/d3-collection@*":
version "1.0.7"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-collection/-/d3-collection-1.0.7.tgz#829e1db477d6bbbcdc038cbc489f22798752d707"
"@types/d3-color@*":
version "1.2.1"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-color/-/d3-color-1.2.1.tgz#26141c3c554e320edd40726b793570a3ae57397e"
"@types/d3-contour@*":
version "1.2.1"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-contour/-/d3-contour-1.2.1.tgz#03d4f9849f8b99f841d2adf6f59b2dcf06987178"
dependencies:
"@types/d3-array" "*"
"@types/geojson" "*"
"@types/d3-dispatch@*":
version "1.0.6"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-dispatch/-/d3-dispatch-1.0.6.tgz#19b173f669cd2ab7dd3d862e8037aae1a98c7508"
"@types/d3-drag@*":
version "1.2.1"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-drag/-/d3-drag-1.2.1.tgz#6394bcf2f6414140b3b0d521259cadc6fa1da926"
dependencies:
"@types/d3-selection" "*"
"@types/d3-dsv@*":
version "1.0.33"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-dsv/-/d3-dsv-1.0.33.tgz#18de1867927f7ec898671aef82f730f16d4c7fcb"
"@types/d3-ease@*":
version "1.0.7"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-ease/-/d3-ease-1.0.7.tgz#93a301868be9e15061f3d44343b1ab3f8acb6f09"
"@types/d3-fetch@*":
version "1.1.2"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-fetch/-/d3-fetch-1.1.2.tgz#a59921477e25850ca6b3353e03d5d29e5a0e8e03"
dependencies:
"@types/d3-dsv" "*"
"@types/d3-force@*":
version "1.1.1"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-force/-/d3-force-1.1.1.tgz#185c18b77932df63457894bd36d0d6e9692546c0"
"@types/d3-format@*":
version "1.3.0"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-format/-/d3-format-1.3.0.tgz#c5e115fac8e6861ce656fe9861892b22f6b0cfcb"
"@types/d3-geo@*":
version "1.10.3"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-geo/-/d3-geo-1.10.3.tgz#3c01b2baa480e1108301096328dc2837e7ff4d8a"
dependencies:
"@types/geojson" "*"
"@types/d3-hierarchy@*":
version "1.1.4"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-hierarchy/-/d3-hierarchy-1.1.4.tgz#b04dfcb1f2074da789ada10fe4942d13f0bce421"
"@types/d3-interpolate@*":
version "1.2.0"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-interpolate/-/d3-interpolate-1.2.0.tgz#b5587e013f8afbbc0194046e6a66bb7b8f1c8619"
dependencies:
"@types/d3-color" "*"
"@types/d3-path@*":
version "1.0.7"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-path/-/d3-path-1.0.7.tgz#a0736fceed688a695f48265a82ff7a3369414b81"
"@types/d3-polygon@*":
version "1.0.6"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-polygon/-/d3-polygon-1.0.6.tgz#db25c630a2afb9191fe51ba61dd37baee9dd44c7"
"@types/d3-quadtree@*":
version "1.0.6"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-quadtree/-/d3-quadtree-1.0.6.tgz#45da9e603688ba90eedd3d40f6e504764e06e493"
"@types/d3-random@*":
version "1.1.1"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-random/-/d3-random-1.1.1.tgz#38647ce2ff4ce7d0d56974334c1c4092513c8b9f"
"@types/d3-scale-chromatic@*":
version "1.2.0"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-scale-chromatic/-/d3-scale-chromatic-1.2.0.tgz#c415744622fd8033f98ebcc9cf962dc8333dec97"
"@types/d3-scale@*":
version "2.0.1"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-scale/-/d3-scale-2.0.1.tgz#f94cd991c50422b2e68d8f43be3f9fffdb1ae7be"
dependencies:
"@types/d3-time" "*"
"@types/d3-selection@*":
version "1.3.2"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-selection/-/d3-selection-1.3.2.tgz#dd5661a560ba9ce3aba823c424b8d4a1bc7e833f"
"@types/d3-shape@*":
version "1.2.4"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-shape/-/d3-shape-1.2.4.tgz#e65585f2254d83ae42c47af2e730dd9b97952996"
dependencies:
"@types/d3-path" "*"
"@types/d3-time-format@*":
version "2.1.0"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-time-format/-/d3-time-format-2.1.0.tgz#011e0fb7937be34a9a8f580ae1e2f2f1336a8a22"
"@types/d3-time@*":
version "1.0.8"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-time/-/d3-time-1.0.8.tgz#6c083127b330b3c2fc65cd0f3a6e9cbd9607b28c"
"@types/d3-timer@*":
version "1.0.7"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-timer/-/d3-timer-1.0.7.tgz#053e6369d9485c9dc80bc62fc0851123341d7816"
"@types/d3-transition@*":
version "1.1.2"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-transition/-/d3-transition-1.1.2.tgz#1106fc3129decc9ad5682a9f52b2dfa52f14e57c"
dependencies:
"@types/d3-selection" "*"
"@types/d3-voronoi@*":
version "1.1.7"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-voronoi/-/d3-voronoi-1.1.7.tgz#c0a145cf04395927e01706ff6c4ff835c97a8ece"
"@types/d3-zoom@*":
version "1.7.1"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3-zoom/-/d3-zoom-1.7.1.tgz#0d69be0bf5849cffb66f48e4258c838436b43822"
dependencies:
"@types/d3-interpolate" "*"
"@types/d3-selection" "*"
"@types/d3@^5.0.0":
version "5.0.0"
resolved "https://nexus.loafle.net/repository/npm-all/@types/d3/-/d3-5.0.0.tgz#fec49f2aea0f0784f829eff38132926e92676d57"
dependencies:
"@types/d3-array" "*"
"@types/d3-axis" "*"
"@types/d3-brush" "*"
"@types/d3-chord" "*"
"@types/d3-collection" "*"
"@types/d3-color" "*"
"@types/d3-contour" "*"
"@types/d3-dispatch" "*"
"@types/d3-drag" "*"
"@types/d3-dsv" "*"
"@types/d3-ease" "*"
"@types/d3-fetch" "*"
"@types/d3-force" "*"
"@types/d3-format" "*"
"@types/d3-geo" "*"
"@types/d3-hierarchy" "*"
"@types/d3-interpolate" "*"
"@types/d3-path" "*"
"@types/d3-polygon" "*"
"@types/d3-quadtree" "*"
"@types/d3-random" "*"
"@types/d3-scale" "*"
"@types/d3-scale-chromatic" "*"
"@types/d3-selection" "*"
"@types/d3-shape" "*"
"@types/d3-time" "*"
"@types/d3-time-format" "*"
"@types/d3-timer" "*"
"@types/d3-transition" "*"
"@types/d3-voronoi" "*"
"@types/d3-zoom" "*"
"@types/events@*":
version "1.2.0"
resolved "https://nexus.loafle.net/repository/npm-all/@types/events/-/events-1.2.0.tgz#81a6731ce4df43619e5c8c945383b3e62a89ea86"
@ -271,6 +455,10 @@
dependencies:
"@types/node" "*"
"@types/geojson@*":
version "7946.0.4"
resolved "https://nexus.loafle.net/repository/npm-all/@types/geojson/-/geojson-7946.0.4.tgz#4e049756383c3f055dd8f3d24e63fb543e98eb07"
"@types/jasmine@*", "@types/jasmine@~2.8.6":
version "2.8.8"
resolved "https://nexus.loafle.net/repository/npm-all/@types/jasmine/-/jasmine-2.8.8.tgz#bf53a7d193ea8b03867a38bfdb4fbb0e0bf066c9"
@ -1520,14 +1708,14 @@ combined-stream@1.0.6, combined-stream@~1.0.5, combined-stream@~1.0.6:
dependencies:
delayed-stream "~1.0.0"
commander@2, commander@^2.12.1:
version "2.17.1"
resolved "https://nexus.loafle.net/repository/npm-all/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
commander@2.16.x, commander@~2.16.0:
version "2.16.0"
resolved "https://nexus.loafle.net/repository/npm-all/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50"
commander@^2.12.1:
version "2.17.1"
resolved "https://nexus.loafle.net/repository/npm-all/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
commander@~2.13.0:
version "2.13.0"
resolved "https://nexus.loafle.net/repository/npm-all/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
@ -1834,6 +2022,222 @@ cyclist@~0.2.2:
version "0.2.2"
resolved "https://nexus.loafle.net/repository/npm-all/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640"
d3-array@1, d3-array@^1.1.1, d3-array@^1.2.0:
version "1.2.4"
resolved "https://nexus.loafle.net/repository/npm-all/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f"
d3-axis@1:
version "1.0.12"
resolved "https://nexus.loafle.net/repository/npm-all/d3-axis/-/d3-axis-1.0.12.tgz#cdf20ba210cfbb43795af33756886fb3638daac9"
d3-brush@1:
version "1.0.6"
resolved "https://nexus.loafle.net/repository/npm-all/d3-brush/-/d3-brush-1.0.6.tgz#33691f2032d9db6c5d8cb684ff255a9883629e21"
dependencies:
d3-dispatch "1"
d3-drag "1"
d3-interpolate "1"
d3-selection "1"
d3-transition "1"
d3-chord@1:
version "1.0.6"
resolved "https://nexus.loafle.net/repository/npm-all/d3-chord/-/d3-chord-1.0.6.tgz#309157e3f2db2c752f0280fedd35f2067ccbb15f"
dependencies:
d3-array "1"
d3-path "1"
d3-collection@1:
version "1.0.7"
resolved "https://nexus.loafle.net/repository/npm-all/d3-collection/-/d3-collection-1.0.7.tgz#349bd2aa9977db071091c13144d5e4f16b5b310e"
d3-color@1:
version "1.2.3"
resolved "https://nexus.loafle.net/repository/npm-all/d3-color/-/d3-color-1.2.3.tgz#6c67bb2af6df3cc8d79efcc4d3a3e83e28c8048f"
d3-contour@1:
version "1.3.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-contour/-/d3-contour-1.3.2.tgz#652aacd500d2264cb3423cee10db69f6f59bead3"
dependencies:
d3-array "^1.1.1"
d3-dispatch@1:
version "1.0.5"
resolved "https://nexus.loafle.net/repository/npm-all/d3-dispatch/-/d3-dispatch-1.0.5.tgz#e25c10a186517cd6c82dd19ea018f07e01e39015"
d3-drag@1:
version "1.2.3"
resolved "https://nexus.loafle.net/repository/npm-all/d3-drag/-/d3-drag-1.2.3.tgz#46e206ad863ec465d88c588098a1df444cd33c64"
dependencies:
d3-dispatch "1"
d3-selection "1"
d3-dsv@1:
version "1.0.10"
resolved "https://nexus.loafle.net/repository/npm-all/d3-dsv/-/d3-dsv-1.0.10.tgz#4371c489a2a654a297aca16fcaf605a6f31a6f51"
dependencies:
commander "2"
iconv-lite "0.4"
rw "1"
d3-ease@1:
version "1.0.5"
resolved "https://nexus.loafle.net/repository/npm-all/d3-ease/-/d3-ease-1.0.5.tgz#8ce59276d81241b1b72042d6af2d40e76d936ffb"
d3-fetch@1:
version "1.1.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-fetch/-/d3-fetch-1.1.2.tgz#957c8fbc6d4480599ba191b1b2518bf86b3e1be2"
dependencies:
d3-dsv "1"
d3-force@1:
version "1.1.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-force/-/d3-force-1.1.2.tgz#16664d0ac71d8727ef5effe0b374feac8050d6cd"
dependencies:
d3-collection "1"
d3-dispatch "1"
d3-quadtree "1"
d3-timer "1"
d3-format@1:
version "1.3.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-format/-/d3-format-1.3.2.tgz#6a96b5e31bcb98122a30863f7d92365c00603562"
d3-geo@1:
version "1.11.1"
resolved "https://nexus.loafle.net/repository/npm-all/d3-geo/-/d3-geo-1.11.1.tgz#3f35e582c0d29296618b02a8ade0fdffb2c0e63c"
dependencies:
d3-array "1"
d3-hierarchy@1:
version "1.1.8"
resolved "https://nexus.loafle.net/repository/npm-all/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz#7a6317bd3ed24e324641b6f1e76e978836b008cc"
d3-interpolate@1:
version "1.3.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-interpolate/-/d3-interpolate-1.3.2.tgz#417d3ebdeb4bc4efcc8fd4361c55e4040211fd68"
dependencies:
d3-color "1"
d3-path@1:
version "1.0.7"
resolved "https://nexus.loafle.net/repository/npm-all/d3-path/-/d3-path-1.0.7.tgz#8de7cd693a75ac0b5480d3abaccd94793e58aae8"
d3-polygon@1:
version "1.0.5"
resolved "https://nexus.loafle.net/repository/npm-all/d3-polygon/-/d3-polygon-1.0.5.tgz#9a645a0a64ff6cbf9efda96ee0b4a6909184c363"
d3-quadtree@1:
version "1.0.5"
resolved "https://nexus.loafle.net/repository/npm-all/d3-quadtree/-/d3-quadtree-1.0.5.tgz#305394840b01f51a341a0da5008585e837fe7e9b"
d3-random@1:
version "1.1.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-random/-/d3-random-1.1.2.tgz#2833be7c124360bf9e2d3fd4f33847cfe6cab291"
d3-scale-chromatic@1:
version "1.3.3"
resolved "https://nexus.loafle.net/repository/npm-all/d3-scale-chromatic/-/d3-scale-chromatic-1.3.3.tgz#dad4366f0edcb288f490128979c3c793583ed3c0"
dependencies:
d3-color "1"
d3-interpolate "1"
d3-scale@2:
version "2.1.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-scale/-/d3-scale-2.1.2.tgz#4e932b7b60182aee9073ede8764c98423e5f9a94"
dependencies:
d3-array "^1.2.0"
d3-collection "1"
d3-format "1"
d3-interpolate "1"
d3-time "1"
d3-time-format "2"
d3-selection@1, d3-selection@^1.1.0:
version "1.3.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-selection/-/d3-selection-1.3.2.tgz#6e70a9df60801c8af28ac24d10072d82cbfdf652"
d3-shape@1:
version "1.2.2"
resolved "https://nexus.loafle.net/repository/npm-all/d3-shape/-/d3-shape-1.2.2.tgz#f9dba3777a5825f9a8ce8bc928da08c17679e9a7"
dependencies:
d3-path "1"
d3-time-format@2:
version "2.1.3"
resolved "https://nexus.loafle.net/repository/npm-all/d3-time-format/-/d3-time-format-2.1.3.tgz#ae06f8e0126a9d60d6364eac5b1533ae1bac826b"
dependencies:
d3-time "1"
d3-time@1:
version "1.0.10"
resolved "https://nexus.loafle.net/repository/npm-all/d3-time/-/d3-time-1.0.10.tgz#8259dd71288d72eeacfd8de281c4bf5c7393053c"
d3-timer@1:
version "1.0.9"
resolved "https://nexus.loafle.net/repository/npm-all/d3-timer/-/d3-timer-1.0.9.tgz#f7bb8c0d597d792ff7131e1c24a36dd471a471ba"
d3-transition@1:
version "1.1.3"
resolved "https://nexus.loafle.net/repository/npm-all/d3-transition/-/d3-transition-1.1.3.tgz#3a435b05ce9cef9524fe0d38121cfb6905331ca6"
dependencies:
d3-color "1"
d3-dispatch "1"
d3-ease "1"
d3-interpolate "1"
d3-selection "^1.1.0"
d3-timer "1"
d3-voronoi@1:
version "1.1.4"
resolved "https://nexus.loafle.net/repository/npm-all/d3-voronoi/-/d3-voronoi-1.1.4.tgz#dd3c78d7653d2bb359284ae478645d95944c8297"
d3-zoom@1:
version "1.7.3"
resolved "https://nexus.loafle.net/repository/npm-all/d3-zoom/-/d3-zoom-1.7.3.tgz#f444effdc9055c38077c4299b4df999eb1d47ccb"
dependencies:
d3-dispatch "1"
d3-drag "1"
d3-interpolate "1"
d3-selection "1"
d3-transition "1"
d3@^5.7.0:
version "5.7.0"
resolved "https://nexus.loafle.net/repository/npm-all/d3/-/d3-5.7.0.tgz#f189d338bdde62acf02f308918e0ec34dd7568f9"
dependencies:
d3-array "1"
d3-axis "1"
d3-brush "1"
d3-chord "1"
d3-collection "1"
d3-color "1"
d3-contour "1"
d3-dispatch "1"
d3-drag "1"
d3-dsv "1"
d3-ease "1"
d3-fetch "1"
d3-force "1"
d3-format "1"
d3-geo "1"
d3-hierarchy "1"
d3-interpolate "1"
d3-path "1"
d3-polygon "1"
d3-quadtree "1"
d3-random "1"
d3-scale "2"
d3-scale-chromatic "1"
d3-selection "1"
d3-shape "1"
d3-time "1"
d3-time-format "2"
d3-timer "1"
d3-transition "1"
d3-voronoi "1"
d3-zoom "1"
d@1:
version "1.0.0"
resolved "https://nexus.loafle.net/repository/npm-all/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
@ -3401,6 +3805,12 @@ humanize-plus@^1.8.1:
version "1.8.2"
resolved "https://nexus.loafle.net/repository/npm-all/humanize-plus/-/humanize-plus-1.8.2.tgz#a65b34459ad6367adbb3707a82a3c9f916167030"
iconv-lite@0.4:
version "0.4.24"
resolved "https://nexus.loafle.net/repository/npm-all/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
dependencies:
safer-buffer ">= 2.1.2 < 3"
iconv-lite@0.4.19:
version "0.4.19"
resolved "https://nexus.loafle.net/repository/npm-all/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
@ -3535,6 +3945,25 @@ invert-kv@^1.0.0:
version "1.0.0"
resolved "https://nexus.loafle.net/repository/npm-all/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
ip-address@^5.8.6:
version "5.8.9"
resolved "https://nexus.loafle.net/repository/npm-all/ip-address/-/ip-address-5.8.9.tgz#6379277c23fc5adb20511e4d23ec2c1bde105dfd"
dependencies:
jsbn "1.1.0"
lodash.find "^4.6.0"
lodash.max "^4.0.1"
lodash.merge "^4.6.0"
lodash.padstart "^4.6.1"
lodash.repeat "^4.1.0"
sprintf-js "1.1.0"
ip-cidr@^2.0.0:
version "2.0.0"
resolved "https://nexus.loafle.net/repository/npm-all/ip-cidr/-/ip-cidr-2.0.0.tgz#923009291b65797f0a6462b220063060091c334c"
dependencies:
ip-address "^5.8.6"
jsbn "^0.1.0"
ip@^1.1.0, ip@^1.1.5:
version "1.1.5"
resolved "https://nexus.loafle.net/repository/npm-all/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
@ -3983,7 +4412,11 @@ js-yaml@3.x, js-yaml@^3.12.0, js-yaml@^3.7.0, js-yaml@^3.9.0:
argparse "^1.0.7"
esprima "^4.0.0"
jsbn@~0.1.0:
jsbn@1.1.0:
version "1.1.0"
resolved "https://nexus.loafle.net/repository/npm-all/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040"
jsbn@^0.1.0, jsbn@~0.1.0:
version "0.1.1"
resolved "https://nexus.loafle.net/repository/npm-all/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
@ -4300,10 +4733,30 @@ lodash.debounce@^4.0.8:
version "4.0.8"
resolved "https://nexus.loafle.net/repository/npm-all/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
lodash.find@^4.6.0:
version "4.6.0"
resolved "https://nexus.loafle.net/repository/npm-all/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1"
lodash.max@^4.0.1:
version "4.0.1"
resolved "https://nexus.loafle.net/repository/npm-all/lodash.max/-/lodash.max-4.0.1.tgz#8735566c618b35a9f760520b487ae79658af136a"
lodash.merge@^4.6.0:
version "4.6.1"
resolved "https://nexus.loafle.net/repository/npm-all/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54"
lodash.mergewith@^4.6.0:
version "4.6.1"
resolved "https://nexus.loafle.net/repository/npm-all/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927"
lodash.padstart@^4.6.1:
version "4.6.1"
resolved "https://nexus.loafle.net/repository/npm-all/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b"
lodash.repeat@^4.1.0:
version "4.1.0"
resolved "https://nexus.loafle.net/repository/npm-all/lodash.repeat/-/lodash.repeat-4.1.0.tgz#fc7de8131d8c8ac07e4b49f74ffe829d1f2bec44"
lodash.tail@^4.1.1:
version "4.1.1"
resolved "https://nexus.loafle.net/repository/npm-all/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664"
@ -5966,6 +6419,10 @@ run-queue@^1.0.0, run-queue@^1.0.3:
dependencies:
aproba "^1.1.1"
rw@1:
version "1.3.3"
resolved "https://nexus.loafle.net/repository/npm-all/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
rx@^4.1.0:
version "4.1.0"
resolved "https://nexus.loafle.net/repository/npm-all/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
@ -6468,6 +6925,10 @@ split@0.3:
dependencies:
through "2"
sprintf-js@1.1.0:
version "1.1.0"
resolved "https://nexus.loafle.net/repository/npm-all/sprintf-js/-/sprintf-js-1.1.0.tgz#cffcaf702daf65ea39bb4e0fa2b299cec1a1be46"
sprintf-js@^1.0.3:
version "1.1.1"
resolved "https://nexus.loafle.net/repository/npm-all/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c"