1
1
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2026-05-25 12:51:25 +00:00

Transition to mkdocs (#829)

Co-authored-by: Jonah Aragon <jonah@triplebit.net>
This commit is contained in:
Daniel Gray
2022-04-01 19:29:18 +00:00
parent 78b49b2f4e
commit 8ef8e2a263
742 changed files with 4489 additions and 6624 deletions
-110
View File
@@ -1,110 +0,0 @@
---
---
@import "./node_modules/bootstrap/scss/functions";
@import "brand";
@import "./node_modules/bootstrap/scss/variables";
@import "variables";
@import "./node_modules/bootstrap/scss/mixins";
@import "./node_modules/bootstrap/scss/utilities";
.flowchart{
width: 40vmax;
float: center;
padding: 10px;
background-color: var(--bs-body-bg);
}
$dm-grays: (
"dm-white": $white,
"dm-100": $gray-100,
"dm-200": $gray-200,
"dm-300": $gray-300,
"dm-400": $gray-400,
"dm-500": $gray-500,
"dm-600": $gray-600,
"dm-700": $gray-700,
"dm-800": $gray-800,
"dm-900": $gray-900,
"dm-black": $black
);
$all-colors: map-merge-multiple($blues, $indigos, $purples, $pinks, $reds, $oranges, $yellows, $greens, $teals, $cyans, $grays, $dm-grays);
$utilities: map-merge(
$utilities,
(
"color": map-merge(
map-get($utilities, "color"),
(
values: map-merge(
map-get(map-get($utilities, "color"), "values"),
(
$all-colors
),
),
),
),
)
);
$utilities: map-merge(
$utilities,
(
"background-color": map-merge(
map-get($utilities, "background-color"),
(
values: map-merge(
map-get(map-get($utilities, "background-color"), "values"),
(
$all-colors
),
),
),
),
)
);
.container-fullwidth {
margin: 0 auto;
width: 100%;
}
@font-face {
font-family: Bagnard;
src: url("/assets/fonts/Bagnard.woff") format("woff"), url("/assets/fonts/Bagnard.ttf") format("truetype"), url("/assets/fonts/Bagnard.otf") format("opentype");
}
h1, h2, h3:not(.h5), h4 {
font-family: "Bagnard", serif;
}
// import /_sass/bootstrap.scss
@import "./node_modules/bootstrap/scss/bootstrap";
@import "pg-font";
@import "flag-icon";
@import "terminal";
.textColor {
fill: $dark;
}
.post-info, .post-title {
color: theme-color("light");
display: inline;
padding: $spacer;
/* Needs prefixing */
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}
.navbar-logo {
@media (max-width: 400px) {
width: 50px;
}
@media (min-width: 401px) {
width: 300px;
}
}
@import "custom";
-136
View File
@@ -1,136 +0,0 @@
---
---
@import "./node_modules/bootstrap/scss/functions";
@import "brand";
$primary: #EAB448;
$secondary: lighten( $secondary, 30% );
$success: darken( $success, 10% );
$info: darken( $info, 5% );
$danger: lighten( $warning, 20% );
$warning: darken( $warning, 30% );
$body-bg: $dark;
$card-bg: lighten( $dark, 5% );
$body-color: $light;
$link-color: lighten( $link-color, 30% );
$mark-bg: darken( $primary, 60% );
$hr-border-color: $body-color;
@import "./node_modules/bootstrap/scss/variables";
@import "variables";
.flowchart{
width: 40vmax;
float: center;
padding: 10px;
background-color: var(--bs-body-bg);
}
$dm-grays: (
"dm-white": $black,
"dm-100": $gray-900,
"dm-200": $gray-800,
"dm-300": $gray-700,
"dm-400": $gray-600,
"dm-500": $gray-500,
"dm-600": $gray-400,
"dm-700": $gray-300,
"dm-800": $gray-200,
"dm-900": $gray-100,
"dm-black": $white
);
$card-shadow: 0 3px 10px 0 $dark;
$list-group-color: $body-color;
$list-group-bg: $card-bg;
$alert-bg-level: 4;
$alert-border-level: 3;
$alert-color-level: -10;
$table-border-color: lighten( $dark, 20% );
$table-active-bg: rgba($white, .075);
$table-head-color: $white;
/*$navbar-light-color: ;
$navbar-light-hover-color: ;
$navbar-light-active-color: $white;
$navbar-light-disabled-color: rgba($white, .25);
$navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-light-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
$navbar-light-toggler-border-color: rgba($white, .1);*/
$dropdown-bg: $card-bg;
$dropdown-link-color: rgba($white, .5);
$dropdown-link-hover-color: rgba($white, .75);
$dropdown-link-hover-bg: lighten( $dropdown-bg, 10% );
.container-fullwidth {
margin: 0 auto;
width: 100%;
}
@import "./node_modules/bootstrap/scss/mixins";
@import "./node_modules/bootstrap/scss/utilities";
$all-colors: map-merge-multiple($blues, $indigos, $purples, $pinks, $reds, $oranges, $yellows, $greens, $teals, $cyans, $grays, $dm-grays);
$utilities: map-merge(
$utilities,
(
"color": map-merge(
map-get($utilities, "color"),
(
values: map-merge(
map-get(map-get($utilities, "color"), "values"),
(
$all-colors
),
),
),
),
)
);
$utilities: map-merge(
$utilities,
(
"background-color": map-merge(
map-get($utilities, "background-color"),
(
values: map-merge(
map-get(map-get($utilities, "background-color"), "values"),
(
$all-colors
),
),
),
),
)
);
// import /_sass/bootstrap.scss
@import "./node_modules/bootstrap/scss/bootstrap";
@import "pg-font";
@import "flag-icon";
$svg-primary: $primary;
$svg-dark: $light;
$svg-light: $card-bg;
.textColor { // Navbar logo text
fill: $light;
}
.post-info, .post-title {
color: $light;
display: inline;
padding: $spacer;
/* Needs prefixing */
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}
mark, .mark {
color: $body-color;
}
@import "custom";
-9
View File
@@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/assets/img/layout/mstile-150x150.png"/>
<TileColor>#ffd06f</TileColor>
</tile>
</msapplication>
</browserconfig>
-19
View File
@@ -1,19 +0,0 @@
{
"name": "Privacy Guides",
"short_name": "Privacy Guides",
"icons": [
{
"src": "/assets/img/layout/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/assets/img/layout/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffd06f",
"background_color": "#ffd06f",
"display": "standalone"
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-218
View File
@@ -1,218 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 2022-03-20T10:13:48+00:00
By elitejake
CC0 1.0 Universal Public Domain Dedication.
See the license here: https://github.com/privacyguides/privacyguides.org/blob/main/LICENSE
</metadata>
<defs>
<font id="pg-font" horiz-adv-x="512" >
<font-face
font-family="pg"
font-weight="400"
font-stretch="normal"
units-per-em="512"
panose-1="2 0 5 9 0 0 0 0 0 0"
ascent="448"
descent="-64"
bbox="-0.00195312 -64.6136 512.014 449.557"
underline-thickness="25"
underline-position="-51"
unicode-range="U+F100-F10C"
/>
<missing-glyph />
<glyph glyph-name="f_droid" unicode="&#xf100;"
d="M14.5039 444.762v0.00683594c3.76562 -0.101562 8.65625 -2.63086 10.915 -5.64551l38.6768 -50.0527c3.51758 1.23047 7.30176 1.90137 11.25 1.90137h361.307c3.94727 0 7.73145 -0.670898 11.248 -1.90137l38.6758 50.0498
c2.25879 3.01465 7.14941 5.54297 10.915 5.64453c0.107422 0.00292969 0.282227 0.00585938 0.390625 0.00585938c7.79102 0 14.1143 -6.32422 14.1143 -14.1152c0 -2.72754 -1.37988 -6.6709 -3.08008 -8.80273l-40.6318 -52.582
c1.44629 -3.77539 2.24121 -7.87891 2.24121 -12.1748v-79.0352c0 -18.7656 -15.1074 -33.873 -33.873 -33.873h-361.307c-18.7656 0 -33.8721 15.1074 -33.8721 33.873v79.0352c0 4.29492 0.793945 8.39648 2.23926 12.1709l-40.6318 52.583
c-1.70117 2.13184 -3.08105 6.0752 -3.08105 8.80273c0 7.79102 6.32324 14.1143 14.1152 14.1143c0.107422 0 0.28125 -0.00195312 0.388672 -0.00488281zM147.324 348.627v0c-21.0352 0 -38.1064 -17.0713 -38.1064 -38.1064v0
c0 -21.0352 17.0713 -38.1064 38.1064 -38.1064v0c21.0352 0 38.1064 17.0713 38.1064 38.1064v0c0 21.0352 -17.0713 38.1064 -38.1064 38.1064zM367.497 348.627c-21.0342 0 -38.1055 -17.0713 -38.1055 -38.1064v0c0 -21.0352 17.0713 -38.1064 38.1055 -38.1064
h0.000976562c21.0352 0 38.1064 17.0713 38.1064 38.1064v0c0 21.0352 -17.0723 38.1064 -38.1064 38.1064h-0.000976562zM75.3438 232.938h361.301c18.7646 0 33.8721 -15.1074 33.8721 -33.873v-225.816c0 -18.7656 -15.1064 -33.873 -33.8721 -33.873h-361.301
c-18.7656 0 -33.8721 15.1074 -33.8721 33.873v225.816c0 18.7656 15.1064 33.873 33.8721 33.873zM255.998 204.71c-65.3486 0 -118.553 -53.2041 -118.553 -118.553c0 -65.3477 53.2041 -118.553 118.553 -118.553c65.3477 0 118.552 53.2051 118.552 118.553
c0 65.3486 -53.2041 118.553 -118.552 118.553zM255.998 183.253c53.7549 0 97.0977 -43.3428 97.0977 -97.0977s-43.3428 -97.0977 -97.0977 -97.0977c-53.7559 0 -97.0977 43.3428 -97.0977 97.0977c0 53.7549 43.3418 97.0977 97.0977 97.0977zM255.998 156.724
l-0.00292969 -0.00195312c-32.5244 0 -60.0645 -22.4082 -68.1191 -52.5068h36.2764c6.25879 11.125 18.0098 18.6348 31.8438 18.6348c20.4668 0 36.6953 -16.2285 36.6953 -36.6953s-16.2285 -36.6953 -36.6953 -36.6953c-14.7617 0 -27.2246 8.49902 -33.0781 20.8838
h-35.6152c7.25195 -31.2285 35.3633 -54.7568 68.6953 -54.7568c38.7725 0 70.5684 31.7949 70.5684 70.5693c0 38.7734 -31.7959 70.5684 -70.5684 70.5684z" />
<glyph glyph-name="i2p" unicode="&#xf10c;"
d="M269.511 -15.3545c-15.3037 -7.33789 -16.7529 -9.62402 -35.4824 -9.78711c-18.0352 0.485352 -44.4922 1.70996 -52.1738 10.8486c-14.8477 18.3525 -17.3076 7.97949 -17.7285 3.83008c-1.11914 -11.2002 -27.1299 -23.7705 -11.3193 -35.3506
c4.62988 -3.38965 10.5498 -2.64941 15.96 -2.64941h34c17.5098 0 35.54 -1.25977 53 0.0595703c4.08008 0.299805 6.1582 3.87988 9.99805 3.98047c0.391602 9.24219 0.787109 8.7041 3.74609 29.0684zM267.11 433.006
c-7.73242 0.00683594 -15.5459 -0.811523 -23.3438 -2.5c-43.9307 -9.50684 -76.5625 -43.4434 -88.5625 -85.9688c-10.5303 -37.3301 1.89453 -78.4941 27.375 -106.844c6.70996 -7.45996 14.8613 -14.1025 23.2812 -19.5625
c3.72949 -2.41992 9.79883 -4.83496 10.9688 -9.625c1.31934 -5.41992 -4.35547 -13.749 -5.875 -18.9688c-5.82031 -19.96 -16.3877 -38.7803 -21.1875 -59l18 -8c9.24023 17.5303 14.7822 38.3594 21.5625 57c2.30957 6.34961 3.5625 17.1602 9.5625 21.25
c4.72949 3.21973 14.5146 0.416016 19.875 -0.09375c10.8398 -1.03027 23.3701 -0.681641 34 1.71875c52.2197 11.7695 89.7188 57.8447 91.9688 111.125c2.76953 65.6963 -54.6611 119.413 -117.625 119.469v0.0001zM318.142 385.068
c44.7139 0.142578 56.0029 -72.2188 6.625 -82.7188c-52.2002 -11.1006 -68.4199 70.5361 -16 81.6562c3.26953 0.693359 6.39355 1.05273 9.375 1.0625v0.0001zM217.235 381.443c45.1152 1.12305 56.6514 -74.4219 9.53125 -81.6875
c-7.89062 -1.20996 -18.5498 -1.72168 -26 1.46875c-40.25 17.2402 -29.9404 74.3516 12 79.875c1.52441 0.200195 3.01367 0.307617 4.46875 0.34375zM292.767 325.537c3 3.95996 5.41992 9.51953 10.1797 11.6602c15.75 7.06934 24.4902 -8.35059 22.8203 -21.6602
c38.7998 11.2002 14.1094 71.9072 -22 53.8496c-4.33984 -2.16797 -8.16992 -5.94336 -10.96 -9.84961c-3.18066 -4.48047 -5.24023 -9.49023 -5.70996 -15c-0.589844 -6.86035 2.58984 -13.1299 5.66992 -19zM205.767 312.537
c-1.86035 8.12988 -2.94043 15.0693 3.37988 21.79c10.5 11.1602 28.7402 3.58008 30.6201 -10.79c9.51953 9.42969 5.9502 29.2295 -3.16992 37.7402c-12.5801 11.7236 -31.9902 10.3887 -42.8906 -2.76074c-3.75977 -4.51953 -5.37012 -9.21973 -6.16992 -14.9795
c-0.769531 -5.56055 0.25 -11.8799 2.58008 -17c3.12012 -6.83008 8.90039 -11.1699 15.6504 -14zM246.767 189.537c-8.48047 -15.9199 -15.4102 -36.5703 -20.0801 -54c-1.36035 -5.06055 -6.23047 -11.6699 -4.88965 -17
c3.19922 -12.7598 17.1299 -22.54 28.9697 -25.6201c22.3398 -5.83008 48.1494 -7.53027 70 1.07031c3.87988 1.5293 9.74023 2.88965 11.9697 6.73926c2.07031 3.57031 0.820312 8.86035 1.2002 12.8105c0.990234 10.2002 6.53027 18.5195 16.8301 21
c0.00976562 9.10938 1.66992 18.7197 8.45996 25.4697c3.91016 3.88965 10.2002 6.15039 14.1396 1.19043c9.75 -12.3008 -3.7002 -27.6807 12.4004 -36.6602c13.7598 29.4199 26.3398 75.1201 -15 88.7402c-5.23047 1.72949 -11.3604 4.62988 -17 4.0791
c-10.25 -1.00977 -22.6807 -14.2695 -32.4199 -18.7295c-22.2305 -10.1797 -50.54 -14.8799 -74.5801 -9.08984zM146.767 121.537c3.17969 4.16992 6.58008 7.18945 11 10c-1.96973 3.91992 -6.68066 6.5 -7.45996 11c-1.64062 9.41016 12.1895 20.9297 20.46 21.8193
c4.37988 0.480469 12.2998 -5.0791 15.4902 -2.98926c2.50977 1.63965 3.41992 6.5498 4.50977 9.16992c3.09961 7.50977 12.8701 25.96 7.96973 33.7197c-5.7998 9.2002 -26.7998 -3.72949 -32.9697 -7.21973c-13.6406 -7.73047 -26.4805 -17.21 -39 -26.6299
c-3.86035 -2.90039 -12.3398 -8.01074 -13.4805 -13c-1.23926 -5.43066 2.89062 -10.1699 6.2002 -13.8301c7.66992 -8.5 17.1699 -16.6406 27.2803 -22.04zM352.767 121.537l1 -1zM353.807 120.797c-8.50977 -3.44043 -8.50977 -27.1797 -1.48047 -32.2295
c3.87012 -2.78027 17.29 0.649414 21.4404 2.31934c23.4902 9.45996 -4.62988 36.1006 -19.96 29.9102zM210.767 94.5371c-6.75977 9.01953 -21.9307 17.4395 -33 19.5303c-4.52051 0.849609 -12.1807 1.70996 -14.2402 -3.59082
c-2.55957 -6.56934 3.94043 -13.0596 9.24023 -15.6094c11.7998 -5.69043 25.8994 -4.16992 38 -0.330078zM366.767 74.5371c-17.0098 -3.2002 -27.0703 -2.96973 -31 16c-11.9102 -1.56055 -23.6201 -7.7998 -36 -9.57031
c-4.10059 -0.589844 -11.0801 0.980469 -14.2998 -2.03027c-5.10059 -4.76953 -5.44043 -14.0195 -5.74023 -20.3994c-0.219727 -4.66016 -2.39062 -9.33008 -1.60059 -14c1.7207 -10.2598 13.3809 -21.1807 19.7402 -29
c4.58984 -5.66016 10.5898 -14.2998 17.9004 -16.4902c8.24023 -2.45996 16.5498 4.65039 23 8.83008c9.20996 5.99023 19.9795 13.4199 24.9795 23.6602c2.33008 4.78027 0.910156 11.8193 1.04004 17c0.209961 8.7002 1.98047 17.2598 1.98047 26zM166.767 75.5371
c0 -13.9404 -0.509766 -25.9502 5.21973 -39c4.77051 -10.8604 10.96 -21.1006 18.9502 -30c6.91992 -7.7002 14.8301 -8.95996 24.8301 -9c17.21 -0.0800781 33.7295 6.20996 42.4795 22c11.0703 19.9697 3.58008 55.0195 -21.5195 61.3096
c-7.81055 1.9502 -23.6797 -6.34961 -31.96 -8.09961c-13.6504 -2.89062 -24.79 0.540039 -38 2.79004zM374.767 53.5371c-0.860352 -6.78027 1.34961 -18.2197 -1.49023 -24.2002c-7.25 -15.25 -24.4502 -25.4404 -38.5098 -33.6602
c-6.58008 -3.83984 -13.1904 -7.72949 -21 -5.03027c-16.7705 5.80078 -20.9404 25.7607 -35 33.8906c0 -8.86035 0.299805 -16.6904 3.74023 -25c17.5791 -42.4307 71.5 -11.8398 89.46 14c7.42969 10.6895 13.3496 29.4697 2.7998 40v7e-05zM166.767 50.5371l1 -1z
M164.767 27.5371c2.62988 -10.96 11.1094 -20.7998 17.2803 -30.04c2.16992 -3.23047 4.51953 -8.56055 8.09961 -10.4004c4.57031 -2.34961 11.5801 -2.10938 16.6201 -2.71973c15.3096 -1.83008 33.2598 -2.58984 48 2.5c5.62988 1.9502 11.75 4.01953 14.6797 9.66016
c2.98047 5.74023 -0.55957 14.0303 -1.67969 20c-5.56055 -5.91992 -9.39062 -12.4307 -16 -17.54c-14.2305 -10.9805 -43.1406 -17.7598 -59 -6.03027c-12.4307 9.19043 -17.4199 24.3105 -28 34.5703zM175.767 27.5371l1 -1zM288.767 27.5371l1 -1zM278.353 -15.71
c-3.21875 -13.6396 -2.83105 -10.6338 -5.35352 -28.5947c3.70215 -1.11914 2.1875 -3.09863 6.76758 -3.1582c18.3096 -0.219727 36.6797 2 55 2l40 1c4.66016 0.00976562 12.5303 -0.5 16.1201 3.03027c8.05957 7.93945 -1.26074 18.0596 -7.12012 23.25
c-2 1.76953 -6.69043 5 -6.21973 8.12988c1.09961 9.03516 -1.60938 15.8027 -13.0361 0.888672c-8.7998 -6.59863 -11.4062 -7.99707 -26.3232 -13.3799c-9.52051 -2.7793 -24.999 -5.64941 -35.6396 -3.8125c-18.0244 2.48438 -18.0508 7.63281 -24.1953 10.6465z" />
<glyph glyph-name="ios" unicode="&#xf101;"
d="M125.831 448h260.341c69.7109 0 125.831 -56.1201 125.831 -125.831v-260.341c0 -69.7109 -56.1201 -125.831 -125.831 -125.831h-260.341c-69.7109 0 -125.831 56.1201 -125.831 125.831v260.341c0 69.7109 56.1201 125.831 125.831 125.831zM59.2627 96.6289h32.8428
v139.813h-32.8428zM75.6191 254.78c10.2881 0 18.334 7.91406 18.334 17.8066c0 10.0244 -8.0459 17.9385 -18.334 17.9385c-10.1572 0 -18.2021 -7.91406 -18.2021 -17.9385c0 -9.89355 8.0459 -17.8066 18.2021 -17.8066zM201.456 290.132
c-55.5283 0 -90.3516 -37.8545 -90.3516 -98.4004s34.8174 -98.2686 90.3516 -98.2686c55.3975 0 90.2197 37.7227 90.2197 98.2686s-34.8174 98.4004 -90.2197 98.4004zM201.456 261.111c33.9004 0 55.5283 -26.9062 55.5283 -69.3799
c0 -42.3398 -21.6309 -69.249 -55.5283 -69.249c-34.0312 0 -55.5283 26.9062 -55.5283 69.249c0 42.4746 21.5 69.3799 55.5283 69.3799zM305.53 150.183c1.45117 -35.0879 30.2061 -56.7168 73.9971 -56.7168c46.0342 0 75.0547 22.6865 75.0547 58.8281
c0 28.3584 -16.3564 44.3203 -55.0029 53.1543l-21.8955 5.0127c-23.3467 5.54004 -32.9775 12.9268 -32.9775 25.5898c0 15.8281 14.5098 26.3789 36.0088 26.3789c21.7637 0 36.6689 -10.6846 38.251 -28.4893h32.4492
c-0.791992 33.5029 -28.4883 56.1914 -70.4346 56.1914c-41.4199 0 -70.834 -22.8184 -70.834 -56.585c0 -27.1699 16.6191 -44.0576 51.7051 -52.1006l24.666 -5.80371c24.0049 -5.67188 33.7686 -13.5859 33.7686 -27.3027c0 -15.8281 -15.96 -27.1699 -38.9092 -27.1699
c-23.2129 0 -40.7568 11.4756 -42.8652 29.0205h-32.9775z" />
<glyph glyph-name="linux" unicode="&#xf102;"
d="M451.886 44.2285l-0.000976562 0.00292969c11.0996 -12.3984 15.8984 -21.4971 15.499 -29.6963c-0.5 -8.2002 -6.49902 -13.7998 -13.8994 -18.2988c-14.8994 -8.99902 -37.2979 -15.7988 -50.8965 -32.1973c-14.2002 -16.8984 -31.6992 -26.5977 -48.2969 -27.8975
c-16.5 -1.30078 -31.998 6.29883 -40.2979 22.998v0.0996094c-1.09961 2.09961 -1.89941 4.39941 -2.49902 6.69922c-21.498 -1.19922 -40.1963 5.2998 -55.0947 4.09961c-21.999 -1.19922 -35.7979 -6.49902 -48.2969 -6.59863
c-4.7998 -10.5996 -14.2988 -17.5986 -25.8984 -20.1992c-15.9971 -3.69922 -36.0957 0 -55.8936 10.3994c-18.4971 9.79883 -41.9961 8.89941 -59.2949 12.499c-8.69922 1.7998 -16.2979 4.99902 -20.0977 12.2988c-3.7002 7.29883 -3 17.2979 2.19922 31.6973
c1.7002 5.09961 0.400391 12.6992 -0.799805 20.7979c-0.599609 3.90039 -1.2002 7.89941 -1.2002 11.7998c0 4.29883 0.700195 8.49902 2.7998 12.3984c4.5 8.5 11.7998 12.0986 18.499 14.499s12.7988 4 16.999 8.2998c5.19922 5.49902 10.0986 14.3984 16.5977 20.1982
c-2.59961 17.1963 0.200195 35.3955 6.2002 53.2939c12.5967 37.8975 39.1953 74.1934 58.0938 96.6914c16.0986 22.8975 20.7988 41.2959 22.498 64.6943c1.10059 31.7969 -24.4971 135.389 77.8945 135.188c80.8936 -0.0996094 76.2949 -85.3916 75.7949 -131.288
c-0.300781 -30.0977 16.2979 -50.4961 33.3965 -71.9951c15.2002 -18 35.0986 -44.2969 46.4971 -74.3936c9.2998 -24.6006 12.8994 -51.7969 3.7002 -79.0947c1.39941 -0.5 2.7998 -1.2002 4.09961 -2c1.39941 -0.799805 2.7002 -1.7998 4 -2.89941
c6.59863 -5.59961 8.69922 -14.2988 10.499 -22.3984c1.89941 -8.09863 3.59961 -15.6982 7.19922 -19.6982zM255.603 360.714h0.000976562c-3.19922 -7.19922 -3.89941 -14.8984 -2.89941 -21.7979c3.59961 -0.900391 8.89941 -2.40039 12.999 -4.39941
c-2.09961 12.1982 4.49902 23.498 11.7988 22.998c8.89941 -0.300781 13.8984 -15.499 9.09961 -27.2979c-0.800781 -1.90039 -2.7998 -3.40039 -3.90039 -4.59961c6.69922 -2.30078 10.999 -4.10059 12.5986 -4.90039c7.90039 9.5 10.7998 26.1982 4.2998 40.3975
c-9.7998 21.3984 -34.1973 21.7979 -43.9971 -0.400391zM214.905 372.214l0.000976562 -0.00195312c-18.8994 0 -23.998 -37.4951 -8.39941 -52.0938c7.79883 5.69922 6.89941 4.69922 5.89941 5.49902c-8 6.89941 -6.59961 27.3975 1.7998 28.0977
c6.29883 0.5 10.7988 -10.6992 9.59863 -19.5986c3.09961 2.10059 6.69922 3.60059 10.1992 4.59961c1.7002 19.2988 -8.99902 33.498 -19.0986 33.498zM202.571 304.373v0.000976562c-4.67871 -4.16504 2.83789 -10.7852 9.23438 -15.0332
c7.7998 -4.59961 11.999 -11.499 19.998 -14.999c2.59961 -1.09961 5.7002 -1.89941 9.59961 -2.09961c18.3984 -1.09961 27.0977 11.2988 38.1973 14.8984c9.13184 2.93262 27.8037 17.0635 12.1982 22.1064c-11.2988 4.89941 -16.2979 5.2002 -22.5977 9.2998
c-10.2988 6.59863 -18.7979 8.89844 -25.8975 8.89844c-14.3994 0 -23.2129 -9.7832 -27.8984 -14.1982c-0.513672 -0.485352 -6.63477 -4.27441 -12.834 -8.87402zM198.104 -17.0264l-0.000976562 -0.000976562c2.10059 20.5 -24.9951 34.9072 -34.4941 54.8057
l-19.5977 35.5967c-6.7998 9.19922 -13.7988 14.7988 -21.8984 15.999c-7.69922 1.19922 -12.1992 -1.40039 -17.2988 -6.89941c-4.7998 -5.09961 -8.7998 -12.2998 -14.2988 -17.999c-7.7998 -6.49902 -3.46777 -3.30859 -13.7666 -7.00879
c-6.2998 -2.19922 -9.67383 1.18066 -13.1729 -5.51855c-2.7002 -4.99902 -2.10059 -12.1992 -0.900391 -19.998c1.2002 -7.89941 3 -16.2988 0.600586 -23.8984v-0.200195c-5 -13.6982 -5 -18.8076 -2.60059 -23.5068c7.90039 -15.3994 38.7402 -1.04199 68.6377 -16.8408
c31.3965 -16.3994 66.0918 -19.6279 68.791 15.4697zM203.207 11.0391h-0.000976562c37.5967 -25.6973 82.1943 -15.6982 114.291 7.19922c3.2002 11 6.2998 13.7119 6.7998 21.4111c0.799805 15.1992 1.59961 28.6982 4.39941 39.8975
c3.09961 12.5986 9.2998 23.0977 21.3984 27.2979c2.2998 21.0977 18.6992 21.0977 38.2969 12.498c7.74512 -0.880859 18.4053 -13.8916 -24.2979 3.69141c-5.29883 29.0977 -17.498 62.9043 -23.5977 74.3027c-11.5 21.3975 -29.498 61.7178 -37.1973 92.1143
c-4.5 -6.39941 -12.3994 -11.8984 -22.2979 -14.998c-4.7002 -1.5 -9.69922 -5.5 -15.8994 -9c-13.8994 -7.99902 -29.998 -8.79883 -42.3965 1.2002c-4.5 3.59961 -7.99902 7.59961 -12.5986 10.2988c-1.60059 0.900391 -5.09961 3.2998 -6.2002 4.10059
c-2 -37.7979 -27.2979 -81.7168 -39.2969 -109.114c-8.2998 -19.6973 -13.1992 -59.9453 -13.7988 -80.6436c-50.0469 44.9688 11.1963 143.627 -15.5986 27.9473c3.5 -11.1982 11.0996 -21.498 24.5977 -29.8975c0 0 24.7988 -14.2979 38.2979 -32.4971
c7.39941 -9.99902 9.69922 -18.6982 7.39941 -24.8975c-2.5 -6.7002 -9.59961 -8.89941 -16.6992 -8.89941c4.7998 -6 5.60254 -6.40527 14.3994 -12.0117zM450.692 14.4092h0.00195312c1.61133 9.45215 -6.78027 17.3408 -12.0107 24.373
c-10 11.3008 -7.10352 30.2266 -16.9805 38.752c-6.92188 5.97363 -6.30957 8.30957 -14.5107 8.71191c-7.7002 -8.79883 -25.7988 -19.5977 -38.3975 -16.2988c-11.499 2.90039 -17.998 10.293 -18.7979 23.4912c-0.299805 -0.199219 -0.700195 -0.299805 -1 -0.5
c-7.09961 -3.89941 -4.96777 -4.79199 -7.56738 -15.0918c-2.5 -10.1992 -3.40039 -23.498 -4.2002 -38.6973c-0.700195 -11.7998 -6.19922 -26.3984 -9.89941 -40.5967c-3.49902 -13.1992 -6.50391 -17.6836 -1.80371 -28.7832
c7.19922 -14.498 13.8164 -20.3359 28.0146 -19.2363c14.1982 1.10059 28.6523 10.9092 41.8516 26.6074c21.9971 26.5977 54.4004 20.4707 55.2998 37.2686z" />
<glyph glyph-name="macos" unicode="&#xf103;"
d="M22.3262 393.681h467.347c12.3691 0 22.3262 -9.95703 22.3262 -22.3262v-358.71c0 -12.3691 -9.95703 -22.3262 -22.3262 -22.3262h-467.347c-12.3691 0 -22.3262 9.95703 -22.3262 22.3262v358.71c0 12.3691 9.95801 22.3262 22.3262 22.3262zM300.661 369.122
l-0.000976562 -0.0146484c-36.5176 -22.0273 -54 -80.3857 -76.6523 -205.402h76.6523v-38.3877h0.015625v-40.0879c22.4736 5.59863 49.1221 16.54 74.249 37.6279c1.98633 1.61719 4.37598 2.4043 6.74707 2.4082c3.04688 0.00488281 6.06152 -1.28711 8.13965 -3.78125
c3.80176 -4.43457 3.16797 -11.0869 -1.2666 -14.8877c-29.9707 -25.0566 -61.8877 -37.2373 -87.8691 -43.0752v-39.0908c0.287109 -5.34766 4.68652 -9.56738 10.1084 -9.56738h170.269c5.60938 0 10.125 4.51562 10.125 10.125v334.01
c0 5.6084 -4.51562 10.124 -10.125 10.124h-180.392zM126.22 311.817c-6.59766 0 -11.9082 -5.31055 -11.9082 -11.9072v-47.6279c0 -6.59668 5.31152 -11.9072 11.9082 -11.9072s11.9072 5.31055 11.9072 11.9072v47.6279c0 6.59668 -5.31152 11.9072 -11.9072 11.9072z
M130.371 125.282h0.000976562c-3.04004 0.00488281 -6.08008 -1.28613 -8.21875 -3.78125c-3.69531 -4.43457 -3.16699 -11.0859 1.37305 -14.8877c17.3174 -14.4668 64.8281 -48.1475 132.511 -48.1475c3.70117 0 8.45508 0.0996094 13.9736 0.558594v21.123
c-0.618164 -0.0507812 -1.23438 -0.100586 -1.83203 -0.142578c-4.75098 -0.316406 -8.86914 -0.422852 -12.1416 -0.422852c-60.8193 0 -103.477 30.1992 -118.997 43.292c-1.94043 1.61621 -4.30469 2.4043 -6.66895 2.4082zM385.811 311.818
c6.59668 0 11.9082 -5.31055 11.9082 -11.9072v-47.6279c0 -6.59668 -5.31152 -11.9072 -11.9082 -11.9072c-6.5957 0 -11.9072 5.31055 -11.9072 11.9072v47.6279c0 6.59668 5.31152 11.9072 11.9072 11.9072z" />
<glyph glyph-name="mix" unicode="&#xf107;"
d="M-0.00195312 443.982l512.007 -0.0517578v-284.611c0 -27.709 -23.001 -50.166 -51.3604 -50.166c-28.3701 0 -51.3721 22.4561 -51.3721 50.1543v25.5312c0 27.709 -23.001 50.165 -51.3604 50.165c-26.0381 0 -47.5518 -18.918 -50.9121 -43.4502v-77.7139
c-0.0107422 -27.7305 -22.916 -50.208 -51.1689 -50.208c-28.2637 0 -51.168 22.4775 -51.168 50.2188v196.529c0 27.7402 -22.9062 50.2295 -51.1689 50.2295c-26.9404 0 -49.002 -20.4502 -50.998 -46.3867l-0.0322266 -324.046
c0 -27.709 -22.9375 -50.166 -51.2324 -50.166c-28.2959 0 -51.2334 22.457 -51.2334 50.166v453.806z" />
<glyph glyph-name="netbsd" unicode="&#xf104;"
d="M98.8613 362.14c0 0 -1.45508 3.38184 -5.55566 1.11816c-3.40918 -1.89062 -1.63574 -5.38379 -1.63574 -5.38379l64.0791 -135.497h15.5439l-72.4336 139.764zM280.757 11.126l-48.4775 93.5566h-20.876l48.6963 -102.967s4.90723 -9.69141 15.4375 -4.33398
c10.5264 5.35742 5.22168 13.7441 5.22168 13.7441zM459.44 371.419c-60.7549 29.1592 -115.723 15.2344 -177.202 -3.16406c-61.8916 -18.5117 -116.944 -28.5312 -178.791 -3.29785c6.7373 -12.0391 10.1104 -18.0576 16.8516 -30.0869
c6.18848 -11.0654 12.3857 -22.1299 18.5771 -33.1904c6.74023 -12.0361 10.1094 -18.0498 16.8506 -30.084c49.2402 -13.917 90.0186 4.13184 133.778 26.0068c52.5449 26.2529 100.007 49.8721 160.042 36.1875c-50.7344 25.4053 -96.7275 19.1094 -149.778 4.7168
c51.9375 26.4404 100.837 47.0049 159.675 32.9121zM99.6621 155.143c0 -10.1494 0 -19.9785 0.311523 -25.1357c-1.09082 -1.86523 -5.46094 -3.59082 -9.20605 -3.59082c-0.158203 0 -5.30957 7.96387 -12.6445 17.0215l-36.0576 44.6484
c-8.89453 11.2412 -14.2031 17.6387 -17.0127 19.9814c-0.779297 -1.55859 -0.779297 -4.21094 -0.779297 -9.98828v-30.291c0 -12.6455 0.62207 -24.3506 2.34082 -28.5693c1.40625 -3.27539 4.99414 -4.21289 9.05273 -4.98926l4.37012 -0.62793
c1.24707 -1.25195 0.936523 -4.53223 0 -5.45996c-8.42871 0.304688 -14.6719 0.467773 -20.915 0.467773c-5.77539 0 -11.5488 -0.163086 -17.4795 -0.467773c-0.9375 0.927734 -1.25 4.20801 0 5.45996l2.65234 0.46875c4.21387 0.9375 7.17773 1.87305 8.58203 5.14844
c1.56152 4.21875 2.1875 15.9238 2.1875 28.5693v39.6562c0 8.58203 0 11.0781 -1.09277 13.2646c-1.09473 2.65527 -3.43555 4.21777 -8.89844 5.30859l-4.36816 0.626953c-1.09277 1.24902 -0.9375 4.99512 0.62207 5.46094
c7.33691 -0.304688 15.1406 -0.46582 21.543 -0.46582c5.30566 0 9.83301 0.15625 13.1104 0.466797c1.56348 -7.02441 11.708 -18.8848 25.7549 -35.5928l13.1113 -15.457c7.02539 -8.11816 11.3945 -13.5771 14.9873 -17.1729
c0.623047 1.56445 0.623047 4.22168 0.623047 7.02539v21.5479c0 12.6426 -0.623047 24.3516 -2.34277 28.5732c-1.40527 3.27344 -4.83789 4.20605 -9.05176 4.9873l-4.21582 0.626953c-1.24609 1.24902 -0.935547 4.52637 0 5.46094
c8.43164 -0.304688 14.5186 -0.46582 20.918 -0.46582c5.77246 0 11.3936 0.15625 17.4824 0.466797c0.936523 -0.935547 1.24609 -4.21289 0 -5.46387l-2.81055 -0.46582c-4.05664 -0.94043 -7.02441 -1.87305 -8.43066 -5.1543
c-1.71387 -4.21387 -2.34082 -15.9229 -2.34082 -28.5703v-37.3125zM137.06 193.233l0.000976562 -0.00195312c16.2314 0 24.9727 -10.46 24.9727 -22.4854c0 -2.96582 -0.779297 -5.15039 -5.61621 -5.15039h-29.9697c-3.58984 0 -3.9043 -0.30957 -3.9043 -2.80762
c0 -11.7109 7.49414 -23.1064 22.0088 -23.1064c4.37207 0 10.3027 0.932617 14.5166 8.11621c1.7168 0.310547 4.05859 -0.936523 4.05859 -3.58594c-6.40039 -13.2725 -17.9502 -17.8047 -27.3164 -17.8047c-21.0713 0 -32.4639 14.8359 -32.4639 31.8525
c0 19.6719 14.2031 34.9736 33.7129 34.9736zM135.474 186.187c-5.47949 0.0712891 -12.2588 -6.91406 -11.6406 -11.5713c0.421875 -3.1709 5.40625 -2.18848 11.417 -2.18848c5.5791 0 9.72559 -0.0146484 9.08301 5.93848
c-0.342773 3.18066 -1.58105 7.11914 -8.33301 7.79199c-0.173828 0.0166016 -0.349609 0.0263672 -0.526367 0.0292969zM192.808 182.614c-2.02832 0 -2.18457 -0.152344 -2.18457 -3.59082v-23.4102c0 -8.74805 0 -18.4277 10.9258 -18.4277
c2.18555 0 4.68164 1.09082 6.55762 2.33887c1.55664 -0.463867 2.49414 -2.18066 2.18066 -4.05566c-4.37012 -4.68066 -12.7979 -9.05762 -22.4746 -9.05762c-12.957 0 -17.4814 7.49609 -17.4814 17.8057v34.8066c0 3.28223 -0.15625 3.59082 -2.9668 3.59082h-4.83594
c-1.71875 0.636719 -2.18652 3.75 -0.939453 4.8457c4.83789 1.71191 9.20898 4.52637 12.9561 7.02051c2.80957 2.02832 6.71289 5.30371 11.5508 12.1836c1.08984 0.620117 3.90234 0.459961 4.68359 -0.78418v-11.7109c0 -2.96387 0.15625 -3.12012 2.96484 -3.12012
h13.8936c0.780273 -0.62207 1.24707 -1.56445 1.24707 -2.96777c0 -1.7168 -0.466797 -4.52246 -2.02734 -5.4668h-14.0518zM256.05 232.106l-0.000976562 0.000976562c14.9814 0 24.9756 -1.7207 31.8389 -5.78125c6.71289 -4.05762 10.7676 -10.6182 10.7676 -19.8232
c0 -13.1172 -11.0791 -18.2676 -15.917 -19.5195c-1.56348 -0.305664 -3.125 -0.935547 -3.125 -1.71484c0 -0.466797 0.78418 -0.931641 2.19043 -1.25c12.3301 -2.65527 22.7842 -10.7656 22.9424 -25.9062c0.157227 -14.3652 -8.42676 -22.7979 -18.2578 -26.2363
c-9.83789 -3.43262 -21.541 -3.90137 -31.0635 -3.90137c-5.61719 0 -11.5488 0.630859 -16.0771 0.630859c-7.65137 0 -15.2998 -0.163086 -24.1934 -0.47168c-1.24707 0.93457 -1.24707 4.99219 0 5.45996l4.52637 0.938477
c7.02148 1.40234 7.95996 2.49707 7.95996 16.5479v55.1094h-0.00390625c0 15.7637 -0.3125 17.4775 -6.86719 18.2637l-4.21484 0.62793c-1.4043 0.78125 -1.71777 5.46289 0.625 5.61914c11.8643 0.77832 23.2588 1.40625 38.8701 1.40625zM254.441 225.473v-0.000976562
c-1.76953 -0.00390625 -3.63965 -0.158203 -5.6084 -0.482422c-1.28809 -14.2012 -1.10254 -27.3037 0.666992 -38.333c36.2344 -6.14355 35.5342 38.8789 4.94141 38.8164zM257.315 180.149c-2.44727 -0.0126953 -5.07617 -0.327148 -7.88477 -0.990234
c-0.90332 -15.3789 -2.64355 -36.0166 3.02344 -42.4365c36.3223 -7.48047 37.2148 43.5928 4.86133 43.4268v-6.6e-05zM338.793 126.106c-14.3564 0 -23.2559 4.05957 -26.5312 5.92969c-2.96582 3.43457 -4.99316 14.6738 -4.99316 25.292
c1.08984 2.02637 4.68262 2.18652 5.92969 0.46875c3.12109 -10.1465 13.5762 -24.5088 26.8467 -24.5088c11.5479 0 16.8584 7.96094 16.8584 15.7637c0 12.6445 -11.8613 20.1387 -21.2285 24.8203c-11.2383 5.62793 -23.4131 14.9873 -23.5664 30.4482
c0 17.6377 13.5801 29.8203 36.2119 29.8203c5.14941 0 11.5479 -0.62793 17.7949 -2.50391c2.02832 -0.624023 3.43066 -0.931641 5.30566 -1.24609c1.24316 -3.43457 2.81055 -11.8652 2.81055 -22.3271c-0.782227 -1.86816 -4.68555 -2.02734 -6.08789 -0.472656
c-2.65527 7.96777 -9.37012 19.3652 -20.6074 19.3652c-10.2988 0 -15.917 -6.71582 -15.917 -14.5166c0 -7.18457 6.39258 -13.7373 14.1982 -17.7979l10.3057 -5.46875c9.67578 -5.15039 22.0088 -14.2031 22.0088 -31.376
c0 -19.2041 -15.7715 -31.6904 -39.3389 -31.6904zM421.767 232.106h0.00292969c12.7979 0 25.5938 -1.25781 36.3662 -5.1543c20.4502 -7.33691 31.6836 -25.7588 31.6836 -45.2705c0 -20.9238 -9.98828 -37.7871 -27.9355 -46.6826
c-10.6143 -5.3125 -23.417 -7.33398 -39.4941 -7.33398c-7.33203 0 -15.1445 0.939453 -20.7598 0.939453c-7.49512 0 -15.4551 -0.163086 -24.3486 -0.472656c-1.24805 0.935547 -1.24805 4.68066 0 5.46094l4.83789 0.780273
c7.02344 1.24609 7.96094 2.33887 7.96094 16.7061v55.2666c0 14.8291 -0.313477 17.7939 -7.49414 18.5752l-2.96387 0.30957c-1.55859 0.78125 -1.55762 5.31348 0.314453 5.46973c13.1104 0.77832 25.2822 1.40625 41.8301 1.40625zM422.556 225.047v0.000976562
c-5.07617 0.0341797 -8.65625 -0.895508 -9.32324 -2.29102c-2.66992 -5.58594 -1.23828 -26.0488 -1.23828 -43.29c0 -9.74219 -0.780273 -28.2441 1.97168 -35.71c2.36816 -6.42188 16.1582 -8.36621 24.3096 -5.06641c14.5264 3.88965 26.752 17.084 26.752 40.7764
c0 23.6904 -11.2891 38.0635 -26.5166 42.8965c-5.83301 1.87305 -11.4766 2.65332 -15.9551 2.68359zM483.961 220.124c0 3.86426 1.37109 7.16797 4.11523 9.9043c2.74219 2.73633 6.04883 4.10645 9.91309 4.10645s7.16699 -1.37012 9.90332 -4.10645
c2.73438 -2.73633 4.10352 -6.04004 4.10352 -9.9043c0 -3.86816 -1.36914 -7.17188 -4.10352 -9.91602c-2.73633 -2.74316 -6.03906 -4.11523 -9.90332 -4.11523s-7.1709 1.37207 -9.91309 4.11523c-2.74414 2.74414 -4.11523 6.04785 -4.11523 9.91602zM509.699 220.124
c0 3.2373 -1.14062 5.99902 -3.42578 8.28516c-2.28418 2.28418 -5.04395 3.42773 -8.28418 3.42773c-3.2373 0 -6.00391 -1.14355 -8.29395 -3.42773c-2.29199 -2.28613 -3.4375 -5.04785 -3.4375 -8.28516c0 -3.23926 1.14551 -6.00391 3.4375 -8.2959
c2.29004 -2.28809 5.05664 -3.43555 8.29395 -3.43555c3.24023 0 6 1.14746 8.28418 3.43555c2.28516 2.29199 3.42578 5.05664 3.42578 8.2959zM502.343 211.687l-4.39551 7.43066h-2.49609v-7.43066h-2.45117v17.2354h4.42285
c4.15039 0 6.22461 -1.59082 6.22461 -4.76953c0 -2.21191 -1.11621 -3.77637 -3.34863 -4.6875l4.72559 -7.77832h-2.68164zM495.451 226.835v-5.76172c0.206055 -0.0283203 0.744141 -0.0390625 1.61133 -0.0390625c1.60059 0 2.67773 0.204102 3.22852 0.613281
c0.552734 0.412109 0.829102 1.19434 0.829102 2.35059c0 1.90527 -1.24219 2.8584 -3.72461 2.8584h-0.97168l-0.972656 -0.0214844z" />
<glyph glyph-name="openbsd" unicode="&#xf105;"
d="M236.825 430.384l-0.00390625 -0.000976562c6.49023 0 15.1904 -30.6533 18.166 -41.9072c11.9443 -1.06055 23.7666 -3.20703 35.3203 -6.41113c6.5127 11.2148 21.3896 35.4941 27.3115 33.9072c6.64844 -1.7832 6.77246 -37.4941 6.6875 -47.041
c8.88672 -4.53125 16.7617 -9.33594 25.5195 -15.2646c9.5791 9.46777 29.1562 27.7998 34.2979 24.8311c6.54102 -3.77344 -4.96484 -44.5771 -6.1377 -48.6709c6.08301 -6.29785 11.4844 -12.7168 17.2871 -20.3496c12.0723 6.8125 34.1689 18.4023 38.2178 14.3535
c5.62012 -5.62012 -18.1172 -46.1211 -18.1172 -46.1211c7.46484 -14.1406 14.3145 -36.8926 17.1396 -61.5322h11.04c4.85938 23.1143 5.38184 63.6875 36.2412 63.8926c20.2002 -0.160156 35.7412 -40.6865 31.4912 -66.792
c-27.9131 59.208 -42.0557 15.3535 -41.9082 -21.2842c-0.149414 -36.6387 14.0635 -80.3428 41.9082 -21.2842c4.31641 -26.5215 -11.1201 -65.7578 -31.4912 -66.792c-26.1611 0 -26.2842 23.5459 -34.6777 56.8779h-13.4521
c-2.78809 -16.6533 -9.68457 -36.8906 -17.1152 -54.5186c0 0 24.5625 -40.5039 18.9424 -46.124c-4.05078 -4.04883 -26.1475 7.54199 -38.2178 14.3535c-5.29688 -7.16602 -11.0723 -13.9639 -17.2881 -20.3496c1.17383 -4.09277 12.6787 -44.8945 6.13867 -48.6709
c-5.14062 -2.96875 -24.7178 15.3643 -34.2979 24.833c-8.11035 -5.72363 -16.6416 -10.8262 -25.5195 -15.2666c0.0859375 -9.54688 -0.0390625 -45.2598 -6.6875 -47.041c-5.92188 -1.58691 -20.7988 22.6914 -27.3105 33.9072
c-11.5557 -3.2041 -23.3779 -5.35059 -35.3213 -6.41113c-2.97559 -11.252 -11.6758 -41.9072 -18.165 -41.9072c-6.46875 0 -15.1367 30.4678 -18.1396 41.8105c-10.6924 1.02539 -23.1855 3.54199 -35.3447 6.50879c-6.5127 -11.2148 -21.3906 -35.4941 -27.3115 -33.9082
c-6.64844 1.78418 -6.77344 37.4951 -6.6875 47.042c-8.70312 4.60352 -16.9072 9.4209 -25.5195 15.2656c-9.57812 -9.46777 -29.1553 -27.8018 -34.2979 -24.832c-6.54102 3.77344 4.96484 44.5771 6.13867 48.6709c-6.01367 6.27539 -11.5352 12.9062 -17.2881 20.3486
c-12.0713 -6.81152 -34.1689 -18.4023 -38.2178 -14.3535c-5.62012 5.62012 18.9434 46.125 18.9434 46.125c-5.75488 12.8633 -11.2656 30.085 -15.6406 46.2646l-14.3936 -8.31055c-9.1709 -5.29492 -20.8174 -2.17383 -26.1123 6.99707s-2.17285 20.8164 6.99805 26.1113
l27.2852 15.7529l-27.6611 15.9707c-9.1709 5.29395 -12.291 16.9404 -6.99609 26.1113c3.47461 6.01855 9.68457 9.43164 16.1348 9.57031c8.72461 0.0986328 17.293 -7.29785 25.2061 -11.3662c3.23047 14.1279 9.06641 29.5391 15.1797 44.3311
c0 0 -24.5635 40.501 -18.9434 46.1211c4.0498 4.04883 26.1475 -7.54199 38.2178 -14.3535c5.17383 6.34082 10.75 13.6689 17.2881 20.3496c-1.17383 4.09277 -12.6797 44.8945 -6.13867 48.6709c5.14062 2.96875 24.7178 -15.3643 34.2979 -24.833
c7.62695 4.8584 16.2646 10.4629 25.5195 15.2666c-0.0859375 9.54688 0.0390625 45.2598 6.6875 47.041c5.92188 1.58691 20.7979 -22.6885 27.3105 -33.9043c9.75098 2.55176 23.2236 4.84668 35.3477 6.50488c3.00293 11.3418 11.6709 41.8105 18.1396 41.8105z
M331.305 288.467h-0.000976562c-9.4873 -0.251953 -37.2041 -17.0605 -37.2041 -17.0605l23.4482 -23.4492s21.1914 34.9434 16.3428 39.791c-0.530273 0.530273 -1.4209 0.749023 -2.58594 0.71875zM115.361 260.174h-0.00195312
c-4.05566 -6.20117 -6.2207 -13.4482 -6.23242 -20.8584c0 -21.1152 17.1172 -38.2314 38.2314 -38.2314s38.2314 17.1172 38.2305 38.2314c-0.00390625 7.40723 -2.16016 14.6543 -6.20508 20.8584h-64.0225h5.312e-05zM327.861 206.086v-33.1611
s39.6904 9.72363 39.6904 16.5811c0 6.85645 -39.6904 16.5801 -39.6904 16.5801v-0.0001zM305.547 136.023l-23.4502 -23.4482s34.9434 -21.1904 39.791 -16.3428c4.84863 4.85059 -16.3408 39.791 -16.3408 39.791zM136.006 248.405
c6.38281 0 11.5635 -5.18066 11.5635 -11.5635s-5.18066 -11.5635 -11.5635 -11.5645c-6.38379 0 -11.5645 5.18066 -11.5645 11.5645c0 6.38281 5.18066 11.5635 11.5645 11.5635v0z" />
<glyph glyph-name="sailfish_os" unicode="&#xf106;"
d="M239.769 222.605c-11.4141 10.8955 -22.3721 21.6104 -30.2852 33.8428c22.7197 37.4824 74.7539 61.9209 89.7939 68.3789c7.97656 -8.08496 29.3818 -26.8418 59.3174 -30.5283c-12.4111 -4.33789 -90.0459 -32.6748 -118.826 -71.6934zM273.846 137.217
c-3.18262 -36.752 -26.1406 -67.9053 -57.2451 -93.6426c7.45605 11.8359 13.0605 25.4229 14.3574 40.418c3.04492 35.1318 -20.8027 59.2383 -43.8682 82.5508c-23.4609 23.7178 -45.623 46.1191 -42.7217 79.6289c3.38086 39.0117 26.9619 74.2695 55.8828 103.484
c-8.00977 -14.3174 -14.5615 -30.292 -15.9004 -45.748c-3.75879 -43.3828 23.8643 -69.7168 48.2354 -92.9512c22.6357 -21.5801 44.0146 -41.9619 41.2598 -73.7402v0.0003zM115.549 -15.4014c32.7227 23.9971 58.3789 54.3105 72.8184 87.2432
c9.34277 21.3096 13.1855 42.0693 11.4873 61.2559c11.5439 -14.3115 19.3672 -29.4902 17.7666 -47.9482c-4.0498 -46.7656 -59.8418 -80.1377 -60.6416 -80.6104l0.0332031 -0.0537109c-13.8223 -7.38086 -27.8496 -14.0068 -41.4639 -19.8867zM275.343 328.354
c-21.7207 -11.1953 -53.5498 -30.9551 -72.9688 -58.332c-3.87793 9.62891 -5.75977 20.3291 -4.68652 32.7275c3.14941 36.3359 41.2373 78.7871 47.2354 85.2666c22.3223 16.585 43.6084 29.3535 58.0869 37.4072c-10.4688 -21.8428 -25.5312 -59.2666 -27.667 -97.0693
h2e-05zM504.92 339.496c-1.28711 3.41992 -5.0791 5.17969 -8.51465 3.94922l-48.834 -17.4229c-20.5029 -6.7168 -44.3447 -13.7236 -64.9502 -17.665c-44.3867 -8.47559 -76.1631 28.3672 -76.4717 28.7305c-1.83301 2.18555 -4.85254 2.96875 -7.51953 1.94824
c-0.608398 -0.233398 -4.04395 -1.57324 -9.31348 -3.93945c5.41309 51.6455 34.9971 102.254 35.3203 102.8c1.49512 2.5293 1.16504 5.74023 -0.8125 7.91309c-1.97754 2.17383 -5.13965 2.80078 -7.80078 1.55176
c-1.77539 -0.837891 -44.0107 -20.8828 -88.1533 -55.3516c-59.9961 -46.8467 -92.5762 -95.5273 -96.834 -144.687c-3.4375 -39.6777 21.9707 -65.3604 46.543 -90.1992c1.4082 -1.42383 2.81152 -2.84082 4.20312 -4.25586
c8.31445 -22.0557 6.37891 -48.1729 -5.6709 -75.6553c-21.5723 -49.2031 -70.1602 -92.3076 -129.971 -115.305c-18.9434 -7.28125 -34.8359 -12.8438 -34.9932 -12.9004c-3.32422 -1.15918 -5.17773 -4.69531 -4.24805 -8.08789
c0.810547 -2.9541 3.49219 -4.92383 6.44824 -4.92383c0.441406 0 0.883789 0.0439453 1.3291 0.134766c10.0469 2.02344 74.2061 18.9258 136.608 50.3584c4.25977 2.14551 8.39453 4.31641 12.457 6.49805l0.00195312 -0.00390625
c0.0166016 0.00976562 0.0654297 0.0371094 0.0859375 0.0517578c77.2275 41.5039 118.729 89.5742 123.359 143.022c2.9541 34.0928 -16.4551 56.5459 -37.6768 77.2021c26.7793 38.7305 114.028 68.5859 115.03 68.9258l86.1172 30.7246
c27.3418 8.91504 48.9072 17.3955 50.4531 18.0068c3.39648 1.34082 5.09082 5.1582 3.80664 8.5791z" />
<glyph glyph-name="tor" unicode="&#xf10b;"
d="M280.216 409.741l-13.5029 -54.0127c19.1289 38.2588 50.0742 66.9531 85.5195 92.2715c-25.8809 -29.8193 -49.5117 -59.6387 -63.5771 -90.0215c24.1934 34.3203 56.8262 52.8877 93.3975 65.8281c-48.9492 -43.3223 -87.7715 -90.584 -117.028 -137.282
l-23.6309 10.127c3.93848 37.6963 18.0049 75.9561 38.8223 113.09zM262.212 288.774l16.3154 -8.43945c-1.6875 -10.6895 0.563477 -34.3203 11.2529 -39.9463c47.2617 -29.2568 91.1465 -60.7646 108.589 -92.835c61.8896 -111.964 -43.3232 -216.051 -135.032 -205.924
c49.5117 36.5713 64.1396 111.964 45.5732 194.671c-7.31445 32.0703 -19.1299 61.3271 -39.9473 94.5225c-9.00195 15.1914 -5.62598 35.4463 -6.75098 57.9512zM244.207 235.324c-3.37598 -17.4414 -7.31445 -48.9482 -22.5049 -60.7637
c-6.18945 -4.50098 -12.9404 -9.00293 -19.6924 -13.5039c-27.5693 -18.5664 -54.5752 -36.0078 -66.9531 -80.4561c-2.81348 -9.56445 -0.5625 -19.6924 1.6875 -29.2568c6.75195 -27.5693 25.8809 -56.8262 41.0723 -74.2676c0 -0.5625 2.81348 -2.81348 2.81348 -3.37598
c12.3779 -14.6289 16.3164 -19.1299 63.5771 -29.8193l-1.125 -5.06445c-28.6943 7.31445 -51.7627 14.6289 -66.9531 31.5078c0 0.5625 -2.81348 2.81348 -2.81348 2.81348c-15.7539 18.0039 -35.4463 48.3867 -42.1973 77.0801
c-2.81348 11.2529 -5.06445 20.2549 -1.68848 32.0703c12.9404 46.1357 41.0723 64.7031 69.2041 83.833c6.18945 3.93848 14.0654 7.87695 20.2549 12.9404c12.9404 8.43945 19.1299 34.8828 25.3184 56.2627zM256.585 162.183
c2.25098 -18.0049 2.25098 -33.7588 7.31445 -42.1982c3.93848 -7.31348 10.6904 -17.4414 14.6279 -27.5684c7.87695 -18.5674 11.8154 -38.8223 12.3779 -48.3867c0.563477 -16.3164 -1.6875 -41.6348 -7.31348 -61.8896
c-6.75195 -21.9424 -19.6924 -38.8213 -29.8203 -40.5098v-1.6875c-13.5029 2.25 -34.8828 10.6895 -46.1357 18.5664c-27.0059 18.5674 -40.5098 41.6348 -42.7598 75.9561c-1.68848 27.0059 14.6279 54.5752 46.6982 71.4541
c21.9434 11.8154 28.6943 29.2568 35.4463 50.6367c-5.06348 -24.7559 -10.6904 -39.3838 -33.1953 -52.8877c-27.0068 -15.1904 -46.1357 -46.1357 -44.4482 -66.9531c2.25098 -25.3184 19.6924 -54.5752 39.9473 -72.0166
c10.127 -9.00195 27.5684 -14.6289 42.7598 -17.4424c14.6289 9.00293 23.0684 25.3193 27.0068 43.8857c5.06348 22.5059 5.62598 43.8857 5.62598 55.1387c0 10.127 -4.50098 26.4434 -8.43945 41.0713c-2.81348 11.2529 -13.5029 22.5059 -16.3164 30.9453
c-5.06348 14.0654 -2.81348 24.1934 -3.37598 43.8857h-2e-05zM253.209 85.1016c2.81348 -12.3779 9.00293 -29.8193 12.3779 -46.6982c2.81348 -13.5039 3.37598 -26.4443 2.25098 -36.5713c-1.125 -11.8154 -1.68848 -21.3799 -3.37598 -31.5078
c-1.6875 -8.43945 -6.18848 -16.3164 -13.5029 -24.7559v-0.5625c-3.93848 0.5625 -11.8154 6.18848 -18.0049 15.1914c-3.93848 5.62598 -6.75098 13.5029 -9.56445 20.8174c-2.81348 6.75098 -5.62598 14.6279 -5.62598 21.3799c0 16.3164 1.6875 36.5713 13.5029 50.0742
c10.6904 12.3779 14.0654 14.0654 18.5674 28.6943c-3.37598 -16.3164 -5.62695 -17.4414 -15.7539 -32.0703c-12.9404 -18.0039 -13.5039 -36.0088 -11.8154 -47.2607c1.125 -7.31445 3.93848 -14.0664 6.18848 -19.6924
c2.81348 -7.31445 6.18945 -14.0654 10.6904 -20.2549c3.93848 -4.50098 6.18848 -7.31445 11.8154 -10.127c6.18848 11.8145 10.127 35.4453 10.6895 48.3857c0.563477 11.2529 1.12598 24.1934 -0.5625 37.1338c-2.25 17.4424 -7.31445 34.3213 -7.87695 47.8242z
M255.46 251.078c0.5625 -23.0674 5.06348 -57.9512 9.00195 -65.8281c1.6875 -5.06348 16.8789 -29.2568 27.5693 -54.5752c7.31445 -16.3164 9.56445 -32.0703 10.127 -36.5713c5.62695 -47.2607 1.125 -66.9531 -11.2529 -109.15
c-7.31348 -25.3193 -27.5684 -45.0107 -36.0078 -45.5732l2.8125 5.06348c14.6289 9.00195 27.5693 32.0703 31.5078 50.6367c7.31445 34.3203 12.9404 70.8916 8.43945 92.2715c-1.125 5.06445 -2.81348 21.9434 -9.56445 39.9473
c-9.56543 26.4443 -23.6309 47.8242 -25.3184 52.8877c-5.62695 14.6289 -6.75195 51.1992 -7.31445 70.8916v-0.00048zM262.212 287.087l5.62598 -2.81348c-2.81348 -6.18848 -1.125 -37.6963 3.37598 -49.5117c5.62598 -15.7539 21.9424 -33.7578 32.0693 -59.0762
c7.31445 -16.8789 14.6289 -57.3887 15.1914 -61.8896c5.62695 -47.2617 2.81348 -91.709 -11.2529 -129.406c-9.00195 -23.6299 -31.5068 -44.4473 -39.9463 -45.0098l-15.7539 3.93848c21.9424 8.43945 43.3223 35.4453 47.8242 54.0127
c11.8145 52.3242 16.3154 119.841 -0.563477 171.603c-9.00195 27.0068 -30.3818 50.6377 -34.3203 66.9541c-3.37598 15.1904 -3.37598 30.9443 -2.25 51.1992zM374.738 187.501c30.9443 -28.1318 48.3867 -67.5166 48.3867 -108.589s-18.5674 -81.0186 -50.6377 -107.463
c-29.8193 -24.7559 -71.4541 -35.4453 -111.401 -35.4453c-24.7559 0 -47.2607 1.125 -71.4541 9.00195c-55.7012 18.5664 -96.7734 65.8281 -100.148 122.654c-3.37598 43.8848 6.75098 77.6436 41.0723 113.089c17.4414 18.5674 53.4502 39.9473 78.2061 56.8262
c12.3779 7.87695 25.3184 31.5078 0.5625 75.9551l5.06348 3.93848l73.7051 -30.3818c-10.1279 -32.6328 19.1289 -55.7012 28.6943 -60.7646c21.3799 -11.8154 41.6348 -24.1934 57.9512 -38.8213zM364.048 -20.1113c29.2568 24.1934 45.0107 61.3271 45.0107 99.0234
c0 37.6973 -14.6279 73.7051 -43.3223 99.0234c-16.3164 14.6289 -42.7607 32.6328 -59.6396 42.1982c-16.8789 9.56445 -37.6963 36.0078 -30.9443 61.3271l-55.1387 24.1924c2.81348 -3.9375 9.56543 -20.8174 11.2529 -25.8809
c3.37598 -14.0654 1.6875 -27.5693 -1.125 -33.7578c-15.1914 -28.1318 -42.1982 -36.0088 -61.3271 -51.7627c-34.3203 -28.1309 -71.4541 -50.0742 -67.5166 -127.154c2.25098 -37.6973 31.5078 -84.3955 75.9561 -105.775
c25.3184 -12.3779 54.0127 -16.8789 83.2695 -18.5674c26.4443 -1.125 75.9561 14.6289 103.524 37.1338z" />
<glyph glyph-name="qubes_os" unicode="&#xf108;"
d="M371.402 250.876v-107.812c-0.0146484 -7.86035 -4.2627 -14.6768 -10.583 -18.334l-93.1445 -53.9326c-6.33008 -3.66406 -14.8252 -3.66406 -21.1562 0l-93.1455 53.9316c-6.31934 3.65723 -10.5654 10.4844 -10.5781 18.3457v107.802
c0 7.87598 4.25 14.7236 10.5781 18.3877l93.1445 53.8779c6.35645 3.6748 14.9834 3.57031 21.1611 -0.000976562l93.1416 -53.8789c6.33203 -3.66406 10.582 -10.5078 10.582 -18.3857zM240.12 59.7109c10.2041 -5.90625 23.7705 -5.89453 33.9541 0l93.1436 53.9316
c10.1572 5.87891 16.9619 16.8652 16.9844 29.4209v107.812c0 12.582 -6.80957 23.584 -16.9863 29.4746l-93.1455 53.8809c-10.1211 5.84961 -23.7559 5.89062 -33.9482 -0.000976562l-93.1494 -53.8818c-10.1748 -5.89062 -16.9775 -16.8955 -16.9775 -29.4727v-107.822
c0.0195312 -12.5557 6.81934 -23.5312 16.9775 -29.4102zM470.152 294.967v-195.997c-0.015625 -16.2305 -8.7832 -30.3447 -21.8525 -37.9131l-169.344 -98.0225c-13.1191 -7.58887 -30.6211 -7.58301 -43.7314 0.000976562l-169.318 98.0215
c-13.0781 7.56348 -21.8584 21.6885 -21.877 37.9209v195.989c0.00292969 16.248 8.7832 30.3936 21.873 37.96l169.322 97.9502c13.1855 7.64062 30.7236 7.53906 43.7285 0.00292969l169.35 -97.9521c13.0791 -7.57227 21.8496 -21.7148 21.8496 -37.9609z
M258.433 449.557c-11.1924 0 -20.793 -2.48633 -29.6035 -7.5918l-169.319 -97.9482c-16.9365 -9.79102 -28.2764 -28.0967 -28.2803 -49.0498v-196.004c0.0244141 -20.9336 11.3584 -39.208 28.2773 -48.9912l169.322 -98.0244
c16.9521 -9.80664 39.5391 -9.82617 56.5254 0.000976562l169.347 98.0234c16.9082 9.79102 28.2305 28.0703 28.251 48.998v195.997c0 20.9492 -11.3311 39.251 -28.2539 49.0488l-169.341 97.9473c-7.93652 4.59863 -17.1523 7.35352 -26.9248 7.59375zM476.737 -13.6289
c0 -5.1416 -3.37988 -11.4883 -12.9365 -17.0508l-21.4951 -12.5068c-19.2725 -11.2139 -51.9199 -11.2158 -71.1953 0c-17.0898 9.94531 -34.1797 19.8916 -51.2695 29.8379l-40.8779 -23.6602c-4.65723 -2.68164 -9.875 -4.54297 -15.4072 -5.3623v98.1318
c3.76074 0.714844 7.30176 2.05176 10.5127 3.89648l93.1377 53.918c10.1611 5.88672 16.9658 16.873 16.9775 29.4424v107.787c0 3.90918 -0.672852 7.66992 -1.89062 11.168l84.791 49.0479c1.97559 -5 3.07422 -10.457 3.07812 -16.126v-195.968
c-0.0166016 -16.2275 -8.78418 -30.3457 -21.8516 -37.9092c-13.9512 -8.0752 -27.9014 -16.1504 -41.8516 -24.2246c19.1133 -11.125 38.2275 -22.249 57.3418 -33.374c9.55664 -5.56152 12.9365 -11.9072 12.9365 -17.0479zM267.706 70.7646
c-4.89746 -2.81348 -9.7959 -2.81543 -16.9502 -2.81543v-123.59c14.2881 0 24.1406 1.51855 34.6045 7.5459l34.4629 19.9463l44.8643 -26.1104c23.7295 -13.8066 60.3145 -13.8057 84.042 0l21.4961 12.5088c11.9414 6.9502 19.3115 16.9336 19.3115 28.1211
s-7.37012 21.1699 -19.3115 28.1191l-38.2676 22.2725l22.751 13.168c16.9102 9.78906 28.2324 28.0713 28.2529 48.9961v195.977c-0.00683594 10.2959 -2.78711 19.9814 -7.57617 28.292l-3.20508 5.56152l-106.846 -61.8057
c2.61719 -4.53223 6.04004 -9.51562 6.04883 -16.1465v-107.775c-0.00683594 -7.87109 -4.25488 -14.7051 -10.5771 -18.3682zM235.244 430.911c13.0957 7.56738 30.5918 7.55078 43.6699 -0.015625l169.373 -97.9824c4.7959 -2.78516 8.95605 -6.39844 12.3447 -10.7002
l-84.7705 -49.0566c-2.45117 2.84082 -5.36523 5.2666 -8.63379 7.17188l-93.1553 53.8867c-10.1953 5.90137 -23.7441 5.88867 -33.9297 0.0166016l-93.1406 -53.8975c-3.29492 -1.91211 -6.23145 -4.35449 -8.69922 -7.2168l-84.7812 49.0791
c3.4043 4.31738 7.58398 7.94238 12.3984 10.7305zM246.521 323.135c6.34668 3.6582 14.8174 3.66113 21.1553 -0.0078125l93.1211 -53.8672c5.2832 -3.07812 7.84668 -8.00391 10.8965 -13.3037l106.801 61.8047l-3.18164 5.52734
c-4.95312 8.60352 -12.0498 15.7295 -20.6309 20.7119l-169.372 97.9834c-16.9258 9.79199 -39.4932 9.82031 -56.4639 0.0146484l-169.329 -97.9873c-8.6084 -4.98633 -15.7158 -12.1201 -20.6846 -20.7412l11.623 -5.21191l-9.26953 -3.51074l101.282 -58.6318
c3.05664 5.31152 5.63086 10.2568 10.9307 13.332z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
-19
View File
@@ -1,19 +0,0 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-147 -70 294 345">
<g fill="#a4c639">
<use stroke-width="14.4" xlink:href="#b" stroke="#FFF"/>
<use xlink:href="#a" transform="scale(-1,1)"/>
<g id="a" stroke="#FFF" stroke-width="7.2">
<rect rx="6.5" transform="rotate(29)" height="86" width="13" y="-86" x="14"/>
<rect id="c" rx="24" height="133" width="48" y="41" x="-143"/>
<use y="97" x="85" xlink:href="#c"/>
</g>
<g id="b">
<ellipse cy="41" rx="91" ry="84"/>
<rect rx="22" height="182" width="182" y="20" x="-91"/>
</g>
</g>
<g stroke="#FFF" stroke-width="7.2" fill="#FFF">
<path d="m-95 44.5h190"/><circle cx="-42" r="4"/><circle cx="42" r="4"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 728 B

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" fill="#ffffff" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="m29.623 0.50599-20.539 9.1251c-2.1126 0.93891-3.4916 3.0515-3.4916 5.3694v13.79c0 16.284 11.267 31.512 26.407 35.209 15.14-3.697 26.407-18.925 26.407-35.209v-13.79c0-2.3179-1.379-4.4305-3.4916-5.3694l-20.539-9.1251c-1.4964-0.67485-3.2569-0.67485-4.7533 0zm2.3766 31.19h20.539c-1.5551 12.089-9.6239 22.857-20.539 26.231v-26.202h-20.539v-16.724l20.539-9.1251z" stroke-width="2.9341"/></svg>

Before

Width:  |  Height:  |  Size: 551 B

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><path d="m16.933-1.6667e-7 -13.855 6.1576v9.2364c0 8.5436 5.9113 16.533 13.855 18.473 7.9433-1.9397 13.855-9.9291 13.855-18.473v-9.2364zm0 16.918h10.776c-0.81588 6.3423-5.0492 11.992-10.776 13.762v-13.747h-10.776v-8.7746l10.776-4.7875z" fill="#1a1a1a" stroke-width="1.5394"/><path d="m16.415 18.141h6.35v6.35h-6.35z" fill="none" stroke-width=".26458"/></svg>

Before

Width:  |  Height:  |  Size: 505 B

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.43429 0 0 .43429 -102.24 -35.595)" stroke-width=".26458"><path d="m313.4 119.93c-7.7343 13.52-22.298 22.631-38.991 22.631-16.692 0-31.256-9.1114-38.991-22.631 7.7346-13.521 22.299-22.632 38.991-22.632 16.693 0 31.257 9.1115 38.991 22.632" fill="#9acc01"/><path d="m298.61 144.6-6.8334-12.569c2.364-3.4422 3.7478-7.6102 3.7478-12.101 0-11.819-9.5811-21.4-21.4-21.4-11.819 0-21.4 9.5806-21.4 21.4 0 11.819 9.5811 21.4 21.4 21.4 4.4736 0 8.6265-1.3727 12.061-3.7206l12.422 6.9937z" fill="#231f20"/><path d="m284.91 125.24c0 5.7915-4.7106 10.502-10.502 10.502-5.7915 0-10.502-4.7106-10.502-10.502v-12.917c0-0.80301 0.65352-1.456 1.4565-1.456 0.80275 0 1.456 0.65299 1.456 1.456v7.8192c0 0.4236 0.34263 0.76623 0.76702 0.76623 8e-3 0 0.0167-2e-3 0.0257-2e-3s0.0164 2e-3 0.0251 2e-3c0.4236 0 0.7665-0.34263 0.7665-0.76623v-11.856c0-0.80354 0.65299-1.4571 1.4565-1.4571s1.4565 0.65352 1.4565 1.4571v11.166c0 0.42387 0.34343 0.76624 0.76677 0.76624 0.42254 0 0.76623-0.34264 0.76623-0.76624v-13.875c0-0.80301 0.65378-1.4555 1.4563-1.4555 0.80354 0 1.4568 0.65246 1.4568 1.4555v13.773c0 0.42413 0.34317 0.76703 0.7665 0.76703 0.42307 0 0.7665-0.34317 0.7665-0.76703v-11.37c0-0.80327 0.65352-1.4565 1.4565-1.4565 0.80327 0 1.456 0.65352 1.456 1.4565v14.555c-1.7436 0.16219-5.8518 1.0464-7.543 5.7222-0.14366 0.39793 0.0622 0.83767 0.46038 0.9824 0.0857 0.031 0.1741 0.0455 0.26009 0.0455 0.31379 0 0.60748-0.19474 0.72125-0.50536 1.7732-4.903 6.6273-4.7546 6.8313-4.7464l0.80354 0.0386v-8.0939c0-0.80301 0.7112-1.4565 1.5843-1.4565 0.87392 0 1.5841 0.65352 1.5841 1.4565v9.2625zm-1.5841-12.253c-0.57864 0-1.1192 0.15557-1.5843 0.41963v-5.4277c0-1.6486-1.3409-2.9901-2.9895-2.9901-0.53314 0-1.0327 0.14261-1.4666 0.38761-0.10398-1.555-1.3991-2.789-2.98-2.789-1.6484 0-2.9893 1.3409-2.9893 2.989v0.10001c-0.4318-0.2413-0.92763-0.381-1.4565-0.381-1.6481 0-2.9893 1.3409-2.9893 2.9901v1.4594c-0.44344-0.26035-0.95752-0.41222-1.5079-0.41222-1.6486 0-2.99 1.3404-2.99 2.9893v12.917c0 6.636 5.3991 12.035 12.036 12.035 6.636 0 12.035-5.3991 12.035-12.035v-9.2631c0-1.6484-1.3981-2.9893-3.1171-2.9893" fill="#9acc01"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.256 0 0 .256 -1.534 -1.5359)"><path d="m506 256a250 250 0 0 1-248.51 250 250 250 0 0 1-251.48-247.01 250 250 0 0 1 245.5-252.95 250 250 0 0 1 254.41 243.98" fill="#fc5424"/><path d="m261.3 166.34c-48.1 0-76.959 33.794-76.959 89.541 0 56.98 28.859 89.787 76.959 89.787 48.347 0 77.207-33.794 77.207-89.787 0-56.98-28.86-89.541-77.207-89.541zm155.15 0c-35.52 0-61.668 19.241-61.668 49.334 0 25.407 14.062 41.193 52.295 53.033 24.913 7.6467 31.326 13.32 31.326 25.9 0 13.073-10.359 20.967-27.133 20.967-17.02 0-30.588-6.1668-43.168-16.773l-20.473 22.447c14.06 13.567 35.273 24.42 64.873 24.42 42.673 0 67.834-22.201 67.834-54.021 0-31.573-18.501-44.892-50.814-55.252-26.64-8.3867-33.053-12.828-33.053-23.682 0-10.853 8.8794-16.771 22.939-16.771 13.813 0 25.654 4.6866 37.494 14.307l18.746-21.955c-15.047-14.307-33.053-21.953-59.199-21.953zm-384.8 4.1934v170.94h51.307c43.66 0 85.1-17.514 85.1-86.334 0-70.547-43.165-84.607-88.799-84.607h-47.607zm229.65 25.408c22.94 0 34.781 16.773 34.781 59.939 0 43.413-11.595 60.186-34.781 60.186-22.2 0-34.533-16.772-34.533-60.186 0-43.167 11.84-59.939 34.533-59.939zm-189.19 3.9453h12.828c23.68 0 41.193 9.3738 41.193 55.254 0 45.387-16.281 56.98-40.701 56.98h-13.32v-112.23z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -263.13)"><g transform="matrix(.072143 0 0 .072143 -44.234 303.31)"><g transform="matrix(.17755 0 0 .17755 641.74 -556.97)" clip-rule="evenodd" fill="#fff" fill-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision"><path class="fil0" d="m605 798 381-217c-7-21-12-43-12-67 0-92 67-168 155-184v-330h64v330c88 16 155 92 155 184 0 24-5 46-13 67l382 217c14-16 31-30 50-42 80-46 180-26 237 42l286-165 32 56-286 165c31 84-2 180-82 226-18 10-36 17-55 21v442c19 4 37 11 55 21 80 46 113 142 82 226l286 165-32 56-286-165c-57 68-157 88-237 42-19-12-36-26-50-42-127 72-254 145-382 217 8 21 13 43 13 67 0 92-67 168-155 184v330h-64v-330c-88-16-155-92-155-184 0-24 5-46 12-67l-381-217c-14 16-31 30-50 42-80 46-180 26-237-42l-286 165-32-56 286-165c-31-84 2-180 82-226 18-10 36-17 55-21v-442c-19-4-37-11-55-21-80-46-113-142-82-226l-286-165 32-56 286 165c57-68 157-88 237-42 19 12 36 26 50 42zm1080 992c-18-50-15-108 14-157 30-52 81-84 136-92v-438c-55-8-106-40-136-92-29-49-32-107-14-157l-382-218c-35 40-85 65-142 65s-107-25-142-65l-382 218c18 50 15 108-14 157-30 52-81 84-136 92v438c55 8 106 40 136 92 29 49 32 107 14 157l382 218c35-40 85-65 142-65s107 25 142 65z" fill="#fff"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -263.13)"><g transform="matrix(.072143 0 0 .072143 -44.234 303.31)"><g transform="matrix(.17755 0 0 .17755 641.74 -556.97)" clip-rule="evenodd" fill="#1b1b1b" fill-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision"><path class="fil0" d="m605 798 381-217c-7-21-12-43-12-67 0-92 67-168 155-184v-330h64v330c88 16 155 92 155 184 0 24-5 46-13 67l382 217c14-16 31-30 50-42 80-46 180-26 237 42l286-165 32 56-286 165c31 84-2 180-82 226-18 10-36 17-55 21v442c19 4 37 11 55 21 80 46 113 142 82 226l286 165-32 56-286-165c-57 68-157 88-237 42-19-12-36-26-50-42-127 72-254 145-382 217 8 21 13 43 13 67 0 92-67 168-155 184v330h-64v-330c-88-16-155-92-155-184 0-24 5-46 12-67l-381-217c-14 16-31 30-50 42-80 46-180 26-237-42l-286 165-32-56 286-165c-31-84 2-180 82-226 18-10 36-17 55-21v-442c-19-4-37-11-55-21-80-46-113-142-82-226l-286-165 32-56 286 165c57-68 157-88 237-42 19 12 36 26 50 42zm1080 992c-18-50-15-108 14-157 30-52 81-84 136-92v-438c-55-8-106-40-136-92-29-49-32-107-14-157l-382-218c-35 40-85 65-142 65s-107-25-142-65l-382 218c18 50 15 108-14 157-30 52-81 84-136 92v438c55 8 106 40 136 92 29 49 32 107 14 157l382 218c35-40 85-65 142-65s107 25 142 65z" fill="#1b1b1b"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g stroke-width=".034914"><circle id="main-circle-drop-shadow" cx="17.283" cy="17.283" r="16.584" fill-opacity=".1"/><circle id="main-circle" cx="16.584" cy="16.584" r="16.584" fill="#4f3663"/><path id="onion-drop-shadow" d="m32.732 20.111c0.11871-0.57958 0.20599-1.1766 0.26186-1.7911l-13.711-13.711-1.0893 1.0474-2.3986-2.3986-1.1626 2.856 1.7946 1.7946-7.5764 20.481 4.4446 4.4446c0.75066 0.14315 1.5048 0.23392 2.2764 0.27582 0.014 4e-3 0.0279 4e-3 0.0419 4e-3h0.014c0.29677 0.0175 0.57958 0.0244 0.8554 0.0244q0.0524 0 0.10474 0c0.35962 0 0.71575-0.0105 1.0509-0.0279 0.0873-3e-3 0.16759-0.0105 0.2444-0.014 0.70527-0.0489 1.3931-0.13966 2.0495-0.26884 0.27931-0.0524 0.55164-0.11522 0.81699-0.17806 2.8211-0.70877 5.314-2.1507 7.4961-4.3329 0.21298-0.21298 0.41898-0.42596 0.61101-0.63894 1.3931-1.5292 2.437-3.1982 3.1388-5.0102 0.31773-0.817 0.56562-1.6654 0.74368-2.5488z" fill-opacity=".2"/></g><g id="onion" transform="matrix(.034914 0 0 .034914 -1.2918 -1.2918)"><path id="first-layer" d="m433.1 252.1v13.4c-1.7 42.1-20 72.8-54.8 92.2-3 1.5-6.1 3-9.1 4.7-26.7 14.2-51.7 32.9-74.8 56-60.1 60.2-90.2 132.8-90.2 217.8 0 85.1 30.1 157.7 90.2 217.8 60.2 60.2 132.8 90.2 217.8 90.2h4.1v-678.4c-28.7-2.2-56.4-7.8-83.1-13.6z" fill="#fdfcdf"/><circle id="second-layer" cx="512" cy="645" r="235" fill="#eaeace"/><circle id="third-layer" cx="512" cy="648" r="162" fill="#d1d1b8"/><circle id="fourth-layer" cx="512" cy="650" r="94" fill="#bfbfa9"/><path id="half" d="m820.1 636.1q0-127.6-90.2-217.8c-23.8-23.8-49.7-43-77.8-57.5-38.1-17.6-58.4-50.5-61-98.6-25.7 4.9-50.6 5.4-74.9 3.6v678.5c83.5-1 154.6-31.1 213.7-90.2 60.2-60.1 90.2-132.7 90.2-217.8z" fill="#735a93"/><path id="leafs" d="m443.4 84.4c-0.3 1.3-0.7 2.6-0.9 3.7q-31 121.9 65.2 161.7c18.8-62.2-0.9-116-59.3-161.7-1.4-1.1-3.1-2.4-4.8-3.7zm81 165.4c-5.4-40.8 16.3-67.9 64.9-80.8-5.3 44.9-26.9 71.8-64.9 80.8" fill="#78af52"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><defs><mask id="mask-2" fill="#ffffff"><circle cx="384" cy="384" r="384"/></mask></defs><g id="Group" transform="scale(.044097)" fill-rule="evenodd" mask="url(#mask-2)"><rect id="Rectangle" width="192" height="192" fill="#0d2e46"/><rect x="192" width="192" height="192" fill="#415a6e"/><rect x="384" width="192" height="192" fill="#597961"/><rect x="576" width="192" height="192" fill="#6d4048"/><rect x="576" y="192" width="192" height="192" fill="#e08f88"/><rect x="384" y="192" width="192" height="192" fill="#e3b59c"/><rect x="192" y="192" width="192" height="192" fill="#8ba281"/><rect y="192" width="192" height="192" fill="#6378ab"/><rect y="384" width="192" height="192" fill="#7d5a49"/><rect x="192" y="384" width="192" height="192" fill="#b48268"/><rect x="384" y="384" width="192" height="192" fill="#8f595b"/><rect x="576" y="384" width="192" height="192" fill="#ebe0d3"/><rect x="576" y="576" width="192" height="192" fill="#5f495d"/><rect x="384" y="576" width="192" height="192" fill="#b1a0b8"/><rect x="192" y="576" width="192" height="192" fill="#fbeee9"/><rect y="576" width="192" height="192" fill="#c08679"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.0033803 0 0 -.0033803 1.64 34.376)" fill="#fff"><path d="m4055 10121c-77-27-205-73-285-101-80-29-188-67-240-85-52-19-140-50-195-70s-181-65-280-100c-201-71-427-151-615-218-69-25-210-75-315-111-104-37-226-80-270-96s-138-50-210-75c-169-59-383-136-415-148-14-6-29-11-35-13-5-1-80-27-165-57-415-146-540-191-595-212-33-12-112-41-176-64-132-48-185-88-222-168l-22-48v-925c0-938 2-992 41-1380 49-488 156-1011 309-1504 61-197 184-532 247-676 40-90 47-106 78-180 28-65 215-447 248-505 164-290 298-511 397-652 27-40 73-105 100-145 28-39 84-116 125-171s84-112 95-127c31-40 95-120 135-166 19-22 44-52 54-65 115-147 475-524 706-739 173-161 542-466 675-557 22-16 45-33 50-39 6-5 28-22 50-37 22-14 60-41 85-58 164-118 524-346 681-433 72-39 133-52 202-42 37 6 177 79 346 181 9 6 34 21 56 34 51 31 415 272 435 288 8 7 71 54 139 104 135 101 174 145 197 226 35 122-34 257-161 315-67 30-169 30-240-1-27-12-52-26-55-30-20-28-395-285-626-429-145-91-135-89-224-34-235 147-373 242-610 416-405 298-905 768-1246 1171-180 213-362 457-536 720-84 127-238 380-238 391 0 3-8 18-19 32-71 101-297 577-415 875-273 690-422 1354-487 2172-12 157-22 1694-11 1710 4 6 23 16 42 22s98 34 175 61c217 79 590 211 695 247 52 19 140 50 195 70s150 54 210 75c61 21 162 57 225 80s165 59 225 80c61 21 232 82 380 135 149 53 295 105 325 115s138 48 240 85 228 82 280 100 217 76 365 130c207 74 278 96 305 92 19-2 78-20 130-40 52-19 178-65 280-101s194-70 205-75c18-8 269-98 470-168 39-13 221-78 405-145 184-66 389-140 455-164 66-23 210-75 320-114 110-40 256-92 325-117 69-24 154-55 190-68s148-54 250-90 214-76 250-89c36-14 128-47 205-74l140-50 3-579c7-1319-49-1851-278-2653-26-91-22-157 13-227 65-126 206-182 355-138 58 17 137 83 164 137 18 36 75 234 83 288 0 3 3 10 6 15 4 6 14 46 24 90s28 125 41 180c45 194 113 598 134 805 42 399 42 420 47 1375 5 933 4 940-16 995-24 63-88 135-141 158-37 16-252 94-545 197-99 35-232 82-295 105s-126 45-140 50-81 29-150 53c-69 25-141 51-160 57-19 7-82 29-140 50-58 22-188 68-290 104-349 122-415 146-435 155-11 5-60 23-110 40-49 16-142 49-205 72-63 22-164 58-225 79-60 21-162 57-225 80s-158 57-210 75c-86 30-275 97-665 237-273 98-272 98-470 29z"/><path d="m5923 5035c-66-20-126-59-191-125-228-228-401-724-437-1256l-7-102-81-16c-222-44-429-202-556-421-154-268-146-616 18-788 154-163 428-122 685 103 31 27 60 50 64 50s20-25 36-56c37-70 123-148 193-174 128-48 256-9 495 149 119 78 108 79 123-9 8-52 43-116 72-136 68-44 163-34 212 22 17 19 118 209 226 423 107 214 199 393 205 396 21 13 22-4 6-122-49-348-21-595 78-698 42-44 44-45 108-45 113 0 260 57 398 154l65 45 14-27c51-100 156-164 300-184 259-36 689 83 998 275l82 51 3 155c2 86 2 159 0 163-1 3-26-10-55-29-60-41-448-234-457-228-4 2-10 57-13 122-4 65-15 152-26 193-79 303-80 276 4 376 97 117 117 149 122 196 5 57-13 88-67 116-61 30-147 30-215-1-63-30-115-87-286-312-204-270-257-332-370-430-169-146-225-206-233-248-12-66-109-94-152-44-64 75-60 268 16 654 17 84 30 170 30 191 0 89-48 180-107 203-73 28-191-8-250-76-21-24-96-152-167-284-98-185-133-241-147-241-23 0-24-16 6 173 34 218 39 284 26 334-17 62-48 93-98 100-89 12-161-26-198-103-22-47-69-279-95-474-27-202-30-223-37-217-3 3-32-16-65-44-83-69-198-145-271-180-151-71-217-15-217 186 0 153 22 223 189 592 260 577 352 894 353 1223 0 69-5 153-12 185-40 196-163 289-317 240zm46-334c68-68 19-447-106-821-58-175-203-540-214-540-21 0-2 357 32 630 55 444 136 701 233 740 30 13 34 12 55-9zm-668-1524c0-84 4-195 8-247l8-95-38-81c-74-156-146-224-240-224-103 0-153 56-152 171 1 163 80 346 213 491 64 71 174 153 191 142 5-3 9-74 10-157zm2870-299c39-161 28-307-29-372-47-52-146-70-217-37-45 20-155 116-155 136 0 14 354 365 368 365 6 0 20-42 33-92z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.0033803 0 0 -.0033803 1.64 34.376)"><path d="m4055 10121c-77-27-205-73-285-101-80-29-188-67-240-85-52-19-140-50-195-70s-181-65-280-100c-201-71-427-151-615-218-69-25-210-75-315-111-104-37-226-80-270-96s-138-50-210-75c-169-59-383-136-415-148-14-6-29-11-35-13-5-1-80-27-165-57-415-146-540-191-595-212-33-12-112-41-176-64-132-48-185-88-222-168l-22-48v-925c0-938 2-992 41-1380 49-488 156-1011 309-1504 61-197 184-532 247-676 40-90 47-106 78-180 28-65 215-447 248-505 164-290 298-511 397-652 27-40 73-105 100-145 28-39 84-116 125-171s84-112 95-127c31-40 95-120 135-166 19-22 44-52 54-65 115-147 475-524 706-739 173-161 542-466 675-557 22-16 45-33 50-39 6-5 28-22 50-37 22-14 60-41 85-58 164-118 524-346 681-433 72-39 133-52 202-42 37 6 177 79 346 181 9 6 34 21 56 34 51 31 415 272 435 288 8 7 71 54 139 104 135 101 174 145 197 226 35 122-34 257-161 315-67 30-169 30-240-1-27-12-52-26-55-30-20-28-395-285-626-429-145-91-135-89-224-34-235 147-373 242-610 416-405 298-905 768-1246 1171-180 213-362 457-536 720-84 127-238 380-238 391 0 3-8 18-19 32-71 101-297 577-415 875-273 690-422 1354-487 2172-12 157-22 1694-11 1710 4 6 23 16 42 22s98 34 175 61c217 79 590 211 695 247 52 19 140 50 195 70s150 54 210 75c61 21 162 57 225 80s165 59 225 80c61 21 232 82 380 135 149 53 295 105 325 115s138 48 240 85 228 82 280 100 217 76 365 130c207 74 278 96 305 92 19-2 78-20 130-40 52-19 178-65 280-101s194-70 205-75c18-8 269-98 470-168 39-13 221-78 405-145 184-66 389-140 455-164 66-23 210-75 320-114 110-40 256-92 325-117 69-24 154-55 190-68s148-54 250-90 214-76 250-89c36-14 128-47 205-74l140-50 3-579c7-1319-49-1851-278-2653-26-91-22-157 13-227 65-126 206-182 355-138 58 17 137 83 164 137 18 36 75 234 83 288 0 3 3 10 6 15 4 6 14 46 24 90s28 125 41 180c45 194 113 598 134 805 42 399 42 420 47 1375 5 933 4 940-16 995-24 63-88 135-141 158-37 16-252 94-545 197-99 35-232 82-295 105s-126 45-140 50-81 29-150 53c-69 25-141 51-160 57-19 7-82 29-140 50-58 22-188 68-290 104-349 122-415 146-435 155-11 5-60 23-110 40-49 16-142 49-205 72-63 22-164 58-225 79-60 21-162 57-225 80s-158 57-210 75c-86 30-275 97-665 237-273 98-272 98-470 29z"/><path d="m5923 5035c-66-20-126-59-191-125-228-228-401-724-437-1256l-7-102-81-16c-222-44-429-202-556-421-154-268-146-616 18-788 154-163 428-122 685 103 31 27 60 50 64 50s20-25 36-56c37-70 123-148 193-174 128-48 256-9 495 149 119 78 108 79 123-9 8-52 43-116 72-136 68-44 163-34 212 22 17 19 118 209 226 423 107 214 199 393 205 396 21 13 22-4 6-122-49-348-21-595 78-698 42-44 44-45 108-45 113 0 260 57 398 154l65 45 14-27c51-100 156-164 300-184 259-36 689 83 998 275l82 51 3 155c2 86 2 159 0 163-1 3-26-10-55-29-60-41-448-234-457-228-4 2-10 57-13 122-4 65-15 152-26 193-79 303-80 276 4 376 97 117 117 149 122 196 5 57-13 88-67 116-61 30-147 30-215-1-63-30-115-87-286-312-204-270-257-332-370-430-169-146-225-206-233-248-12-66-109-94-152-44-64 75-60 268 16 654 17 84 30 170 30 191 0 89-48 180-107 203-73 28-191-8-250-76-21-24-96-152-167-284-98-185-133-241-147-241-23 0-24-16 6 173 34 218 39 284 26 334-17 62-48 93-98 100-89 12-161-26-198-103-22-47-69-279-95-474-27-202-30-223-37-217-3 3-32-16-65-44-83-69-198-145-271-180-151-71-217-15-217 186 0 153 22 223 189 592 260 577 352 894 353 1223 0 69-5 153-12 185-40 196-163 289-317 240zm46-334c68-68 19-447-106-821-58-175-203-540-214-540-21 0-2 357 32 630 55 444 136 701 233 740 30 13 34 12 55-9zm-668-1524c0-84 4-195 8-247l8-95-38-81c-74-156-146-224-240-224-103 0-153 56-152 171 1 163 80 346 213 491 64 71 174 153 191 142 5-3 9-74 10-157zm2870-299c39-161 28-307-29-372-47-52-146-70-217-37-45 20-155 116-155 136 0 14 354 365 368 365 6 0 20-42 33-92z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg fill="#ffffff" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><g transform="scale(5.3333)"><path d="m0 0h24v24h-24z" fill="none"/><circle cx="12" cy="12" r="3"/><path d="m20 4h-3.17l-1.24-1.35c-0.37-0.41-0.91-0.65-1.47-0.65h-4.24c-0.56 0-1.1 0.24-1.48 0.65l-1.23 1.35h-3.17c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h16c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/></g></svg>

Before

Width:  |  Height:  |  Size: 490 B

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g stroke-width="1.4111"><path d="m0-1.13e-6h33.867v33.867h-33.867z" fill="none"/><circle cx="16.933" cy="16.933" r="4.2333"/><path d="m28.222 5.6444h-4.4732l-1.7498-1.905c-0.52213-0.57856-1.2841-0.91722-2.0743-0.91722h-5.9831c-0.79022 0-1.5522 0.33867-2.0884 0.91722l-1.7357 1.905h-4.4732c-1.5522 0-2.8222 1.27-2.8222 2.8222v16.933c0 1.5522 1.27 2.8222 2.8222 2.8222h22.578c1.5522 0 2.8222-1.27 2.8222-2.8222v-16.933c0-1.5522-1.27-2.8222-2.8222-2.8222zm-11.289 18.344c-3.8947 0-7.0556-3.1609-7.0556-7.0556s3.1609-7.0556 7.0556-7.0556c3.8947 0 7.0556 3.1609 7.0556 7.0556s-3.1609 7.0556-7.0556 7.0556z"/></g></svg>

Before

Width:  |  Height:  |  Size: 761 B

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg fill="#ffffff" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m52 52h24v24h-24z" fill="none"/><path d="m112 0h-96c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16zm-68 60c0 6.64-5.36 12-12 12h-8v10c0 3.28-2.72 6-6 6s-6-2.72-6-6v-34c0-4.4 3.6-8 8-8h12c6.64 0 12 5.36 12 12zm40 16c0 6.64-5.36 12-12 12h-16c-2.24 0-4-1.76-4-4v-40c0-2.24 1.76-4 4-4h16c6.64 0 12 5.36 12 12zm32-30c0 3.28-2.72 6-6 6h-6v8h6c3.28 0 6 2.72 6 6s-2.72 6-6 6h-6v10c0 3.28-2.72 6-6 6s-6-2.72-6-6v-34c0-4.4 3.6-8 8-8h10c3.28 0 6 2.72 6 6zm-92 14h8v-8h-8zm40 16h8v-24h-8z" stroke-width="8"/></svg>

Before

Width:  |  Height:  |  Size: 682 B

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><path d="m29.633 8.2833e-7h-25.4c-2.3283 0-4.2333 1.905-4.2333 4.2333v25.4c0 2.3283 1.905 4.2333 4.2333 4.2333h25.4c2.3283 0 4.2333-1.905 4.2333-4.2333v-25.4c0-2.3283-1.905-4.2333-4.2333-4.2333zm-17.992 15.875c0 1.7568-1.4182 3.175-3.175 3.175h-2.1167v2.6458c0 0.86783-0.71967 1.5875-1.5875 1.5875s-1.5875-0.71967-1.5875-1.5875v-8.9958c0-1.1642 0.9525-2.1167 2.1167-2.1167h3.175c1.7568 0 3.175 1.4182 3.175 3.175zm10.583 4.2333c0 1.7568-1.4182 3.175-3.175 3.175h-4.2333c-0.59267 0-1.0583-0.46567-1.0583-1.0583v-10.583c0-0.59267 0.46567-1.0583 1.0583-1.0583h4.2333c1.7568 0 3.175 1.4182 3.175 3.175zm8.4667-7.9375c0 0.86783-0.71967 1.5875-1.5875 1.5875h-1.5875v2.1167h1.5875c0.86784 0 1.5875 0.71967 1.5875 1.5875s-0.71967 1.5875-1.5875 1.5875h-1.5875v2.6458c0 0.86783-0.71967 1.5875-1.5875 1.5875-0.86783 0-1.5875-0.71967-1.5875-1.5875v-8.9958c0-1.1642 0.9525-2.1167 2.1167-2.1167h2.6458c0.86784 0 1.5875 0.71967 1.5875 1.5875zm-24.342 3.7042h2.1167v-2.1167h-2.1167zm10.583 4.2333h2.1167v-6.35h-2.1167z" stroke-width="2.1167"/></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 463 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 440 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.33952 0 0 .33952 .19935 -2.3417e-7)" fill="none"><path d="m49.287 0c-15.406 0-33.988 3.5766-49.287 11.449 0 17.002-0.21115 59.36 49.287 88.301 49.499-28.941 49.289-71.299 49.289-88.301-15.299-7.8723-33.882-11.449-49.289-11.449z" fill="#68bc71"/><path d="m49.236 99.721c-49.447-28.941-49.236-71.275-49.236-88.272 15.282-7.8638 33.841-11.441 49.236-11.449z" fill="#67b279"/><path d="m47.489 66.556 29.805-39.658c-2.184-1.7283-4.0997-0.50849-5.1543 0.43585l-0.03848 3e-3 -24.851 25.522-9.3632-11.124c-4.4668-5.095-10.539-1.2087-11.958-0.1816l21.56 25.003" fill="#fff"/></g></svg>

Before

Width:  |  Height:  |  Size: 745 B

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.866 33.866" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(1.9999 0 0 1.9999 -.00028793 -560.11)"><g transform="matrix(.1411 0 0 .1411 -22.448 274.09)"><g transform="matrix(6.5975,0,0,6.5975,-881.57,-908.75)"><path d="m166.76 148.57v2.8e-4c-0.0731 1e-3 -0.14646 3e-3 -0.21965 6e-3 -2.0814 0.0983-3.9695 1.2488-5.0113 3.0532-0.27591 0.47789-0.47972 0.97776-0.61543 1.4866 1.8658 0.19779 3.5534 0.93382 4.9049 2.0531 2.7603 1.8081 5.5017 1.1662 7.0499 0.51897 0.40336-2.4423-0.70912-4.988-2.9792-6.2988-0.95179-0.54962-2.0328-0.83212-3.1292-0.81971z" fill="#d0f6ed" stroke-width=".14568"/><path d="m166.59 152.15c-1.5641 9.9e-4 -2.9951 0.51259-3.7051 1.324 0.94324 0.3021 1.8146 0.75292 2.5877 1.3259-1.2e-4 -3.9e-4 -1.6e-4 -1e-3 -2.9e-4 -1e-3 1.3493-0.74086 3.1114-1.2154 4.6422-1.5091-0.75982-0.70753-2.0913-1.1376-3.5245-1.1388v-5.6e-4z" fill="#4de564" stroke-width=".27973"/><path d="m172.56 152.93c-1.6055 0.16301-4.8923 0.66396-7.0864 1.8687 0.12815 0.095 0.25361 0.19321 0.37621 0.29474 2.6929 1.7639 5.3671 1.1376 6.8778 0.50616 0.14847-0.89893 0.0864-1.8121-0.16739-2.6696z" fill="#06c23c" stroke-width=".38858"/><path d="m170.2 144.17c-0.297-8e-3 -0.58809 0.14301-0.74764 0.41937l-0.15266 0.26436c-0.23207 0.40197-0.0953 0.91236 0.30665 1.1444l0.0712 0.0411-0.6784 1.175c-0.68491-0.19996-1.3964-0.30489-2.1144-0.30964l-3e-4 -2.9e-4c-0.13829-9.1e-4 -0.27683 2e-3 -0.41545 8e-3 -2.6278 0.12414-5.0122 1.5767-6.3272 3.8551-2.1338 3.6958-0.86761 8.4218 2.8282 10.556 3.696 2.1338 8.4218 0.86727 10.556-2.8288 1.8213-3.155 1.1646-7.0602-1.3656-9.463l0.67518-1.1694 0.0706 0.0407c0.40198 0.23207 0.91244 0.0953 1.1445-0.30665l0.15259-0.26436c0.23207-0.40197 0.0953-0.91243-0.30665-1.1445l-3.2996-1.905c-0.12562-0.0725-0.26181-0.10907-0.3968-0.11272zm-3.434 4.6336c1.0696-0.0121 2.1243 0.26346 3.0528 0.79964 2.2146 1.2787 3.1576 3.6198 2.7641 6.0024-1.5104 0.63142-4.0427 1.1156-6.7355-0.6483-1.3185-1.0919-2.8225-1.6679-4.6427-1.8609 0.13239-0.49643 0.33106-0.98387 0.60022-1.4501 1.0163-1.7604 2.7165-2.7406 4.7469-2.8365 0.0714-3e-3 0.14275-5e-3 0.21406-6e-3z" fill="#25935e" stroke-width=".28021"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 14 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="linearGradient5472"><stop stop-color="#fff" offset="0"/></linearGradient><linearGradient id="linearGradient5474" x1="60.097" x2="71.645" y1="201.62" y2="201.62" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient5472"/><linearGradient id="linearGradient5480" x1="49.996" x2="81.746" y1="205.62" y2="205.62" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient5472"/><linearGradient id="linearGradient5486" x1="53.418" x2="78.324" y1="218.03" y2="218.03" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient5472"/><linearGradient id="linearGradient5492" x1="69.192" x2="70.78" y1="217.16" y2="217.16" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient5472"/><linearGradient id="linearGradient7461" x1="60.962" x2="62.549" y1="217.16" y2="217.16" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient5472"/></defs><g transform="translate(-48.938 -197.1)" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="2" stroke-width="1.5875"><path d="m77.53 205.88v22.187a2.1167 2.1167 135 0 1-2.1167 2.1167h-19.086a2.1167 2.1167 45 0 1-2.1167-2.1167v-22.187" fill="none" stroke="url(#linearGradient5486)" style="paint-order:fill markers stroke"/><g fill="#fff" fill-rule="evenodd"><path d="m61.756 210.99v12.346" stroke="url(#linearGradient7461)" style="paint-order:fill markers stroke"/><path d="m69.986 210.99v12.346" stroke="url(#linearGradient5492)" style="paint-order:fill markers stroke"/><path d="m50.79 205.62h30.162" stroke="url(#linearGradient5480)" style="paint-order:fill markers stroke"/></g><path d="m60.89 205.37v-5.4277a2.0677 2.0677 0 0 1 2.0677-2.0677h5.8255a2.0677 2.0677 0 0 1 2.0677 2.0677v5.4277" fill="none" stroke="url(#linearGradient5474)" style="paint-order:fill markers stroke"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-48.938 -197.1)"><rect x="48.938" y="197.1" width="33.867" height="33.867" fill="#fff" style="paint-order:fill markers stroke"/><g transform="translate(.026243)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="2" stroke-width="1.5875"><path d="m61.729 210.99v12.346" style="paint-order:fill markers stroke"/><path d="m69.96 210.99v12.346" style="paint-order:fill markers stroke"/></g><g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="2" stroke-width="1.5875"><path d="m50.79 205.62h30.162" fill="#fff" fill-rule="evenodd" style="paint-order:fill markers stroke"/><path d="m77.53 205.88v22.187a2.1167 2.1167 135 0 1-2.1167 2.1167h-19.086a2.1167 2.1167 45 0 1-2.1167-2.1167v-22.187" fill="none" style="paint-order:fill markers stroke"/><path d="m60.89 205.37v-5.4277a2.0677 2.0677 0 0 1 2.0677-2.0677h5.8255a2.0677 2.0677 0 0 1 2.0677 2.0677v5.4277" fill="none" style="paint-order:fill markers stroke"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 18 KiB

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.866 33.866" xmlns="http://www.w3.org/2000/svg"><path d="m3.2563 0.90164h27.353c1.804 0 3.2563 1.4523 3.2563 3.2563v1.001e-4c0 1.804-1.4523 3.2563-3.2563 3.2563h-27.353c-1.804 0-3.2563-1.4523-3.2563-3.2563v-1.001e-4c0-1.804 1.4523-3.2563 3.2563-3.2563z" fill="#46a546" stroke-width=".27458"/><path d="m3.2563 9.4185h23.546c1.804 0 3.2563 1.4523 3.2563 3.2563v1e-4c0 1.804-1.4523 3.2563-3.2563 3.2563h-23.546c-1.804 0-3.2563-1.4523-3.2563-3.2563v-1e-4c0-1.804 1.4523-3.2563 3.2563-3.2563z" fill="#f89406" stroke-width=".25869"/><path d="m3.2563 17.935h25.95c1.804 0 3.2563 1.4523 3.2563 3.2563v1.01e-4c0 1.804-1.4523 3.2563-3.2563 3.2563h-25.95c-1.804 0-3.2563-1.4523-3.2563-3.2563v-1.01e-4c0-1.804 1.4523-3.2563 3.2563-3.2563z" fill="#c43c35" stroke-width=".26884"/><path d="m3.2563 26.452h13.726c1.804 0 3.2563 1.4523 3.2563 3.2563v1e-4c0 1.804-1.4523 3.2563-3.2563 3.2563h-13.726c-1.804 0-3.2563-1.4523-3.2563-3.2563v-1e-4c0-1.804 1.4523-3.2563 3.2563-3.2563z" fill="#999" stroke-width=".21227"/></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="linearGradient-1" x1=".5" x2=".5" y1="1"><stop stop-color="#420C5D" offset="0"/><stop stop-color="#951AD1" offset="1"/></linearGradient><path id="path-2" d="m25 29c127.58 0 231 102.97 231 230s-103.42 230-231 230z"/><filter id="filter-3" x="-.182" y="-.074" width="1.294" height="1.148"><feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="10"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0.2 0"/></filter><linearGradient id="linearGradient9148" x1="256" x2="256" y1="512" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-1"/><linearGradient id="linearGradient9150" x1="198.27" x2="198.27" y1="346.53" y2="20.551" gradientTransform="scale(.70864 1.4111)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-1"/></defs><g id="Assets" transform="matrix(.24957 0 0 .24957 .21762 .22232)" fill="none" fill-rule="evenodd"><g id="Group"><g id="tb_icon/Stable"><g id="Stable"><circle id="background" cx="256" cy="256" r="246" fill="#f2e4ff" fill-rule="nonzero"/><path id="center" d="m256.53 465.44v-31.033c98.301-0.28386 177.9-80.042 177.9-178.41 0-98.365-79.595-178.12-177.9-178.41v-31.033c115.44 0.29096 208.92 93.937 208.92 209.44 0 115.51-93.482 209.16-208.92 209.45zm0-108.62c55.445-0.29095 100.32-45.304 100.32-100.83 0-55.516-44.878-100.53-100.32-100.82v-31.026c72.59 0.28386 131.36 59.192 131.36 131.85 0 72.661-58.766 131.57-131.36 131.85zm0-155.1c29.742 0.28386 53.777 24.462 53.777 54.274 0 29.82-24.036 53.997-53.777 54.281zm-256.53 54.274c0 141.39 114.61 256.01 256 256.01 141.38 0 256-114.62 256-256.01 0-141.38-114.62-255.99-256-255.99-141.39 0-256 114.61-256 255.99z" fill="url(#linearGradient9148)"/><g id="half" transform="matrix(-1,0,0,1,281,0)"><use width="100%" height="100%" fill="#000000" filter="url(#filter-3)" xlink:href="#path-2"/><use width="100%" height="100%" fill="url(#linearGradient9150)" fill-rule="evenodd" xlink:href="#path-2"/></g></g></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.866 33.866" xmlns="http://www.w3.org/2000/svg"><g stroke="#fff"><g transform="matrix(-.18246 0 0 .14741 98.646 -64.885)" fill="#800000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6019"><path d="m447.83 669.1c-80.631-57.031-80.631-57.031-80.631-199.61 34.556 0 46.075 0 80.631-28.516m0 228.12c80.631-57.031 80.631-57.031 80.631-199.61-34.556 0-46.075 0-80.631-28.516" fill="#800000" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6019"/></g><circle cx="20.086" cy="15.882" r="4.2035" fill="none" stroke-width="2.1017"/><g transform="matrix(.26319 0 0 .26224 -4.5763 -4.4325)" fill="#fff" stroke-width="2"><path d="m81.725 81.472c0 11.02-4.991 16.029-15.971 16.029s-15.971-5.009-15.971-16.029v-24.043h7.9856v24.043c0 7.0126 0.9982 8.0144 7.9856 8.0144 6.9874 0 7.9856-1.0018 7.9856-8.0144v-24.043h7.9856z" fill="#fff" stroke-width="0"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 998 B

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><path id="XMLID_107_" d="m16.959 5.8379c-3.5104 0-6.4858 2.3798-7.408 5.6042-0.80146-1.7103-2.5382-2.9085-4.5387-2.9085-2.7511 0-5.0126 2.2615-5.0126 5.0126 0 2.7511 2.2615 5.0137 5.0126 5.0137 2.0005 0 3.7373-1.1989 4.5387-2.9095 0.92217 3.2246 3.8975 5.6053 7.408 5.6053 3.4845 0 6.4447-2.3447 7.3904-5.533 0.81627 1.6717 2.5316 2.8372 4.5036 2.8372 2.7511 0 5.0137-2.2625 5.0137-5.0137 0-2.7511-2.2625-5.0126-5.0137-5.0126-1.9721 0-3.6874 1.1647-4.5036 2.8362-0.94575-3.188-3.9059-5.532-7.3904-5.532zm0 2.9425c2.65 0 4.7669 2.1159 4.7669 4.7659 0 2.65-2.1169 4.7669-4.7669 4.7669-2.65 0-4.7659-2.1169-4.7659-4.7669 0-2.65 2.1159-4.7659 4.7659-4.7659zm-11.947 2.6958c1.161 0 2.0711 0.90908 2.0711 2.0701 0 1.161-0.91012 2.0711-2.0711 2.0711-1.161 0-2.0701-0.91012-2.0701-2.0711 0-1.161 0.90909-2.0701 2.0701-2.0701zm23.841 0c1.161 0 2.0711 0.90908 2.0711 2.0701 0 1.161-0.91012 2.0711-2.0711 2.0711-1.161 0-2.0701-0.91012-2.0701-2.0711 0-1.161 0.90909-2.0701 2.0701-2.0701z" color="#000000" color-rendering="auto" fill="#0082c9" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-transform:none;white-space:normal"/><g transform="matrix(.13987 0 0 .13987 3.3867 17.958)" fill="#0082c9"><path id="XMLID_121_" d="m37.67 48.9c5.9 0 9.2 4.2 9.2 10.5 0 0.6-0.5 1.1-1.1 1.1h-15.9c0.1 5.6 4 8.8 8.5 8.8 2.8 0 4.8-1.2 5.8-2 0.6-0.4 1.1-0.3 1.4 0.3l0.3 0.5c0.3 0.5 0.2 1-0.3 1.4-1.2 0.9-3.8 2.4-7.3 2.4-6.5 0-11.5-4.7-11.5-11.5 0.1-7.2 4.9-11.5 10.9-11.5zm6.1 9.4c-0.2-4.6-3-6.9-6.2-6.9-3.7 0-6.9 2.4-7.6 6.9z"/><path id="XMLID_119_" d="m76.9 52.1v-7.7c0-0.7 0.4-1.1 1.1-1.1h0.8c0.7 0 1 0.4 1 1.1v5.2h4.5c0.7 0 1.1 0.4 1.1 1.1v0.3c0 0.7-0.4 1-1.1 1h-4.5v11c0 5.1 3.1 5.7 4.8 5.8 0.9 0.1 1.2 0.3 1.2 1.1v0.6c0 0.7-0.3 1-1.2 1-4.8 0-7.7-2.9-7.7-8.1z"/><path id="XMLID_117_" d="m99.8 48.9c3.8 0 6.2 1.6 7.3 2.5 0.5 0.4 0.6 0.9 0.1 1.5l-0.3 0.5c-0.4 0.6-0.9 0.6-1.5 0.2-1-0.7-2.9-2-5.5-2-4.8 0-8.6 3.6-8.6 8.9 0 5.2 3.8 8.8 8.6 8.8 3.1 0 5.2-1.4 6.2-2.3 0.6-0.4 1-0.3 1.4 0.3l0.3 0.4c0.3 0.6 0.2 1-0.3 1.5-1.1 0.9-3.8 2.8-7.8 2.8-6.5 0-11.5-4.7-11.5-11.5 0.1-6.8 5.1-11.6 11.6-11.6z"/><path id="XMLID_115_" d="m113.1 41.8c0-0.7-0.4-1.1 0.3-1.1h0.8c0.7 0 1.8 0.4 1.8 1.1v23.9c0 2.8 1.3 3.1 2.3 3.2 0.5 0 0.9 0.3 0.9 1v0.7c0 0.7-0.3 1.1-1.1 1.1-1.8 0-5-0.6-5-5.4z"/><path id="XMLID_112_" d="m133.6 48.9c6.4 0 11.6 4.9 11.6 11.4 0 6.6-5.2 11.6-11.6 11.6s-11.6-5-11.6-11.6c0-6.5 5.2-11.4 11.6-11.4zm0 20.4c4.7 0 8.5-3.8 8.5-9 0-5-3.8-8.7-8.5-8.7s-8.6 3.8-8.6 8.7c0.1 5.1 3.9 9 8.6 9z"/><path id="XMLID_109_" d="m183.5 48.9c5.3 0 7.2 4.4 7.2 4.4h0.1s-0.1-0.7-0.1-1.7v-9.9c0-0.7-0.3-1.1 0.4-1.1h0.8c0.7 0 1.8 0.4 1.8 1.1v28.5c0 0.7-0.3 1.1-1 1.1h-0.7c-0.7 0-1.1-0.3-1.1-1v-1.7c0-0.8 0.2-1.4 0.2-1.4h-0.1s-1.9 4.6-7.6 4.6c-5.9 0-9.6-4.7-9.6-11.5-0.2-6.8 3.9-11.4 9.7-11.4zm0.1 20.4c3.7 0 7.1-2.6 7.1-8.9 0-4.5-2.3-8.8-7-8.8-3.9 0-7.1 3.2-7.1 8.8 0.1 5.4 2.9 8.9 7 8.9z"/><path id="XMLID_103_" d="m1 71.4h0.8c0.7 0 1.1-0.4 1.1-1.1v-21.472c0-3.4 3.7-5.8277 7.9-5.8277s7.9 2.4277 7.9 5.8277v21.472c0 0.7 0.4 1.1 1.1 1.1h0.8c0.7 0 1-0.4 1-1.1v-21.6c0-5.7-5.7-8.5-10.9-8.5-5 0-10.7 2.8-10.7 8.5v21.6c0 0.7 0.3 1.1 1 1.1z"/><path id="XMLID_102_" d="m167.9 49.4h-0.8c-0.7 0-1.1 0.4-1.1 1.1v12.1c0 3.4-2.2 6.5-6.5 6.5-4.2 0-6.5-3.1-6.5-6.5v-12.1c0-0.7-0.4-1.1-1.1-1.1h-0.8c-0.7 0-1 0.4-1 1.1v12.9c0 5.7 4.2 8.5 9.4 8.5s9.4-2.8 9.4-8.5v-12.9c0.1-0.7-0.3-1.1-1-1.1z"/><path d="m68.908 49.236c-0.24494 0.0391-0.4801 0.20259-0.70508 0.4707l-4.0469 4.8242-3.0293 3.6094-4.5859-5.4668-2.4883-2.9668c-0.22498-0.26812-0.47975-0.41472-0.74414-0.4375-0.26439-0.02278-0.53852 0.07775-0.80664 0.30273l-0.61328 0.51367c-0.53623 0.44995-0.50854 0.94814-0.05859 1.4844l4.0488 4.8242 3.3574 4-4.916 5.8574c-0.0037 0.0044-0.0061 0.0093-0.0098 0.01367l-2.4805 2.9551c-0.44995 0.53623-0.39953 1.1008 0.13672 1.5508l0.61328 0.51172c0.53623 0.44995 1.0227 0.33701 1.4727-0.19922l4.0469-4.8242 3.0293-3.6094 4.5859 5.4668c3e-3 0.0036 0.0067 0.0062 0.0098 0.0098l2.4805 2.957c0.44995 0.53623 1.0126 0.58474 1.5488 0.13476l0.61328-0.51367c0.53623-0.44995 0.50854-0.94814 0.05859-1.4844l-4.0488-4.8242-3.3574-4 4.916-5.8574c0.0037-0.0044 0.0061-0.0093 0.0098-0.01367l2.4805-2.9551c0.44995-0.53623 0.39953-1.1008-0.13672-1.5508l-0.61328-0.51367c-0.26812-0.22498-0.52264-0.30864-0.76758-0.26953z"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.867 33.867" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.99999 0 0 .99999 -10.524 -177.41)"><rect x="10.524" y="177.41" width="33.867" height="33.867" fill="#7393f3" stroke-width=".72366"/><g transform="matrix(.67733 0 0 .67733 10.524 177.41)" fill="#fff"><path transform="scale(1,-1)" x="11.755644" y="-31.042255" width="26.488712" height="12.08451" d="m17.756-31.042h14.489a6 6 45 0 1 6 6v0.08451a6 6 135 0 1-6 6h-14.489a6 6 45 0 1-6-6v-0.08451a6 6 135 0 1 6-6z" stroke-width=".29286"/><ellipse cx="25" cy="19.481" rx="7.3432" ry="5.1293" stroke-width=".20012"/></g><g transform="matrix(.67733 0 0 .67733 10.524 177.41)"><rect x="25.268" y="26.26" width="2.0174" height="3.6711" fill="#fff" stroke-width=".26458"/><rect x="21.5" y="27.245" width="7" height="3.8666" fill="#7393f3" stroke-width=".26344"/><path transform="matrix(.36886 0 0 .21296 -3.9552 7.8648)" d="m92.055 93.076h-27.11l13.555-23.479 6.7777 11.739z" fill="#7393f3"/></g><g transform="matrix(.67733 0 0 .68255 6.7598 173.7)"><g transform="matrix(1,0,0,-1,6.3485,69.902)" fill="#fff"><rect x="20.709" y="29.099" width="7" height="4.5682" stroke-width=".28635"/><path transform="matrix(.36886 0 0 .21296 -4.7458 9.7194)" d="m92.055 93.076h-27.11l13.555-23.479 6.7777 11.739z"/></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.866 33.866" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(-.49803 0 0 .49803 16.933 28.886)"><path transform="matrix(-.53125 0 0 .53125 34 -58)" d="m64 30.117-5.6465 16.941h3.7637v62.117h3.7656v-62.117h3.7637l-5.6465-16.941z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><path transform="matrix(-.53125 0 0 .53125 34 -58)" d="m83.75 57.334-11.309 13.82 3.5195 1.3418-13.719 36.012 3.5156 1.3379 13.719-36.012 3.5195 1.3418 0.75391-17.842z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><path transform="matrix(-.53125 0 0 .53125 34 -58)" d="m44.25 57.334 0.75391 17.842 3.5195-1.3418 13.719 36.012 3.5156-1.3379-13.719-36.012 3.5195-1.3418-11.309-13.82z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><circle r="10" fill="#f00"/><g fill="#fff"><circle class="storage" cy="-50" r="8"/><circle class="storage" cx="-14" cy="-35" r="8"/><circle class="storage" cx="14" cy="-35" r="8"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

-2
View File
@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="128" height="128" version="1.1" viewBox="0 0 33.866 33.866" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(-.49803 0 0 .49803 16.933 28.886)"><path transform="matrix(-.53125 0 0 .53125 34 -58)" d="m64 30.117-5.6465 16.941h3.7637v62.117h3.7656v-62.117h3.7637l-5.6465-16.941z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><path transform="matrix(-.53125 0 0 .53125 34 -58)" d="m83.75 57.334-11.309 13.82 3.5195 1.3418-13.719 36.012 3.5156 1.3379 13.719-36.012 3.5195 1.3418 0.75391-17.842z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><path transform="matrix(-.53125 0 0 .53125 34 -58)" d="m44.25 57.334 0.75391 17.842 3.5195-1.3418 13.719 36.012 3.5156-1.3379-13.719-36.012 3.5195-1.3418-11.309-13.82z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><circle r="10" fill="#f00"/><g><circle class="storage" cy="-50" r="8"/><circle class="storage" cx="-14" cy="-35" r="8"/><circle class="storage" cx="14" cy="-35" r="8"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

-166
View File
@@ -1,166 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.48.0 (0)
-->
<!-- Title: DNS Pages: 1 -->
<svg width="630pt" height="935pt"
viewBox="0.00 0.00 630.00 935.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(36 899)">
<title>DNS</title>
<!-- Start -->
<g id="node1" class="node">
<title>Start</title>
<path fill="#d4bbd2" stroke="#d4bbd2" d="M89,-863C89,-863 55,-863 55,-863 49,-863 43,-857 43,-851 43,-851 43,-839 43,-839 43,-833 49,-827 55,-827 55,-827 89,-827 89,-827 95,-827 101,-833 101,-839 101,-839 101,-851 101,-851 101,-857 95,-863 89,-863"/>
<text text-anchor="middle" x="72" y="-841.3" font-family="monospace" font-size="14.00">Start</text>
</g>
<!-- anonymous -->
<g id="node3" class="node">
<title>anonymous</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="72,-791 0,-733.5 72,-676 144,-733.5 72,-791"/>
<text text-anchor="middle" x="72" y="-737.3" font-family="monospace" font-size="14.00">Trying to be</text>
<text text-anchor="middle" x="72" y="-722.3" font-family="monospace" font-size="14.00"> anonymous?</text>
</g>
<!-- Start&#45;&gt;anonymous -->
<g id="edge1" class="edge">
<title>Start&#45;&gt;anonymous</title>
<path fill="none" stroke="white" d="M72,-826.59C72,-826.59 72,-801.45 72,-801.45"/>
<polygon fill="white" stroke="white" points="72,-791.45 76.5,-801.45 72,-796.45 72,-801.45 72,-801.45 72,-801.45 72,-796.45 67.5,-801.45 72,-791.45 72,-791.45"/>
</g>
<!-- nothing -->
<g id="node2" class="node">
<title>nothing</title>
<path fill="#d4bbd2" stroke="#d4bbd2" d="M249.5,-36C249.5,-36 174.5,-36 174.5,-36 168.5,-36 162.5,-30 162.5,-24 162.5,-24 162.5,-12 162.5,-12 162.5,-6 168.5,0 174.5,0 174.5,0 249.5,0 249.5,0 255.5,0 261.5,-6 261.5,-12 261.5,-12 261.5,-24 261.5,-24 261.5,-30 255.5,-36 249.5,-36"/>
<text text-anchor="middle" x="212" y="-14.3" font-family="monospace" font-size="14.00">Do nothing</text>
</g>
<!-- censorship -->
<g id="node4" class="node">
<title>censorship</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="72,-640 0,-582.5 72,-525 144,-582.5 72,-640"/>
<text text-anchor="middle" x="72" y="-586.3" font-family="monospace" font-size="14.00">Avoiding</text>
<text text-anchor="middle" x="72" y="-571.3" font-family="monospace" font-size="14.00"> censorship?</text>
</g>
<!-- anonymous&#45;&gt;censorship -->
<g id="edge3" class="edge">
<title>anonymous&#45;&gt;censorship</title>
<path fill="none" stroke="white" d="M72,-675.98C72,-675.98 72,-650.11 72,-650.11"/>
<polygon fill="white" stroke="white" points="72,-640.11 76.5,-650.11 72,-645.11 72,-650.11 72,-650.11 72,-650.11 72,-645.11 67.5,-650.11 72,-640.11 72,-640.11"/>
<text text-anchor="middle" x="63.5" y="-651.85" font-family="monospace" font-size="14.00" fill="white">No</text>
</g>
<!-- tor -->
<g id="node8" class="node">
<title>tor</title>
<path fill="#7aa0da" stroke="#7aa0da" d="M300,-697.5C300,-697.5 406,-697.5 406,-697.5 412,-697.5 418,-703.5 418,-709.5 418,-709.5 418,-757.5 418,-757.5 418,-763.5 412,-769.5 406,-769.5 406,-769.5 300,-769.5 300,-769.5 294,-769.5 288,-763.5 288,-757.5 288,-757.5 288,-709.5 288,-709.5 288,-703.5 294,-697.5 300,-697.5"/>
<text text-anchor="middle" x="353" y="-729.8" font-family="monospace" font-size="14.00">Use Tor</text>
</g>
<!-- anonymous&#45;&gt;tor -->
<g id="edge2" class="edge">
<title>anonymous&#45;&gt;tor</title>
<path fill="none" stroke="white" d="M143.64,-733C143.64,-733 277.75,-733 277.75,-733"/>
<polygon fill="white" stroke="white" points="287.75,-733 277.75,-737.5 282.75,-733 277.75,-733 277.75,-733 277.75,-733 282.75,-733 277.75,-728.5 287.75,-733 287.75,-733"/>
<text text-anchor="middle" x="198.19" y="-736.8" font-family="monospace" font-size="14.00" fill="white">Yes</text>
</g>
<!-- privacy -->
<g id="node5" class="node">
<title>privacy</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="212,-489 140,-431.5 212,-374 284,-431.5 212,-489"/>
<text text-anchor="middle" x="212" y="-435.3" font-family="monospace" font-size="14.00">Want privacy</text>
<text text-anchor="middle" x="212" y="-420.3" font-family="monospace" font-size="14.00"> from ISP?</text>
</g>
<!-- censorship&#45;&gt;privacy -->
<g id="edge5" class="edge">
<title>censorship&#45;&gt;privacy</title>
<path fill="none" stroke="white" d="M84.7,-535C115.31,-535 190.67,-535 190.67,-535 190.67,-535 190.67,-482.11 190.67,-482.11"/>
<polygon fill="white" stroke="white" points="190.67,-472.11 195.17,-482.11 190.67,-477.11 190.67,-482.11 190.67,-482.11 190.67,-482.11 190.67,-477.11 186.17,-482.11 190.67,-472.11 190.67,-472.11"/>
<text text-anchor="middle" x="155.63" y="-538.8" font-family="monospace" font-size="14.00" fill="white">No</text>
</g>
<!-- vpnOrTor -->
<g id="node9" class="node">
<title>vpnOrTor</title>
<path fill="#7aa0da" stroke="#7aa0da" d="M300,-546.5C300,-546.5 406,-546.5 406,-546.5 412,-546.5 418,-552.5 418,-558.5 418,-558.5 418,-606.5 418,-606.5 418,-612.5 412,-618.5 406,-618.5 406,-618.5 300,-618.5 300,-618.5 294,-618.5 288,-612.5 288,-606.5 288,-606.5 288,-558.5 288,-558.5 288,-552.5 294,-546.5 300,-546.5"/>
<text text-anchor="middle" x="353" y="-586.3" font-family="monospace" font-size="14.00">Use VPN</text>
<text text-anchor="middle" x="353" y="-571.3" font-family="monospace" font-size="14.00"> or Tor</text>
</g>
<!-- censorship&#45;&gt;vpnOrTor -->
<g id="edge4" class="edge">
<title>censorship&#45;&gt;vpnOrTor</title>
<path fill="none" stroke="white" d="M129.88,-594C129.88,-594 277.82,-594 277.82,-594"/>
<polygon fill="white" stroke="white" points="287.82,-594 277.82,-598.5 282.82,-594 277.82,-594 277.82,-594 277.82,-594 282.82,-594 277.82,-589.5 287.82,-594 287.82,-594"/>
<text text-anchor="middle" x="191.35" y="-597.8" font-family="monospace" font-size="14.00" fill="white">Yes</text>
</g>
<!-- obnoxious -->
<g id="node6" class="node">
<title>obnoxious</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="212,-338 140,-280.5 212,-223 284,-280.5 212,-338"/>
<text text-anchor="middle" x="212" y="-291.8" font-family="monospace" font-size="14.00">ISP makes</text>
<text text-anchor="middle" x="212" y="-276.8" font-family="monospace" font-size="14.00"> obnoxious</text>
<text text-anchor="middle" x="212" y="-261.8" font-family="monospace" font-size="14.00"> redirects?</text>
</g>
<!-- privacy&#45;&gt;obnoxious -->
<g id="edge7" class="edge">
<title>privacy&#45;&gt;obnoxious</title>
<path fill="none" stroke="white" d="M212,-373.98C212,-373.98 212,-348.11 212,-348.11"/>
<polygon fill="white" stroke="white" points="212,-338.11 216.5,-348.11 212,-343.11 212,-348.11 212,-348.11 212,-348.11 212,-343.11 207.5,-348.11 212,-338.11 212,-338.11"/>
<text text-anchor="middle" x="203.5" y="-349.85" font-family="monospace" font-size="14.00" fill="white">No</text>
</g>
<!-- privacy&#45;&gt;vpnOrTor -->
<g id="edge6" class="edge">
<title>privacy&#45;&gt;vpnOrTor</title>
<path fill="none" stroke="white" d="M237.33,-468.98C237.33,-510 237.33,-570 237.33,-570 237.33,-570 277.73,-570 277.73,-570"/>
<polygon fill="white" stroke="white" points="287.73,-570 277.73,-574.5 282.73,-570 277.73,-570 277.73,-570 277.73,-570 282.73,-570 277.73,-565.5 287.73,-570 287.73,-570"/>
<text text-anchor="middle" x="224.83" y="-543.49" font-family="monospace" font-size="14.00" fill="white">Yes</text>
</g>
<!-- ispDNS -->
<g id="node7" class="node">
<title>ispDNS</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="212,-187 140,-129.5 212,-72 284,-129.5 212,-187"/>
<text text-anchor="middle" x="212" y="-148.3" font-family="monospace" font-size="14.00">Does ISP</text>
<text text-anchor="middle" x="212" y="-133.3" font-family="monospace" font-size="14.00"> support</text>
<text text-anchor="middle" x="212" y="-118.3" font-family="monospace" font-size="14.00"> encrypted</text>
<text text-anchor="middle" x="212" y="-103.3" font-family="monospace" font-size="14.00"> DNS?</text>
</g>
<!-- obnoxious&#45;&gt;ispDNS -->
<g id="edge9" class="edge">
<title>obnoxious&#45;&gt;ispDNS</title>
<path fill="none" stroke="white" d="M212,-222.98C212,-222.98 212,-197.11 212,-197.11"/>
<polygon fill="white" stroke="white" points="212,-187.11 216.5,-197.11 212,-192.11 212,-197.11 212,-197.11 212,-197.11 212,-192.11 207.5,-197.11 212,-187.11 212,-187.11"/>
<text text-anchor="middle" x="203.5" y="-198.85" font-family="monospace" font-size="14.00" fill="white">No</text>
</g>
<!-- encryptedDNS -->
<g id="node10" class="node">
<title>encryptedDNS</title>
<path fill="#7aa0da" stroke="#7aa0da" d="M440,-244.5C440,-244.5 546,-244.5 546,-244.5 552,-244.5 558,-250.5 558,-256.5 558,-256.5 558,-304.5 558,-304.5 558,-310.5 552,-316.5 546,-316.5 546,-316.5 440,-316.5 440,-316.5 434,-316.5 428,-310.5 428,-304.5 428,-304.5 428,-256.5 428,-256.5 428,-250.5 434,-244.5 440,-244.5"/>
<text text-anchor="middle" x="493" y="-291.8" font-family="monospace" font-size="14.00">Use encrypted</text>
<text text-anchor="middle" x="493" y="-276.8" font-family="monospace" font-size="14.00"> DNS with 3rd</text>
<text text-anchor="middle" x="493" y="-261.8" font-family="monospace" font-size="14.00"> party</text>
</g>
<!-- obnoxious&#45;&gt;encryptedDNS -->
<g id="edge8" class="edge">
<title>obnoxious&#45;&gt;encryptedDNS</title>
<path fill="none" stroke="white" d="M283.64,-280C283.64,-280 417.75,-280 417.75,-280"/>
<polygon fill="white" stroke="white" points="427.75,-280 417.75,-284.5 422.75,-280 417.75,-280 417.75,-280 417.75,-280 422.75,-280 417.75,-275.5 427.75,-280 427.75,-280"/>
<text text-anchor="middle" x="338.19" y="-283.8" font-family="monospace" font-size="14.00" fill="white">Yes</text>
</g>
<!-- ispDNS&#45;&gt;nothing -->
<g id="edge11" class="edge">
<title>ispDNS&#45;&gt;nothing</title>
<path fill="none" stroke="white" d="M212,-71.79C212,-71.79 212,-46.13 212,-46.13"/>
<polygon fill="white" stroke="white" points="212,-36.13 216.5,-46.13 212,-41.13 212,-46.13 212,-46.13 212,-46.13 212,-41.13 207.5,-46.13 212,-36.13 212,-36.13"/>
<text text-anchor="middle" x="203.5" y="-47.76" font-family="monospace" font-size="14.00" fill="white">No</text>
</g>
<!-- useISP -->
<g id="node11" class="node">
<title>useISP</title>
<path fill="#7aa0da" stroke="#7aa0da" d="M440,-93.5C440,-93.5 546,-93.5 546,-93.5 552,-93.5 558,-99.5 558,-105.5 558,-105.5 558,-153.5 558,-153.5 558,-159.5 552,-165.5 546,-165.5 546,-165.5 440,-165.5 440,-165.5 434,-165.5 428,-159.5 428,-153.5 428,-153.5 428,-105.5 428,-105.5 428,-99.5 434,-93.5 440,-93.5"/>
<text text-anchor="middle" x="493" y="-133.3" font-family="monospace" font-size="14.00">Use encrypted</text>
<text text-anchor="middle" x="493" y="-118.3" font-family="monospace" font-size="14.00"> DNS with ISP</text>
</g>
<!-- ispDNS&#45;&gt;useISP -->
<g id="edge10" class="edge">
<title>ispDNS&#45;&gt;useISP</title>
<path fill="none" stroke="white" d="M283.64,-129C283.64,-129 417.75,-129 417.75,-129"/>
<polygon fill="white" stroke="white" points="427.75,-129 417.75,-133.5 422.75,-129 417.75,-129 417.75,-129 417.75,-129 422.75,-129 417.75,-124.5 427.75,-129 427.75,-129"/>
<text text-anchor="middle" x="338.19" y="-132.8" font-family="monospace" font-size="14.00" fill="white">Yes</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

-166
View File
@@ -1,166 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.48.0 (0)
-->
<!-- Title: DNS Pages: 1 -->
<svg width="630pt" height="935pt"
viewBox="0.00 0.00 630.00 935.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(36 899)">
<title>DNS</title>
<!-- Start -->
<g id="node1" class="node">
<title>Start</title>
<path fill="#d4bbd2" stroke="#d4bbd2" d="M89,-863C89,-863 55,-863 55,-863 49,-863 43,-857 43,-851 43,-851 43,-839 43,-839 43,-833 49,-827 55,-827 55,-827 89,-827 89,-827 95,-827 101,-833 101,-839 101,-839 101,-851 101,-851 101,-857 95,-863 89,-863"/>
<text text-anchor="middle" x="72" y="-841.3" font-family="monospace" font-size="14.00">Start</text>
</g>
<!-- anonymous -->
<g id="node3" class="node">
<title>anonymous</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="72,-791 0,-733.5 72,-676 144,-733.5 72,-791"/>
<text text-anchor="middle" x="72" y="-737.3" font-family="monospace" font-size="14.00">Trying to be</text>
<text text-anchor="middle" x="72" y="-722.3" font-family="monospace" font-size="14.00"> anonymous?</text>
</g>
<!-- Start&#45;&gt;anonymous -->
<g id="edge1" class="edge">
<title>Start&#45;&gt;anonymous</title>
<path fill="none" stroke="black" d="M72,-826.59C72,-826.59 72,-801.45 72,-801.45"/>
<polygon fill="black" stroke="black" points="72,-791.45 76.5,-801.45 72,-796.45 72,-801.45 72,-801.45 72,-801.45 72,-796.45 67.5,-801.45 72,-791.45 72,-791.45"/>
</g>
<!-- nothing -->
<g id="node2" class="node">
<title>nothing</title>
<path fill="#d4bbd2" stroke="#d4bbd2" d="M249.5,-36C249.5,-36 174.5,-36 174.5,-36 168.5,-36 162.5,-30 162.5,-24 162.5,-24 162.5,-12 162.5,-12 162.5,-6 168.5,0 174.5,0 174.5,0 249.5,0 249.5,0 255.5,0 261.5,-6 261.5,-12 261.5,-12 261.5,-24 261.5,-24 261.5,-30 255.5,-36 249.5,-36"/>
<text text-anchor="middle" x="212" y="-14.3" font-family="monospace" font-size="14.00">Do nothing</text>
</g>
<!-- censorship -->
<g id="node4" class="node">
<title>censorship</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="72,-640 0,-582.5 72,-525 144,-582.5 72,-640"/>
<text text-anchor="middle" x="72" y="-586.3" font-family="monospace" font-size="14.00">Avoiding</text>
<text text-anchor="middle" x="72" y="-571.3" font-family="monospace" font-size="14.00"> censorship?</text>
</g>
<!-- anonymous&#45;&gt;censorship -->
<g id="edge3" class="edge">
<title>anonymous&#45;&gt;censorship</title>
<path fill="none" stroke="black" d="M72,-675.98C72,-675.98 72,-650.11 72,-650.11"/>
<polygon fill="black" stroke="black" points="72,-640.11 76.5,-650.11 72,-645.11 72,-650.11 72,-650.11 72,-650.11 72,-645.11 67.5,-650.11 72,-640.11 72,-640.11"/>
<text text-anchor="middle" x="63.5" y="-651.85" font-family="monospace" font-size="14.00">No</text>
</g>
<!-- tor -->
<g id="node8" class="node">
<title>tor</title>
<path fill="#7aa0da" stroke="#7aa0da" d="M300,-697.5C300,-697.5 406,-697.5 406,-697.5 412,-697.5 418,-703.5 418,-709.5 418,-709.5 418,-757.5 418,-757.5 418,-763.5 412,-769.5 406,-769.5 406,-769.5 300,-769.5 300,-769.5 294,-769.5 288,-763.5 288,-757.5 288,-757.5 288,-709.5 288,-709.5 288,-703.5 294,-697.5 300,-697.5"/>
<text text-anchor="middle" x="353" y="-729.8" font-family="monospace" font-size="14.00">Use Tor</text>
</g>
<!-- anonymous&#45;&gt;tor -->
<g id="edge2" class="edge">
<title>anonymous&#45;&gt;tor</title>
<path fill="none" stroke="black" d="M143.64,-733C143.64,-733 277.75,-733 277.75,-733"/>
<polygon fill="black" stroke="black" points="287.75,-733 277.75,-737.5 282.75,-733 277.75,-733 277.75,-733 277.75,-733 282.75,-733 277.75,-728.5 287.75,-733 287.75,-733"/>
<text text-anchor="middle" x="198.19" y="-736.8" font-family="monospace" font-size="14.00">Yes</text>
</g>
<!-- privacy -->
<g id="node5" class="node">
<title>privacy</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="212,-489 140,-431.5 212,-374 284,-431.5 212,-489"/>
<text text-anchor="middle" x="212" y="-435.3" font-family="monospace" font-size="14.00">Want privacy</text>
<text text-anchor="middle" x="212" y="-420.3" font-family="monospace" font-size="14.00"> from ISP?</text>
</g>
<!-- censorship&#45;&gt;privacy -->
<g id="edge5" class="edge">
<title>censorship&#45;&gt;privacy</title>
<path fill="none" stroke="black" d="M84.7,-535C115.31,-535 190.67,-535 190.67,-535 190.67,-535 190.67,-482.11 190.67,-482.11"/>
<polygon fill="black" stroke="black" points="190.67,-472.11 195.17,-482.11 190.67,-477.11 190.67,-482.11 190.67,-482.11 190.67,-482.11 190.67,-477.11 186.17,-482.11 190.67,-472.11 190.67,-472.11"/>
<text text-anchor="middle" x="155.63" y="-538.8" font-family="monospace" font-size="14.00">No</text>
</g>
<!-- vpnOrTor -->
<g id="node9" class="node">
<title>vpnOrTor</title>
<path fill="#7aa0da" stroke="#7aa0da" d="M300,-546.5C300,-546.5 406,-546.5 406,-546.5 412,-546.5 418,-552.5 418,-558.5 418,-558.5 418,-606.5 418,-606.5 418,-612.5 412,-618.5 406,-618.5 406,-618.5 300,-618.5 300,-618.5 294,-618.5 288,-612.5 288,-606.5 288,-606.5 288,-558.5 288,-558.5 288,-552.5 294,-546.5 300,-546.5"/>
<text text-anchor="middle" x="353" y="-586.3" font-family="monospace" font-size="14.00">Use VPN</text>
<text text-anchor="middle" x="353" y="-571.3" font-family="monospace" font-size="14.00"> or Tor</text>
</g>
<!-- censorship&#45;&gt;vpnOrTor -->
<g id="edge4" class="edge">
<title>censorship&#45;&gt;vpnOrTor</title>
<path fill="none" stroke="black" d="M129.88,-594C129.88,-594 277.82,-594 277.82,-594"/>
<polygon fill="black" stroke="black" points="287.82,-594 277.82,-598.5 282.82,-594 277.82,-594 277.82,-594 277.82,-594 282.82,-594 277.82,-589.5 287.82,-594 287.82,-594"/>
<text text-anchor="middle" x="191.35" y="-597.8" font-family="monospace" font-size="14.00">Yes</text>
</g>
<!-- obnoxious -->
<g id="node6" class="node">
<title>obnoxious</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="212,-338 140,-280.5 212,-223 284,-280.5 212,-338"/>
<text text-anchor="middle" x="212" y="-291.8" font-family="monospace" font-size="14.00">ISP makes</text>
<text text-anchor="middle" x="212" y="-276.8" font-family="monospace" font-size="14.00"> obnoxious</text>
<text text-anchor="middle" x="212" y="-261.8" font-family="monospace" font-size="14.00"> redirects?</text>
</g>
<!-- privacy&#45;&gt;obnoxious -->
<g id="edge7" class="edge">
<title>privacy&#45;&gt;obnoxious</title>
<path fill="none" stroke="black" d="M212,-373.98C212,-373.98 212,-348.11 212,-348.11"/>
<polygon fill="black" stroke="black" points="212,-338.11 216.5,-348.11 212,-343.11 212,-348.11 212,-348.11 212,-348.11 212,-343.11 207.5,-348.11 212,-338.11 212,-338.11"/>
<text text-anchor="middle" x="203.5" y="-349.85" font-family="monospace" font-size="14.00">No</text>
</g>
<!-- privacy&#45;&gt;vpnOrTor -->
<g id="edge6" class="edge">
<title>privacy&#45;&gt;vpnOrTor</title>
<path fill="none" stroke="black" d="M237.33,-468.98C237.33,-510 237.33,-570 237.33,-570 237.33,-570 277.73,-570 277.73,-570"/>
<polygon fill="black" stroke="black" points="287.73,-570 277.73,-574.5 282.73,-570 277.73,-570 277.73,-570 277.73,-570 282.73,-570 277.73,-565.5 287.73,-570 287.73,-570"/>
<text text-anchor="middle" x="224.83" y="-543.49" font-family="monospace" font-size="14.00">Yes</text>
</g>
<!-- ispDNS -->
<g id="node7" class="node">
<title>ispDNS</title>
<polygon fill="#ffebc2" stroke="#ffebc2" points="212,-187 140,-129.5 212,-72 284,-129.5 212,-187"/>
<text text-anchor="middle" x="212" y="-148.3" font-family="monospace" font-size="14.00">Does ISP</text>
<text text-anchor="middle" x="212" y="-133.3" font-family="monospace" font-size="14.00"> support</text>
<text text-anchor="middle" x="212" y="-118.3" font-family="monospace" font-size="14.00"> encrypted</text>
<text text-anchor="middle" x="212" y="-103.3" font-family="monospace" font-size="14.00"> DNS?</text>
</g>
<!-- obnoxious&#45;&gt;ispDNS -->
<g id="edge9" class="edge">
<title>obnoxious&#45;&gt;ispDNS</title>
<path fill="none" stroke="black" d="M212,-222.98C212,-222.98 212,-197.11 212,-197.11"/>
<polygon fill="black" stroke="black" points="212,-187.11 216.5,-197.11 212,-192.11 212,-197.11 212,-197.11 212,-197.11 212,-192.11 207.5,-197.11 212,-187.11 212,-187.11"/>
<text text-anchor="middle" x="203.5" y="-198.85" font-family="monospace" font-size="14.00">No</text>
</g>
<!-- encryptedDNS -->
<g id="node10" class="node">
<title>encryptedDNS</title>
<path fill="#7aa0da" stroke="#7aa0da" d="M440,-244.5C440,-244.5 546,-244.5 546,-244.5 552,-244.5 558,-250.5 558,-256.5 558,-256.5 558,-304.5 558,-304.5 558,-310.5 552,-316.5 546,-316.5 546,-316.5 440,-316.5 440,-316.5 434,-316.5 428,-310.5 428,-304.5 428,-304.5 428,-256.5 428,-256.5 428,-250.5 434,-244.5 440,-244.5"/>
<text text-anchor="middle" x="493" y="-291.8" font-family="monospace" font-size="14.00">Use encrypted</text>
<text text-anchor="middle" x="493" y="-276.8" font-family="monospace" font-size="14.00"> DNS with 3rd</text>
<text text-anchor="middle" x="493" y="-261.8" font-family="monospace" font-size="14.00"> party</text>
</g>
<!-- obnoxious&#45;&gt;encryptedDNS -->
<g id="edge8" class="edge">
<title>obnoxious&#45;&gt;encryptedDNS</title>
<path fill="none" stroke="black" d="M283.64,-280C283.64,-280 417.75,-280 417.75,-280"/>
<polygon fill="black" stroke="black" points="427.75,-280 417.75,-284.5 422.75,-280 417.75,-280 417.75,-280 417.75,-280 422.75,-280 417.75,-275.5 427.75,-280 427.75,-280"/>
<text text-anchor="middle" x="338.19" y="-283.8" font-family="monospace" font-size="14.00">Yes</text>
</g>
<!-- ispDNS&#45;&gt;nothing -->
<g id="edge11" class="edge">
<title>ispDNS&#45;&gt;nothing</title>
<path fill="none" stroke="black" d="M212,-71.79C212,-71.79 212,-46.13 212,-46.13"/>
<polygon fill="black" stroke="black" points="212,-36.13 216.5,-46.13 212,-41.13 212,-46.13 212,-46.13 212,-46.13 212,-41.13 207.5,-46.13 212,-36.13 212,-36.13"/>
<text text-anchor="middle" x="203.5" y="-47.76" font-family="monospace" font-size="14.00">No</text>
</g>
<!-- useISP -->
<g id="node11" class="node">
<title>useISP</title>
<path fill="#7aa0da" stroke="#7aa0da" d="M440,-93.5C440,-93.5 546,-93.5 546,-93.5 552,-93.5 558,-99.5 558,-105.5 558,-105.5 558,-153.5 558,-153.5 558,-159.5 552,-165.5 546,-165.5 546,-165.5 440,-165.5 440,-165.5 434,-165.5 428,-159.5 428,-153.5 428,-153.5 428,-105.5 428,-105.5 428,-99.5 434,-93.5 440,-93.5"/>
<text text-anchor="middle" x="493" y="-133.3" font-family="monospace" font-size="14.00">Use encrypted</text>
<text text-anchor="middle" x="493" y="-118.3" font-family="monospace" font-size="14.00"> DNS with ISP</text>
</g>
<!-- ispDNS&#45;&gt;useISP -->
<g id="edge10" class="edge">
<title>ispDNS&#45;&gt;useISP</title>
<path fill="none" stroke="black" d="M283.64,-129C283.64,-129 417.75,-129 417.75,-129"/>
<polygon fill="black" stroke="black" points="427.75,-129 417.75,-133.5 422.75,-129 417.75,-129 417.75,-129 417.75,-129 422.75,-129 417.75,-124.5 427.75,-129 427.75,-129"/>
<text text-anchor="middle" x="338.19" y="-132.8" font-family="monospace" font-size="14.00">Yes</text>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 55 KiB

-8
View File
@@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="480" width="640">
<g clip-path="url(#a)" fill-rule="evenodd" transform="matrix(1.3333 0 0 1 -85.333 0)">
<path fill="red" d="M0 0h192v512H0z"/>
<path d="M192 340.06h576V512H192z"/>
<path fill="#fff" d="M192 172.7h576v169.65H192z"/>
<path fill="#00732f" d="M192 0h576v172.7H192z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 383 B

-431
View File
@@ -1,431 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="480" width="640">
<g fill-rule="evenodd" stroke-width="1pt">
<path d="M-85.333 0h682.65v512h-682.65z"/>
<path fill="#090" d="M369.762 0h227.555v512H369.762z"/>
<path fill="#bf0000" d="M142.22 0h227.556v512H142.22z"/>
</g>
<path d="M398.352 265.182c-.11.58 1.454 1.433 1.826.99 1.682-2.015 3.883-5.97 4.334-8.364.133-.697-2.107-1.485-2.586-.913-1.575 1.886-3.1 5.773-3.574 8.287zM188.016 387.838c-1.675 5.917-26.38-5.577-29.138-11.532 14.136 7.49 29.476 5.924 29.138 11.532zM109.91 266.973c1.236 1.47 3.318.485 1.42-1.504-1.552-1.61-1.04-2.117-1.987-4.075-.936-2.188-.887-3.395-2.016-4.96-1-1.482-2.5.03-1.495 1.28 1.263 1.476.915 2.564 1.687 3.992 1.426 2.444 1.08 3.727 2.39 5.265zm33.224 40.113c3.974 1.954 6.99 6.836 7.19 10.812.336 4.576.996 8.44 3.05 11.69-3.27-.91-4.837-6.124-5.302-11.118-.47-5.17-3.256-7.41-4.938-11.384zm8.29 9.576c2.75 5.077 6.597 7.013 6.794 10.78.333 4.335.662 4.557 1.837 8.82-3.237-.863-4.052-1.145-4.926-7.632-.54-4.56-4.19-7.775-3.706-11.968z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path stroke-linejoin="round" d="M215.673 343.95c4.208 3.446 6.938 7.382 8.21 12.467 1.328 4.738 3.195 8.515 5.933 12.774-4.46-3.04-7.265-7.18-8.668-12.165-1.232-4.9-2.686-8.563-5.475-13.075zm78.767 0c-4.302 3.466-7.093 7.425-8.394 12.54-1.357 4.766-3.265 8.566-6.064 12.85 4.56-3.06 7.427-7.223 8.86-12.24 1.26-4.928 2.746-8.613 5.597-13.15zm-5.295 0c-4.61 3.62-8.958 7.732-10.26 12.848-1.356 4.765-2.176 8.412-5.285 13.154 4.87-3.06 6.804-7.682 8.238-12.698 1.26-4.928 4.146-8.612 7.308-13.305zm-52.12 19.676c1.544 2.914 3.32 7.35 6.536 6.538.053-2.23-3.47-3.776-6.535-6.538zm4.805.994c6.25 2.56 11.645 1.928 12.317 5.855-5.86.633-8.005-1.775-12.316-5.856zm30.636-.604c-1.567 2.746-3.366 6.928-6.627 6.163-.054-2.105 3.517-3.56 6.625-6.165zm-4.38.836c-6.34 2.43-11.813 1.83-12.496 5.558 5.948.6 8.123-1.684 12.496-5.558z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M273.867 355.958c.124-.89-.482-1.666-1.21-1.9-1.42-.533-2.83-.967-4.237-1.368-1.6-.38-2.494.767-2.5 1.52-.007 1.254-.065 2.318 0 3.268.088 1.183.312 1.27 1.06 1.446 1.197.202 2.732.41 3.935 1.216.953.588 1.87.123 2.345-.91.308-.79.477-2.336.607-3.272zm-17.225 0c-.11-.89.357-1.742 1.007-1.976 1.265-.533 2.527-.663 3.86-.61 1.476-.022 1.85.313 1.853 1.066.008 1.253.06 2.47 0 3.42-.078 1.183-.052 1.27-.72 1.446-1.07.202-2.893.256-3.968 1.064-.852.588-1.823.123-1.87-.987.022-.834-.048-2.485-.164-3.42zm-20.902-.234c-.126-.89.484-1.666 1.215-1.9 1.425-.533 2.844-.967 4.257-1.368 1.606-.38 2.505.767 2.51 1.52.008 1.254.067 2.32 0 3.268-.087 1.184-.313 1.27-1.064 1.446-1.203.203-2.744.41-3.953 1.217-.957.588-1.878.123-2.357-.91-.31-.79-.48-2.337-.61-3.273zm17.302 0c.11-.89-.36-1.742-1.012-1.975-1.273-.535-2.54-.666-3.878-.61-1.485-.025-1.86.31-1.864 1.063-.008 1.254-.06 2.47 0 3.42.078 1.183.052 1.27.724 1.446 1.074.2 2.907.256 3.987 1.064.853.587 1.83.122 1.875-.987-.02-.837.05-2.488.166-3.424zM185.47 238.518c-2.012-3.23-4.42 4.48-12.69 10.216-3.85 2.62-6.53 9.6-6.556 14.195-.127 3.153.35 6.3-.002 9.352-.222 1.93-2.234 6.216-.858 7.312 3.64 2.705 8.35 8.848 10.537 10.967 1.89 1.658 3.53-8.55 4.947-13.117 1.52-4.895.84-10.745 5.055-15.27 2.99-3.052 10.525-6.057 9.678-7.418l-10.11-16.238z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M185.47 238.518c-2.012-3.23-4.42 4.48-12.69 10.216-3.85 2.62-6.53 9.6-6.556 14.195-.127 3.153.35 6.3-.002 9.352-.222 1.93-2.234 6.216-.858 7.312 3.64 2.705 8.35 8.848 10.537 10.967 1.89 1.658 3.53-8.55 4.947-13.117 1.52-4.895.84-10.745 5.055-15.27 2.99-3.052 10.525-6.057 9.678-7.418l-10.11-16.238z" fill-rule="evenodd" fill="#fff"/>
<path d="M173.246 248.074c-.788 5.468 2.256 7.287 5.13 8.346 2.973 1.057 5.41 4.247 6.667 7.133m-19.156 2.524c1.255 4.714 4.558 4.124 7.43 5.183 2.975 1.057 6.102 4.817 7.358 7.703" stroke="#000" stroke-width=".487" fill="none"/>
<path d="M182.686 235.19l1.506-.967 28.922 48.71-1.504.967-28.924-48.71z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M182.686 235.19l1.506-.967 28.922 48.71-1.504.967-28.924-48.71z" fill-rule="evenodd" fill="#fff"/>
<path d="M185.8 233.263a3.334 3.334 0 1 1-6.668-.002 3.334 3.334 0 0 1 6.668.002z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M185.8 233.263a3.334 3.334 0 1 1-6.668-.002 3.334 3.334 0 0 1 6.668.002z" fill-rule="evenodd" fill="#fff"/>
<path d="M274.79 144.77c-1.033-1.66-2.27 2.3-6.52 5.25-1.977 1.345-3.355 4.932-3.368 7.292-.065 1.62.18 3.238 0 4.806-.115.992-1.15 3.194-.442 3.757 1.87 1.39 4.29 4.546 5.414 5.635.97.85 1.812-4.393 2.54-6.74.782-2.515.432-5.52 2.598-7.845 1.535-1.57 5.407-3.113 4.972-3.812l-5.194-8.343z" fill-rule="evenodd" transform="matrix(-1.9453 0 0 2.0144 859.49 -52.133)" stroke="#000" stroke-width=".492" fill="#fff"/>
<path d="M324.944 239.495c2.01-3.342 4.415 4.635 12.68 10.574 3.85 2.71 6.53 9.935 6.555 14.69.124 3.264-.353 6.522 0 9.68.22 2 2.233 6.434.857 7.57-3.637 2.8-8.347 9.156-10.53 11.35-1.89 1.714-3.526-8.85-4.944-13.578-1.52-5.066-.84-11.12-5.052-15.803-2.985-3.16-10.517-6.27-9.67-7.68l10.103-16.806z" fill-rule="evenodd" fill="#fff"/>
<path d="M273.36 143.06l.774-.497 14.86 25.027-.773.497-14.86-25.027z" fill-rule="evenodd" transform="matrix(-1.9453 0 0 2.0144 859.49 -52.133)" stroke="#000" stroke-width=".492" fill="#fff"/>
<path d="M268.43 149.76c-.405 2.81 1.237 3.665 2.713 4.21 1.528.542 2.86 2.063 3.504 3.546" transform="matrix(-1.9453 0 0 2.0144 859.49 -52.133)" stroke="#000" stroke-width=".25" fill="none"/>
<path d="M267.35 151.26c.645 2.422 2.264 2.005 3.74 2.55 1.528.542 3.135 2.32 3.78 3.802" transform="matrix(-1.9453 0 0 2.0144 864.433 -36.44)" stroke="#000" stroke-width=".25" fill="none"/>
<path d="M327.725 236.05l-1.505-1-28.907 50.414 1.503 1 28.91-50.414z" fill-rule="evenodd" fill="#fff"/>
<path d="M274.96 142.07a1.713 1.713 0 1 1-3.426 0 1.713 1.713 0 0 1 3.426 0z" fill-rule="evenodd" transform="matrix(-1.9453 0 0 2.0144 859.49 -52.133)" stroke="#000" stroke-width=".492" fill="#fff"/>
<path d="M324.613 234.056c0 1.905 1.49 3.45 3.33 3.45s3.333-1.545 3.333-3.45-1.492-3.45-3.332-3.45c-1.84 0-3.33 1.545-3.33 3.45z" fill-rule="evenodd" fill="#fff"/>
<g fill-rule="evenodd" fill="#fff">
<path stroke="#000" stroke-width=".973" d="M210.515 194.123h11.72v2.688h-11.72zm0 5.08h11.72v22.456h-11.72zm-.7-8.155l13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05zm77.695 3.132h11.72v2.69h-11.72zm0 5.1h11.72v22.457h-11.72zm-.708-8.156l13 .076c.51-4.41-3.89-9.17-6.46-9.122-2.54.122-6.64 4.815-6.54 9.046z"/>
<path d="M210.515 194.123h11.72v2.688h-11.72zm0 5.08h11.72v22.456h-11.72zm-.7-8.155l13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05zm77.695 3.132h11.72v2.69h-11.72zm0 5.1h11.72v22.457h-11.72zm-.708-8.156l13 .076c.51-4.41-3.89-9.17-6.46-9.122-2.54.122-6.64 4.815-6.54 9.046z"/>
</g>
<path fill-rule="evenodd" fill="#fff" d="M287.51 199.28h11.72v22.457h-11.72zm0-5.1h11.72v2.69h-11.72zm-.7-3.054l13 .076c.51-4.41-3.89-9.17-6.46-9.123-2.54.12-6.64 4.813-6.54 9.045zm-76.295 8.077h11.72v22.456h-11.72zm0-5.08h11.72v2.688h-11.72zm-.7-3.075l13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05z"/>
<g fill-rule="evenodd" fill="#fff">
<path d="M200.764 225.478l7.452 8.21 92.757.153 7.604-8.21-23.72-.303-11.558-8.06-37.258-.15-10.797 8.362h-24.482z" stroke="#000" stroke-width=".973"/>
<path d="M200.764 225.478l7.452 8.21 92.757.153 7.604-8.21-23.72-.303-11.558-8.06-37.258-.15-10.797 8.362h-24.482z"/>
</g>
<path d="M238.736 212.808l32.03-.034c4.337-2.292 5.69-9.614 5.668-13.71-.06-12.103-8.525-17.907-17.02-18.217-1.273-.064-2.75-1.055-3.087-2.215-.837-2.627-.62-9.468-1.538-9.375-.817-.012-.578 6.697-1.304 9.16-.4 1.228-1.777 2.436-3.15 2.506-10.575.528-17.395 8.247-17.128 18.14.178 6.54.94 10.447 5.526 13.745z" stroke="#000" stroke-width=".973" fill="none"/>
<path d="M238.736 212.808l32.03-.034c4.337-2.292 5.69-9.614 5.668-13.71-.06-12.103-8.525-17.907-17.02-18.217-1.273-.064-2.75-1.055-3.087-2.215-.837-2.627-.62-9.315-1.538-9.375-.663.064-.578 6.697-1.304 9.16-.4 1.228-1.777 2.436-3.15 2.506-10.575.528-17.395 8.247-17.128 18.14.178 6.54.94 10.447 5.526 13.745z" fill-rule="evenodd" fill="#fff"/>
<path d="M236.732 202.142c.807 3.988 2.728 3.377 2.586 1.446-.473-6.16.026-12.227 5.473-16.27 1.73-1.266-.2-2.434-1.67-1.825-4.632 1.948-7.446 10.88-6.387 16.65z" stroke="#000" stroke-width=".487" fill="none"/>
<path d="M242.12 204.654c.808 3.988 4.107 3.815 3.5 1.218-1.236-4.973-1.04-12.226 3.343-15.358 1.73-1.26-.202-2.433-1.672-1.824-4.63 1.95-6.23 10.195-5.17 15.964z" stroke="#000" stroke-width=".487" fill="none"/>
<path d="M301.46 125.42c.415 2.05 1.402 1.735 1.33.743-.244-3.165.012-6.282 2.81-8.36.888-.65-.103-1.25-.858-.937-2.38 1-3.826 5.59-3.282 8.554z" transform="matrix(-1.9484 0 0 1.9463 860.365 -41.81)" stroke="#000" stroke-width=".25" fill="none"/>
<path d="M302.08 125.07c.415 2.05 2.11 1.96 1.798.626-.635-2.555-.534-6.282 1.718-7.89.89-.648-.104-1.25-.86-.938-2.38 1-3.2 5.238-2.656 8.202z" transform="matrix(-1.9484 0 0 1.9463 856.18 -38.618)" stroke="#000" stroke-width=".25" fill="none"/>
<g fill-rule="evenodd" fill="#fff">
<path d="M186.01 330.247h137.62l-12.32-10.037H198.327l-12.316 10.037z" stroke="#000" stroke-width=".973"/>
<path d="M186.01 330.247h137.62l-12.32-10.037H198.327l-12.316 10.037z"/>
</g>
<g fill="#fff" fill-rule="evenodd">
<g stroke="#000" stroke-width=".5">
<path d="M209.892 239.94h13.077v18.094h-13.08zm.758 28.434h12.623v3.802H210.65zm-.29 6.676h12.925v14.142H210.36zm-.916 17.03h14.142v7.908h-14.142zm1.732-27.112h11.395l2.26-3.762h-15.697l2.044 3.762zm15.376-13.858l.107-9.89h7.85c-3.085 2.543-5.95 5.626-7.96 9.89zm72.888-11.17h-12.856v18.094h12.857zm-.213 28.434H286.82v3.802h12.407zm.233 6.676h-12.635v14.142h12.636zm.818 17.03h-13.902v7.908h13.902z" stroke-width=".973"/>
<path d="M288.44 157.7h5.855l1.16-1.933h-8.065l1.05 1.933z" transform="matrix(-1.9134 0 0 1.9463 850.108 -41.963)"/>
<path d="M296.23 150.58l.055-5.082h4.033c-1.584 1.307-3.057 2.89-4.088 5.082z" transform="matrix(-1.9134 0 0 1.9463 849.894 -41.963)"/>
</g>
<path d="M209.892 239.94h13.077v18.094h-13.08zm.758 28.434h12.623v3.802H210.65zm-.29 6.676h12.925v14.142H210.36zm-.916 17.03h14.142v7.908h-14.142zm1.732-27.112h11.395l2.26-3.762h-15.697l2.044 3.762zm15.376-13.858l.107-9.89h7.85c-3.085 2.543-5.95 5.626-7.96 9.89zm72.888-11.17h-12.856v18.094h12.857zm-.213 28.434H286.82v3.802h12.407zm.233 6.676h-12.635v14.142h12.636zm.818 17.03h-13.902v7.908h13.902zm-2.084-27.112H286.99l-2.22-3.762h15.433l-2.01 3.762zm-15.12-13.858l-.106-9.89h-7.716c3.03 2.543 5.85 5.626 7.822 9.89z"/>
</g>
<path d="M211.916 255.16c.078 2.115 2.474 1.17 2.474.106 0-3.264.043-6.793-.088-9.103-.015-1.703 4.058-1.277 4.035-.228.016 2.756.047 6.536.062 9.76-.03 1.572 2.63 1.436 2.593 0-.016-3.6-.018-8.837 0-11.488.023-3.414-8.963-3.34-9.033-.076.005 2.68-.048 7.48-.044 11.03zm76.944.38c.077 2.115 2.473 1.17 2.473.106 0-3.264.043-6.792-.087-9.103-.016-1.703 4.058-1.276 4.034-.227.016 2.756.047 6.535.062 9.76-.03 1.57 2.554 1.435 2.52 0-.017-3.678.057-8.838.075-11.49.023-3.413-8.963-3.34-9.033-.075.004 2.68-.05 7.48-.045 11.03zm-76.91 21.184h9.276v11.557h-9.276z" stroke="#000" stroke-width=".487" fill="none"/>
<path fill-rule="evenodd" d="M217.886 281.512h3.27v1.9h-3.27zm-5.703 0h3.194v1.9h-3.194z"/>
<path fill-rule="evenodd" d="M215.375 276.88h2.51v4.714h-2.51zm0 6.46h2.51v5.02h-2.51z"/>
<path stroke="#000" stroke-width=".487" fill="none" d="M288.59 276.648h9.275v11.557h-9.276z"/>
<path fill-rule="evenodd" d="M294.525 281.436h3.27v1.9h-3.27zm-5.703 0h3.194v1.9h-3.194z"/>
<path fill-rule="evenodd" d="M292.014 276.804h2.51v4.714h-2.51zm0 6.46h2.51v5.02h-2.51z"/>
<path fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff" d="M280.154 277.327h1.596v11.482h-1.596z"/>
<path d="M249.13 292.547l2.508 7.527h5.7l-4.56-7.53-3.648.003zm-3.192 7.527l1.444 7.45 6.69.076-2.434-7.528-5.7.002zm11.327.076l4.638 7.374h9.504l-7.45-7.452-6.692.078zm-56.112 16.878c5.043-4.69 8.262-8.692 8.288-14.445h12.318c.025 3.22 1.19 5.144 2.966 5.017l12.47-.076-.076-7.374h-9.048l-.003-40.223c-.33-14.217 17.285-22.505 24.484-22.43l-42.805-.075v-1.292h90.022l.076 1.292-43.414.076c12.874.026 25.29 12.217 25.394 22.507v11.404h-1.673l-.075-11.254c0-11.253-14.173-21.77-25.547-21.442-9.835.282-25.09 9.657-24.938 21.366v3.5l23.34.15-.227 4.03 3.665 2.34 7.31 2.33-.107 6.042 5.238 1.543.044 6.038 6.282 2.695v6.25l3.984 2.454-.183 6.347 5.4 3.8H271.56l7.983 8.896H267.76l-5.86-8.896h-7.753l3.498 8.82-8.286-.077-1.98-8.743h-10.11l.074 9.426-36.192.002zm36.116-24.407v7.453h8.667l-1.752-7.45h-6.917z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M249.13 292.547l2.508 7.527h5.7l-4.56-7.53-3.648.003zm-3.192 7.527l1.444 7.45 6.69.076-2.434-7.528-5.7.002zm11.327.076l4.638 7.374h9.504l-7.45-7.452-6.692.078zm-56.112 16.878c5.043-4.69 8.262-8.692 8.288-14.445h12.318c.025 3.22 1.19 5.144 2.966 5.017l12.47-.076-.076-7.374h-9.048l-.003-40.223c-.33-14.217 17.285-22.505 24.484-22.43l-42.805-.075v-1.292h90.022l.076 1.292-43.414.076c12.874.026 25.29 12.217 25.394 22.507v11.404h-1.673l-.075-11.254c0-11.253-14.173-21.77-25.547-21.442-9.835.282-25.09 9.657-24.938 21.366v3.5l23.34.15-.227 4.03 3.665 2.34 7.31 2.33-.107 6.042 5.238 1.543.044 6.038 6.282 2.695v6.25l3.984 2.454-.183 6.347 5.4 3.8H271.56l7.983 8.896H267.76l-5.86-8.896h-7.753l3.498 8.82-8.286-.077-1.98-8.743h-10.11l.074 9.426-36.192.002zm36.116-24.407v7.453h8.667l-1.752-7.45h-6.917z" fill-rule="evenodd" fill="#fff"/>
<path stroke="#000" stroke-width=".483" fill="none" d="M237.724 279.468h5.4v12.392h-5.4z"/>
<path d="M298.05 171.73h2.707l-.017-4.594c-.035-1.997 1.793-4.01 2.668-4.077.97-.038 2.4 1.883 2.448 3.92l.04 4.764 2.87-.006v-11.83l-10.716.056v11.764z" transform="matrix(1.9463 0 0 1.9848 -350 -48.13)" stroke="#000" stroke-width=".25" fill="none"/>
<path stroke="#000" stroke-width=".481" fill="none" d="M271.784 298.172h6.54v5.094h-6.54zm-3.874-8.758h6.54v5.093h-6.54zm-6.305-8.74h6.54v5.094h-6.54zm-5.41-7.374h6.54v5.092h-6.54z"/>
<path d="M251.874 292.762l6.69.227 11.936 10.567v-6.234l-4.03-2.89v-4.942l-5.853-3.343v-5.323l-5.703-1.9V271.7l-2.89-2.356-.15 23.418z" stroke="#000" stroke-width=".487" fill="none"/>
<path fill-rule="evenodd" fill="#fff" d="M280.154 277.327h1.596v11.482h-1.596z"/>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M163.755 161.05c.58 9.07-2.235 14.048-7.038 13.29-1.324-5.03 1.687-8.406 7.038-13.29zm-10.56 20.086c-4.27-2.172-1.19-18.756.45-25.708 1.213 8.955 3.24 21.683-.45 25.708z"/>
<path d="M154.723 181.93c7.178 2.497 12.86-5.233 14.782-14.186-5.924 8.176-15.566 8.186-14.782 14.186zm-5.447 8.36c-5.613-1.483-2.232-19.078-1.212-26.116 1.234 7.27 5.103 23.708 1.212 26.116zm1.917-.54c.314-6.067 6.363-4.314 10.538-7.553-.68 3.033-3.247 8.407-10.536 7.554zm-6.87 8.128c-5.562-1.5-2.22-20.436-2.534-28.233 1.63 6.736 6.793 26.407 2.532 28.233zm2.607-.828c4.557 1.48 10.593-1.48 11.068-6.905-3.924 2.662-10.19.626-11.067 6.905z"/>
<path d="M140.168 206.236c-5.32.425-2.94-15.702-2.935-30.722 1.954 14.04 7.277 26.89 2.935 30.722z"/>
<path d="M142.017 205.51c3.593 1.8 10.03-1.08 11.866-7.148-6.49 2.822-10.83.064-11.866 7.147z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M163.755 161.05c.58 9.07-2.235 14.048-7.038 13.29-1.324-5.03 1.687-8.406 7.038-13.29zm-10.56 20.086c-4.27-2.172-1.19-18.756.45-25.708 1.213 8.955 3.24 21.683-.45 25.708z"/>
<path d="M154.723 181.93c7.178 2.497 12.86-5.233 14.782-14.186-5.924 8.176-15.566 8.186-14.782 14.186zm-5.447 8.36c-5.613-1.483-2.232-19.078-1.212-26.116 1.234 7.27 5.103 23.708 1.212 26.116zm1.917-.54c.314-6.067 6.363-4.314 10.538-7.553-.68 3.033-3.247 8.407-10.536 7.554zm-6.87 8.128c-5.562-1.5-2.22-20.436-2.534-28.233 1.63 6.736 6.793 26.407 2.532 28.233zm2.607-.828c4.557 1.48 10.593-1.48 11.068-6.905-3.924 2.662-10.19.626-11.067 6.905z"/>
<path d="M140.168 206.236c-5.32.425-2.94-15.702-2.935-30.722 1.954 14.04 7.277 26.89 2.935 30.722z"/>
<path d="M142.017 205.51c3.593 1.8 10.03-1.08 11.866-7.148-6.49 2.822-10.83.064-11.866 7.147z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M183.773 169.444c-.946 7.867-4.16 12.445-8.965 11.687-1.323-5.03 2.57-8.244 8.965-11.685zm-12.71 20.203c7.98 1.132 10.855-4.993 16.227-12.823-7.53 5.448-16.53 6.58-16.227 12.823z"/>
<path d="M168.806 188.732c-4.35-5.22-.146-11.775 3.178-17.363-.714 8.31 2.118 12.935-3.178 17.36zm-1.926 8.622c-.492-5.105 8.206-6.24 12.14-9.078-1.324 2.95-3.328 10.894-12.14 9.078z"/>
<path d="M165.05 197.47c-6.015-.68-3.518-10.893.793-16.568-1.815 7.832 3.177 13.277-.794 16.57z"/>
<path d="M160.514 205.976c-6.845-3.026-2.458-11.612.115-16.68-1.1 6.657 4.385 11.725-.117 16.68z"/>
<path d="M161.877 205.178c3.593 4.69 10.592-1.4 12.028-8.51-6.09 5.07-10.59 4.236-12.028 8.51z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M183.773 169.444c-.946 7.867-4.16 12.445-8.965 11.687-1.323-5.03 2.57-8.244 8.965-11.685zm-12.71 20.203c7.98 1.132 10.855-4.993 16.227-12.823-7.53 5.448-16.53 6.58-16.227 12.823z"/>
<path d="M168.806 188.732c-4.35-5.22-.146-11.775 3.178-17.363-.714 8.31 2.118 12.935-3.178 17.36zm-1.926 8.622c-.492-5.105 8.206-6.24 12.14-9.078-1.324 2.95-3.328 10.894-12.14 9.078z"/>
<path d="M165.05 197.47c-6.015-.68-3.518-10.893.793-16.568-1.815 7.832 3.177 13.277-.794 16.57z"/>
<path d="M160.514 205.976c-6.845-3.026-2.458-11.612.115-16.68-1.1 6.657 4.385 11.725-.117 16.68z"/>
<path d="M161.877 205.178c3.593 4.69 10.592-1.4 12.028-8.51-6.09 5.07-10.59 4.236-12.028 8.51z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M326.65 170.222c.91 4.088 1.137 12.145 8.4 10.555 1.058-7.49-5.032-7.83-8.4-10.555z"/>
<path d="M339.01 189.53c-.263-7.717-8.585-6.016-15.77-12.37 1.967 6.694 8.925 14.865 15.77 12.37z"/>
<path d="M340.722 188.615c4.88-3.367 1.135-10.705-3.404-17.135 1.703 7-2.04 13.427 3.404 17.135zm2.14 8.74c-7.866.604-9.265-3.33-12.367-8.397 5.37 3.48 12.557 1.286 12.368 8.396zm1.948.232c-3.747-3.065.907-9.645-.682-16.226 2.95 4.16 7.49 14.11.682 16.228z"/>
<path d="M348.1 205.742c-7.868 1.853-10.402-2.306-12.37-9.303 6.392 5.86 9.948 3.1 12.37 9.3z"/>
<path d="M349.228 205.645c5.484-.076 3.026-10.93.226-15.886.757 5.976-4.047 12.86-.226 15.884z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M326.65 170.222c.91 4.088 1.137 12.145 8.4 10.555 1.058-7.49-5.032-7.83-8.4-10.555z"/>
<path d="M339.01 189.53c-.263-7.717-8.585-6.016-15.77-12.37 1.967 6.694 8.925 14.865 15.77 12.37z"/>
<path d="M340.722 188.615c4.88-3.367 1.135-10.705-3.404-17.135 1.703 7-2.04 13.427 3.404 17.135zm2.14 8.74c-7.866.604-9.265-3.33-12.367-8.397 5.37 3.48 12.557 1.286 12.368 8.396zm1.948.232c-3.747-3.065.907-9.645-.682-16.226 2.95 4.16 7.49 14.11.682 16.228z"/>
<path d="M348.1 205.742c-7.868 1.853-10.402-2.306-12.37-9.303 6.392 5.86 9.948 3.1 12.37 9.3z"/>
<path d="M349.228 205.645c5.484-.076 3.026-10.93.226-15.886.757 5.976-4.047 12.86-.226 15.884z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M345.873 161.1c.984 4.543-.917 13.513 6.344 13.443 3.037-5.132-3.435-9.96-6.344-13.443z"/>
<path d="M356.777 181.365c4.576-3.138.452-13.44-.97-25.04-1.11 10.343-3.563 21.638.97 25.04z"/>
<path d="M354.32 182.158c.573-5.664-8.356-6.927-14.478-14.422 1.587 6.01 6.112 14.79 14.477 14.422zm6.102 8.832c-4.81-4.36.905-16.87 1.143-26.568.745 8.95 4.677 24.98-1.143 26.567zm-2.734-1.258c-7.032.452-8.887-4.698-9.708-7.637 3.776 2.72 9.745 1.438 9.708 7.637zm7.064 7.754c5.407-.228 3.406-20.738 2.657-27.214-.537 6.89-6.176 24.72-2.66 27.214zm-2.38-.363c-4.672.713-9.41-2.002-10.694-6.642 4.035 1.757 10.707.366 10.695 6.644z"/>
<path d="M369.094 206.01c5.788 2.357 3.71-24.387 2.962-30.56-.535 7.88-7.39 27.23-2.962 30.56z"/>
<path d="M367.737 206.006c-5.815.864-10.097-2.686-11.76-7.554 5.935 2.213 10.555 1.427 11.76 7.554z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M363.553 237.72c.716-6.985-4.635-19.687-.837-26.458.517-.93-1.137-3.4-2.206-1.9-1.67 2.39-3.386 9.207-4.104 6.69-.76-2.736-.878-7.577-3.346-8.517-1.575-.55-3.8-.91-3.194 1.522.603 2.34 1.954 5.57.458 5.78-.87.125-3.37-3.186-5.475-4.715-1.7-1.365-4.23.77-1.75 2.812 8.065 6.577 15.88 9.537 20.452 24.786z" stroke="#000" stroke-width=".973"/>
<path d="M363.553 237.72c.716-6.985-4.635-19.687-.837-26.458.517-.93-1.137-3.4-2.206-1.9-1.67 2.39-3.386 9.207-4.104 6.69-.76-2.736-.878-7.577-3.346-8.517-1.575-.55-3.8-.91-3.194 1.522.603 2.34 1.954 5.57.458 5.78-.87.125-3.37-3.186-5.475-4.715-1.7-1.365-4.23.77-1.75 2.812 8.065 6.577 15.88 9.537 20.452 24.786z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M345.873 161.1c.984 4.543-.917 13.513 6.344 13.443 3.037-5.132-3.435-9.96-6.344-13.443z"/>
<path d="M356.777 181.365c4.576-3.138.452-13.44-.97-25.04-1.11 10.343-3.563 21.638.97 25.04z"/>
<path d="M354.32 182.158c.573-5.664-8.356-6.927-14.478-14.422 1.587 6.01 6.112 14.79 14.477 14.422zm6.102 8.832c-4.81-4.36.905-16.87 1.143-26.568.745 8.95 4.677 24.98-1.143 26.567zm-2.734-1.258c-7.032.452-8.887-4.698-9.708-7.637 3.776 2.72 9.745 1.438 9.708 7.637zm7.064 7.754c5.407-.228 3.406-20.738 2.657-27.214-.537 6.89-6.176 24.72-2.66 27.214zm-2.38-.363c-4.672.713-9.41-2.002-10.694-6.642 4.035 1.757 10.707.366 10.695 6.644z"/>
<path d="M369.094 206.01c5.788 2.357 3.71-24.387 2.962-30.56-.535 7.88-7.39 27.23-2.962 30.56z"/>
<path d="M367.737 206.006c-5.815.864-10.097-2.686-11.76-7.554 5.935 2.213 10.555 1.427 11.76 7.554z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M244.38 141.09c-1.017-1.062-.723-1.468.78-1.485 1.194-.075 3.558.73 4.455.078.822-.597.495-3.13.86-4.297.16-.65.615-1.673 1.64-.078 3.032 4.86 6.82 10.692 8.438 16.407.885 3.203.443 8.36-2.97 11.094l-2.42-7.034c-1.152-3.343-7.348-11.365-10.783-14.687z" transform="matrix(-1.937 0 0 1.9463 857.173 -41.533)" stroke="#000" stroke-width=".501"/>
<path d="M383.805 233.07c1.97-2.067 1.4-2.857-1.513-2.89-2.31-.146-6.89 1.423-8.627.152-1.592-1.162-.96-6.09-1.666-8.363-.31-1.27-1.193-3.258-3.18-.154-5.872 9.457-13.207 20.81-16.343 31.933-1.715 6.233-.858 16.27 5.75 21.59l4.692-13.685c2.23-6.507 14.23-22.12 20.884-28.586z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M390.38 216.058c-2.647 8.51-4.238 15.487-.417 16.308 4.083-.71 2.308-8.932.417-16.308zm-.272 23.89c4.354 2.31 9.046-8.787 8.07-17.528-2.192 7.492-9.577 12.118-8.07 17.527zm-1.614-.228c.675-6.052-1.81-5.892-5.067-11.675.345 6.532 1.972 12.01 5.067 11.674z"/>
<path d="M389.933 248.592c5.08 1.443 10.905-10.656 10.687-19.597-2.116 9.897-13.146 13.852-10.687 19.597z"/>
<path d="M388.273 248.366c2.037-4.69-2.12-4.116-4.878-12.52-.913 8.697.413 12.666 4.878 12.52zm1.473 9.124c6.594 1.134 9.994-13.425 13.27-20.396-6.485 9.14-14.255 14.23-13.27 20.395z"/>
<path d="M388.213 256.99c1.927-5.368-3.52-5.068-6.39-13.09.456 10.175 1.777 13.845 6.39 13.09zm1.9 9.247c4.17.3 11.667-11.342 11.828-18.533-3.56 7.92-14.74 13.167-11.825 18.533z"/>
<path d="M387.01 264.895c1.735-5.6-3.107-5.636-5.256-11.91-.152 9.458 1.324 12.666 5.257 11.91zm.16 10.09c7.352 1.287 9.234-8.406 13.572-18.266-4.28 7.846-13.95 12.25-13.573 18.264z"/>
<path d="M386.648 273.637c2.384-5.064-3.14-5.068-6.086-12.635-.152 10.706 1.7 13.846 6.086 12.635z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M390.38 216.058c-2.647 8.51-4.238 15.487-.417 16.308 4.083-.71 2.308-8.932.417-16.308zm-.272 23.89c4.354 2.31 9.046-8.787 8.07-17.528-2.192 7.492-9.577 12.118-8.07 17.527zm-1.614-.228c.675-6.052-1.81-5.892-5.067-11.675.345 6.532 1.972 12.01 5.067 11.674z"/>
<path d="M389.933 248.592c5.08 1.443 10.905-10.656 10.687-19.597-2.116 9.897-13.146 13.852-10.687 19.597z"/>
<path d="M388.273 248.366c2.037-4.69-2.12-4.116-4.878-12.52-.913 8.697.413 12.666 4.878 12.52zm1.473 9.124c6.594 1.134 9.994-13.425 13.27-20.396-6.485 9.14-14.255 14.23-13.27 20.395z"/>
<path d="M388.213 256.99c1.927-5.368-3.52-5.068-6.39-13.09.456 10.175 1.777 13.845 6.39 13.09zm1.9 9.247c4.17.3 11.667-11.342 11.828-18.533-3.56 7.92-14.74 13.167-11.825 18.533z"/>
<path d="M387.01 264.895c1.735-5.6-3.107-5.636-5.256-11.91-.152 9.458 1.324 12.666 5.257 11.91zm.16 10.09c7.352 1.287 9.234-8.406 13.572-18.266-4.28 7.846-13.95 12.25-13.573 18.264z"/>
<path d="M386.648 273.637c2.384-5.064-3.14-5.068-6.086-12.635-.152 10.706 1.7 13.846 6.086 12.635z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M256.81 166.87c3.334.016 3.985-4.687 3.985-5.937-1.64.312-4.61 3.28-3.985 5.937z" transform="matrix(-1.937 0 0 1.9463 857.387 -41.81)" stroke="#000" stroke-width=".501"/>
<path d="M359.927 282.968c-6.458.03-7.72-9.122-7.72-11.555 3.18.607 8.933 6.386 7.72 11.555z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M372.836 241.38c-2.647 8.51-3.705 12.596-.113 15.32 4.69-2.61 2.005-7.944.113-15.32zm-1.48 22.245c1.97-6.278-2.874-7.79-5.445-14.865-.262 9.344 1.06 16.19 5.448 14.865z"/>
<path d="M373.288 264.98c3.443 1.324 7.68-6.655 5.335-14.637-2.42 7.187-8.36 8.925-5.335 14.638zm-3.635 7.155c3.33-5.144-1.968-5.41-4.65-12.594-.15 9.46.717 13.35 4.65 12.596z"/>
<path d="M369.66 280.986c2.536-5.823-2.987-5.068-6.238-12.253-.152 10.706 1.625 13.01 6.238 12.253zm2.497-8.513c2.877.074 8.472-4.956 6.81-11.234-2.42 5.257-9.268 4.725-6.81 11.232z"/>
<path d="M371.36 280.068c4.692.983 8.246-6.2 7.718-11.12-3.67 4.58-8.704 4.954-7.72 11.12z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M372.836 241.38c-2.647 8.51-3.705 12.596-.113 15.32 4.69-2.61 2.005-7.944.113-15.32zm-1.48 22.245c1.97-6.278-2.874-7.79-5.445-14.865-.262 9.344 1.06 16.19 5.448 14.865z"/>
<path d="M373.288 264.98c3.443 1.324 7.68-6.655 5.335-14.637-2.42 7.187-8.36 8.925-5.335 14.638zm-3.635 7.155c3.33-5.144-1.968-5.41-4.65-12.594-.15 9.46.717 13.35 4.65 12.596z"/>
<path d="M369.66 280.986c2.536-5.823-2.987-5.068-6.238-12.253-.152 10.706 1.625 13.01 6.238 12.253zm2.497-8.513c2.877.074 8.472-4.956 6.81-11.234-2.42 5.257-9.268 4.725-6.81 11.232z"/>
<path d="M371.36 280.068c4.692.983 8.246-6.2 7.718-11.12-3.67 4.58-8.704 4.954-7.72 11.12z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M235.63 159.06c-.297-.385-1.15.01-.937.938.198 1.256 2.05 7.704 5.233 9.922 2.27 1.636 14.2 4.27 19.61 5.39 2.977.6 5.47 2.084 7.423 4.454-.81-3.1-1.46-5.395-2.5-8.203-1.016-2.466-3.703-5.166-6.486-5.31-5.17-.187-11.86-.627-16.72-2.736-2.51-1.048-4.01-2.464-5.625-4.453z" transform="matrix(-1.937 0 0 1.9463 857.173 -41.533)" stroke="#000" stroke-width=".501"/>
<path d="M400.754 268.045c.575-.75 2.228.02 1.815 1.826-.386 2.447-3.973 14.996-10.138 19.313-4.397 3.184-27.508 8.313-37.985 10.49-5.767 1.167-10.596 4.057-14.38 8.67 1.566-6.032 2.823-10.5 4.844-15.966 1.965-4.803 7.17-10.058 12.56-10.34 10.013-.363 22.97-1.22 32.387-5.324 4.86-2.04 7.77-4.795 10.896-8.667z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M386.598 297.655c1.057-4.228-.29-5.588.865-12.208-6.345 8.51-3.96 12.542-.865 12.208z"/>
<path d="M387.297 298.704c4.202 1.17 15.13-8.405 15.448-15.55-2.954 5.135-17.713 10.674-15.448 15.55zm-6.87 6.31c2.875-1.57 2.064-8.22-.542-10.464-.534 6.49-4.453 10.308.543 10.465z"/>
<path d="M383.394 306.83c5.082 1.593 10.83-7.615 15.02-11.614-4.777 4.118-19.226 6.096-15.02 11.613zm-6.99 4.573c3.556-2.33.236-6.93-.013-16.016-3.572 6.567-4.3 15.553.014 16.016z"/>
<path d="M377.083 313.74c1.814 2.43 15.24-5.943 18.595-12.148-11.468 8.53-21.585 7.39-18.595 12.147zm-1.34 7.578c3.294-2.402-2.837-8.718-4.11-17.196.076 10.327-1.34 18.18 4.11 17.196z"/>
<path d="M379.324 318.468c1.652 2.657 11.896-4.375 16.312-12.03-6.79 5.946-18.21 7.538-16.312 12.03zm-10.468 11.57c3.71-.66 3.2-10.046.37-17.69-3.194 9.23-4.608 18.595-.37 17.688z"/>
<path d="M378.16 324.92c1.28 1.518 16.38-9.062 16.162-13.363-4.778 6.855-20.747 8.225-16.162 13.363zm-17.524 13.883c5.12-2.1 2.713-10.39 3.72-19.327-4.03 8.732-8.79 17.496-3.72 19.327z"/>
<path d="M370.218 331.63c.815 2.808 13.112-2.4 19.048-10.968-7.17 5.566-21.096 6.323-19.048 10.967z"/>
<path d="M362.277 340.125c2.65 4.406 17.9-3.663 20.115-11.234-4.93 6.553-21.964 5.564-20.115 11.236z"/>
<path d="M369.272 343.56c2.8.302 9.31-5.03 11.142-7.812-5.234 2.596-12.308 6.17-11.142 7.812z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M346.304 310.784c3.332.483 7.69-5.634 4.78-11.833-1.446 6.19-11.144 10.69-4.78 11.835zm7.136-3.65c2.572 1.44 9.08-5.486 8.253-10.02-3.637 5.794-10.94 7.465-8.254 10.02z"/>
<path d="M345.837 317.308c2.5 2.43 14.784-10.048 18.443-15.72-10.63 9.06-21.508 11.343-18.443 15.72zm-2.937 7.476c1.956 2.96 10.146-5.97 15.324-13.398-6.563 6.477-17.68 9.44-15.324 13.398z"/>
<path d="M343.735 317.668c2.003-5.29-1.315-6.132-2.816-12.71-2.966 3.637-2.633 13.693 2.814 12.71zm-3.27 7.3c3.98-1.11-2.456-7.88-3.805-12.71-.607 8.883-.502 13.312 3.805 12.71zm-3.885 6.382c3.673-1.338-2.078-4.69-2.666-12.103-1.825 2.725-2.783 13.085 2.665 12.102z"/>
<path d="M331.086 332.914c2.342-1.267 1.378-7.31-2.217-8.11-.838 4.743-.73 8.18 2.215 8.11z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M346.304 310.784c3.332.483 7.69-5.634 4.78-11.833-1.446 6.19-11.144 10.69-4.78 11.835zm7.136-3.65c2.572 1.44 9.08-5.486 8.253-10.02-3.637 5.794-10.94 7.465-8.254 10.02z"/>
<path d="M345.837 317.308c2.5 2.43 14.784-10.048 18.443-15.72-10.63 9.06-21.508 11.343-18.443 15.72zm-2.937 7.476c1.956 2.96 10.146-5.97 15.324-13.398-6.563 6.477-17.68 9.44-15.324 13.398z"/>
<path d="M343.735 317.668c2.003-5.29-1.315-6.132-2.816-12.71-2.966 3.637-2.633 13.693 2.814 12.71zm-3.27 7.3c3.98-1.11-2.456-7.88-3.805-12.71-.607 8.883-.502 13.312 3.805 12.71zm-3.885 6.382c3.673-1.338-2.078-4.69-2.666-12.103-1.825 2.725-2.783 13.085 2.665 12.102z"/>
<path d="M331.086 332.914c2.342-1.267 1.378-7.31-2.217-8.11-.838 4.743-.73 8.18 2.215 8.11z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M386.598 297.655c1.057-4.228-.29-5.588.865-12.208-6.345 8.51-3.96 12.542-.865 12.208z"/>
<path d="M387.297 298.704c4.202 1.17 15.13-8.405 15.448-15.55-2.954 5.135-17.713 10.674-15.448 15.55zm-6.87 6.31c2.875-1.57 2.064-8.22-.542-10.464-.534 6.49-4.453 10.308.543 10.465z"/>
<path d="M383.394 306.83c5.082 1.593 10.83-7.615 15.02-11.614-4.777 4.118-19.226 6.096-15.02 11.613zm-6.99 4.573c3.556-2.33.236-6.93-.013-16.016-3.572 6.567-4.3 15.553.014 16.016z"/>
<path d="M377.083 313.74c1.814 2.43 15.24-5.943 18.595-12.148-11.468 8.53-21.585 7.39-18.595 12.147zm-1.34 7.578c3.294-2.402-2.837-8.718-4.11-17.196.076 10.327-1.34 18.18 4.11 17.196z"/>
<path d="M379.324 318.468c1.652 2.657 11.896-4.375 16.312-12.03-6.79 5.946-18.21 7.538-16.312 12.03zm-10.468 11.57c3.71-.66 3.2-10.046.37-17.69-3.194 9.23-4.608 18.595-.37 17.688z"/>
<path d="M378.16 324.92c1.28 1.518 16.38-9.062 16.162-13.363-4.778 6.855-20.747 8.225-16.162 13.363zm-17.524 13.883c5.12-2.1 2.713-10.39 3.72-19.327-4.03 8.732-8.79 17.496-3.72 19.327z"/>
<path d="M370.218 331.63c.815 2.808 13.112-2.4 19.048-10.968-7.17 5.566-21.096 6.323-19.048 10.967z"/>
<path d="M362.277 340.125c2.65 4.406 17.9-3.663 20.115-11.234-4.93 6.553-21.964 5.564-20.115 11.236z"/>
<path d="M369.272 343.56c2.8.302 9.31-5.03 11.142-7.812-5.234 2.596-12.308 6.17-11.142 7.812z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M235.83 159.52c-.377-.307-.876-.76-.704.176 1.41 7.41 1.855 9.483 8.35 12.044 6.6 2.508 8.967 1.63 14.588 1.533 3.034-.11 6.567 1.404 8.67 3.618.98 1.03 1.688 1.443 1.295.13-.396-1.312-.78-3.015-1.398-4.38-1.348-3-4.834-5.865-8.32-7.01-4.88-1.717-10.14-.854-15.165-2.164-2.62-.724-5.138-2.183-7.318-3.945z" transform="matrix(-1.7055 -.9227 -.9183 1.7137 926.17 287.993)" stroke="#000" stroke-width=".501"/>
<path d="M377.47 343.746c.926-.178 2.193-.494 1.04.95-9.208 11.4-11.872 14.54-25.3 12.937-13.562-1.795-16.792-5.48-26.29-10.835-5.07-2.99-12.488-3.654-18.11-1.8-2.617.86-4.2.91-2.324-.976 1.877-1.885 4.094-4.45 6.402-6.216 5.056-3.9 13.632-5.592 20.63-4.336 9.898 1.56 18.076 7.892 27.85 10.284 5.134 1.178 10.767 1 16.103-.008z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M287.66 208.42c.884.11 1.444 1.822 1.88.663.737-1.877.22-3.37-.61-3.205-.978.26-2.634 2.456-1.27 2.542z" transform="matrix(-1.9235 0 0 1.9463 853.242 -41.856)" stroke="#000" stroke-width=".503"/>
<path d="M299.92 363.792c-1.7.214-2.778 3.546-3.615 1.29-1.42-3.653-.425-6.558 1.17-6.237 1.883.508 5.068 4.78 2.444 4.947z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M318.535 348.932c4.813 1.252 6.063-4.296 6.535-8.327-4.34.935-8.887 3.45-6.535 8.327zm-1.935 4.928c.848 3.838 10.264-.118 12.094-5.493-6.694 3.906-13.298-.35-12.094 5.493z"/>
<path d="M313.233 353.672c4.3.712 1.907-6.028 1.66-12.676-2.41 5.42-5.848 12.1-1.66 12.676zm-5.433 6.368c4.684.586 1.713-8.446.44-14.516-1.538 5.626-4.924 14.022-.44 14.516z"/>
<path d="M310.587 360.24c.57 5.11 10.252-.61 15.886-3.75-7.442 1.152-16.722-1.263-15.886 3.75zm-5.323 7.147c.57 5.11 10.25-.61 15.886-3.752-7.443 1.154-16.722-1.26-15.886 3.752z"/>
<path d="M302.79 367.182c4.454.13 1.18-9.587-.093-15.656-1.538 5.625-4.47 15.466.092 15.656zm-3.843 6.214c.57 5.11 9.417.073 14.9-3.448-7.52 1.61-15.736-1.566-14.9 3.448z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M318.535 348.932c4.813 1.252 6.063-4.296 6.535-8.327-4.34.935-8.887 3.45-6.535 8.327zm-1.935 4.928c.848 3.838 10.264-.118 12.094-5.493-6.694 3.906-13.298-.35-12.094 5.493z"/>
<path d="M313.233 353.672c4.3.712 1.907-6.028 1.66-12.676-2.41 5.42-5.848 12.1-1.66 12.676zm-5.433 6.368c4.684.586 1.713-8.446.44-14.516-1.538 5.626-4.924 14.022-.44 14.516z"/>
<path d="M310.587 360.24c.57 5.11 10.252-.61 15.886-3.75-7.442 1.152-16.722-1.263-15.886 3.75zm-5.323 7.147c.57 5.11 10.25-.61 15.886-3.752-7.443 1.154-16.722-1.26-15.886 3.752z"/>
<path d="M302.79 367.182c4.454.13 1.18-9.587-.093-15.656-1.538 5.625-4.47 15.466.092 15.656zm-3.843 6.214c.57 5.11 9.417.073 14.9-3.448-7.52 1.61-15.736-1.566-14.9 3.448z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M348.73 364.83c2.648 4.406 12.425-3.206 17.758-7.128-7.667 2.368-19.607 1.458-17.76 7.13z"/>
<path d="M338.75 369.407c.953 5.052 17.448.883 19.8-2.862-7.585 3.213-20.705-1.502-19.8 2.862z"/>
<path d="M330.983 373.26c.497 2.772 13.116 1.72 19.496-.428-6.9.858-20.78-4.01-19.498.43z"/>
<path d="M324.395 376.56c.04 2.542 14.712 4 19.648-.125-9.864 1.464-20.628-5.99-19.648.124z"/>
<path d="M312.79 378.94c-.568 3.53 15.395 2.783 20.407 1.014-8.57-.662-19.638-6.215-20.407-1.015z"/>
<path d="M312.56 375.724c3.597 3.3 12.85-11.443 15.86-17.938-7.118 7.423-19.966 15.052-15.86 17.938z"/>
<path d="M323.044 373.22c4.283 2.846 8.214-7.563 10.388-15.2-4.078 6.586-14.49 10.87-10.388 15.2z"/>
<path d="M331.335 370.387c4.283 2.845 6.695-6.576 7.73-12.466-2.938 5.07-11.832 8.138-7.73 12.468z"/>
<path d="M339.35 365.37c4.283 2.845 9.66-5.055 8.413-12.844-1.644 8.032-12.515 8.513-8.413 12.844zm-16.257 22.174c2.11 5.372 24.295-4.696 28.015-11.413-7.127 6.026-30.08 5.207-28.015 11.415z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M348.73 364.83c2.648 4.406 12.425-3.206 17.758-7.128-7.667 2.368-19.607 1.458-17.76 7.13z"/>
<path d="M338.75 369.407c.953 5.052 17.448.883 19.8-2.862-7.585 3.213-20.705-1.502-19.8 2.862z"/>
<path d="M330.983 373.26c.497 2.772 13.116 1.72 19.496-.428-6.9.858-20.78-4.01-19.498.43z"/>
<path d="M324.395 376.56c.04 2.542 14.712 4 19.648-.125-9.864 1.464-20.628-5.99-19.648.124z"/>
<path d="M312.79 378.94c-.568 3.53 15.395 2.783 20.407 1.014-8.57-.662-19.638-6.215-20.407-1.015z"/>
<path d="M312.56 375.724c3.597 3.3 12.85-11.443 15.86-17.938-7.118 7.423-19.966 15.052-15.86 17.938z"/>
<path d="M323.044 373.22c4.283 2.846 8.214-7.563 10.388-15.2-4.078 6.586-14.49 10.87-10.388 15.2z"/>
<path d="M331.335 370.387c4.283 2.845 6.695-6.576 7.73-12.466-2.938 5.07-11.832 8.138-7.73 12.468z"/>
<path d="M339.35 365.37c4.283 2.845 9.66-5.055 8.413-12.844-1.644 8.032-12.515 8.513-8.413 12.844zm-16.257 22.174c2.11 5.372 24.295-4.696 28.015-11.413-7.127 6.026-30.08 5.207-28.015 11.415z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M366.62 143.7c.368-3.59-2.38-10.115-.43-13.594.266-.478-.584-1.747-1.133-.977-.858 1.227-1.74 4.73-2.11 3.436-.39-1.406-.45-3.893-1.718-4.376-.81-.282-1.955-.467-1.643.783.31 1.202 1.004 2.862.235 2.97-.446.064-1.73-1.637-2.813-2.423-.873-.7-2.174.396-.9 1.445 4.145 3.38 8.16 4.9 10.51 12.735z" transform="matrix(-1.911 0 0 1.9463 846.858 -41.507)" stroke="#000" stroke-width=".5"/>
<path d="M146.235 238.176c-.703-6.985 4.55-19.686.822-26.458-.51-.93 1.116-3.4 2.165-1.9 1.64 2.39 3.325 9.207 4.03 6.69.747-2.736.862-7.577 3.285-8.517 1.546-.55 3.732-.91 3.136 1.524-.592 2.34-1.92 5.57-.45 5.78.853.125 3.31-3.185 5.377-4.715 1.666-1.366 4.152.77 1.716 2.81-7.92 6.578-15.592 9.538-20.08 24.787z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M132.01 343.318c-.93-.178-2.202-.494-1.044.95 9.252 11.4 11.93 14.54 25.42 12.936 13.63-1.794 16.874-5.48 26.416-10.834 5.097-2.99 12.55-3.654 18.198-1.802 2.63.86 4.22.913 2.335-.974-1.885-1.885-4.113-4.45-6.433-6.216-5.08-3.9-13.696-5.592-20.728-4.337-9.945 1.56-18.163 7.895-27.983 10.287-5.16 1.177-10.817 1-16.18-.008z" stroke="#000" stroke-width=".973"/>
<path d="M132.01 343.318c-.93-.178-2.202-.494-1.044.95 9.252 11.4 11.93 14.54 25.42 12.936 13.63-1.794 16.874-5.48 26.416-10.834 5.097-2.99 12.55-3.654 18.198-1.802 2.63.86 4.22.913 2.335-.974-1.885-1.885-4.113-4.45-6.433-6.216-5.08-3.9-13.696-5.592-20.728-4.337-9.945 1.56-18.163 7.895-27.983 10.287-5.16 1.177-10.817 1-16.18-.008z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M209.873 363.685c1.72.214 2.81 3.546 3.657 1.29 1.436-3.653.43-6.56-1.184-6.238-1.905.508-5.128 4.78-2.473 4.948z" stroke="#000" stroke-width=".973"/>
<path d="M209.873 363.685c1.72.214 2.81 3.546 3.657 1.29 1.436-3.653.43-6.56-1.184-6.238-1.905.508-5.128 4.78-2.473 4.948z"/>
</g>
<path d="M206.038 366.79c4.615 1.05 4.55-10.067-.162-14.78 2.075 7.14-3.468 13.668.162 14.78zm-1.791-.098c.304 5.283-12.966-.69-16.377-4.8 7.84 3.33 15.99.574 16.377 4.8zm-5.817-7.555c.475 5.118-11.508.618-15.05-3.38 7.87 2.543 14.527-.832 15.05 3.38zm2.21.733c4.614 1.052 3.866-10.445-.62-14.396 2.153 7.672-3.01 13.287.62 14.397zm-4.862-7.003c4.615 1.05 1.967-8.85-1.454-12.802.556 7.217-1.72 12.223 1.454 12.802zm-2.434-.03c.475 5.27-8.847 1.224-12.465-3.76 7.79 2.542 11.94-.45 12.463 3.76zm-2.548-4.004c3.023-2.174-.184-7.923-5.94-7.567.564 3.472 2.552 9.58 5.94 7.567zm22.722 23.842c.305 5.283-12.968 2.656-17.137-2.974 8.374 1.584 16.75-1.25 17.14 2.976z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<g fill-rule="evenodd" fill="#fff">
<g stroke="#000" stroke-width=".973">
<path d="M125.637 232.64c-1.98-2.067-1.407-2.857 1.52-2.89 2.322-.146 6.923 1.423 8.67.152 1.6-1.162.962-6.09 1.672-8.363.31-1.27 1.195-3.26 3.19-.154 5.902 9.457 13.272 20.81 16.423 31.933 1.723 6.233.102 15.964-5.626 22.504.202-5.576-1.877-9.327-4.41-13.99-3.13-6.13-14.756-22.73-21.44-29.195z"/>
<path d="M149.966 282.368c6.49.03 7.604-8.667 7.604-11.1-3.194.608-8.82 5.93-7.604 11.1z"/>
</g>
<path d="M125.637 232.64c-1.98-2.067-1.407-2.857 1.52-2.89 2.322-.146 6.923 1.423 8.67.152 1.6-1.162.962-6.09 1.672-8.363.31-1.27 1.195-3.26 3.19-.154 5.902 9.457 13.272 20.81 16.423 31.933 1.723 6.233.102 15.964-5.626 22.504.202-5.576-1.877-9.327-4.41-13.99-3.13-6.13-14.756-22.73-21.44-29.195z"/>
<path d="M149.966 282.368c6.49.03 7.604-8.667 7.604-11.1-3.194.608-8.82 5.93-7.604 11.1z"/>
</g>
<path d="M206.038 366.79c4.615 1.05 4.55-10.067-.162-14.78 2.075 7.14-3.468 13.668.162 14.78zm-1.79-.098c.303 5.283-12.967-.69-16.378-4.8 7.84 3.33 15.99.574 16.377 4.8zm-5.818-7.555c.475 5.118-11.508.618-15.05-3.38 7.87 2.543 14.527-.832 15.05 3.38zm2.21.733c4.614 1.052 3.866-10.445-.62-14.396 2.153 7.672-3.01 13.287.62 14.397zm-4.862-7.003c4.615 1.05 1.967-8.85-1.454-12.802.556 7.217-1.72 12.223 1.454 12.802zm-2.434-.03c.475 5.27-8.847 1.224-12.465-3.76 7.79 2.542 11.94-.45 12.463 3.76zm-2.548-4.004c3.023-2.174-.184-7.923-5.94-7.567.564 3.472 2.552 9.58 5.94 7.567zm22.722 23.842c.305 5.283-12.968 2.656-17.137-2.974 8.374 1.584 16.75-1.25 17.14 2.976z" fill-rule="evenodd" fill="#fff"/>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M160.805 363.224c.476 5.27-14.015-.525-17.633-5.51 7.793 2.542 17.11 1.3 17.633 5.51zm8.878 2.254c3.023-2.174-3.15-7.772-8.067-9.088.563 3.472 4.68 11.1 8.067 9.088zm.933 3.65c.323 4.737-15.54 2.14-19.688-2.24 13.648 2.467 19.24-1.82 19.688 2.24z"/>
<path d="M178.036 372.292c1.76 4.4-13.464 3.327-18.81.768 8.638-.075 17.6-3.834 18.81-.768z"/>
<path d="M185.153 375.5c1.685 3.943-12.4 3.858-19.264 1.677 9.09-.074 17.595-5.58 19.262-1.678zm10.247 2.12c2.494 4.667-12.363 5.12-17.183 2.823 8.59-1.18 15.057-6.497 17.182-2.823z"/>
<path d="M177.993 369.627c-4.727 2.98-4.473-5.807-8.233-11.893 5.907 5.38 11.436 9.05 8.233 11.893zm8.392 3.153c-3.964 3.512-7.134-8.547-10.743-15.313 5.834 6.442 14.402 12.396 10.743 15.313zm11.065 3.37c-3.357 3.892-13.065-11.433-16.596-19.42 5.376 6.217 19.267 16.122 16.597 19.42z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M160.805 363.224c.476 5.27-14.015-.525-17.633-5.51 7.793 2.542 17.11 1.3 17.633 5.51zm8.878 2.254c3.023-2.174-3.15-7.772-8.067-9.088.563 3.472 4.68 11.1 8.067 9.088zm.933 3.65c.323 4.737-15.54 2.14-19.688-2.24 13.648 2.467 19.24-1.82 19.688 2.24z"/>
<path d="M178.036 372.292c1.76 4.4-13.464 3.327-18.81.768 8.638-.075 17.6-3.834 18.81-.768z"/>
<path d="M185.153 375.5c1.685 3.943-12.4 3.858-19.264 1.677 9.09-.074 17.595-5.58 19.262-1.678zm10.247 2.12c2.494 4.667-12.363 5.12-17.183 2.823 8.59-1.18 15.057-6.497 17.182-2.823zm-17.407-7.993c-4.727 2.98-4.473-5.807-8.233-11.893 5.907 5.38 11.436 9.05 8.233 11.893z"/>
<path d="M186.385 372.78c-3.964 3.512-7.134-8.547-10.743-15.313 5.834 6.442 14.402 12.396 10.743 15.313zm11.065 3.37c-3.357 3.892-13.065-11.433-16.596-19.42 5.376 6.217 19.267 16.122 16.597 19.42z"/>
</g>
<path d="M188.016 387.838c-1.675 5.917-26.38-5.577-29.138-11.532 14.136 7.49 29.476 5.924 29.138 11.532z" fill-rule="evenodd" fill="#fff"/>
<g fill-rule="evenodd" fill="#fff">
<path d="M108.607 267.615c-.578-.75-2.24.02-1.824 1.826.385 2.447 3.99 14.996 10.185 19.313 4.418 3.184 27.64 8.313 38.167 10.49 5.794 1.167 10.646 4.057 14.447 8.67-1.572-6.032-2.835-10.5-4.865-15.966-1.974-4.803-7.204-10.058-12.62-10.34-10.06-.363-23.08-1.22-32.542-5.324-4.884-2.04-7.807-4.795-10.948-8.667z" stroke="#000" stroke-width=".973"/>
<path d="M108.607 267.615c-.578-.75-2.24.02-1.824 1.826.385 2.447 3.99 14.996 10.185 19.313 4.418 3.184 27.64 8.313 38.167 10.49 5.794 1.167 10.646 4.057 14.447 8.67-1.572-6.032-2.835-10.5-4.865-15.966-1.974-4.803-7.204-10.058-12.62-10.34-10.06-.363-23.08-1.22-32.542-5.324-4.884-2.04-7.807-4.795-10.948-8.667z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M166.28 317.26c3.172 2.336 6.673-6.034 2.644-13.99-.127 7.658-6.214 10.23-2.644 13.99z"/>
<path d="M169.328 324.955c4.387 1.347 5.76-6.414 2.872-12.622.482 6.67-6.897 10.687-2.872 12.622z"/>
<path d="M172.66 331.114c4.238 2.11 5.842-5.732 2.797-11.554.332 7.428-6.06 9.618-2.796 11.554z"/>
<path d="M170.907 331.586c-1.678 5.018-11.415-4.327-13.056-9.41 6.045 6.005 14.268 5.342 13.058 9.41z"/>
<path d="M166.502 323.904c-1.908 5.018-14.152-7.9-16.858-14.122 6.043 6.004 18.22 10.586 16.858 14.122z"/>
<path d="M164.064 316.385c-1.907 5.703-15.217-9.497-18.987-14.883 6.35 5.928 20.425 10.74 18.987 14.883z"/>
<path d="M163.654 310.74c4.687-.91-.266-4.814-6.01-11.158-.27 6.68.827 11.35 6.01 11.158zm-7.914-3.783c2.023-2.204-1.94-3.142-6.85-8.65-.723 3.714 4.554 10.514 6.85 8.65zm22.7 24.775c2.564 1.5 4.32-3.755 1.123-8.513-.73 5.145-3.476 6.575-1.124 8.51z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M166.28 317.26c3.172 2.336 6.673-6.034 2.644-13.99-.127 7.658-6.214 10.23-2.644 13.99z"/>
<path d="M169.328 324.955c4.387 1.347 5.76-6.414 2.872-12.622.482 6.67-6.897 10.687-2.872 12.622z"/>
<path d="M172.66 331.114c4.238 2.11 5.842-5.732 2.797-11.554.332 7.428-6.06 9.618-2.796 11.554z"/>
<path d="M170.907 331.586c-1.678 5.018-11.415-4.327-13.056-9.41 6.045 6.005 14.268 5.342 13.058 9.41z"/>
<path d="M166.502 323.904c-1.908 5.018-14.152-7.9-16.858-14.122 6.043 6.004 18.22 10.586 16.858 14.122z"/>
<path d="M164.064 316.385c-1.907 5.703-15.217-9.497-18.987-14.883 6.35 5.928 20.425 10.74 18.987 14.883zm-.41-5.645c4.687-.91-.266-4.814-6.01-11.158-.27 6.68.827 11.35 6.01 11.158z"/>
<path d="M155.74 306.957c2.023-2.204-1.94-3.142-6.85-8.65-.723 3.714 4.554 10.514 6.85 8.65zm22.7 24.775c2.564 1.5 4.32-3.755 1.123-8.513-.73 5.145-3.476 6.575-1.124 8.51z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M122.717 298.56c-5.446 3.265-14.095-9.762-16.402-15.12 4.778 6.15 17.43 11.768 16.402 15.12z"/>
<path d="M127.36 306.143c-3.012 3.34-12.497-5.732-15.793-10.33 5.084 4.4 17.127 4.925 15.794 10.33z"/>
<path d="M132.526 312.956c-.994 4.564-14.836-5.694-18.072-10.55 5.968 5.624 18.98 5.116 18.072 10.55z"/>
<path d="M130.39 317.91c-2.134 4.108-13.392-6.072-16.095-11.383 6.88 6.002 17.838 7.32 16.096 11.383zm-5.772-20.026c3.552-3.746 2.04-5.5-.55-11.404-1.416 6.062-3.55 8.48.55 11.404zm4.714 7.066c6.443.285.062-7.555-1.46-14.14.56 7.505-1.652 13.42 1.46 14.14z"/>
<path d="M133.43 311.198c4.463-1.01 3.175-7.327-.247-14.978.71 8.266-3.78 13.042.246 14.978zm-1.514 12.495c-1.68 5.02-14.38-6.607-16.4-11.006 6.423 5.396 17.535 7.243 16.4 11.006z"/>
<path d="M139.515 331.52c-1.906 5.02-15.216-5.16-19.288-10.7 8.02 6.307 20.272 5.722 19.288 10.7z"/>
<path d="M147.264 339.423c-2.134 6.995-16.052-4.172-20.2-9.636 8.855 6.763 21.334 4.657 20.2 9.636zm-13.077-17.963c3.78 1.956 5.307-8.77 3.175-16.346.028 8.266-7.582 14.41-3.175 16.346z"/>
<path d="M140.66 329.965c4.542 1.35 3.102-10.215-.78-17.715-.502 7.43-3.854 14.488.78 17.715zm8.064 7.988c5.074.284 1.583-9.913-2.602-15.662.712 7.507-1.65 14.793 2.602 15.664zm-8.904 4.354c-1.526 2.584-5.257-2.196-11.383-5.684 5.51 1.44 12.06 3.29 11.382 5.684z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M122.717 298.56c-5.446 3.265-14.095-9.762-16.402-15.12 4.778 6.15 17.43 11.768 16.402 15.12z"/>
<path d="M127.36 306.143c-3.012 3.34-12.497-5.732-15.793-10.33 5.084 4.4 17.127 4.925 15.794 10.33z"/>
<path d="M132.526 312.956c-.994 4.564-14.836-5.694-18.072-10.55 5.968 5.624 18.98 5.116 18.072 10.55z"/>
<path d="M130.39 317.91c-2.134 4.108-13.392-6.072-16.095-11.383 6.88 6.002 17.838 7.32 16.096 11.383zm-5.772-20.026c3.552-3.746 2.04-5.5-.55-11.404-1.416 6.062-3.55 8.48.55 11.404zm4.714 7.066c6.443.285.062-7.555-1.46-14.14.56 7.505-1.652 13.42 1.46 14.14z"/>
<path d="M133.43 311.198c4.463-1.01 3.175-7.327-.247-14.978.71 8.266-3.78 13.042.246 14.978zm-1.514 12.495c-1.68 5.02-14.38-6.607-16.4-11.006 6.423 5.396 17.535 7.243 16.4 11.006z"/>
<path d="M139.515 331.52c-1.906 5.02-15.216-5.16-19.288-10.7 8.02 6.307 20.272 5.722 19.288 10.7z"/>
<path d="M147.264 339.423c-2.134 6.995-16.052-4.172-20.2-9.636 8.855 6.763 21.334 4.657 20.2 9.636zm-13.077-17.963c3.78 1.956 5.307-8.77 3.175-16.346.028 8.266-7.582 14.41-3.175 16.346z"/>
<path d="M140.66 329.965c4.542 1.35 3.102-10.215-.78-17.715-.502 7.43-3.854 14.488.78 17.715zm8.064 7.988c5.074.284 1.583-9.913-2.602-15.662.712 7.507-1.65 14.793 2.602 15.664zm-8.904 4.354c-1.526 2.584-5.257-2.196-11.383-5.684 5.51 1.44 12.06 3.29 11.382 5.684z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M136.905 256.366c4.735-3.504 1.123-10.057 0-16.29-1.524 5.912-5.535 13.668 0 16.29zm-.155 8.758c-7.115-.854-6.044-10.055-6.258-15.886 2.14 7.916 7.97 9.253 6.257 15.886zm1.128-1.207c6.018-.348 5.7-7.195 6.02-14.122-3.05 6.366-6.662 7.355-6.02 14.122z"/>
<path d="M137.645 272.423c-4.68.373-7.114-4.226-8.185-11.394 4.44 6.604 8.478 4.545 8.185 11.392zm1.673-.565c6.018.775 5.057-6.232 4.815-11.395-1.845 4.922-6.74 6.473-4.815 11.395z"/>
<path d="M129.937 268.9c.48 4.574 3.37 12.437 8.025 10.67 1.925-5.616-4.093-6.74-8.025-10.67z"/>
<path d="M139.396 280.052c-2.086-4.01 4.734-6.02 6.178-11.234.83 7.462.134 12.357-6.178 11.234z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M136.905 256.366c4.735-3.504 1.123-10.057 0-16.29-1.524 5.912-5.535 13.668 0 16.29zm-.155 8.758c-7.115-.854-6.044-10.055-6.258-15.886 2.14 7.916 7.97 9.253 6.257 15.886zm1.128-1.207c6.018-.348 5.7-7.195 6.02-14.122-3.05 6.366-6.662 7.355-6.02 14.122z"/>
<path d="M137.645 272.423c-4.68.373-7.114-4.226-8.185-11.394 4.44 6.604 8.478 4.545 8.185 11.392zm1.673-.565c6.018.775 5.057-6.232 4.815-11.395-1.845 4.922-6.74 6.473-4.815 11.395z"/>
<path d="M129.937 268.9c.48 4.574 3.37 12.437 8.025 10.67 1.925-5.616-4.093-6.74-8.025-10.67z"/>
<path d="M139.396 280.052c-2.086-4.01 4.734-6.02 6.178-11.234.83 7.462.134 12.357-6.178 11.234z"/>
</g>
<g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff">
<path d="M119.984 232.498c3.746-4.034.437-10.436-.686-16.668-1.523 5.91-4.165 13.743.686 16.668zm-.12 7.517c-6.58.667-8.174-12.715-8.843-18.47 2.14 7.915 9.72 11.533 8.844 18.47zm1.37-.12c4.65-2.403 3.57-7.576 5.03-11.463-3.125 4.77-5.977 5.454-5.03 11.462z"/>
<path d="M119.933 248.653c-6.884.59-10.985-14.237-11.2-20.068 2.14 7.916 12.002 12.22 11.2 20.068zm1.307-.225c6.474-1.49 5.7-5.676 4.73-12.45-2.062 6.823-5.675 5.377-4.73 12.45z"/>
<path d="M119.843 257.21c-7.57 1.284-7.037-10.69-13.048-19.376 5.2 6.452 14.56 14.582 13.048 19.375zm1.71-.41c5.714.166 6.272-8.436 5.955-11.926-1.314 3.476-8.032 6.777-5.956 11.927z"/>
<path d="M108.022 247.992c2.837 9.212 6.868 18.443 11.825 17.742 2.38-5.237-4.702-5.905-11.825-17.742z"/>
<path d="M121.63 264.39c-2.086-4.01 4.734-6.02 6.178-11.233.83 7.462.134 12.357-6.178 11.234zm-11.65-5.872c4.052 8.3 5.88 17.836 11.444 16.45 2.077-6.454-6.145-7.805-11.444-16.45z"/>
<path d="M122.56 273.4c-2.39-4.392 4.43-5.945 6.102-11.996.905 7.92.06 13.574-6.102 11.995z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M119.984 232.498c3.746-4.034.437-10.436-.686-16.668-1.523 5.91-4.165 13.743.686 16.668zm-.12 7.517c-6.58.667-8.174-12.715-8.843-18.47 2.14 7.915 9.72 11.533 8.844 18.47zm1.37-.12c4.65-2.403 3.57-7.576 5.03-11.463-3.125 4.77-5.977 5.454-5.03 11.462z"/>
<path d="M119.933 248.653c-6.884.59-10.985-14.237-11.2-20.068 2.14 7.916 12.002 12.22 11.2 20.068zm1.307-.225c6.474-1.49 5.7-5.676 4.73-12.45-2.062 6.823-5.675 5.377-4.73 12.45z"/>
<path d="M119.843 257.21c-7.57 1.284-7.037-10.69-13.048-19.376 5.2 6.452 14.56 14.582 13.048 19.375zm1.71-.41c5.714.166 6.272-8.436 5.955-11.926-1.314 3.476-8.032 6.777-5.956 11.927z"/>
<path d="M108.022 247.992c2.837 9.212 6.868 18.443 11.825 17.742 2.38-5.237-4.702-5.905-11.825-17.742z"/>
<path d="M121.63 264.39c-2.086-4.01 4.734-6.02 6.178-11.233.83 7.462.134 12.357-6.178 11.234zm-11.65-5.872c4.052 8.3 5.88 17.836 11.444 16.45 2.077-6.454-6.145-7.805-11.444-16.45z"/>
<path d="M122.56 273.4c-2.39-4.392 4.43-5.945 6.102-11.996.905 7.92.06 13.574-6.102 11.995z"/>
</g>
<path d="M134.24 217.226c3.993 1.08 8.182-3.404 6.73-10.115-4.564 1.138-6.66 5.28-6.73 10.117zm-12.788-3.366c.35 1.886 2.645 2.058 1.978-.61-.557-2.163-.652-3.79 0-5.55.893-2.205.595-5.96-.076-7.526-.678-1.654-2.922-.685-1.978.61 1.04 1.5 1.094 4.622.38 6.08-.94 2.152-.685 5.01-.304 6.995z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M134.24 217.226c3.993 1.08 8.182-3.404 6.73-10.115-4.564 1.138-6.66 5.28-6.73 10.117zm-12.788-3.366c.35 1.886 2.645 2.058 1.978-.61-.557-2.163-.652-3.79 0-5.55.893-2.205.595-5.96-.076-7.526-.678-1.654-2.922-.685-1.978.61 1.04 1.5 1.094 4.622.38 6.08-.94 2.152-.685 5.01-.304 6.995z" fill-rule="evenodd" fill="#fff"/>
<path d="M135.27 206.677c-.378 2.948-2.873 3.216-2.148-.95.605-3.38.71-5.92 0-8.668-.97-3.447-.647-9.31.083-11.757.736-2.584 3.174-1.07 2.15.95-1.13 2.345-1.19 7.22-.414 9.498 1.024 3.363.747 7.825.33 10.926zm18.588 29.467c-1.543 2.27-4.002.952-2.61-2.692 1.178-2.523 1.304-5.65 2.615-7.494 1.833-2.797 4.938-5.128 6.7-6.82 1.82-1.8 3.333-.065 1.663 1.48-2.028 2.028-4.228 4.553-5.45 6.466-2.28 3.716-1.276 6.68-2.918 9.06z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<g fill-rule="evenodd" fill="#fff">
<path d="M242.54 131.62c.18.97 1.484.926 1.14-.444-.285-1.112-.932-2.18-.597-3.085.46-1.13.57-3.077.226-3.882-.35-.85-1.47-.28-.987.385.534.77.114 2.925-.253 3.674-.482 1.106.274 2.334.47 3.354z" transform="matrix(-2.453 -.9787 -1.138 2.5207 903.448 145.415)" stroke="#000" stroke-width=".36"/>
<path d="M158.688 239.805c-1.543 2.27-4.694.882-2.293-2.235 1.967-2.524 4.77-4.585 4.977-7.19.163-3.307 2.103-8.32 3.866-10.013 1.82-1.802 3.924.733 1.978 1.935-2.187 1.42-3.608 7.26-3.56 9.508-.074 3.26-3.326 5.616-4.968 7.995z"/>
</g>
<path d="M153.858 236.144c-1.543 2.27-4.002.952-2.61-2.692 1.178-2.523 1.304-5.65 2.615-7.494 1.833-2.797 4.938-5.128 6.7-6.82 1.82-1.8 3.333-.065 1.663 1.48-2.028 2.028-4.228 4.553-5.45 6.466-2.28 3.716-1.276 6.68-2.918 9.06z" fill-rule="evenodd" fill="#fff"/>
<g fill-rule="evenodd" fill="#fff">
<path d="M242.23 131.78c-.094.784 1.23.974 1.172-.163-.06-1.187-1.824-2.273-.742-4.08.57-.884.58-2.504.234-3.365-.303-.854-1.58-.296-1.094.37.534.77-.1 2.25-.508 2.993-1.225 2.166 1.01 3.22.938 4.245z" transform="matrix(1.9463 0 0 4.087 -343.233 -314.153)" stroke="#000" stroke-width=".345"/>
<path d="M128.22 224.436c-.184 3.205 2.395 3.98 2.28-.666-.117-4.85-3.55-9.29-1.444-16.675 1.107-3.613 1.127-10.234.455-13.753-.587-3.49-3.07-1.21-2.127 1.508 1.04 3.15-.195 9.196-.99 12.237-2.383 8.852 1.967 13.164 1.827 17.35z"/>
</g>
<path d="M135.27 206.677c-.378 2.948-2.873 3.216-2.148-.95.605-3.38.71-5.92 0-8.668-.97-3.447-.647-9.31.083-11.757.736-2.584 3.174-1.07 2.15.95-1.13 2.345-1.19 7.22-.414 9.498 1.024 3.363.747 7.825.33 10.926zm-25.36 60.296c1.236 1.47 3.318.485 1.42-1.504-1.552-1.61-1.04-2.117-1.987-4.075-.936-2.188-.887-3.395-2.016-4.96-1-1.482-2.5.03-1.495 1.28 1.263 1.476.915 2.564 1.687 3.992 1.426 2.444 1.08 3.727 2.39 5.265zm33.224 40.113c3.974 1.954 6.99 6.836 7.19 10.812.336 4.576.996 8.44 3.05 11.69-3.27-.91-4.837-6.124-5.302-11.118-.47-5.17-3.256-7.41-4.938-11.384zm8.29 9.576c2.75 5.077 6.597 7.013 6.794 10.78.333 4.335.662 4.557 1.837 8.82-3.237-.863-4.052-1.145-4.926-7.632-.54-4.56-4.19-7.775-3.706-11.968z" fill-rule="evenodd" fill="#fff"/>
<path d="M301.504 401.657c.076 1.925.306 3.472 1.447 5.018-6.64-2.66-16.015-1.236-22.43 1.75-2.86 1.366-6.32-1.562-2.964-4.335 4.773-3.867 15.814-1.674 23.95-2.433zm-93.687-.1c.094 1.813-.116 3.475-.784 5.06 7.22-2.99 14.97-.507 22.262 2.434 5.013 2.075 5.418-1.514 4.533-2.756-1.522-2.203-4.467-4.622-8.192-4.675-2.48-.036-12.026-.12-17.82-.063zm6.094-35.26c-2.012-.868-4.352-.033-6.45 2.176-7.05 6.907-15.32 13.637-21.997 18.873-2.49 2.164-5.037 6.047 5.59 9.928.385.146 8.132 3.017 13.04 3.2 2.005-.057 2 2.937 1.627 3.735-.847 1.592-.234 2.2-1.945 3.735-1.783 1.504.19 3.452 1.592 2.13 5.983-5.196 15.685-1.872 25.035 1.168 2.21.612 6.252.44 6.217-2.608.037-3.32 2.442-5.667 3.914-5.753 3.816.662 22.676.872 28.486.166 3.387-.44 3.592 4.64 5.404 6.64 1.25 1.33 6.058 1.68 9.356.225 6.518-3.028 16.45-3.028 20.498-.134 1.664 1.267 2.978.24 2.032-1.047-1.22-1.76-1.19-2.575-1.797-3.965-1.52-3.094-.307-3.85 1.287-4.074 18.01-2.322 23.756-8.467 18.25-13.477-7.11-6.237-15.025-12.506-21.845-19.874-1.85-1.954-3.07-2.74-6.92-1.14-11.764 5.36-26.698 9.265-41.313 9.552-13.6.116-32.297-6.174-40.06-9.46z" fill-rule="evenodd" fill-opacity=".185" stroke="#000" stroke-width=".973"/>
<path d="M301.504 401.657c.076 1.925.306 3.472 1.447 5.018-6.64-2.66-16.015-1.236-22.43 1.75-2.86 1.366-6.32-1.562-2.964-4.335 4.773-3.867 15.814-1.674 23.95-2.433zm-93.687-.1c.094 1.813-.116 3.475-.784 5.06 7.22-2.99 14.97-.507 22.262 2.434 5.013 2.075 5.418-1.514 4.533-2.756-1.522-2.203-4.467-4.622-8.192-4.675-2.48-.036-12.026-.12-17.82-.063zm6.094-35.26c-2.012-.868-4.352-.033-6.45 2.176-7.05 6.907-15.32 13.637-21.997 18.873-2.49 2.164-5.037 6.047 5.59 9.928.385.146 8.132 3.017 13.04 3.2 2.005-.057 2 2.937 1.627 3.735-.847 1.592-.234 2.2-1.945 3.735-1.783 1.504.19 3.452 1.592 2.13 5.983-5.196 15.685-1.872 25.035 1.168 2.21.612 6.252.44 6.217-2.608.037-3.32 2.442-5.667 3.914-5.753 3.816.662 22.676.872 28.486.166 3.387-.44 3.592 4.64 5.404 6.64 1.25 1.33 6.058 1.68 9.356.225 6.518-3.028 16.45-3.028 20.498-.134 1.664 1.267 2.978.24 2.032-1.047-1.22-1.76-1.19-2.575-1.797-3.965-1.52-3.094-.307-3.85 1.287-4.074 18.01-2.322 23.756-8.467 18.25-13.477-7.11-6.237-15.025-12.506-21.845-19.874-1.85-1.954-3.07-2.74-6.92-1.14-11.764 5.36-26.698 9.265-41.313 9.552-13.6.116-32.297-6.174-40.06-9.46z" fill-rule="evenodd" fill="#fff"/>
<g fill-rule="evenodd" fill="#fff">
<path d="M338.583 332.01c.816 2.81 12.048-2.323 17.757-13.55-7.476 8.15-19.576 8.07-17.757 13.55z" stroke="#000" stroke-width=".973"/>
<path d="M338.583 332.01c.816 2.81 12.048-2.323 17.757-13.55-7.476 8.15-19.576 8.07-17.757 13.55z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M253.45 178.87c1.695 2.578 3.958 4.444 4.06 6.487.173 2.35.344 2.47.954 4.783-1.68-.468-2.104-.62-2.558-4.14-.28-2.47-2.708-4.856-2.456-7.13z" transform="matrix(-2.0175 0 0 1.844 868.637 -14.906)" stroke="#000" stroke-width=".505"/>
<path d="M357.293 314.93c-3.42 4.755-7.986 8.196-8.192 11.963-.347 4.335-.692 4.557-1.922 8.82 3.39-.863 4.245-1.145 5.16-7.632.566-4.557 5.464-8.955 4.956-13.15z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M254.38 180.28c2.042 1.004 2.506 2.667 2.587 4.726.04 2.384.617 4.226 1.673 5.897-2.103.305-2.486-3.147-2.725-5.713-.242-2.656-.67-2.87-1.535-4.91z" transform="matrix(-2.039 0 0 1.9463 881.502 -42.498)" stroke="#000" stroke-width=".489"/>
<path d="M362.835 308.38c-4.163 1.955-5.11 5.192-5.274 9.2-.08 4.64-1.256 8.225-3.41 11.477 4.288.594 5.07-6.125 5.557-11.12.493-5.17 1.368-5.583 3.13-9.556z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M242.23 131.44c.18.97 1.36 1.058 1.016-.312-.286-1.112-.335-1.948 0-2.852.46-1.133.306-3.062-.04-3.867-.347-.85-1.5-.354-1.015.31.536.77.564 2.376.197 3.125-.483 1.106-.352 2.574-.156 3.594z" transform="matrix(2.0818 0 0 3.0397 -129.796 -193.086)" stroke="#000" stroke-width=".387"/>
<path d="M374.47 206.457c.372 2.948 2.83 3.216 2.115-.95-.596-3.38-.698-5.92 0-8.668.955-3.446.637-9.31-.08-11.757-.726-2.583-3.126-1.07-2.116.952 1.11 2.343 1.167 7.22.403 9.496-1.005 3.363-.732 7.825-.324 10.926z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M242.23 131.78c-.094.784 1.23.974 1.172-.163-.06-1.187-1.824-2.273-.742-4.08.57-.884.58-2.504.234-3.365-.303-.854-1.58-.296-1.094.37.534.77-.1 2.25-.508 2.993-1.225 2.166 1.01 3.22.938 4.245z" transform="matrix(-1.9157 0 0 4.087 845.476 -314.367)" stroke="#000" stroke-width=".348"/>
<path d="M381.43 224.222c.18 3.204-2.358 3.98-2.245-.666.115-4.85 3.494-9.29 1.42-16.675-1.09-3.61-1.108-10.232-.447-13.75.58-3.49 3.025-1.21 2.096 1.507-1.023 3.15.19 9.196.973 12.237 2.347 8.852-1.935 13.164-1.797 17.35z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M242.23 131.44c.18.97 1.36 1.058 1.016-.312-.286-1.112-.335-1.948 0-2.852.46-1.133.306-3.062-.04-3.867-.347-.85-1.5-.354-1.015.31.536.77.564 2.376.197 3.125-.483 1.106-.352 2.574-.156 3.594z" transform="matrix(-1.9157 0 0 1.9463 852.132 -42.178)" stroke="#000" stroke-width=".504"/>
<path d="M388.086 213.644c-.342 1.887-2.603 2.06-1.946-.608.548-2.164.642-3.79 0-5.55-.88-2.206-.586-5.96.075-7.527.666-1.656 2.875-.687 1.946.607-1.02 1.5-1.074 4.623-.37 6.08.924 2.153.673 5.01.297 6.996z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M374.235 217.334c-3.323 1.41-7.618-8.035-4.444-9.807 2.463-.62 8.098 8.01 4.446 9.807z" stroke="#000" stroke-width=".973"/>
<path d="M374.235 217.334c-3.323 1.41-7.618-8.035-4.444-9.807 2.463-.62 8.098 8.01 4.446 9.807z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M242.22 131.74c.18.97 1.234.857 1.32-.555-.012-1.006.432-2.074.267-2.87-.197-1.186-.906-2.386-1.25-3.19-.35-.85-1.142-.47-.806.273.386.954.75 2.098.876 2.905.208 1.555-.6 2.417-.405 3.437z" transform="matrix(2.367 -.9787 1.098 2.5207 -362.4 141.044)" stroke="#000" stroke-width=".367"/>
<path d="M355.57 236.05c1.488 2.27 3.86.952 2.517-2.692-1.136-2.523-1.258-5.65-2.522-7.495-1.77-2.796-4.765-5.127-6.465-6.82-1.757-1.8-3.216-.064-1.605 1.48 1.957 2.03 4.08 4.554 5.26 6.467 2.2 3.716 1.23 6.68 2.814 9.06z"/>
</g>
<g fill-rule="evenodd" fill="#fff">
<path d="M242.54 131.62c.18.97 1.484.926 1.14-.444-.285-1.112-.932-2.18-.597-3.085.46-1.13.57-3.077.226-3.882-.35-.85-1.47-.28-.987.385.534.77.114 2.925-.253 3.674-.482 1.106.274 2.334.47 3.354z" transform="matrix(2.367 -.9787 1.098 2.5207 -367.113 144.086)" stroke="#000" stroke-width=".367"/>
<path d="M351.48 238.476c1.49 2.27 4.53.882 2.214-2.236-1.898-2.523-4.603-4.584-4.803-7.19-.155-3.306-2.027-8.32-3.73-10.012-1.755-1.802-3.784.733-1.906 1.934 2.11 1.42 3.482 7.262 3.435 9.51.07 3.26 3.21 5.615 4.792 7.994z"/>
</g>
<path stroke-linejoin="round" d="M220.83 343.95c4.512 3.6 8.765 7.687 10.037 12.773 1.328 4.737 2.13 8.363 5.172 13.077-4.767-3.042-6.66-7.637-8.06-12.624-1.234-4.9-4.058-8.562-7.15-13.227z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M220.83 343.95c4.512 3.6 8.765 7.687 10.037 12.773 1.328 4.737 2.13 8.363 5.172 13.077-4.767-3.042-6.66-7.637-8.06-12.624-1.234-4.9-4.058-8.562-7.15-13.227zm-5.157 0c4.208 3.446 6.938 7.382 8.21 12.467 1.328 4.738 3.195 8.515 5.933 12.774-4.46-3.04-7.265-7.18-8.668-12.165-1.232-4.9-2.686-8.563-5.475-13.075zm78.767 0c-4.302 3.466-7.093 7.425-8.394 12.54-1.357 4.766-3.265 8.566-6.064 12.85 4.56-3.06 7.427-7.223 8.86-12.24 1.26-4.928 2.746-8.613 5.597-13.15zm-5.295 0c-4.61 3.62-8.958 7.732-10.26 12.848-1.356 4.765-2.176 8.412-5.285 13.154 4.87-3.06 6.804-7.682 8.238-12.698 1.26-4.928 4.146-8.612 7.308-13.305zm-15.278 12.008c.124-.89-.482-1.666-1.21-1.9-1.42-.533-2.83-.967-4.237-1.368-1.6-.38-2.494.767-2.5 1.52-.007 1.254-.065 2.318 0 3.268.088 1.183.312 1.27 1.06 1.446 1.197.202 2.732.41 3.935 1.216.953.588 1.87.123 2.345-.91.308-.79.477-2.336.607-3.272zm-17.225 0c-.11-.89.357-1.742 1.007-1.976 1.265-.533 2.527-.663 3.86-.61 1.476-.022 1.85.313 1.853 1.066.008 1.253.06 2.47 0 3.42-.078 1.183-.052 1.27-.72 1.446-1.07.202-2.893.256-3.968 1.064-.852.588-1.823.123-1.87-.987.022-.834-.048-2.485-.164-3.42zm-20.902-.234c-.126-.89.484-1.666 1.215-1.9 1.425-.533 2.844-.967 4.257-1.368 1.606-.38 2.505.767 2.51 1.52.008 1.254.067 2.32 0 3.268-.087 1.184-.313 1.27-1.064 1.446-1.203.203-2.744.41-3.953 1.217-.957.588-1.878.123-2.357-.91-.31-.79-.48-2.337-.61-3.273zm17.302 0c.11-.89-.36-1.742-1.012-1.975-1.273-.535-2.54-.666-3.878-.61-1.485-.025-1.86.31-1.864 1.063-.008 1.254-.06 2.47 0 3.42.078 1.183.052 1.27.724 1.446 1.074.2 2.907.256 3.987 1.064.853.587 1.83.122 1.875-.987-.02-.837.05-2.488.166-3.424zm-16.018 7.902c1.545 2.914 3.32 7.35 6.537 6.538.053-2.23-3.47-3.776-6.535-6.538zm4.806.994c6.25 2.56 11.645 1.928 12.317 5.855-5.86.633-8.005-1.775-12.316-5.856zm30.636-.604c-1.567 2.746-3.366 6.928-6.627 6.163-.054-2.105 3.517-3.56 6.625-6.165zm-4.38.836c-6.34 2.43-11.813 1.83-12.496 5.558 5.948.6 8.123-1.684 12.496-5.558z" fill-rule="evenodd" fill="#fff"/>
<path d="M286.79 302.57l13.61.003c.052 5.144 3.066 10.67 7.3 13.836h-26.08c4.08-3.7 5.196-8.087 5.17-13.84z" fill-opacity=".534" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M286.79 302.57l13.61.003c.052 5.144 3.066 10.67 7.3 13.836h-26.08c4.08-3.7 5.196-8.087 5.17-13.84z" fill-rule="evenodd" fill="#fff"/>
<path d="M189.69 385.756c-.75.572-.7 2.29.76 2.888 13.593 4.877 26.717 13.89 64.476 13.535 38.12-.36 51.516-9.158 63.716-13.23 1.625-.62 3.155-1.88 1.064-3.65-6.855-5.604-14.264-10.108-19.16-17.033-.87-1.245-3.242-.54-4.715 0-14.55 5.11-27.992 8.692-41.97 8.667-13.645-.025-27.87-3.784-40.676-9.046-1.226-.525-3.234.065-4.182.985-5.94 5.92-12.403 11.663-19.31 16.88z" stroke="#000" stroke-width=".487" fill="none"/>
<path d="M208.004 376.394c-1.637-1.055-2.374.317-1.216 1.75 1.502 1.648 3.933 2.64 6.46 3.345 1.477.41 4.523-.11 6.086.074 1.216.152 1.903 2.606 4.106 2.51 2.223-.096 3.65-6.007 3.726-8.973.1-1.965-2.616-.71-2.357.08.71 1.953-.594 6.312-1.98 6.31-1.02-.064-2.114-2.178-3.65-2.434-1.2-.2-3.022.14-4.26.15-3.612.036-5.17-1.766-6.917-2.813z" fill-rule="evenodd"/>
<path d="M211.06 374.798c1.93.963 3.614-.76 4.716.457 2.814 3.194 6.434-1.53 2.205-1.368-1.71.066-1.975-1.294-4.942-.99-1.578.202-2.9 1.364-1.977 1.9zm.448 13.994c-1.524-.666-2.036.782-1.14 1.674 1.256 1.148 6.478 1.605 7.755.685 2.112-1.6.568-5.81-.38-6.995-.59-.722-2.374-.777-1.673 1.142.29.89 1.586 3.103.53 4.105-.964.924-3.635 0-5.092-.608zm11.716 1.285c.335-.86-.568-2.338-2.13-.61-1.29 1.363-.244 7.106 3.878 8.136 4.03.99 7.048-.46 7.602-2.66.384-1.466-1.823-2.74-.683-4.032.954-1.01 2.79.014 3.576-1.593.46-.902.496-2.75-1.978-3.955-1.072-.538-2.93.692-2.89 1.6.058 1.246 1.99.433 1.292 1.52-.51.826-2.794.48-3.496 2.43-.42 1.24 2.584 3.53.988 4.108-1.424.493-3.28.812-5.17-.228-1.17-.618-1.665-3.18-.988-4.713zm-14.52-7.902c-.957.14-2.28.836-2.354 1.977-.06.915.695 2.5 1.977 1.442 1.324-1.027.308-1.514.608-1.14.66.66-.308.714-1.52 2.36-.845 1.246-2.65 1.046-3.574.606-1.594-.823-.996-1.35-2.736-2.13-1.738-.854-2.79 1.15-1.14 2.054 1.823 1.045 4.81 3.133 7.755 1.598 1.75-.99 3.8-1.89 3.724-4.107-.1-1.44-.74-2.94-2.738-2.66zm94.572-.76c-1.345-.96-.522-2.705 1.446-2.053 1.674.62 4.453 2.59 4.636 5.17.208 2.824-4.34 4.89-6.08 4.793-2.98-.24-2.45-2.604-.23-2.435 1.72.125 3.834-.488 3.955-2.28.1-1.556-2.758-2.46-3.727-3.195zm-9.81-6.91c-1.738-1.752 1.9-3.65 2.964-1.52 1.404 2.708 3.074 5.373 4.335 8.364 1.004 2.453-.313 2.785-1.14 1.442-1.384-2.335-3.48-5.46-6.16-8.287zm-8.506 5.237c1.87-.814 1.825 1.52 1.14 1.977-1.234.685-2.89-1.14-1.14-1.98zm5.548-2.044c1.87-.813 1.824 1.52 1.14 1.977-1.236.688-2.89-1.14-1.14-1.977z" fill-rule="evenodd"/>
<path d="M232.49 380.968c-2.808-1.793.57-4.467 2.507-2.433 2.778 2.836 5.433 9.05 7.53 11.405 1.992 2.314.386-6.275.987-8.82.41-1.415 1.517-1.217 1.52.15.01 3.5-.53 10.62.38 11.18 1.7.966 1.394 2.545 2.812 2.28 1.522-.362 1.295-.76 2.663-.837 1.355 0 1.4 1.36 2.964 1.14.997-.13 1.296-1.26 2.507-1.294 1.105-.095.63 2.342-.073 2.737-1.146.644-4.716-.7-5.78-.607-1.264.034-3.54 1.207-4.942.684-1.71-.61-1.33-2.78-2.51-2.433-1.332.31-1.08 2.736-4.255 3.5-1.486.34-1.987-.997-1.216-1.9 1.38-1.477 4.16-2.655 3.725-4.03-1.288-3.835-5.175-8.454-8.82-10.72zm24.405.525c1.35 4.438 1.283 10.34 2.054 14.372.377 1.586 1.895.173 1.747-1.065-.597-4.33-.86-9.646-1.977-13.762-.462-1.425-2.34-1.148-1.825.455zm3.737 1.15c-.356-1.85 1.415-2.025 1.674-.916.913 3.57.796 11.744 2.585 12.014 3.088.355 7.417-.284 11.255-1.062 1.888-.376 2.275-1.742 2.205-2.283-.363-2.196 1.687-2.022 2.204.305.28 1.214-.272 3.392-2.584 3.876-4.518.872-10.736 2.217-14.296 1.445-3.118-.66-2.102-8.71-3.042-13.377z" fill-rule="evenodd"/>
<path d="M265.654 385.834c.077-2.342 1.835-2.686 1.823-.686.05 4.79 5.656 3.547 6.845 1.75.878-1.4.236-2.004-.61-3.573-1.05-2.03 1.175-2.602 2.13-.837.715 1.263 1.21 5.29-.075 6.312-1.78 1.41-6.594 2.104-8.67.53-1.1-.758-1.53-2.214-1.443-3.496zm-2.434-6.248c.25 1.5 4.333.99 4.18-.152-.14-.98-4.407-.76-4.18.152zm5.314 1.226c.16 1.512 2.803 1.067 2.66-.076-.14-1.208-2.812-1.446-2.66.076zm7.98-1.83c-1.34-1.852 1.27-1.97 2.13-.607 2.226 3.33 3.693 8.694 5.854 12.317.918 1.67 2.07.177 2.205-.228.144-.43-.7-1.09-.76-2.585-.106-1.164 2.27-2.608 3.954-1.52 1.574 1.06.286 2 1.064 2.583.744.556 2.616.206 2.893-.152.83-1.305-.302-.54-1.446-1.293-1.324-.948-.53-5.055 2.205-3.346 1.628.943 2.107 3.954 1.52 5.628-.517 1.55-3.24 2.077-4.713 1.748-1.66-.506-3-2.502-2.66-1.977.82 1.35-.204 2.68-.99 3.194-1.94 1.218-3.298 1.857-4.714-.152-2.51-3.76-3.893-10.103-6.54-13.61z" fill-rule="evenodd"/>
<path d="M205.65 121.273c-.112-2.246 3.37-2.418 2.97.67-.51 3.85 7.265 13.592 7.91 19.6.43 4.03-2.368 7.555-5.14 9.75-3.397 2.632-8.623 2.27-11.068.76-1.48-1.19-2.828-5.268-1.72-6.882.39-.54 2.162 5.987 6.062 5.96 5.308-.033 9.607-4.02 9.765-7.576.27-6.193-8.684-15.982-8.78-22.28zm15.55 15.297c.878-.626 2.28 2.112 1.29 2.797-.823.548-2.43-2.036-1.29-2.796zm2.336-5.546c-.444.215-1.326-.09-1.063-.467 1.242-1.774 3.89-4.444 5.808-5.377.59-.286 1.623.755 1.267 1.265-1.148 1.64-3.943 3.576-6.01 4.58zm20.534-16.29c.492-1.028 3.448-2.19 4.2-2.885.698-.716 1.03.6.733 1.223-.492 1.027-3.044 2.762-4.163 2.81-.602.024-1.07-.53-.77-1.15zm7.006.33c.64-1.804 2.705-4.54 4.126-5.44.73-.46 2.04-.098 1.794.594-.543 1.53-3.07 4.205-4.768 5.465-.516.46-1.3-.2-1.152-.62zm-6.014 4.516c-.428.214-.197 1.126.216 1.264.878.292 2.475.35 3.2-.05 1.05-.648.572-4.634-.835-2.505-.944 1.312-1.633.89-2.58 1.29zm-11.872 9.147c-2.147-1.672.577-4.014 2.82-2.378 4.373 3.295-6.52 15.93-12.447 21.833-1.084 1.157-2.036-1.756-.646-3.01 4.25-3.605 8.227-7.91 10.992-12.36.532-.855 1.042-2.7-.72-4.087zm24.873-10.86c.267-1.6-2.59.033-2.64-2.088-.028-1.124 3.12-1.91 4.435-.62 2.222 2.254.56 6.06-3.136 6.297-3.08.136-8.22 4.374-7.44 5.265.89 1.1 8.88 1.827 13.526 1.1 2.877-.404 2.273 2.17-.673 2.517-2.848.327-5.168.023-7.828.86-3.132.894-4.498 5.1-6.238 6.666-.39.273-1.435-1.378-1.038-1.998 1.254-1.962 3.253-4.962 5.452-5.82 1.388-.563-3.826-.74-5.49-1.215-1.32-.398-.937-2.075-.43-3.01.67-1.46 5.585-6.38 7.567-6.3 1.86.078 3.747-.464 3.93-1.658zm8.29.428c.926-.815 1.4-2.18 2.368-3.01.533-.533 1.38.105 1.24 1.39-.12 1.01-1.477 1.883-2.39 2.643-.744.557-1.61-.645-1.215-1.023zm10.53-3.755c1.377-.153 1.72 2.503.215 2.933-.913.305-1.71-2.777-.214-2.934zm-3.463 8.212c-.022 2.287 1.107 2.077 3.26 2 2.092-.08 3.93.053 3.923-2.013-.01-2.143-1.185-4.016-1.53-2.56-.303 1.37-.545 3.61-1.34 2.634-.752-.84-.454-1.023-1.746.354-.717.758-.798-.37-1.23-1.076-.298-.42-1.336.338-1.338.658zm-15.026 11.678c-.514 3.027-.043 7.264 1.506 7.312 1.916.062 5.878-6.617 7.754-10.082 1.125-1.933 3.058-2.27 2.252-.254-1.22 3.113-1.11 9.772-.04 11.728.577 1.054 4.83-.966 5.517-2.467 1.25-2.73.234-7.758.672-10.83.212-2.016 2.057-2.437 1.96-.568-.183 3.342-.5 9.472-.265 12.256.14 1.6 4.716 3.962 5.45-.884.39-3.05 1.96-6.06-.074-9.44-1.262-2.112 1.85-1.847 3.528 1.04 1.174 1.964-.99 5.215-.913 7.73.197 3.865-2.81 6.06-4.992 6.107-1.95.04-3.22-2.357-4.82-2.39-1.772-.114-3.594 2.76-5.06 2.656-5.68-.388-2.672-8.69-4.402-8.79-1.925-.114-4.194 8.135-6.565 7.84-2.336-.28-4.755-6.722-3.782-9.448.88-2.538 2.538-3.132 2.277-1.52z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M285.895 121.33c-2.77-1.69.175-6.085 1.53-4.54 2.616 3.132 5.253 10.568 7.096 11.182 1.17.39 1.115-5.496 1.94-8.172.53-1.977 2.92-1.33 2.463 1.2-.156.847-3.122 10.463-2.894 10.843 2.054 4.11 4.09 8.28 5.374 12.69.532 1.9-1.75.62-2.024.224-1.46-2.18-4.01-10.51-4.01-10.13-1.174 5.86-1.45 7.59-2.696 12.572-.38 1.595-2.73 1.304-2.2-1.507.51-2.31 3.87-13.674 3.68-14.003-2.64-4.66-5.055-8.35-8.26-10.36z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M290.897 148.366c-.773-.088-1.97 1.718 1.876 2.428 5.142.93 10.77-.8 12.496-5.843 1.973-6.004 3.28-11.69 4.31-13.836 1.29-2.5 2.938-2.298 1.72-5.948-.857-2.626-2.46-1.834-2.796-.43-.9 3.83-4.31 16.214-5.375 18.495-2.01 4.163-6.058 5.81-12.234 5.137z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M301.193 128.61c-.55-1.18-1.835-.266-1.606 1.026.137 1.168 1.084 1.803 2.036 1.77 1.127-.04 3.51.038 3.517-1.833.004-1.315-1.03-2.413-1.796-.962-.734 1.315-1.678 1.177-2.15 0zm1.285-4.943c-.395.274-.04 1.736.43 1.72 1.68-.056 4.06-.592 5.335-1.48.373-.26.218-1.142-.314-1.124-1.62.054-4.198.01-5.453.884zm14.266 3.678c1.216-1.9 4.572-2.094 3.365.62-.856 1.87-9.21 18.01-10.35 20.062-1.244 2.308-2.26 1.165-1.378-.632 1.19-2.313 7.98-19.488 8.36-20.05z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M304.17 151.382c-.355-1.284-2.348-3.184-2.124.252.397 6.238 8.966 4.266 11.56 2.05 2.356-2.088.312 7.04 3.442 8.018 1.724.553 4.97-1.8 6.566-3.87 4.426-5.744 7.243-13.976 11.5-19.647 1.607-2.217-.88-3.8-1.887-2.035-3.702 6.207-8.3 18.874-13.32 22.164-4.093 2.62-2.88-3.373-3.023-5.173-.18-1.32-1.79-3.262-3.935-1.48-1.503 1.174-3.835 2.128-5.946 1.937-1.225-.068-2.258-.047-2.834-2.213z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M319.47 139.802c.044-.352-1.813-.512-1.722 1.29.065 1.334 1.66 1.697 1.935 1.506 2.51-1.826-.533-.916-.214-2.796zm-3.66 7.298c-.495.116-.948 1.694.216 1.784 1.064.076 5.235-.372 6.388-.304.745-.028 1.03-1.453-.57-1.378-1.937.098-4.485-.388-6.034-.102zm27.618-1.85c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932zm-92.878 14.248c-.403.464-1.635.388-1.746 1.038-.484 2.41 0 3.633-.53 5.955-.51 2.225-2.052 2.31-1.947.497.14-2.35 2.077-5.666.708-5.894-.91-.214-1.613-1.432-.67-2.034 1.778-1.234 2.733-1.046 3.956-.674.428.13.537.757.23 1.113z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M249.305 156.345c-2.36 2.063-4.547 2.906-6.717 5.514-.887 1.067-.862 2.556-1.392 3.92-.53 1.444-2.24 1.73-2.77 1.427-.885-.582-.756-3.264-1.745-1.82-.837 1.33-1.38 3.16-2.62 3.137-1.12-.023-3.234-2.316-2.162-2.427 3.67-.375 3.624-3.312 4.998-3.505 1.542-.206 1.643 2.425 2.595 1.898.748-.383 1.1-3.448 1.91-4.275 2.49-2.542 4.457-3.885 6.995-5.754 1.284-1.02 2.2.826.91 1.886zm8.602 7.902c-1.888.382-1.566 2.81-1.012 3.11.915.427 2.33.606 2.86-2.185.247-1.147.47 5.7 2.983 3.06 1.446-1.597 5.03.29 6.53-1.72 1.074-1.338 1.405-2.272.568-4.25-.243-.6-1.714-.305-1.63 1.154.073 1.23-.873 2.748-2.103 2.49-.597-.11.337-3.01-.263-3.796-.33-.432-.833-.385-1.16.063-.463.626.462 3.406-1.054 3.772-1.914.44-.91-1.86-1.72-2.28-2.605-1.313-2.856.34-4 .582zm14.733-4.67c1.385-.39.953-.39 3.13-2.175.85-.642 1.016 1.238.927 1.982-.158 1.263-1.658.37-2.123 1.483-.682 1.444-.405 4.803-.633 6.17-.154.704-1.28.644-1.39.09-.32-1.67.23-3.302.177-5.388-.017-.71-1.03-1.82-.085-2.165zm-6.5-7.514c-.335 1.51-.31 2.754-.31 3.79.077.836 1.606.297 1.6.19-.075-1.326.226-3.16-.165-3.67-.212-.276-1.047-.594-1.125-.31z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M205.65 121.273c-.112-2.246 3.37-2.418 2.97.67-.51 3.85 7.265 13.592 7.91 19.6.43 4.03-2.368 7.555-5.14 9.75-3.397 2.632-8.623 2.27-11.068.76-1.48-1.19-2.828-5.268-1.72-6.882.39-.54 2.162 5.987 6.062 5.96 5.308-.033 9.607-4.02 9.765-7.576.27-6.193-8.684-15.982-8.78-22.28z" fill-rule="evenodd" fill="#fff"/>
<path d="M214.894 119.97c.662.03 2.476 2.38 2.357 3.116-.08.347-1.94-.05-2.507-.532-.42-.356-.25-2.604.152-2.585zm-8.747 17.027c-1.658.905.263 2.69 1.505 1.936 4.66-3.018 11.656-6.19 13.118-12.167.47-2.025 2.35-5.13 4.138-5.822 1.726-.67 4.233 3.124 5.87.14.96-1.707 4.323 1.12 5.134-.707.99-2.205.518-3.42.56-5.53-.073-1.384-1.13-1.797-1.897.443-.4 1.014.07 2.038-.255 2.567-.247.403-1.018.792-1.465.456-.413-.31-.127-1.173-1.116-1.555-.385-.192-1-.352-1.267.14-1.173 2.092-1.823 4.044-3.466 1.82-1.464-1.916-2.205-5.228-3.278-.696-.386 1.6-2.817 3.92-4.25 3.92-1.79 0-1.34-4.713-5.276-3.996-2.022.432-1.882 4.3-1.58 5.73.496 1.988 6.405.56 6.11 1.86-1.01 4.515-7.276 8.807-12.588 11.46z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M169.156 158.506c-.25.755.753 2.806 1.795 2.958 1.023.076 1.545-2.215 1.216-2.958-.243-.547-2.83-.535-3.01 0zm5.41 7.96c-.655-.706-2.59 1.19-1.025 2.53.88.71 4.095 1.742 4.975.242 1.19-1.93-1.174-8.942-.127-9.868.818-.724 4.607 4.683 6.478 5.072 4.394.61 3.34-7.524 8.075-6.972 3.228.43 3.58-3.602 3.13-6.12-.36-2.416-4.27-5.904-6.07-7.464-2.365-1.97-3.42 1.452-1.935 2.58 1.912 1.53 5.273 4.623 5.808 6.668.253.965-2.335 2.884-3.29 2.365-2.2-1.203-4.248-6.353-6.173-7.53-.657-.4-2.27.505-1.494 2.11.874 1.724 4.734 4.39 4.96 6.227.204 1.676-1.72 5.3-2.984 5.3-1.39 0-4.932-4.38-6.038-6.44-.552-.987-2.467-.892-2.668.47-.317 2.046.296 6.375.784 9.057.388 2.54-1.43 2.668-2.403 1.77zM167.93 152.5c-.553.626 1.29 1.85 1.656 1.53.71-.614 3.47-3.758 2.937-4.857-.473-.98-4.266-3.126-4.883-2.063-1.145 1.84 3.575 2.663 2.836 3.202-.364.21-1.662 1.105-2.546 2.19zm6.812-13.778s1.185 4.055 2.15 2.365c.78-1.17-2.15-2.365-2.15-2.365zm1.928 6.452c-.435.237-1.658 1.205-.86 1.72 1.258.745 4.683 1.335 3.944-1.1-.45-1.436 5.165.04 3.797-3.846-.356-1.075-2.05-2.627-2.883-2.846-.53-.14-2.327.847-1.202 1.39.82.426 3.3 1.88 2.378 2.835-1.045.997-1.773-.448-3.073-.215-.655.124-.23 1.985-.597 2.492-.206.282-1.15-.623-1.504-.43zm8.913-15.42c-.71.353-1.978 2.274-2.024 3.162-.028.474.492 1.125.897.923.743-.373 1.892-2.19 1.934-3.026.03-.527-.37-1.28-.81-1.062zm4.632-.494c-1.368-1.672 1.452-4.155 2.72-.807.768 2.1 8.942 12.857 10.614 16.507 1.18 2.47-.045 3.49-1.508 1.72-4.14-5.282-7.536-11.865-11.828-17.42zm8.39.215c1.456-1.58 4.432-4.805 3.63-6.604-.615-1.545-2.423-1.39-2.73-1.034-1.77 2.11 1.255 1.58.82 2.303-.9 1.69-1.8 2.622-2.264 4.25-.107.38.28 1.37.545 1.086z" stroke-width=".973" stroke-linejoin="round" fill-rule="evenodd" stroke="#000" fill="#fff"/>
<path d="M169.156 158.506c-.25.755.753 2.806 1.795 2.958 1.023.076 1.545-2.215 1.216-2.958-.243-.547-2.83-.535-3.01 0zm5.41 7.96c-.655-.706-2.59 1.19-1.025 2.53.88.71 4.095 1.742 4.975.242 1.19-1.93-1.174-8.942-.127-9.868.818-.724 4.607 4.683 6.478 5.072 4.394.61 3.34-7.524 8.075-6.972 3.228.43 3.58-3.602 3.13-6.12-.36-2.416-4.27-5.904-6.07-7.464-2.365-1.97-3.42 1.452-1.935 2.58 1.912 1.53 5.273 4.623 5.808 6.668.253.965-2.335 2.884-3.29 2.365-2.2-1.203-4.248-6.353-6.173-7.53-.657-.4-2.27.505-1.494 2.11.874 1.724 4.734 4.39 4.96 6.227.204 1.676-1.72 5.3-2.984 5.3-1.39 0-4.932-4.38-6.038-6.44-.552-.987-2.467-.892-2.668.47-.317 2.046.296 6.375.784 9.057.388 2.54-1.43 2.668-2.403 1.77zM167.93 152.5c-.553.626 1.29 1.85 1.656 1.53.71-.614 3.47-3.758 2.937-4.857-.473-.98-4.266-3.126-4.883-2.063-1.145 1.84 3.575 2.663 2.836 3.202-.364.21-1.662 1.105-2.546 2.19zm6.812-13.778s1.185 4.055 2.15 2.365c.78-1.17-2.15-2.365-2.15-2.365zm1.928 6.452c-.435.237-1.658 1.205-.86 1.72 1.258.745 4.683 1.335 3.944-1.1-.45-1.436 5.165.04 3.797-3.846-.356-1.075-2.05-2.627-2.883-2.846-.53-.14-2.327.847-1.202 1.39.82.426 3.3 1.88 2.378 2.835-1.045.997-1.773-.448-3.073-.215-.655.124-.23 1.985-.597 2.492-.206.282-1.15-.623-1.504-.43zm8.913-15.42c-.71.353-1.978 2.274-2.024 3.162-.028.474.492 1.125.897.923.743-.373 1.892-2.19 1.934-3.026.03-.527-.37-1.28-.81-1.062zm4.632-.494c-1.368-1.672 1.452-4.155 2.72-.807.768 2.1 8.942 12.857 10.614 16.507 1.18 2.47-.045 3.49-1.508 1.72-4.14-5.282-7.536-11.865-11.828-17.42zm8.39.215c1.456-1.58 4.432-4.805 3.63-6.604-.615-1.545-2.423-1.39-2.73-1.034-1.77 2.11 1.255 1.58.82 2.303-.9 1.69-1.8 2.622-2.264 4.25-.107.38.28 1.37.545 1.086zm105.565 21.907c-.355-1.284-2.348-3.184-2.124.252.397 6.238 8.966 4.266 11.56 2.05 2.356-2.088.312 7.04 3.442 8.018 1.724.553 4.97-1.8 6.566-3.87 4.426-5.744 7.243-13.976 11.5-19.647 1.607-2.217-.88-3.8-1.887-2.035-3.702 6.207-8.3 18.874-13.32 22.164-4.093 2.62-2.88-3.373-3.023-5.173-.18-1.32-1.79-3.262-3.935-1.48-1.503 1.174-3.835 2.128-5.946 1.937-1.225-.068-2.258-.047-2.834-2.213zM221.2 136.57c.878-.626 2.28 2.112 1.29 2.797-.823.548-2.43-2.036-1.29-2.796z" fill-rule="evenodd" fill="#fff"/>
<path d="M325.327 134.76c-1.047-.847 1.03-4.958 2.435-3.345 3.858 4.464 5.65 18.958 6.765 29.806 0 0-1.734 1.448-1.747 1.218 0-5.778-2.322-23.456-7.453-27.676z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M223.536 131.024c-.444.215-1.326-.09-1.063-.467 1.242-1.774 3.89-4.444 5.808-5.377.59-.286 1.623.755 1.267 1.265-1.148 1.64-3.943 3.576-6.01 4.58zm101.79 3.736c-1.046-.847 1.03-4.958 2.436-3.345 3.858 4.464 5.65 18.958 6.765 29.806 0 0-1.734 1.448-1.747 1.218 0-5.778-2.322-23.456-7.453-27.676z" fill-rule="evenodd" fill="#fff"/>
<path d="M327.702 160.082c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M258.063 117.867c.267-1.6-2.59.033-2.64-2.088-.028-1.124 3.12-1.91 4.435-.62 2.222 2.254.56 6.06-3.136 6.297-3.08.136-8.22 4.374-7.44 5.265.89 1.1 8.88 1.827 13.526 1.1 2.877-.404 2.273 2.17-.673 2.517-2.848.327-5.168.023-7.828.86-3.132.894-4.498 5.1-6.238 6.666-.39.273-1.435-1.378-1.038-1.998 1.254-1.962 3.253-4.962 5.452-5.82 1.388-.563-3.826-.74-5.49-1.215-1.32-.398-.937-2.075-.43-3.01.67-1.46 5.585-6.38 7.567-6.3 1.86.078 3.747-.464 3.93-1.658zm-24.873 10.86c-2.147-1.672.577-4.014 2.82-2.378 4.373 3.295-6.52 15.93-12.447 21.833-1.084 1.157-2.036-1.756-.646-3.01 4.25-3.605 8.227-7.91 10.992-12.36.532-.855 1.042-2.7-.72-4.087z" fill-rule="evenodd" fill="#fff"/>
<path d="M238.834 120.65c-1.248-2.868 1.872-3.93 2.34-1.885 2.167 9.42 7.358 16.554 11.31 22.96 1.188 2.003.235 3.197-2.658 1.354-2.002-1.376-4.036-6.383-5.02-6.58-1.784-.33-6.05 8.134-14.777 5.72-2.26-.633-2.11-7.347-2.153-10.31-.095-1.39 1.44-1.76 1.493.137.08 2.734-.003 8.413 3.494 8.604 2.852.16 9.167-3.87 10.5-7.022 1.184-3.24-3.182-9.68-4.53-12.98z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M214.894 119.97c.662.03 2.476 2.38 2.357 3.116-.08.347-1.94-.05-2.507-.532-.42-.356-.25-2.604.152-2.585zm-8.747 17.027c-1.658.905.263 2.69 1.505 1.936 4.66-3.018 11.656-6.19 13.118-12.167.47-2.025 2.35-5.13 4.138-5.822 1.726-.67 4.233 3.124 5.87.14.96-1.707 4.323 1.12 5.134-.707.99-2.205.518-3.42.56-5.53-.073-1.384-1.13-1.797-1.897.443-.4 1.014.07 2.038-.255 2.567-.247.403-1.018.792-1.465.456-.413-.31-.127-1.173-1.116-1.555-.385-.192-1-.352-1.267.14-1.173 2.092-1.823 4.044-3.466 1.82-1.464-1.916-2.205-5.228-3.278-.696-.386 1.6-2.817 3.92-4.25 3.92-1.79 0-1.34-4.713-5.276-3.996-2.022.432-1.882 4.3-1.58 5.73.496 1.988 6.405.56 6.11 1.86-1.01 4.515-7.276 8.807-12.588 11.46zm32.687-16.347c-1.248-2.868 1.872-3.93 2.34-1.885 2.167 9.42 7.358 16.554 11.31 22.96 1.188 2.003.235 3.197-2.658 1.354-2.002-1.376-4.036-6.383-5.02-6.58-1.784-.33-6.05 8.134-14.777 5.72-2.26-.633-2.11-7.347-2.153-10.31-.095-1.39 1.44-1.76 1.493.137.08 2.734-.003 8.413 3.494 8.604 2.852.16 9.167-3.87 10.5-7.022 1.184-3.24-3.182-9.68-4.53-12.98zm5.236-5.917c.492-1.027 3.448-2.19 4.2-2.884.698-.716 1.03.6.733 1.223-.492 1.027-3.044 2.762-4.163 2.81-.602.024-1.07-.53-.77-1.15zm7.006.33c.64-1.803 2.705-4.54 4.126-5.44.73-.46 2.04-.097 1.794.595-.543 1.53-3.07 4.205-4.768 5.465-.516.46-1.3-.2-1.152-.62zm-6.014 4.517c-.428.214-.197 1.126.216 1.264.878.292 2.475.35 3.2-.05 1.05-.648.572-4.634-.835-2.505-.944 1.312-1.633.89-2.58 1.29zm21.292-1.285c.925-.815 1.398-2.18 2.367-3.01.533-.533 1.38.105 1.24 1.39-.12 1.01-1.477 1.883-2.39 2.643-.744.557-1.61-.645-1.215-1.023zm10.53-3.755c1.376-.153 1.718 2.503.214 2.933-.913.305-1.71-2.777-.214-2.934zm-3.464 8.212c-.022 2.287 1.107 2.077 3.26 2 2.092-.08 3.93.053 3.923-2.013-.01-2.143-1.185-4.016-1.53-2.56-.303 1.37-.545 3.61-1.34 2.634-.752-.84-.454-1.023-1.746.354-.717.758-.798-.37-1.23-1.076-.298-.42-1.336.338-1.338.658zm-15.026 11.678c-.514 3.027-.043 7.264 1.506 7.312 1.916.062 5.878-6.617 7.754-10.082 1.125-1.933 3.058-2.27 2.252-.254-1.22 3.113-1.11 9.772-.04 11.728.577 1.054 4.83-.966 5.517-2.467 1.25-2.73.234-7.758.672-10.83.212-2.016 2.057-2.437 1.96-.568-.183 3.342-.5 9.472-.265 12.256.14 1.6 4.716 3.962 5.45-.884.39-3.05 1.96-6.06-.074-9.44-1.262-2.112 1.85-1.847 3.528 1.04 1.174 1.964-.99 5.215-.913 7.73.197 3.865-2.81 6.06-4.992 6.107-1.95.04-3.22-2.357-4.82-2.39-1.772-.114-3.594 2.76-5.06 2.656-5.68-.388-2.672-8.69-4.402-8.79-1.925-.114-4.194 8.135-6.565 7.84-2.336-.28-4.755-6.722-3.782-9.448.88-2.538 2.538-3.132 2.277-1.52z" fill-rule="evenodd" fill="#fff"/>
<path d="M285.895 121.33c-2.77-1.69.175-6.085 1.53-4.54 2.616 3.132 5.253 10.568 7.096 11.182 1.17.39 1.115-5.496 1.94-8.172.53-1.977 2.92-1.33 2.463 1.2-.156.847-3.122 10.463-2.894 10.843 2.054 4.11 4.09 8.28 5.374 12.69.532 1.9-1.75.62-2.024.224-1.46-2.18-4.01-10.51-4.01-10.13-1.174 5.86-1.45 7.59-2.696 12.572-.38 1.595-2.73 1.304-2.2-1.507.51-2.31 3.87-13.674 3.68-14.003-2.64-4.66-5.055-8.35-8.26-10.36z" fill-rule="evenodd" fill="#fff"/>
<path d="M290.897 148.366c-.773-.088-1.97 1.718 1.876 2.428 5.142.93 10.77-.8 12.496-5.843 1.973-6.004 3.28-11.69 4.31-13.836 1.29-2.5 2.938-2.298 1.72-5.948-.857-2.626-2.46-1.834-2.796-.43-.9 3.83-4.31 16.214-5.375 18.495-2.01 4.163-6.058 5.81-12.234 5.137z" fill-rule="evenodd" fill="#fff"/>
<path d="M301.193 128.61c-.55-1.18-1.835-.266-1.606 1.026.137 1.168 1.084 1.803 2.036 1.77 1.127-.04 3.51.038 3.517-1.833.004-1.315-1.03-2.413-1.796-.962-.734 1.315-1.678 1.177-2.15 0zm1.285-4.943c-.395.274-.04 1.736.43 1.72 1.68-.056 4.06-.592 5.335-1.48.373-.26.218-1.142-.314-1.124-1.62.054-4.198.01-5.453.884zm14.266 3.678c1.216-1.9 4.572-2.094 3.365.62-.856 1.87-9.21 18.01-10.35 20.062-1.244 2.308-2.26 1.165-1.378-.632 1.19-2.313 7.98-19.488 8.36-20.05zm2.726 12.457c.044-.352-1.813-.512-1.722 1.29.065 1.334 1.66 1.697 1.935 1.506 2.51-1.826-.533-.916-.214-2.796z" fill-rule="evenodd" fill="#fff"/>
<path d="M327.702 160.082c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M315.81 147.1c-.495.116-.948 1.694.216 1.784 1.064.076 5.235-.372 6.388-.304.745-.028 1.03-1.453-.57-1.378-1.937.098-4.485-.388-6.034-.102zm11.892 12.982c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z" fill-rule="evenodd" fill="#fff"/>
<path d="M343.428 145.25c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/>
<path d="M343.428 145.25c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932zm-85.52 18.997c-1.89.382-1.567 2.81-1.013 3.11.915.427 2.33.606 2.86-2.185.247-1.147.47 5.7 2.983 3.06 1.446-1.597 5.03.29 6.53-1.72 1.074-1.338 1.405-2.272.568-4.25-.243-.6-1.714-.305-1.63 1.154.073 1.23-.873 2.748-2.103 2.49-.597-.11.337-3.01-.263-3.796-.33-.432-.833-.385-1.16.063-.463.626.462 3.406-1.054 3.772-1.914.44-.91-1.86-1.72-2.28-2.605-1.313-2.856.34-4 .582zm14.732-4.67c1.385-.39.953-.39 3.13-2.175.85-.642 1.016 1.238.927 1.982-.158 1.263-1.658.37-2.123 1.483-.682 1.444-.405 4.803-.633 6.17-.154.704-1.28.644-1.39.09-.32-1.67.23-3.302.177-5.388-.017-.71-1.03-1.82-.085-2.165zm-6.5-7.514c-.335 1.51-.31 2.754-.31 3.79.077.836 1.606.297 1.6.19-.075-1.326.226-3.16-.165-3.67-.212-.276-1.047-.594-1.125-.31zm-16.835 4.282c-2.36 2.063-4.547 2.906-6.717 5.514-.887 1.067-.862 2.556-1.392 3.92-.53 1.444-2.24 1.73-2.77 1.427-.885-.582-.756-3.264-1.745-1.82-.837 1.33-1.38 3.16-2.62 3.137-1.12-.023-3.234-2.316-2.162-2.427 3.67-.375 3.624-3.312 4.998-3.505 1.542-.206 1.643 2.425 2.595 1.898.748-.383 1.1-3.448 1.91-4.275 2.49-2.542 4.457-3.885 6.995-5.754 1.284-1.02 2.2.826.91 1.886z" fill-rule="evenodd" fill="#fff"/>
<path d="M250.55 159.498c-.403.464-1.635.388-1.746 1.038-.484 2.41 0 3.633-.53 5.955-.51 2.225-2.052 2.31-1.947.497.14-2.35 2.077-5.666.708-5.894-.91-.214-1.613-1.432-.67-2.034 1.778-1.234 2.733-1.046 3.956-.674.428.13.537.757.23 1.113z" fill-rule="evenodd" fill="#fff"/>
<path d="M238.133 347.453c.815 1.812 2.007 1.732 1.828-.002-.345-2.22-1.016-5.29-1.396-7.955-.216-2.258-2.55-1.822-1.935.537.78 2.547.614 5.34 1.504 7.423zm6.987.117c-.01.918 1.413.834 1.4.108-.148-2.31-.324-5.432.32-6.56.503-.878 2.53-.258 4.41-.43.748-.11.593-2.17-.968-2.04-1.84.165-6.696-.433-6.99 1.288-.422 3.095 1.914-.185 1.828 7.633zm14.09-8.934c1.18.848 1.015 1.952-.43 1.61-1.72-.43-2.88-.29-2.856.653.025.927.75 1.11 1.808 2.137 1.012 1.06-.62.888-1.872 3.06-1.067 1.798 1.11 2.036 3.674 1.355.654-.187 1.513.938-.107 1.862-1.14.61-4.318 1.355-5.11-.952-1.5-3.99 2.514-4.542.823-5.605-.923-.557-1.256-1.395-1.088-2.51.358-2.568 4.184-2.227 5.16-1.612zm5.295 8.797c1.548-2.824 2.614-4.94 3.046-7.337.378-2.165 1.933-2.373 2.26-.538.42 2.437 1.816 4.852 3.51 7.065.992 1.373-1.005 2.58-1.79 1.513-1.438-1.826-1.498-4.37-2.347-4.352-.98.02-2.09 2.836-3.135 4.914-.304.604-2.16-.002-1.542-1.265z" stroke-width=".973" fill-rule="evenodd" stroke="#000" fill="#fff"/>
<path d="M238.133 347.453c.815 1.812 2.007 1.732 1.828-.002-.345-2.22-1.016-5.29-1.396-7.955-.216-2.258-2.55-1.822-1.935.537.78 2.547.614 5.34 1.504 7.423zm6.987.117c-.01.918 1.413.834 1.4.108-.148-2.31-.324-5.432.32-6.56.503-.878 2.53-.258 4.41-.43.748-.11.593-2.17-.968-2.04-1.84.165-6.696-.433-6.99 1.288-.422 3.095 1.914-.185 1.828 7.633zm14.09-8.934c1.18.848 1.015 1.952-.43 1.61-1.72-.43-2.88-.29-2.856.653.025.927.75 1.11 1.808 2.137 1.012 1.06-.62.888-1.872 3.06-1.067 1.798 1.11 2.036 3.674 1.355.654-.187 1.513.938-.107 1.862-1.14.61-4.318 1.355-5.11-.952-1.5-3.99 2.514-4.542.823-5.605-.923-.557-1.256-1.395-1.088-2.51.358-2.568 4.184-2.227 5.16-1.612zm5.295 8.797c1.548-2.824 2.614-4.94 3.046-7.337.378-2.165 1.933-2.373 2.26-.538.42 2.437 1.816 4.852 3.51 7.065.992 1.373-1.005 2.58-1.79 1.513-1.438-1.826-1.498-4.37-2.347-4.352-.98.02-2.09 2.836-3.135 4.914-.304.604-2.16-.002-1.542-1.265zm133.847-82.251c-.11.58 1.454 1.433 1.826.99 1.682-2.015 3.883-5.97 4.334-8.364.133-.697-2.107-1.485-2.586-.913-1.575 1.886-3.1 5.773-3.574 8.287z" fill-rule="evenodd" fill="#fff"/>
</svg>

Before

Width:  |  Height:  |  Size: 89 KiB

-15
View File
@@ -1,15 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-79.698 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(74.717) scale(.9375)">
<path fill="#fff" d="M-120 0h763.27v511.49H-120z"/>
<path d="M-118.31.617h760.88v216.09h-760.88z"/>
<path fill="#0061ff" d="M21.3 203.23h505.01v113.82H21.3z"/>
<path d="M642.75 1.753v510.25H262.03L642.75 1.753z" fill="#e20000"/>
<path d="M-118.69 1.753v510.25h380.72L-118.69 1.753z" fill="#e20000"/>
<path d="M440.37 203.34l-76.31-19.363L428.98 135l-79.726 11.39 41.003-69.475-70.616 41.003 12.53-80.867-47.837 63.783L264.97 26.8l-21.64 76.31-47.837-64.92 13.667 83.145-70.615-43.282 41.003 69.476-77.45-12.53 63.783 47.838-79.727 20.5h354.22z" fill="#ffd600"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 880 B

-767
View File
@@ -1,767 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<path fill-rule="evenodd" fill="#fff" d="M.426.42H403.1v240.067H.427z"/>
<path d="M.426.422L.41 18.44l96.093 59.27 36.155 1.257L.424.422z" fill="#c00"/>
<path d="M41.573.422l116.494 73.046V.422H41.573z" fill="#006"/>
<path d="M173.607.422v93.25H.423v53.288h173.184v93.25h53.286v-93.25h173.185V93.673H226.893V.423h-53.286z" fill="#c00"/>
<path d="M242.435.422V69.25L356.407.955 242.435.422z" fill="#006"/>
<path d="M246.032 76.754l32.054-.31L402.604.955l-33.037.647-123.535 75.154z" fill="#c00"/>
<path d="M401.34 21.09l-95.12 56.62 93.853.42v84.37h-79.93l79.19 51.51 1.163 26.2-42.297-.605-115.763-68.222v68.828h-84.37v-68.827l-108.59 68.643-49.046.185v239.794h799.294V.426l-397.537-.43M.43 27.06l-.42 49.8 84.146 1.266L.43 27.06zM.426 162.497v51.066l79.93-50.533-79.93-.533z" fill="#006"/>
<path d="M308.217 164.606l-33.322-.31 125.597 75.067-.826-17.174-91.453-57.584zM31.637 240.63l117.767-74.225-30.93.247L.423 240.518" fill="#c00"/>
<path d="M525.376 247.8l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M527.406 247.8l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M521.315 249.83l2.03 2.032-2.03-2.03z" fill="#262678"/>
<path d="M523.346 249.83l2.03 2.032-2.03-2.03z" fill="#808067"/>
<path d="M529.436 249.83l2.03 2.032-2.03-2.03z" fill="#58587b"/>
<path d="M454.32 251.862l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M517.255 251.862l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M519.285 251.862l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M457.892 255.536c0 52.457-6.046 111.57 33.052 152.65 8.043 8.453 23.345 27.725 36.462 26.986 13.732-.773 31.39-21.093 39.246-31.045 34.034-44.77 28.624-98.17 29.78-150.134-15.368 6.902-23.022 9.176-36.462 9.136-9.954 1.022-25.31-5.67-34.493-10.045-6 4.007-14.706 8.786-30.35 9.323-18.07.795-23.795-2.267-37.235-6.872z" fill="#cc3"/>
<path d="M531.466 251.862l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M533.497 251.862l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M596.433 251.862l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M456.35 253.892l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M458.38 253.892l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M460.41 253.892l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M513.195 253.892l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M515.225 253.892l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M517.255 253.892l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M525.376 253.892l2.03 2.03-2.03-2.03z" fill="#d0d045"/>
<path d="M533.497 253.892l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M535.527 253.892l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M537.557 253.892l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M590.342 253.892l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M592.372 253.892l2.03 2.03-2.03-2.03z" fill="#53527c"/>
<path d="M594.403 253.892l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M464.47 255.922l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M466.5 255.922l2.03 2.03-2.03-2.03z" fill="#53527c"/>
<path d="M468.53 255.922l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M509.134 255.922l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M511.164 255.922l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M513.195 255.922l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M523.346 255.922l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M462.054 261.24c-1.092 27.557-.254 58.587 4.054 88.07 4.763 15.404 4.126 23.866 11.203 33.098l99.07-.772c5.97-9.712 10.397-24.44 10.968-30.295 5.532-29.776 5.664-62.636 5.796-92.028-9.962 5.296-23.008 9.05-35.67 7.402-10.152-.774-19.53-3.09-30.454-9.264-9.475 5.676-12.778 8.268-28.423 8.93-12.18.6-22.048 1.588-36.543-5.14z" fill="#fff"/>
<path d="M527.406 255.922l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/>
<path d="M529.436 255.922l2.03 2.03-2.03-2.03z" fill="#d9d868"/>
<path d="M537.557 255.922l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M539.587 255.922l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M541.617 255.922l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M543.648 255.922l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M584.252 255.922l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M586.282 255.922l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M588.312 255.922l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M590.342 255.922l2.03 2.03-2.03-2.03m-121.812 2.03l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M470.56 257.952l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M472.59 257.952l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M474.62 257.952l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M476.65 257.952l2.03 2.03-2.03-2.03m26.394 0l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M505.074 257.952l2.03 2.03-2.03-2.03z" fill="#53527c"/>
<path d="M507.104 257.952l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M509.134 257.952l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M519.285 257.952l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M521.315 257.952l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M531.466 257.952l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M533.497 257.952l2.03 2.03-2.03-2.03z" fill="#d9d868"/>
<path d="M543.648 257.952l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M545.678 257.952l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M547.708 257.952l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M574.1 257.952l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M576.13 257.952l2.03 2.03-2.03-2.03z" fill="#32327b"/>
<path d="M578.16 257.952l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M580.19 257.952l2.03 2.03-2.03-2.03z" fill="#808067"/>
<path d="M583.582 258.622l1.352.677-1.352-.678z" fill="#a4a43d"/>
<path d="M460.41 259.982l2.03 2.03-2.03-2.03z" fill="#dddc7a"/>
<path d="M462.44 259.982l2.03 2.03-2.03-2.03z" fill="#d0d045"/>
<path d="M478.01 260.652l1.353.677-1.352-.678z" fill="#a4a43d"/>
<path d="M480.71 259.982l2.032 2.03-2.03-2.03z" fill="#808067"/>
<path d="M482.742 259.982l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M484.772 259.982l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M486.802 259.982l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M498.983 259.982l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M501.013 259.982l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M503.044 259.982l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M515.225 259.982l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M517.255 259.982l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M535.527 259.982l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M537.557 259.982l2.03 2.03-2.03-2.03z" fill="#d9d868"/>
<path d="M549.068 260.652l1.352.677-1.352-.678z" fill="#a4a43d"/>
<path d="M551.768 259.982l2.03 2.03-2.03-2.03z" fill="#808067"/>
<path d="M553.8 259.982l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M555.83 259.982l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M557.86 259.982l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M567.34 260.652l1.352.677-1.352-.678z" fill="#58587b"/>
<path d="M570.04 259.982l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M572.07 259.982l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M574.1 259.982l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M590.342 259.982l2.03 2.03-2.03-2.03z" fill="#dddc7a"/>
<path d="M592.372 259.982l2.03 2.03-2.03-2.03z" fill="#d0d045"/>
<path d="M464.47 262.013l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/>
<path d="M466.5 262.013l2.03 2.03-2.03-2.03z" fill="#e0dea1"/>
<path d="M468.53 262.013l2.03 2.03-2.03-2.03z" fill="#dddc7a"/>
<path d="M509.134 262.013l2.03 2.03-2.03-2.03z" fill="#d9d868"/>
<path d="M511.164 262.013l2.03 2.03-2.03-2.03z" fill="#e5e3af"/>
<path d="M539.587 262.013l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/>
<path d="M541.617 262.013l2.03 2.03-2.03-2.03z" fill="#e1e18c"/>
<path d="M582.22 262.013l2.032 2.03-2.03-2.03z" fill="#d4d456"/>
<path d="M584.252 262.013l2.03 2.03-2.03-2.03z" fill="#e1e18c"/>
<path d="M586.282 262.013l2.03 2.03-2.03-2.03z" fill="#eeedc1"/>
<path d="M472.59 264.043l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M474.62 264.043l2.03 2.03-2.03-2.03z" fill="#e0dea1"/>
<path d="M476.65 264.043l2.03 2.03-2.03-2.03z" fill="#dddc7a"/>
<path d="M478.68 264.043l2.03 2.03-2.03-2.03z" fill="#d0d045"/>
<path d="M503.044 264.043l2.03 2.03-2.03-2.03z" fill="#dddc7a"/>
<path d="M505.074 264.043l2.03 2.03-2.03-2.03z" fill="#e5e3af"/>
<path d="M507.104 264.043l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/>
<path d="M545.678 264.043l2.03 2.03-2.03-2.03z" fill="#eeedc1"/>
<path d="M547.708 264.043l2.03 2.03-2.03-2.03z" fill="#e1e18c"/>
<path d="M549.738 264.043l2.03 2.03-2.03-2.03z" fill="#d4d456"/>
<path d="M574.1 264.043l2.03 2.03-2.03-2.03z" fill="#d9d868"/>
<path d="M576.13 264.043l2.03 2.03-2.03-2.03z" fill="#e1e18c"/>
<path d="M578.16 264.043l2.03 2.03-2.03-2.03z" fill="#eeedc1"/>
<path d="M580.19 264.043l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/>
<path d="M482.742 266.073l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/>
<path d="M484.772 266.073l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M486.802 266.073l2.03 2.03-2.03-2.03z" fill="#eeedc1"/>
<path d="M496.283 266.743l1.352.677-1.352-.677z" fill="#f2f1d2"/>
<path d="M498.983 266.073l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M509.134 266.073l4.06 4.06v-4.06h-4.06z" fill="#fef8f1"/>
<path d="M553.8 266.073l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/>
<path d="M555.83 266.073l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M557.86 266.073l2.03 2.03-2.03-2.03z" fill="#e5e3af"/>
<path d="M561.25 266.743l1.352.677-1.353-.677z" fill="#e5e59d"/>
<path d="M563.95 266.073l2.03 2.03-2.03-2.03z" fill="#e0dea1"/>
<path d="M567.34 266.743l1.352.677-1.352-.677z" fill="#f2f1d2"/>
<path d="M570.04 266.073l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M505.074 268.103l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M507.104 268.103l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M505.074 270.133l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M509.134 270.133l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M505.074 272.164l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M509.134 272.164l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M503.044 274.194l2.03 2.03-2.03-2.03m8.12 0l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M521.315 274.194l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M523.346 274.194l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M531.466 274.194l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M533.497 274.194l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M503.044 276.224l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M511.164 276.224l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M515.225 276.224l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M517.255 276.224l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M519.285 276.224l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M535.527 276.224l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M537.557 276.224l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M503.044 278.254l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M513.195 278.254l2.03 2.03-2.03-2.03m26.392 0l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M541.617 278.254l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M460.41 280.284l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/>
<path d="M503.044 280.284l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M543.648 280.284l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M545.678 280.284l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M503.044 282.315l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M549.738 282.315l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M551.768 282.315l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M501.013 284.345l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M503.044 284.345l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M559.89 284.345l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M561.92 284.345l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M563.95 284.345l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M565.98 284.345l4.06 4.06-4.06-4.06z" fill="#f9d6aa"/>
<path d="M568.01 284.345l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M501.013 286.375l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M529.436 286.375l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M531.466 286.375l2.03 2.03-2.03-2.03zm8.121 0l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M541.617 286.375l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M498.983 288.405l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M525.376 288.405l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M527.406 288.405l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M543.648 288.405l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M545.678 288.405l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M557.86 288.405l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M559.89 288.405l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M561.92 288.405l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M563.95 288.405l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M498.983 290.435l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M523.346 290.435l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M547.708 290.435l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M555.83 290.435l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M496.953 292.466l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M521.315 292.466l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M549.738 292.466l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M555.83 292.466l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M496.953 294.496l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M519.285 294.496l2.03 2.03-2.03-2.03m32.483 0l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M555.83 294.496l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M460.41 296.526l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/>
<path d="M496.953 296.526l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M519.285 296.526l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M551.768 296.526l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M557.86 296.526l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M494.923 298.556l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M517.255 298.556l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M553.8 298.556l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M557.86 298.556l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M494.923 300.586l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M517.255 300.586l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M527.406 300.586l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M529.436 300.586l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M531.466 300.586l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M533.497 300.586l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M553.8 300.586l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M555.83 300.586l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M557.86 300.586l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M494.923 302.617l-2.03 6.09 2.03-6.09z" fill="#faca88"/>
<path d="M515.225 302.617l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M517.255 302.617l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M527.406 302.617l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M535.527 302.617l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M537.557 302.617l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M555.83 302.617l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M557.86 302.617l2.03 2.03-2.03-2.03z" fill="#f90"/>
<path d="M560.56 303.977l.677 1.353-.678-1.353z" fill="#fbead6"/>
<path d="M519.285 304.647l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M521.315 304.647l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M523.346 304.647l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M525.376 304.647l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M527.406 304.647l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M529.436 304.647l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M539.587 304.647l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M541.617 304.647l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M543.648 304.647l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M545.678 304.647l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M549.068 305.317l1.352.677-1.352-.677z" fill="#fae3c9"/>
<path d="M551.768 304.647l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M557.86 304.647l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M470.56 306.677l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M472.59 306.677l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M525.376 306.677l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M529.436 306.677l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M531.466 306.677l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M547.708 306.677l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M549.738 306.677l-2.03 4.06 2.03-4.06z" fill="#fcb144"/>
<path d="M553.8 306.677l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M555.83 306.677l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M557.86 306.677l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M470.56 308.707l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M472.59 308.707l4.06 4.06-4.06-4.06z" fill="#fe9f11"/>
<path d="M474.62 308.707l2.03 2.03-2.03-2.03zm18.273 0l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M494.923 308.707l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M513.195 308.707l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M515.225 308.707l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M517.255 308.707l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M523.346 308.707l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M525.376 308.707l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M533.497 308.707l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M549.738 308.707l2.03 2.03-2.03-2.03z" fill="#fff"/>
<path d="M551.768 308.707l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M559.89 308.707l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M470.56 310.737l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M476.65 310.737l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M486.802 310.737l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M496.953 310.737l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M500.343 311.407l1.353.677-1.353-.677z" fill="#f9d6aa"/>
<path d="M513.195 310.737l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M519.285 310.737l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M535.527 310.737l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M549.738 310.737l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M561.92 310.737l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M563.95 310.737l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M454.32 312.768l2.03 2.03-2.03-2.03z" fill="#53527c"/>
<path d="M472.59 312.768l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M476.65 312.768l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M484.772 312.768l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M488.832 312.768l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M490.862 312.768l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M496.953 312.768l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M498.983 312.768l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M501.013 312.768l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M511.164 312.768l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M537.557 312.768l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M563.95 312.768l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M596.433 312.768l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M460.41 314.798l2.03 2.03-2.03-2.03z" fill="#e5e3af"/>
<path d="M472.59 314.798l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M478.68 314.798l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M484.772 314.798l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M488.832 314.798l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M496.953 314.798l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M511.164 314.798l2.03 2.03-2.03-2.03m28.423 0l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M565.98 314.798l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M474.62 316.828l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M480.71 316.828l2.032 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M482.742 316.828l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M486.802 316.828l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M488.832 316.828l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M498.983 316.828l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M511.164 316.828l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M541.617 316.828l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M568.01 316.828l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M474.62 318.858l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M486.802 318.858l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M498.983 318.858l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M509.134 318.858l2.03 2.03-2.03-2.03m34.514 0l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M570.04 318.858l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M476.65 320.888l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M484.772 320.888l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M501.013 320.888l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M509.134 320.888l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M543.648 320.888l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M570.04 320.888l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M460.41 322.92l2.03 2.03-2.03-2.03z" fill="#d3d079"/>
<path d="M476.65 322.92l2.03 2.03-2.03-2.03zm24.363 0l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M509.134 322.92l2.03 2.03-2.03-2.03m34.514 0l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M572.07 322.92l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M590.342 322.92l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/>
<path d="M597.103 324.28l.678 1.352-.677-1.353z" fill="#58587b"/>
<path d="M461.08 326.31l.677 1.352-.678-1.353z" fill="#d9d868"/>
<path d="M476.65 324.95l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M541.617 324.95l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M543.648 324.95l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M572.07 324.95l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M591.012 326.31l.678 1.352-.678-1.353z" fill="#f2f1d2"/>
<path d="M476.65 326.98l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M539.587 326.98l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M541.617 326.98l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M547.708 326.98l-2.03 4.06 2.03-4.06z" fill="#fdab33"/>
<path d="M549.738 326.98l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M574.1 326.98l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M576.13 326.98l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M596.433 326.98l2.03 2.03-2.03-2.03z" fill="#53527c"/>
<path d="M457.02 330.37l.677 1.352-.678-1.353z" fill="#808067"/>
<path d="M478.68 329.01l2.03 2.03-2.03-2.03m6.092 0l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M507.104 329.01l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M539.587 329.01l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M547.708 329.01l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M551.768 329.01l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M578.16 329.01l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M580.19 329.01l4.062 4.06-4.06-4.06z" fill="#fef8f1"/>
<path d="M591.012 330.37l.678 1.352-.678-1.353z" fill="#e5e59d"/>
<path d="M597.103 330.37l.678 1.352-.677-1.353z" fill="#32327b"/>
<path d="M479.35 332.4l.68 1.352-.68-1.352z" fill="#fcb755"/>
<path d="M486.802 331.04l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M507.104 331.04l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M539.587 331.04l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M543.648 331.04l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M545.678 331.04l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M551.768 331.04l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M580.19 331.04l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M456.35 333.07l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M462.44 333.07l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/>
<path d="M486.802 333.07l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M503.044 333.07l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M505.074 333.07l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M507.104 333.07l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M541.617 333.07l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M543.648 333.07l2.03 2.03-2.03-2.03m10.15 0l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M582.22 333.07l2.032 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M590.342 333.07l2.03 2.03-2.03-2.03z" fill="#dddc7a"/>
<path d="M456.35 335.1l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M462.44 335.1l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M479.35 336.46l.68 1.352-.68-1.352z" fill="#fcb144"/>
<path d="M486.802 335.1l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M507.104 335.1l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M509.134 335.1l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M513.195 335.1l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M515.225 335.1l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M541.617 335.1l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M543.648 335.1l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M553.8 335.1l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M555.83 335.1l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M584.252 335.1l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M590.342 335.1l2.03 2.03-2.03-2.03z" fill="#d9d868"/>
<path d="M456.35 337.13l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M462.44 337.13l2.03 2.03-2.03-2.03z" fill="#e5e3af"/>
<path d="M488.832 337.13l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M509.134 337.13l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M515.225 337.13l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M517.255 337.13l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M539.587 337.13l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M541.617 337.13l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M543.648 337.13l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M555.83 337.13l2.03 2.03-2.03-2.03m16.24 0l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M574.1 337.13l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M576.13 337.13l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M578.16 337.13l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M580.19 337.13l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M584.252 337.13l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M594.403 337.13l2.03 2.03-2.03-2.03z" fill="#808067"/>
<path d="M456.35 339.16l2.03 2.03-2.03-2.03z" fill="#32327b"/>
<path d="M459.05 340.52l.677 1.353-.678-1.353z" fill="#a4a43d"/>
<path d="M462.44 339.16l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M478.68 339.16l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M490.862 339.16l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M511.164 339.16l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M517.255 339.16l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M535.527 339.16l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M537.557 339.16l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M545.678 339.16l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M555.83 339.16l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M572.07 339.16l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M582.22 339.16l2.032 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M584.252 339.16l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M594.403 339.16l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M462.44 341.19l2.03 2.03-2.03-2.03z" fill="#d9d868"/>
<path d="M478.68 341.19l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M492.893 341.19l2.03 2.03-2.03-2.03m18.27 0l2.032 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M517.255 341.19l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M527.406 341.19l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M529.436 341.19l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M531.466 341.19l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M533.497 341.19l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M545.678 341.19l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M588.312 341.19l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M594.403 341.19l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M458.38 343.22l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M462.44 343.22l2.03 2.03-2.03-2.03z" fill="#d0d045"/>
<path d="M494.923 343.22l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M496.953 343.22l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M511.164 343.22l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M519.285 343.22l2.03 2.03-2.03-2.03z" fill="#fcb755"/>
<path d="M521.315 343.22l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M523.346 343.22l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M525.376 343.22l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M541.617 343.22l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M543.648 343.22l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M572.07 343.22l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M588.312 343.22l2.03 2.03-2.03-2.03z" fill="#e0dea1"/>
<path d="M594.403 343.22l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M458.38 345.25l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M464.47 345.25l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M480.71 345.25l2.032 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M498.983 345.25l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M501.013 345.25l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M503.044 345.25l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M505.074 345.25l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M507.104 345.25l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M509.134 345.25l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M511.164 345.25l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M539.587 345.25l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M541.617 345.25l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M570.04 345.25l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M588.312 345.25l2.03 2.03-2.03-2.03z" fill="#e1e18c"/>
<path d="M593.042 346.61l.678 1.353-.678-1.352z" fill="#a4a43d"/>
<path d="M594.403 345.25l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M458.38 347.28l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M464.47 347.28l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M480.71 347.28l2.032 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M535.527 347.28l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M537.557 347.28l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M555.83 347.28l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M570.04 347.28l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M588.312 347.28l2.03 2.03-2.03-2.03z" fill="#d4d456"/>
<path d="M458.38 349.31l2.03 2.03-2.03-2.03z" fill="#32327b"/>
<path d="M464.47 349.31l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M480.71 349.31l2.032 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M482.742 349.31l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M535.527 349.31l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M555.83 349.31l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M570.04 349.31l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M592.372 349.31l2.03 2.03-2.03-2.03z" fill="#808067"/>
<path d="M458.38 351.34l2.03 2.032-2.03-2.03z" fill="#0e0e6e"/>
<path d="M460.41 351.34l2.03 2.032-2.03-2.03z" fill="#a4a43d"/>
<path d="M464.47 351.34l2.03 2.032-2.03-2.03z" fill="#d9d868"/>
<path d="M482.742 351.34l2.03 2.032-2.03-2.03z" fill="#f8dcbb"/>
<path d="M553.8 351.34l2.03 2.032-2.03-2.03z" fill="#f9d6aa"/>
<path d="M568.01 351.34l2.03 2.032-2.03-2.03z" fill="#faca88"/>
<path d="M586.282 351.34l2.03 2.032-2.03-2.03z" fill="#f2f1d2"/>
<path d="M592.372 351.34l2.03 2.032-2.03-2.03z" fill="#58587b"/>
<path d="M460.41 353.372l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M484.772 353.372l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M525.376 353.372l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M527.406 353.372l2.03 2.03-2.03-2.03z" fill="#fff"/>
<path d="M530.796 354.042l1.353.678-1.354-.678z" fill="#fcb144"/>
<path d="M551.768 353.372l-2.03 4.06 2.03-4.06z" fill="#fef8f1"/>
<path d="M553.8 353.372l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M565.98 353.372l-2.03 4.06 2.03-4.06z" fill="#fdab33"/>
<path d="M586.282 353.372l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M592.372 353.372l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M460.41 355.402l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M466.5 355.402l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/>
<path d="M486.802 355.402l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M525.376 355.402l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M527.406 355.402l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M529.436 355.402l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M531.466 355.402l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M551.768 355.402l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M565.98 355.402l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M586.282 355.402l2.03 2.03-2.03-2.03z" fill="#d9d868"/>
<path d="M590.342 355.402l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M592.372 355.402l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M460.41 357.432l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M466.5 357.432l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M488.832 357.432l4.06 4.06-4.06-4.06z" fill="#fae3c9"/>
<path d="M490.862 357.432l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M529.436 357.432l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M547.708 357.432l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M549.738 357.432l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M561.92 357.432l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M563.95 357.432l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M584.252 357.432l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M590.342 357.432l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M460.41 359.462l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M462.44 359.462l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M466.5 359.462l2.03 2.03-2.03-2.03z" fill="#d4d456"/>
<path d="M527.406 359.462l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M545.678 359.462l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M547.708 359.462l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M559.89 359.462l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M584.252 359.462l2.03 2.03-2.03-2.03z" fill="#eeedc1"/>
<path d="M590.342 359.462l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M462.44 361.492l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M468.53 361.492l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/>
<path d="M490.862 361.492l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M523.346 361.492l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M526.046 362.853l.678 1.352-.678-1.352z" fill="#f8dcbb"/>
<path d="M541.617 361.492l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M543.648 361.492l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M555.83 361.492l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M557.86 361.492l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M584.252 361.492l2.03 2.03-2.03-2.03z" fill="#d3d079"/>
<path d="M588.312 361.492l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M590.342 361.492l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M462.44 363.523l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M468.53 363.523l2.03 2.03-2.03-2.03z" fill="#e0dea1"/>
<path d="M488.832 363.523l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M517.255 363.523l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M519.285 363.523l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M521.315 363.523l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M527.406 363.523l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M553.8 363.523l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M588.312 363.523l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M462.44 365.553l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M464.47 365.553l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M468.53 365.553l2.03 2.03-2.03-2.03z" fill="#d4d456"/>
<path d="M486.802 365.553l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M488.832 365.553l2.03 2.03-2.03-2.03m10.15 0l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M501.013 365.553l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M503.044 365.553l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M511.164 365.553l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M513.195 365.553l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M515.225 365.553l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M531.466 365.553l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M533.497 365.553l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M535.527 365.553l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M537.557 365.553l2.03 2.03-2.03-2.03z" fill="#fbc477"/>
<path d="M539.587 365.553l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M549.738 365.553l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M551.768 365.553l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M582.22 365.553l2.032 2.03-2.03-2.03z" fill="#e5e3af"/>
<path d="M588.312 365.553l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M464.47 367.583l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M470.56 367.583l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/>
<path d="M484.772 367.583l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M494.923 367.583l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M496.953 367.583l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M498.983 367.583l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M547.708 367.583l2.03 2.03-2.03-2.03z" fill="#fea522"/>
<path d="M549.738 367.583l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M582.22 367.583l2.032 2.03-2.03-2.03z" fill="#dddc7a"/>
<path d="M586.282 367.583l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M588.312 367.583l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M464.47 369.613l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M467.17 370.973l.678 1.353-.678-1.353z" fill="#a4a43d"/>
<path d="M470.56 369.613l2.03 2.03-2.03-2.03z" fill="#d3d079"/>
<path d="M486.802 369.613l2.03 2.03-2.03-2.03z" fill="#f9d099"/>
<path d="M488.832 369.613l2.03 2.03-2.03-2.03z" fill="#fcb144"/>
<path d="M490.862 369.613l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M492.893 369.613l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M494.923 369.613l2.03 2.03-2.03-2.03z" fill="#fef8f1"/>
<path d="M539.587 369.613l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/>
<path d="M547.708 369.613l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/>
<path d="M580.19 369.613l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/>
<path d="M586.282 369.613l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M472.59 371.643l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M539.587 371.643l2.03 2.03-2.03-2.03z" fill="#fbbe66"/>
<path d="M545.678 371.643l2.03 2.03-2.03-2.03z" fill="#faca88"/>
<path d="M580.19 371.643l2.03 2.03-2.03-2.03z" fill="#e1e18c"/>
<path d="M586.282 371.643l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M466.5 373.674l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M472.59 373.674l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M539.587 373.674l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M543.648 373.674l2.03 2.03-2.03-2.03z" fill="#fdab33"/>
<path d="M578.16 373.674l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M584.252 373.674l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M586.282 373.674l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M466.5 375.704l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M468.53 375.704l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M472.59 375.704l2.03 2.03-2.03-2.03z" fill="#d0d045"/>
<path d="M537.557 375.704l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M541.617 375.704l2.03 2.03-2.03-2.03z" fill="#fe9f11"/>
<path d="M543.648 375.704l2.03 2.03-2.03-2.03z" fill="#fbead6"/>
<path d="M578.16 375.704l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M584.252 375.704l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M468.53 377.734l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M474.62 377.734l2.03 2.03-2.03-2.03z" fill="#e5e3af"/>
<path d="M538.227 379.094l.678 1.352-.678-1.352z" fill="#faca88"/>
<path d="M541.617 377.734l2.03 2.03-2.03-2.03z" fill="#fae3c9"/>
<path d="M576.13 377.734l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M582.22 377.734l2.032 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M584.252 377.734l2.03 2.03-2.03-2.03m-115.722 2.03l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M470.56 379.764l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M474.62 379.764l2.03 2.03-2.03-2.03z" fill="#d0d045"/>
<path d="M476.65 379.764l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/>
<path d="M539.587 379.764l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/>
<path d="M576.13 379.764l2.03 2.03-2.03-2.03z" fill="#e5e59d"/>
<path d="M582.22 379.764l2.032 2.03-2.03-2.03m-111.662 2.03l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M476.65 381.794l2.03 2.03-2.03-2.03z" fill="#8cbf84"/>
<path d="M477.524 381.794c7.05 14.84 31.99 49.848 51.04 49.166 18.5-.662 39.393-34.82 47.567-49.166h-98.606z" fill="#0cf"/>
<path d="M580.19 381.794l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M582.22 381.794l2.032 2.03-2.03-2.03m-111.662 2.03l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M472.59 383.825l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M476.65 383.825l2.03 2.03-2.03-2.03z" fill="#adb333"/>
<path d="M478.68 383.825l2.03 2.03-2.03-2.03z" fill="#1ac5b5"/>
<path d="M574.1 383.825l2.03 2.03-2.03-2.03z" fill="#68b070"/>
<path d="M580.19 383.825l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M472.59 385.855l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M478.68 385.855l2.03 2.03-2.03-2.03z" fill="#7fb15c"/>
<path d="M572.07 385.855l2.03 2.03-2.03-2.03z" fill="#27c2aa"/>
<path d="M578.16 385.855l-2.03 4.06 2.03-4.06z" fill="#a4a43d"/>
<path d="M580.19 385.855l2.03 2.03-2.03-2.03m-107.6 2.03l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M474.62 387.885l4.06 4.06-4.06-4.06z" fill="#a4a43d"/>
<path d="M480.71 387.885l2.032 2.03-2.03-2.03z" fill="#34be9e"/>
<path d="M572.07 387.885l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M578.16 387.885l2.03 2.03-2.03-2.03z" fill="#53527c"/>
<path d="M474.62 389.915l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M480.71 389.915l2.032 2.03-2.03-2.03z" fill="#a2b23d"/>
<path d="M482.742 389.915l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/>
<path d="M570.04 389.915l2.03 2.03-2.03-2.03z" fill="#5bb47c"/>
<path d="M576.13 389.915l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M476.65 391.945l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M482.742 391.945l2.03 2.03-2.03-2.03z" fill="#74b166"/>
<path d="M568.01 391.945l2.03 2.03-2.03-2.03z" fill="#27c2aa"/>
<path d="M574.1 391.945l-2.03 4.06 2.03-4.06z" fill="#a4a43d"/>
<path d="M576.13 391.945l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M476.65 393.976l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M478.68 393.976l4.062 4.06-4.06-4.06z" fill="#a4a43d"/>
<path d="M484.772 393.976l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M565.98 393.976l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/>
<path d="M568.01 393.976l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M574.1 393.976l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M478.68 396.006l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M484.772 396.006l2.03 2.03-2.03-2.03z" fill="#adb333"/>
<path d="M486.802 396.006l2.03 2.03-2.03-2.03z" fill="#27c2aa"/>
<path d="M565.98 396.006l2.03 2.03-2.03-2.03z" fill="#74b166"/>
<path d="M572.07 396.006l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M480.71 398.036l2.032 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M486.802 398.036l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M488.832 398.036l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/>
<path d="M563.95 398.036l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M570.04 398.036l-4.06 6.09 4.06-6.09z" fill="#a4a43d"/>
<path d="M572.07 398.036l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M480.71 400.066l2.032 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M482.742 400.066l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M488.832 400.066l2.03 2.03-2.03-2.03z" fill="#7fb15c"/>
<path d="M561.92 400.066l2.03 2.03-2.03-2.03z" fill="#34be9e"/>
<path d="M570.04 400.066l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/>
<path d="M482.742 402.096l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M484.772 402.096l22.332 22.333-22.332-22.334z" fill="#a4a43d"/>
<path d="M490.862 402.096l2.03 2.03-2.03-2.03z" fill="#74b166"/>
<path d="M559.89 402.096l2.03 2.03-2.03-2.03z" fill="#27c2aa"/>
<path d="M561.92 402.096l2.03 2.03-2.03-2.03z" fill="#adb333"/>
<path d="M568.01 402.096l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M484.772 404.127l2.03 2.03-2.03-2.03z" fill="#32327b"/>
<path d="M492.893 404.127l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M557.86 404.127l-8.122 10.15 8.12-10.15z" fill="#0dc9c1"/>
<path d="M559.89 404.127l2.03 2.03-2.03-2.03z" fill="#adb333"/>
<path d="M565.98 404.127l2.03 2.03-2.03-2.03z" fill="#737370"/>
<path d="M486.802 406.157l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M494.923 406.157l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M557.86 406.157l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M563.95 406.157l-2.03 4.06 2.03-4.06z" fill="#8d8d5b"/>
<path d="M565.98 406.157l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M488.832 408.187l2.03 2.03-2.03-2.03z" fill="#53527c"/>
<path d="M496.953 408.187l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M555.83 408.187l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M563.95 408.187l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M490.862 410.217l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M498.983 410.217l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M553.8 410.217l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M559.89 410.217l-4.06 6.09 4.06-6.09z" fill="#a4a43d"/>
<path d="M561.92 410.217l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M492.893 412.247l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M501.013 412.247l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M551.768 412.247l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M559.89 412.247l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M494.923 414.278l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M503.044 414.278l2.03 2.03-2.03-2.03z" fill="#68b070"/>
<path d="M547.708 414.278l2.03 2.03-2.03-2.03z" fill="#27c2aa"/>
<path d="M549.738 414.278l2.03 2.03-2.03-2.03z" fill="#adb333"/>
<path d="M557.86 414.278l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M496.953 416.308l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M505.074 416.308l2.03 2.03-2.03-2.03z" fill="#74b166"/>
<path d="M545.678 416.308l2.03 2.03-2.03-2.03z" fill="#34be9e"/>
<path d="M547.708 416.308l2.03 2.03-2.03-2.03z" fill="#adb333"/>
<path d="M553.8 416.308l-2.032 4.06 2.03-4.06z" fill="#8d8d5b"/>
<path d="M555.83 416.308l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M498.983 418.338l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M507.104 418.338l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M509.134 418.338l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/>
<path d="M543.648 418.338l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M553.8 418.338l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M501.013 420.368l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M509.134 420.368l2.03 2.03-2.03-2.03z" fill="#a2b23d"/>
<path d="M511.164 420.368l2.03 2.03-2.03-2.03z" fill="#27c2aa"/>
<path d="M541.617 420.368l2.03 2.03-2.03-2.03z" fill="#74b166"/>
<path d="M547.708 420.368l-6.09 8.12 6.09-8.12z" fill="#a4a43d"/>
<path d="M549.738 420.368l2.03 2.03-2.03-2.03z" fill="#808067"/>
<path d="M551.768 420.368l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M503.044 422.398l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M511.164 422.398l2.03 2.03-2.03-2.03z" fill="#adb333"/>
<path d="M513.195 422.398l2.03 2.03-2.03-2.03z" fill="#42bb92"/>
<path d="M537.557 422.398l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/>
<path d="M539.587 422.398l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M547.708 422.398l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M505.074 424.43l2.03 2.03-2.03-2.03z" fill="#1b1b74"/>
<path d="M507.104 424.43l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M515.225 424.43l2.03 2.03-2.03-2.03z" fill="#74b166"/>
<path d="M517.255 424.43l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/>
<path d="M535.527 424.43l2.03 2.03-2.03-2.03z" fill="#34be9e"/>
<path d="M537.557 424.43l2.03 2.03-2.03-2.03z" fill="#adb333"/>
<path d="M545.678 424.43l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M507.104 426.46l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M509.134 426.46l2.03 2.03-2.03-2.03z" fill="#6e6c70"/>
<path d="M511.164 426.46l4.06 4.06-4.06-4.06z" fill="#a4a43d"/>
<path d="M517.255 426.46l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M519.285 426.46l2.03 2.03-2.03-2.03z" fill="#27c2aa"/>
<path d="M533.497 426.46l2.03 2.03-2.03-2.03z" fill="#68b070"/>
<path d="M543.648 426.46l2.03 2.03-2.03-2.03z" fill="#32327b"/>
<path d="M511.164 428.49l2.03 2.03-2.03-2.03z" fill="#49497d"/>
<path d="M521.315 428.49l2.03 2.03-2.03-2.03z" fill="#5bb47c"/>
<path d="M529.436 428.49l2.03 2.03-2.03-2.03z" fill="#27c2aa"/>
<path d="M531.466 428.49l2.03 2.03-2.03-2.03z" fill="#96b247"/>
<path d="M537.557 428.49l-2.03 4.06 2.03-4.06z" fill="#a4a43d"/>
<path d="M539.587 428.49l2.03 2.03-2.03-2.03z" fill="#808067"/>
<path d="M541.617 428.49l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M513.195 430.52l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M515.225 430.52l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/>
<path d="M523.346 430.52l2.03 2.03-2.03-2.03z" fill="#8bb252"/>
<path d="M525.376 430.52l2.03 2.03-2.03-2.03z" fill="#1ac5b5"/>
<path d="M527.406 430.52l2.03 2.03-2.03-2.03z" fill="#5bb47c"/>
<path d="M537.557 430.52l2.03 2.03-2.03-2.03z" fill="#58587b"/>
<path d="M515.225 432.55l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M517.255 432.55l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M519.285 432.55l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M533.497 432.55l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M535.527 432.55l2.03 2.03-2.03-2.03m-16.242 2.03l2.03 2.03-2.03-2.03z" fill="#32327b"/>
<path d="M521.315 434.58l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M529.436 434.58l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M531.466 434.58l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M533.497 434.58l2.03 2.03-2.03-2.03m-12.182 2.03l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M523.346 436.61l2.03 2.03-2.03-2.03z" fill="#667"/>
<path d="M525.376 436.61l2.03 2.03-2.03-2.03z" fill="#a4a43d"/>
<path d="M527.406 436.61l2.03 2.03-2.03-2.03z" fill="#99994e"/>
<path d="M529.436 436.61l2.03 2.03-2.03-2.03z" fill="#32327b"/>
<path d="M525.376 438.64l2.03 2.03-2.03-2.03z" fill="#262678"/>
<path d="M527.406 438.64l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/>
<path d="M529.436 302.617c3.133 7.368 13.176 15.504 15.937 19.492-3.514 3.986-4.216 3.552-3.756 10.96 6.11-6.394 6.22-7.06 10.15-6.09 8.61 8.59 1.542 27.043-5.574 31.055-7.113 4.28-5.822-.148-16.485 5.216 4.89 4.18 10.553-.613 15.182.668 2.516 2.985-1.196 8.424.76 13.546 4.09-.394 3.6-8.653 4.55-11.647 2.99-10.97 20.957-18.623 21.87-28.687 3.79-1.778 7.575-.556 12.182 2.03-2.295-9.428-9.883-9.327-11.918-12.27-4.842-7.4-9.134-15.842-19.475-18.03-7.852-1.664-7.265.5-12.296-2.933-3.127-2.44-12.648-7.053-11.126-3.31z" fill="#f90"/>
<path d="M552.008 310.987a1.636 1.636 0 1 1-3.272-.002 1.636 1.636 0 0 1 3.272.003z" fill-rule="evenodd" fill="#fff"/>
<path d="M504.328 333.876c5.05-6.212 7.553-18.893 9.79-23.197 5.166 1.243 5.11 2.067 11.445-1.8-8.508-2.417-9.15-2.203-10.128-6.13 3.575-11.628 23.192-13.997 30.063-9.58 7.108 4.29 2.59 5.218 12.313 12.14 1.413-6.276-5.47-9.045-6.5-13.736 1.463-3.618 8.006-2.878 11.62-7-2.258-3.432-9.33.86-12.423 1.417-11.097 2.484-26.256-9.827-35.58-5.934-3.343-2.518-4.03-6.437-3.896-11.718-7.264 6.433-3.63 13.095-5.282 16.27-4.28 7.737-9.74 15.475-6.843 25.642 2.197 7.718 3.835 6.19 3.15 12.24-.696 3.905-.326 14.478 2.27 11.384z" fill="#f90"/>
<path d="M501.184 310.008c.8-.422 1.79-.117 2.21.682a1.635 1.635 0 1 1-2.21-.682z" fill-rule="evenodd" fill="#fff"/>
<path d="M545.374 338.236c-7.93-1.11-20.076 3.308-24.916 3.62-1.608-5.065-.874-5.443-7.46-8.864 2.332 8.532 2.847 8.97-.01 11.84-11.798 2.954-23.974-12.61-23.748-20.775-.004-8.302 3.126-4.915 4.02-16.817-6.1 2.037-4.91 9.36-8.39 12.67-3.855.618-6.606-5.364-12.003-6.326-1.77 3.71 5.563 7.542 7.64 9.9 7.864 8.212 5.17 27.554 13.325 33.52-.427 4.164-3.425 6.78-8.014 9.396 9.263 2.89 13.085-3.667 16.656-3.895 8.837-.34 18.283.33 25.486-7.407 5.468-5.874 3.313-6.484 8.845-9.03 3.702-1.422 12.56-7.208 8.57-7.83z" fill="#f90"/>
<path d="M526.574 353.272a1.635 1.635 0 1 1 1.685-2.805 1.637 1.637 0 0 1-1.686 2.805z" fill-rule="evenodd" fill="#fff"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 54 KiB

-5
View File
@@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640">
<path fill="#e41e20" d="M0 0h640v480H0z"/>
<path id="a" d="M272.09 93.316c-4.667-.08-12.413 1.488-12.24 5.07-13-2.228-14.354 3.142-13.59 7.92 1.237-1.896 2.743-2.926 3.9-3.12 1.734-.288 3.548.272 5.4 1.41 1.853 1.138 3.894 2.974 4.8 4.11-4.588 1.097-8.133.39-11.73-.24-1.773-.31-4.254-1.308-5.73-2.34-1.475-1.033-1.94-2.004-4.26-4.38-2.735-2.8-5.647-2.013-4.74 2.34 2.098 4.042 5.603 5.845 10.02 6.57 2.126.35 5.292 1.106 8.88 1.11 3.59.004 7.618-.52 9.81-.06-1.317.827-2.807 2.252-5.76 2.82-3.002.577-7.567-1.786-10.35-2.43.354 2.34 3.307 4.53 9.12 5.67 9.554 2.08 17.492 3.66 22.74 6.51 5.248 2.85 8.557 6.415 10.92 9.21 4.703 5.56 4.95 9.83 5.25 10.77.968 8.885-2.13 13.884-7.89 15.42-2.88.768-7.994-.678-9.87-2.88-1.875-2.2-3.7-5.985-3.18-11.91.506-2.325 3.164-8.38.9-9.63-10.427-5.763-23.09-11.59-32.25-15.06-2.503-.948-4.566 2.455-5.37 3.78-15.562-1.895-29.594-12.426-35.91-23.64-4.3-7.637-11.39.016-10.2 7.23 1.925 8.052 8.06 13.874 15.42 18 7.555 4.16 16.998 8.253 26.55 8.04 5.147.974 5.096 7.632-1.08 8.88-12.077.077-21.712-.225-30.81-9-6.9-6.3-10.784 1.207-8.79 5.46 3.38 13.112 22.086 16.784 41.01 12.54 7.328-1.213 2.94 6.64.87 6.72-7.907 5.67-22.063 11.217-34.53-.06-5.705-4.368-9.562-.696-7.44 5.61 5.532 16.442 26.692 12.99 41.22 4.89 3.74-2.084 7.133 2.765 2.58 6.45-18.067 12.624-27.1 12.768-35.25 7.92-10.202-4.024-11.1 7.293-5.04 11.01 6.736 4.132 23.876 1.034 36.45-6.87 5.39-4.008 5.635 2.26 2.22 4.74-14.922 12.896-20.804 16.292-36.36 14.19-7.713-.6-7.598 8.91-1.53 12.63 8.285 5.08 24.464-3.353 37.02-13.77 5.285-2.824 6.153 1.807 3.54 7.29-7.672 9.68-14.873 15.387-21.81 18.03-6.936 2.643-13.608 2.222-18.33.6-5.76-1.98-6.482 4.007-3.3 9.45 1.92 3.28 9.87 4.332 18.45 1.29 8.582-3.043 17.795-10.18 24.12-18.54 5.504-4.82 4.82 1.654 2.31 6.21-12.666 20.024-24.25 27.452-39.51 26.19-6.765-1.15-8.302 4.112-3.99 8.97 7.572 6.28 17.04 6.082 25.32-.12 7.362-7.098 21.445-22.38 28.83-30.57 5.205-4.15 6.867-.06 5.34 8.37-1.388 4.826-4.865 9.91-14.34 13.62-6.472 3.694-1.612 8.785 3.24 8.88 2.67.05 8.092-3.07 12.24-7.74 5.457-6.145 5.782-10.27 8.79-19.83 2.843-4.66 7.92-2.486 7.92 2.4-2.435 9.576-4.527 11.293-9.45 15.21-4.708 4.42 3.28 5.894 5.97 4.08 7.786-5.25 10.63-12.037 13.23-18.21 1.878-4.456 7.325-2.296 4.8 4.98-6.034 17.388-15.95 24.234-33.3 27.75-1.758.312-2.83 1.35-2.22 3.39 2.33 2.417 4.662 4.61 6.99 7.02-10.728 3.123-19.444 4.878-30.18 8.01-5.267-3.453-9.522-6.383-14.79-9.84-1.39-3.247-2.036-8.203-9.81-4.71-5.267-2.433-7.697-1.54-10.62.9 4.22.157 6.056 1.287 7.71 3.21 2.16 5.69 7.14 6.24 12.24 4.62 3.317 2.794 5.084 4.938 8.4 7.74-6.19-.212-10.504-.322-16.68-.51-5.895-6.33-10.6-5.983-14.82-1.02-3.216.494-4.58.564-6.78 4.47 3.46-1.42 5.64-1.846 7.14-.3 6.268 3.634 10.362 2.823 13.47 0 6.047.37 11.496.683 17.55 1.08-2.224 1.89-5.276 2.893-7.5 4.8-9.082-2.598-13.822.9-15.42 8.31-1.217 2.992-1.787 6.07-1.26 9.27.88-2.926 2.293-5.442 4.89-7.02 8.095 2.057 11.14-1.248 11.58-6.09 3.902-3.183 9.786-3.885 13.68-7.11 4.553 1.458 6.755 2.36 11.34 3.81 1.63 4.955 5.32 6.916 11.31 5.64 7.13.224 5.872 3.15 6.45 5.49 1.895-3.36 1.842-6.63-2.55-9.6-1.598-4.34-5.138-6.316-9.78-3.81-4.37-1.24-5.517-3.023-9.87-4.26 11.01-3.51 18.82-4.298 29.82-7.8 2.754 2.598 4.936 4.463 7.71 6.78 1.462.873 2.862 1.093 3.72 0 6.894-9.977 9.973-18.77 16.38-25.35 2.448-2.722 5.54-6.394 8.97-7.29 1.715-.447 3.818-.174 5.16 1.29 1.343 1.465 2.398 4.164 1.95 8.19-.642 5.78-2.038 7.605-3.66 11.07-1.62 3.466-3.603 5.597-5.64 8.25-4.073 5.307-9.448 8.396-12.63 10.47-6.362 4.15-9.053 2.333-13.98 2.07-6.367.715-8.06 3.816-2.85 8.1 4.872 2.535 9.25 2.848 12.81 2.19 3.056-.565 6.632-4.51 9.18-6.63 2.868-3.313 7.624.616 4.38 4.47-5.893 7.003-11.783 11.62-19.05 11.52-7.636 1.028-6.208 5.32-1.14 7.41 9.12 3.765 17.357-3.286 21.54-7.92 3.228-3.53 5.52-3.67 4.95 1.8-3.204 9.9-7.583 13.726-14.73 14.22-5.797-.538-5.86 3.937-1.62 6.96 9.658 6.685 16.652-4.7 19.92-11.58 2.33-6.207 5.9-3.255 6.27 1.86.05 6.835-3.04 12.415-11.31 19.41 6.328 10.082 13.705 20.336 20.04 30.45l19.205-213.893-19.2-33.794c-2-1.847-8.763-9.815-10.53-10.92-.644-.69-1.036-1.176-.09-1.53.916-.344 3.06-.73 4.5-.99-4.072-4.08-7.56-5.388-15.27-7.62 1.88-.8 3.706-.335 9.24-.6-2.197-3.12-7.104-7.896-13.44-10.2 4.184-2.976 5-3.175 9.15-6.66-7.187-.51-13.325-1.88-19.5-3.75-3.904-1.827-9.327-3.377-11.97-3.42zm.69 8.37c3.8 0 6.15 1.302 6.15 2.88 0 1.606-2.35 2.91-6.15 2.91-3.782 0-6.18-1.423-6.18-3.03 0-1.578 2.398-2.76 6.18-2.76z"/>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 640 0)"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

-5
View File
@@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 0.5160635 3.096381">
<path fill="red" d="M-1.806 0h4.128v1.032h-4.128z"/>
<path fill="#00f" d="M-1.806 1.032h4.128v1.032h-4.128z"/>
<path fill="orange" d="M-1.806 2.064h4.128v1.032h-4.128z"/>
</svg>

Before

Width:  |  Height:  |  Size: 283 B

-13
View File
@@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="red" d="M0 0h640v243.574H0z"/>
<path d="M0 236.428h640v243.574H0z"/>
</g>
<path d="M228.67 148.173c165.22 43.304 58.99 255.64-71.216 167.26l-8.817 13.545c76.628 54.658 152.57 10.66 173.9-46.358 22.297-58.788-7.52-141.48-92.51-150.03l-1.356 15.576z" fill-rule="evenodd" fill="#ffec00"/>
<path fill-rule="evenodd" fill="#ffec00" d="M169.955 330.827l21.73 10.125-10.142 21.696-21.73-10.125zm148.985-99.48h23.98v23.942h-23.98zm-11.684-38.892l22.342-8.694 8.707 22.31-22.342 8.693zm-25.894-29.188l17.035-16.85 16.877 17.01-17.035 16.85zm-26.284-39.787l22.434 8.455-8.468 22.4-22.434-8.455zM316.1 270.01l22.265 8.888-8.902 22.23-22.265-8.887zm-69.876 70.05l22.06-9.388 9.402 22.025-22.058 9.39zm-39.504 2.77h23.98v23.94h-23.98zm41.29-115.937l-20.35-15.006-20.245 14.47 8.034-22.92-20.348-14.956 24.447-.17 8.567-22.55 7.782 22.702 24.7-.242-19.586 15.232 6.996 23.44z"/>
<path d="M336.03 346.376c-1.21.418-6.23 12.39-9.675 18.248 1.797.51 2.56.596 3.625 1.025 13.655 4.8 20.384 9.18 26.186 17.504 2.888 2.79 7.032 2.93 10.198.697 0 0 2.795-1.114 6.43-5.02 2.968-4.52 2.194-8.11-1.384-11.16-10.944-7.952-22.9-13.902-35.38-21.295z" fill-rule="evenodd" fill="#fe0"/>
<path d="M365.247 372.842c0 2.388-1.94 4.324-4.33 4.324s-4.333-1.936-4.333-4.324 1.94-4.325 4.332-4.325 4.33 1.936 4.33 4.325zM343.87 359.17c0 2.388-1.94 4.324-4.33 4.324s-4.333-1.936-4.333-4.324 1.94-4.325 4.332-4.325 4.33 1.936 4.33 4.325zm10.898 6.975c0 2.39-1.94 4.325-4.33 4.325s-4.333-1.936-4.333-4.325 1.94-4.324 4.332-4.324 4.33 1.937 4.33 4.325z" fill-rule="evenodd"/>
<path d="M324.47 363.667c-42.57-24.273-87.31-50.52-129.88-74.796-18.75-11.635-19.683-33.384-7.17-49.875 1.302-2.337 2.836-1.758 3.514-.524 1.463 8.03 5.97 16.325 11.37 21.496 44.693 28.383 87.732 55.804 131.71 85.613-3.448 5.767-6.104 12.32-9.55 18.086z" fill-rule="evenodd" fill="#fe0"/>
<path fill-rule="evenodd" fill="#ffec00" d="M297.174 305.457l17.85 15.986-16.01 17.824-17.85-15.986z"/>
<path d="M331.54 348.82L206.58 273.3m109.53 58.093l-42.24-27.28m18.21 42.687l-42.75-24.755" stroke="#000" stroke-width="3.05" fill="none"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

-6
View File
@@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="480" width="640">
<path fill-rule="evenodd" fill="#3a7dce" d="M-85.333 0h682.67v512h-682.67z"/>
<path d="M111.82 240.35c-3.08-6.3-3.08-6.3-3.08-12.596-1.54 0-1.828.296-2.72.048-.89-.245-1.226 5.808-4.113 4.626-.48-.59 2.07-4.968-.698-6.788-.89-.593.216-4.184-.17-5.76 0 0-3.512 1.87-6.16-4.722-1.3-1.723-3.08 1.574-3.08 1.574s.77 2.017-.624 2.51c-1.973-1.477-3.418-.703-5.92-2.732-2.502-2.03.53-4.354-4.235-6.076 3.082-7.873 3.082-6.3 10.78-9.447-4.62-3.15-4.62-3.15-7.698-7.874-4.62-1.574-6.16-3.148-10.78-6.297-6.16-7.874-9.24-23.618-9.24-34.64 3.9-3.69 9.24 12.596 16.94 17.32l10.78 4.723c6.16 3.148 7.7 6.296 12.32 9.446l13.86 4.724c6.16 4.723 9.24 11.022 13.86 12.596 5.005 0 5.97-2.948 7.574-3.13 9.053-.476 13.674-1.668 15.478-4.448 1.828-2.214 6.207 1.28 18.527-3.444l-1.538-6.3s3.272-2.754 7.7-1.573c-.12-2.878-.41-10.553 3.95-14.016-2.648-2.84-.87-4.877-.87-4.877s2.454-2.412 2.742-3.69c-1.298-6.94 1.127-7.046 1.67-9.088.544-2.04-2.094-1.342-1.35-4.156.742-2.814 5.203-3.482 5.8-5.8.6-2.32-1.27-3.482-1.163-4.035.963-2.215.146-7.43 0-9.448 8.278-2.264 10.974-9.152 13.86-6.298 1.54-9.448 3.08-12.596 12.32-12.596 1.3-2.903-3.37-5.364-1.54-6.298 3.08-.394 5.438-.197 9.05 4.576 1.14 1.512 1.346-2.215 2.5-2.608 1.155-.394 3.92-.4 4.33-2.264.435-1.92 1.06-4.428 2.6-7.577 1.3-2.56 2.31.984 3.465 6.003 6.497.246 21.175 1.722 27.334 3.444 4.62 1.23 7.7-1.23 12.126-1.722 3.272 3.346 6.352.836 8.085 7.97 2.446 3.85 6.45.346 7.316 1.477 5.15 14.514 22.86 4.723 24.206 4.97 2.26 0 5.023 6.49 6.803 6.328 2.894-.498 2.075-2.516 4.6-1.704-.673 5.462 4.96 11.76 4.96 15.844 0 0 1.37.69 2.64-.523 1.27-1.21 2.436-4.323 3.566-4.25 2.696.394 3.788.748 6.894 1.303 8.35 2.917 12.603 3.575 15.846 5.07 1.51 2.823 2.97 4.268 6.03 3.74 2.526 1.736.683 4.01 2.175 4.157 3.08-1.575 4.09-3.297 7.17-1.722 3.08 1.574 6.16 4.724 7.7 7.873 0 1.574-1.54 7.872 0 17.32.77 3.148 1.143 5.645 4.45 11.046-.878 5.548 4.164 14.884 4.164 17.246 0 3.148-2.456 4.773-3.996 7.92 6.16 4.725 0 12.597-3.08 17.32 23.1 4.725 12.32 14.172 30.8 9.448-4.62 11.022-2.984 10.137 1.636 21.16-9.24 6.298-.192 8.216-6.35 16.088-.386.493 3.655 6.84 9.334 6.84-1.54 12.596-6.16 7.873-4.62 26.767-12.127-.244-7.22 14.123-15.4 12.597.48 9.005 4.668 9.792 3.08 18.894-6.16 1.576-6.16 1.576-9.24 6.3l-4.62-1.575c-1.54 7.873-4.62 9.447 0 17.32 0 0-5.967.197-7.7 0-.144 2.707 2.648 3.445 3.08 6.298-.24 1.132-8.758 6.1-15.4 6.3-1.73 3.886 4.62 8.02 4.236 9.987-7.22 1.427-10.395 10.48-10.395 10.48s3.705 1.526 3.08 3.15c-1.972-1.477-3.08-1.575-6.16-1.575-1.54.394-5.293-.096-8.892 6.114-3.95 1.33-5.814.85-8.81 4.9-1.327-3.86-3.235.037-5.568 1.534-2.33 1.5-5.47 5.226-5.893 5.067.097-1.082 1.444-5.02 1.444-5.02l-7.7 1.576-.948.097c-.606.06-.444-4.596-1.903-4.427-1.46.17-5.634 5.857-7.057 6.035-1.42.18-1.87-1.808-3.095-1.635-1.224.173-3.61 6-4.478 6.153-.867.155-4.306-3.54-7.253-3.025-15.16 5.463-17.567-10.775-19.924-1.622-3.176-1.722-2.626-.723-5.853.142-2.06.543-2.247-2.783-4.078-2.732-3.664.106-3.47 3.65-5.47 2.59-1.634-7.38-11.5-6.053-12.463-9.2-.782-3.285 4.275-3.27 5.91-5.495 1.25-3.21-1.306-4.43 3.77-7.527 6.613-4.574 2.81-6.3 3.97-9.736 2.074-4.964 2.086-6.175.354-10.554 0 0-5.15-14.17-6.16-14.17-3.08-.886-3.08 5.214-7.604 6.888-9.24 3.148-25.552-7.972-28.392-7.972-2.597.05-14.632 2.914-14.178-3.222-1.8 5.966-8.416 1.402-8.824 1.402-6.16 0-3.802 4.87-7.94 4.674-1.88-.64-20.838-1.77-20.838-1.77v3.148l-12.32-6.3-10.78-3.147c-9.24-3.15-4.62-11.023-20.02-6.3v-9.447h-7.7c3.08-18.895 0-9.447-1.54-26.767l-6.16 1.575c-6.16-8.512 8.566-6.888-4.62-12.595 0 0 .242-9.4-3.08-6.3-.673.395 1.54 4.725 1.54 4.725-12.32-1.574-15.4-4.724-15.4-17.32 0 0 10.155 1.477 9.24 0-1.443-2.36-3.32-17.713-2.983-18.747-.145-2.067 9.432-7.282 7.58-12.253 1.178-.443 4.642-.49 4.642-.49" fill="#fff"/>
<path stroke-linejoin="round" d="M527.55 303.26c-.493 1.108-.405 2.215.104 3.005.914-1.37.142-2.003-.104-3.005z" stroke="#fff" stroke-linecap="round" stroke-width="2.249" fill="none"/>
<path stroke-linejoin="round" d="M131.51 178.94s-2.583-.316-2.003 1.95c.844-1.74 1.95-1.844 2.003-1.95zm.58-5.27c-1.423.053-3.163-.21-2.583 2.055.844-1.74 2.53-1.95 2.583-2.055zm9.72 30.2s2.214-.158 1.634 2.108c-.844-1.74-1.58-2.002-1.634-2.108z" stroke="#fff" stroke-width="2.108" fill="none"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

-143
View File
@@ -1,143 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#00c4ff" d="M0-.01h640.003v160.43H0z"/>
<path fill="#fff" d="M0 159.763h640.003v160.43H0z"/>
<path fill="#00c4ff" d="M0 319.536h640.003v160.43H0z"/>
</g>
<path d="M382.49 221.33c0 14.564-11.864 26.37-26.5 26.37s-26.498-11.806-26.498-26.37 11.864-26.37 26.5-26.37 26.498 11.806 26.498 26.37z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.6452 0 0 1.62 -265.894 -116.567)" stroke="#000" stroke-width=".625" fill="#ffd600"/>
<path d="M364.43 195.28c-4.34-1.05-8.785.422-10.185.318-1.925 0-6.79-1.68-10.185 0m-5.35 4.892c4.305-3.01 9.115 1.086 10.394.315 3.492-2.294 6.736-1.868 10.08.21 2.155 1.272 5.914-3.71 10.29.315" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".5" fill="none"/>
<path d="M333.88 205.63c2.275-1.855 9.694-1.925 17.324 2.414 1.155-.28 1.89-1.084.945-2.204-5.74-1.995-12.425-4.515-18.585-2.625-1.68 1.19-1.26 1.96.315 2.415z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".5" fill="#efc000"/>
<path d="M333.88 205.63c2.275-1.855 9.694-1.925 17.324 2.414 1.155-.28 1.89-1.084.945-2.204-5.74-1.995-12.425-4.515-18.585-2.625-1.68 1.19-1.26 1.96.315 2.415z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 0 0 1.231 768.984 -28.912)" stroke="#000" stroke-width=".5" fill="#efc000"/>
<path stroke-linejoin="round" d="M330.84 211.83c7.525-4.83 17.464-2.31 21.63.315-6.09-1.155-6.196-1.68-10.606-1.785-3.115.106-7.7-.21-11.024 1.47z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="#f0bf00"/>
<path d="M348.06 211.3c-3.675 7.665-10.08 7.77-14.594-.42" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="none"/>
<path d="M308.78 234.09c-1.383 1.514-4.77 2.413-7.564 2.01s-3.937-1.96-2.553-3.474c1.384-1.514 4.77-2.413 7.565-2.01s3.937 1.96 2.553 3.474z" fill-rule="evenodd" fill-opacity=".368"/>
<path d="M301.898 232.147c.143.353-.297.82-.984 1.045s-1.358.12-1.5-.23c-.144-.354.297-.822.983-1.046s1.36-.12 1.5.23z" fill-rule="evenodd" fill="gold"/>
<path d="M349.18 224.5c-4.24 7.127 1.537 2.1 2.475 4.164 1.65 1.913 3.3 1.462 4.276 0 .977-1.65 7.128 3.113 2.927-3.938" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M341.64 236.31c3.638-.413 9.753-3.188 11.93-.9 1.874-2.063 8.476.6 12.714.9-3.076 1.875-9.302.6-12.265 2.588-2.89-1.763-9.267-.15-12.38-2.588z" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-linecap="round" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M347.5 239.58c5.514 2.25 6.752 1.913 12.716.225-1.238 3.264-4.398 3.95-6.19 3.826-1.857-.12-4.388.114-6.526-4.05z" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -119.922 -28.068)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" transform="matrix(-.908 -.861 -.8884 .88 837.014 353.18)" stroke="#000" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" transform="matrix(.889 .8794 -.9075 .8614 204.616 -258.71)" stroke="#000" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" transform="matrix(-.0073 -1.231 -1.2703 .007 601.74 676.9)" stroke="#000" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" transform="matrix(-1.1653 -.49 -.5057 1.1292 835.787 164.23)" stroke="#000" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" transform="matrix(-.905 -.864 -.8915 .877 827.91 348.79)" stroke="#000" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" transform="matrix(-.4964 -1.133 -1.1693 .481 748.115 528.492)" stroke="#000" stroke-width=".625" fill="none"/>
<path d="M349.18 224.5c-4.24 7.127 1.537 2.1 2.475 4.164 1.65 1.913 3.3 1.462 4.276 0 .977-1.65 7.128 3.113 2.927-3.938" stroke-opacity=".082" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="none"/>
<path stroke-linejoin="round" d="M341.64 236.31c3.638-.413 9.753-3.188 11.93-.9 1.874-2.063 8.476.6 12.714.9-3.076 1.875-9.302.6-12.265 2.588-2.89-1.763-9.267-.15-12.38-2.588z" stroke-opacity=".082" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-linecap="round" stroke-width=".625" fill="#f0bf00"/>
<path stroke-linejoin="round" d="M347.5 239.58c5.514 2.25 6.752 1.913 12.716.225-1.238 3.264-4.398 3.95-6.19 3.826-1.857-.12-4.388.114-6.526-4.05z" stroke-opacity=".082" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="#f0bf00"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.908 -.861 -.8884 .88 837.014 353.18)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.889 .8794 -.9075 .8614 204.616 -258.71)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.0073 -1.231 -1.2703 .007 601.74 676.9)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-1.1653 -.49 -.5057 1.1292 835.787 164.23)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.905 -.864 -.8915 .877 827.91 348.79)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.4964 -1.133 -1.1693 .481 748.115 528.492)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(0 -1.231 1.2703 0 41.183 668.378)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 0 0 1.231 770.68 -28.276)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.908 -.861 .8884 .88 -196.843 353.81)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.889 .8794 .9075 .8614 435.564 -258.39)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.0073 -1.231 1.2703 .007 38.068 676.9)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.1653 -.49 .5057 1.1292 -195.68 164.874)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.905 -.864 .8915 .877 -188.602 348.79)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.4964 -1.133 1.1693 .481 -107.76 528.492)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.908 -.861 .8884 .88 -196.843 353.81)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.889 .8794 .9075 .8614 435.564 -258.39)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.0073 -1.231 1.2703 .007 38.068 676.9)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(1.1653 -.49 .5057 1.1292 -195.68 164.874)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.905 -.864 .8915 .877 -188.602 348.79)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.4964 -1.133 1.1693 .481 -107.76 528.492)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(0 1.231 -1.2703 0 598.48 -184.42)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 -1.231 -131 512.223)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.908 .861 -.8884 -.88 836.514 130.14)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.889 -.8794 -.9075 -.8614 204.116 742.347)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.0073 1.231 -1.2703 -.007 601.612 -192.956)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.1653 .49 -.5057 -1.1292 835.352 319.092)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.905 .864 -.8915 -.877 828.282 135.16)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.4964 1.133 -1.1693 -.481 747.437 -44.55)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.908 .861 -.8884 -.88 836.514 130.14)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.889 -.8794 -.9075 -.8614 204.116 742.347)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.0073 1.231 -1.2703 -.007 601.612 -192.956)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-1.1653 .49 -.5057 -1.1292 835.352 319.092)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.905 .864 -.8915 -.877 828.282 135.16)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.4964 1.133 -1.1693 -.481 747.437 -44.55)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 0 0 -1.231 759.526 511.997)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(0 1.231 1.2703 0 40.634 -194.91)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.8884 -.88 .908 -.861 434.918 742.67)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.9075 .8614 .889 -.8794 -196.835 129.834)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 -.007 .0073 -1.231 768.322 515.032)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.5057 -1.1292 1.1653 -.49 239.93 741.54)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.8915 -.877 .905 -.864 429.72 734.68)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.1693 -.481 .4964 -1.133 615.186 656.337)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.8884 -.88 .908 -.861 434.918 742.67)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.9075 .8614 .889 -.8794 -196.835 129.834)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-1.2703 -.007 .0073 -1.231 768.322 515.032)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.5057 -1.1292 1.1653 -.49 239.93 741.54)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.8915 -.877 .905 -.864 429.72 734.68)" stroke="#000" stroke-width=".625" fill="gold"/>
<path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-1.1693 -.481 .4964 -1.133 615.186 656.337)" stroke="#000" stroke-width=".625" fill="gold"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.2703 0 0 1.231 -130.216 -27.957)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.2703 0 0 1.231 -131.217 -25.465)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.4064 0 0 1.231 -176.307 -23.11)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.4064 0 0 1.231 -177.588 -20.892)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.6786 0 0 1.231 -267.194 -18.537)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.86 0 0 1.231 -326.593 -16.183)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.7693 0 0 1.231 -297.676 -13.552)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.724 0 0 1.231 -282.503 -10.92)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.7693 0 0 1.231 -297.39 -8.426)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(2.223 0 0 1.231 -444.825 -5.517)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.9053 0 0 1.231 -341.188 -2.192)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -341.045 .162)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -340.044 3.348)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -339.902 6.12)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -338.186 9.167)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -336.47 11.66)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -334.9 14.57)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -333.04 17.34)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -331.753 19.97)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -329.038 23.165)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.225 0 0 1.231 -104.597 26.07)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -341.045 .162)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -340.044 3.348)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -339.902 6.12)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -338.186 9.167)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -336.47 11.66)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -334.9 14.57)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -333.04 17.34)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -331.753 19.97)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -329.038 23.165)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.225 0 0 1.231 -103.975 25.828)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.2703 0 0 1.231 769.71 -28.594)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.2703 0 0 1.231 770.71 -26.1)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.4064 0 0 1.231 815.79 -23.746)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.4064 0 0 1.231 817.08 -21.53)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.6786 0 0 1.231 906.69 -19.175)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.86 0 0 1.231 966.086 -16.82)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.7693 0 0 1.231 937.163 -14.188)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.724 0 0 1.231 921.99 -11.555)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.7693 0 0 1.231 936.888 -9.062)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-2.223 0 0 1.231 1084.31 -6.153)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 980.676 -2.828)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 980.53 -.474)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 979.53 2.712)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 979.385 5.482)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 977.674 8.53)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 975.963 11.025)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 974.382 13.933)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 972.525 16.71)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 971.25 19.34)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 968.523 22.52)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.225 0 0 1.231 744.08 25.425)" stroke="#000" stroke-width="1pt" fill="#00699d"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 980.53 -.474)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 979.53 2.712)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 979.385 5.482)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 977.674 8.53)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 975.963 11.025)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 974.382 13.933)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 972.525 16.71)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 971.25 19.34)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 968.523 22.52)" stroke="#000" stroke-width="1pt" fill="none"/>
<path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.225 0 0 1.231 744.08 25.425)" stroke="#000" stroke-width="1pt" fill="none"/>
<path stroke-linejoin="round" d="M330.84 211.83c7.525-4.83 17.464-2.31 21.63.315-6.09-1.155-6.196-1.68-10.606-1.785-3.115.106-7.7-.21-11.024 1.47z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 0 0 1.231 770.29 -29.23)" stroke="#000" stroke-width=".625" fill="#f0bf00"/>
<path d="M348.06 211.3c-3.675 7.665-10.08 7.77-14.594-.42" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -97.703 -29.548)" stroke="#000" stroke-width=".625" fill="none"/>
<path d="M341.925 233.537c-1.43 1.45-4.93 2.31-7.815 1.924s-4.067-1.874-2.637-3.324c1.43-1.45 4.928-2.31 7.815-1.924s4.067 1.876 2.637 3.325z" fill-rule="evenodd" fill-opacity=".368"/>
<path d="M335.073 231.518c.142.352-.298.82-.985 1.045s-1.358.12-1.5-.232c-.144-.35.297-.82.983-1.044s1.36-.12 1.503.232z" fill-rule="evenodd" fill="gold"/>
</svg>

Before

Width:  |  Height:  |  Size: 34 KiB

-33
View File
@@ -1,33 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g clip-path="url(#a)">
<path fill="#006" d="M-374-16H650v512H-374z"/>
<path d="M-374 240L650 496V-16L-374 240z" fill-rule="evenodd" fill="#bd1021"/>
<path d="M650 11.43v457.14L-264.29 240 650 11.43z" fill-rule="evenodd" fill="#fff"/>
<g stroke="#000">
<path stroke-linejoin="round" d="M478 297.4s-6.392-5.23 1.163-13.658c-4.068-3.486-.29-10.17-.29-10.17s-6.975-2.615.29-13.366c-5.23-3.487-2.906-11.333-2.906-11.333s-17.144-6.393-.87-12.494c-13.368 5.81-25.863-7.848-25.863-7.848l-19.468.582c-3.302-16.172-28.97-2.127-9.888-48.52-4.94-.872-10.46-2.324-15.982 1.744-5.522 4.067-21.212 12.784-30.51 4.067s6.1-21.212 6.392-21.502c.29-.29 20.63-10.75 23.536-17.725-.29-5.23-6.682-9.298-.872-20.63 6.683-10.753 47.65-20.923 66.26-24.41 9.007-4.068 13.076-11.914 13.076-11.914l2.034 7.555s41.262-12.205 43.296-18.016.872 5.23.872 5.23c16.272-1.453 36.903-15.4 39.81-9.008 13.656-2.615 39.81-14.238 39.81-14.238s9.006-.29 2.613 9.59c4.068 6.392-1.162 11.913-1.452 11.913-.29 0 1.743 6.394-3.487 9.88 1.745 5.522-3.197 9.88-3.197 9.88s2.326 6.684-6.973 10.17c.872 5.812-5.23 6.975-5.23 6.975s.872 6.102-3.196 8.717c0 4.65-4.65 6.974-4.65 6.974s2.906 1.743-1.163 4.65c-4.067 2.905-46.2 28.766-46.2 28.476 0-.29 30.8 5.52 32.834 6.683s25.28 16.564 25.28 16.564l-23.537 29.056s-26.15-2.905-27.312-1.452 5.52 2.034 6.973 4.358c1.455 2.324 3.78 7.847 8.428 7.265 4.65-.582-8.717 8.427-17.434 9.3 0 3.195 11.04 3.485 13.947.87 2.907-2.615-6.973 7.555-8.136 9.008s13.077-2.034 13.077-2.034-2.324 9.59-14.818 12.496c4.94 8.136 2.905 13.367 2.614 13.367s-8.136-8.137-15.69-6.684c2.033 7.845 8.136 15.108 9.88 16.272 1.742 1.162-13.658.87-15.692-3.488s-3.778 10.46 1.743 15.11c-6.392.29-11.914-3.487-11.914-3.487s-3.776 8.717-1.162 13.077c2.617 4.36-9.006-8.718-9.006-8.718l-22.084 9.3-4.94-8.428z" fill-rule="evenodd" stroke-width="1.761" fill="#9c3900"/>
<path d="M307.325 280.1c.518 0 32.082-.518 46.572-8.797 7.244 11.384 17.076 19.146 17.076 19.146l4.658-16.56s11.385.518 12.42 3.106c-1.553 3.103-2.07 7.243-2.07 7.243s7.76.518 8.28 1.552c.516 1.035-2.07 9.83-2.07 9.83l33.116 7.763s2.587-12.936 5.175-11.384c2.588 1.554 13.972 17.595 30.013 18.63s17.076-13.455 17.076-13.455l3.62 2.07s6.728-14.487 7.763-14.487 2.588 2.07 11.384 2.07c2.587 3.104 3.623 10.347 3.623 10.347s-9.833 9.833-6.728 17.595 3.623 5.69 3.623 5.69l71.408 17.077s3.624 5.693-2.586 8.798c0 .517-71.927-16.56-71.927-16.56s-6.728 7.762-11.902 6.21-1.552 3.105-1.552 3.105l77.618 6.21s5.692 7.244 1.552 9.314c-5.174.517-83.827-5.174-83.827-5.174s-4.66 9.83-9.833 1.552c-3.62 5.69-7.762-1.552-7.762-1.552s-6.726 5.174-7.762-.52c-5.692 4.14-9.314-2.585-9.314-2.585l-33.118-2.07-2.07 3.104s5.692 1.55-3.105 5.174c-8.796 3.622 52.78 2.07 54.333 2.587 1.552.52-4.14 5.176-4.14 5.176s31.566 2.07 37.257-4.657c5.692-6.73-2.07 8.795-2.07 8.795s24.84-1.034 24.84-2.07-.52 7.763-17.595 6.727c10.35 6.728 23.285 10.867 23.285 10.867s-12.936 3.104-27.942-.518c2.586 6.727 13.972 12.936 13.972 12.936s-8.28 7.245-26.91-10.35c5.176 9.315 1.036 12.938.52 11.902-.52-1.035-9.315-13.97-30.013-18.628 12.936 8.28 7.243 11.902 7.243 11.902s-6.726-11.902-17.593 0c-4.14-10.867-20.18-17.076-39.844-18.112-6.21-7.243-9.83-5.174-24.32-9.314-8.28-9.313-20.18-19.663-20.18-19.663s.517-13.97 14.488-12.42c1.552 4.658 1.552 3.106 1.552 3.106s15.524-5.692 20.18 2.07c6.728-11.902 16.042-1.78 17.595 2.36 4.458.654 26.907 1.262 26.907 1.262s-2.588-4.657-1.035-4.14c1.552.518 13.97-4.656 13.454-6.208-.517-1.553-1.034-6.727 1.035-6.21 2.07.517-17.593-2.588-28.46 5.693-3.622-3.623-1.035-13.455-1.035-13.455l-32.08-6.726-1.554 8.28s-9.314 1.55-8.796-.518c.517-2.07-2.07 7.243-2.07 7.243s-12.42-3.104-12.42-3.62 3.623-18.63 3.623-18.112c0 .518-10.35 1.035-24.838 11.902-4.14-12.936-36.74-30.012-36.74-30.53z" fill-rule="evenodd" stroke-width="1.878" fill="#ffc221"/>
<path d="M385.98 284.763l-6.727 30.013m12.935-18.63l-2.07 9.83m35.189-2.068l-3.105 9.314m60.546 53.808c-.517 0-16.558 2.07-18.63 1.554-2.068-.517 25.357 8.28 25.357 11.9m-35.705-9.818s-16.04-10.348-18.628-9.314c-2.587 1.035 16.04-.517 17.594-2.07m-32.086-.52s-16.558.517-18.11-1.035 16.04 11.384 19.145 10.35m-33.118-16.569c-.518 0-11.385-4.14-16.04-5.176 4.138 4.14 7.243 9.833 17.592 11.902m2.588-13.446c-.518-1.035-20.698-7.245-20.698-10.35 4.656 1.553 11.383 3.622 17.592 2.07m110.221-15.528l-2.07 9.314" stroke-width="1.878" fill="none"/>
<path d="M347.688 237.67s-21.734 18.628 0 29.494c1.034-7.244 2.587-8.278 2.587-8.278s18.11 6.726 28.977-9.315c-4.657-6.725-12.937-4.138-12.937-4.138s-17.076 0-18.628-7.76z" fill-rule="evenodd" stroke-width="1.878" fill="#ffc221"/>
<path d="M365.8 245.954l-15.006 12.936m61.222 76.91s3.46 3.814.354 8.47m72.45-4.652l-5.692.52m-40.881-3.633l10.35 1.552m17.486-28.162s.29 10.46-8.427 10.17c-8.717-.29-5.812.29-5.812.29" stroke-width="1.878" fill="none"/>
<path d="M472.774 308.148s3.487 1.162 2.616 3.778c-.872 2.614.87 10.17-9.298 17.434-10.753 2.324-9.59-9.007-9.59-9.007" stroke-width="1.878" fill="none"/>
<path d="M476.55 311.346s6.392-3.777 7.264 2.325c.87 6.102-5.23 17.435-9.59 19.18-4.358 1.742-9.297-.292-8.717-3.197m18.889-15.688s5.813-4.65 7.555 1.452c1.745 6.103-4.648 19.76-7.264 20.05m7.837-20.051s2.907-1.453 4.94.29m-14.237 20.629c-1.162.29-6.102.58-7.845-3.196m-18.3-6.975c-.29 0-6.102.292-6.102.292m28.472 22.67l-.58-9.59-2.325-3.195-4.068 4.068s-.583 9.59-2.326 10.46m2.327-10.76c-.292-.58-3.198-6.1-3.198-6.1l-4.94 6.1s-.58 8.72-2.324 9.592m2.318-9.887c0-.29-2.034-5.81-2.034-5.81s-5.81 3.196-6.392 5.52c-.58 2.325-.872 8.717-2.325 9.3m2.327-10.461s.582-5.23-1.162-5.23c-1.742 0-9.59 7.265-9.88 13.657" stroke-width="1.878" fill="none"/>
<path stroke-linejoin="round" d="M348.402 237.825s2.905-2.906 3.777-6.392c.87-3.487-1.163-7.265 2.324-10.46 3.487-3.198 49.397-22.666 53.176-26.444 3.777-3.778 10.75-11.914 11.623-13.658.87-1.743 3.487 8.717-4.36 13.367 8.428-2.326 13.95-4.94 17.435-3.78-3.487 4.94-12.785 13.078-17.144 13.078 10.17-3.778 19.47-6.975 22.084-4.94 2.615 2.034-12.495 12.204-18.597 12.785 10.17-2.615 23.83-6.683 25.572-2.325-5.52 1.744-3.78 3.195-15.11 9.59-1.453 1.163-8.717 1.452-8.717 1.452 8.717-.872 20.63-4.36 21.792 2.034-6.973 2.615-9.588 6.102-15.4 7.555-5.81 1.453-19.178 4.067-27.315 7.264-8.136 3.196-20.05 12.495-20.05 12.495s-25.86.87-25.86.58c0-.29-4.94-11.914-5.23-12.205z" fill-rule="evenodd" stroke-width="1.878" fill="#fff"/>
<path d="M360.605 235.797s.29-5.81 2.906-7.845c2.616-2.034 15.693-6.975 18.6-11.333 2.904-4.36-4.36 7.554-3.198 10.75m-13.077-.292s6.393 2.326 4.94 7.265" stroke-width="1.878" fill="none"/>
<path d="M373.39 230.422a4.794 4.794 0 1 1-9.59.001 4.794 4.794 0 0 1 9.591-.001z" stroke-width="1.631" fill="none"/>
<path d="M570.116 220.104l50.27 9.59s5.52-6.394 2.615-9.88c7.556-1.743 5.522-11.623 5.522-11.623s8.717-3.776 1.452-12.495c4.942-4.94-1.162-8.717-1.162-8.717s2.034-8.717-4.36-9.59c1.745-6.972-11.04-9.297-11.04-9.297s-26.443 7.265-45.04 7.847c6.102 6.102-2.325 9.88-2.325 9.88s4.94 3.486 3.487 6.392c-1.453 2.905.872 6.1-5.52 8.136 8.426 3.778-.873 10.17-.873 10.17s9.3 6.392 6.976 9.588z" fill-rule="evenodd" stroke-width="1.878" fill="#fff"/>
<path d="M565.17 209.356s44.46 5.23 46.494 5.23 9.88 2.616 11.333 5.23m-55.502-13.081l61.893 1.453m-61.598-2.903s58.698-3.487 62.766-9.59m-61.032-3.195s58.988-6.394 59.57-5.522m-61.599-1.744s57.244-9.007 57.825-7.555m-221.127-29.347s18.016 19.76 16.272 33.126" stroke-width="1.878" fill="none"/>
<path d="M419.303 170.997s5.81 8.426 8.136 9.298 22.665 2.034 23.827 10.752c1.162 5.52-4.358 3.777-3.486 7.845 1.453 5.23 15.11 11.913 29.93 4.068m-13.655 4.07s12.203 18.017 30.22-1.45m-9.301 7.847s14.82 7.845 27.023-12.495M496.3 215.16s7.264 6.102 22.376-2.033m20.927-8.137s22.375 4.647 23.828 6.1m-15.404-11.032c.29 0 15.692.582 15.692.582m-25.285-9.303s26.733-1.743 30.22 3.778m-41.842-12.205s37.486 1.453 39.228 3.487m-30.804 34.863s6.393-1.743 7.265-.87m-21.788 16.562s8.426 7.265 19.18 4.068m-14.533 8.146s9.59 4.358 20.923 1.742m-17.723 5.512s9.588 6.393 15.98 5.23m-20.334-1.44s6.683 4.94 6.973 7.555m-16.269-1.751s2.033 10.46 9.298 14.237m-14.244-9.589s-3.196 13.658 4.94 22.084M501.54 281.41c0 .29-.58 6.393-.29 6.975m-52.015-59.857l15.692-.872s5.81-2.324 1.742-6.1m2.034 3.494c.292 0 14.82 1.16 18.598 5.52 3.778 4.358 8.428 13.075 11.042 14.53 2.616 1.45 3.197-.583 3.197-.583m-6.395-2.325s-7.845 13.368-1.743 17.436m-2.624-2.616s-6.973 9.3-1.453 13.948m-1.449-1.17s-5.52 9.008 1.163 15.11m-3.599-39.003c-.376.375-6.75 4.874-9 3.75m2.25 10.493s2.625 2.624 4.875 2.25M479 273.776l4.19 2.872m-3.626 7.566l3.624 2.186m-69.255-144.7s7.64 3.974 13.75 0c6.112-3.97 35.446-18.943 43.085-21.388 7.638-2.445 11.917-16.5 13.445-22.61M478.41 114.2l42.78-12.527s7.027-5.806 7.332-16.5m-3.062 11.611s42.778-4.278 42.778-20.167m-6.715 10.999S606.44 75.393 610.72 70.81" stroke-width="1.878" fill="none"/>
<path d="M436.233 151.48s27.195-14.057 31.473-15.584c4.277-1.528 14.055-13.75-.61-13.75" stroke-width="1.878" fill="none"/>
<path d="M449.376 156.98c.306 0 22.305-14.363 29.64-16.196 3.972-5.5 1.833-11.305-4.89-10.083" stroke-width="1.878" fill="none"/>
<path d="M480.846 137.118c.612-.306 11.918-.612 7.945 8.25-5.802 4.278-30.86 16.806-30.86 16.806m17.111-34.529l47.67-15.89s3.973-8.25-1.832-9.472m39.727-14.363c0 .307 6.112 3.668 2.445 9.168-6.722 3.973-38.5 11.612-38.5 11.612m84.331-25.667L563.965 95.56m41.551-2.443l-39.11 11.917m35.758-2.139l-34.53 10.39m28.106-.613c-.917 0-25.667 7.64-25.667 7.64m20.173 0l-15.89 6.417m11.917 2.138c-.61 0-13.75 5.805-13.75 5.805m9.777 1.223l-12.22 5.805m-8.867 7.335s1.528.61 1.222 2.445m-32.087 14.36s5.195 1.834.306 6.723c-2.444 3.36-9.472 2.445-13.75 8.556m46.76-83.724s6.418 1.528 1.528 9.778c-12.834 4.89-38.807 12.833-38.807 12.833s-1.22 2.14-4.582 3.973c-3.36 1.832-40.334 12.22-40.334 12.22m84.336-29.332s7.028 3.056 0 8.25c-7.945 4.584-35.75 13.14-35.75 13.14s-.307 2.444-1.528 3.36c-1.223.917-37.89 13.14-37.89 13.14" stroke-width="1.878" fill="none"/>
<path d="M567.636 115.116s7.334 2.14.917 8.25c-7.64 4.584-32.084 12.834-32.084 12.834s-2.445 3.056-6.418 4.278c-3.972 1.222-29.333 11.61-29.333 11.61m68.75-28.721c2.14.917 7.945 1.834.917 7.334-8.25 3.667-28.417 11.612-28.417 11.612l-1.834 3.36-32.083 13.75m63.249-27.805s3.054 3.667-3.668 7.945c-7.334 3.972-23.222 10.083-23.222 10.083m23.226-9.473s3.36 2.14-.915 5.195c-4.89 2.444-24.14 12.528-24.14 12.528l-12.528 8.25" stroke-width="1.878" fill="none"/>
<path d="M523.63 112.06c0 .307 5.194 4.584 3.36 9.473 4.584 3.362 3.667 7.028 3.667 7.028s6.416 3.668 5.5 8.863c6.417 1.528 6.11 5.194 6.11 5.194l-2.138 3.36s6.415-.304.916 7.946c3.36 1.833 1.834 3.972 1.834 3.972m-1.839-3.666c-.917 0-22.305 7.944-27.806 12.833" stroke-width="1.878" fill="none"/>
<path d="M489.41 144.757s6.418-.306 5.502 6.722c7.334-2.445 5.805 4.583 5.805 4.583s8.555-3.362 7.028 7.333c5.5-1.222 4.583 4.278 4.583 4.278s4.89-.306 4.89 2.444c3.36-3.055 7.028-1.527 7.028-1.527s2.444-3.36 5.805-2.444m-34.836-14.972c0 .61-28.723 16.5-28.723 16.5m34.218-11.307l-21.696 13.445m29.034-6.722c0 .305-18.945 11.306-18.945 11.306m23.227-7.028s-13.444 11-16.5 10.39m21.08-7.028s-7.64 5.805-14.057 8.555m22.001-11s2.444 3.056-12.833 11" stroke-width="1.878" fill="none"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

-6
View File
@@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<g fill-rule="evenodd">
<path fill="#fff" d="M640 480H0V0h640z"/>
<path fill="#df0000" d="M640 480H0V319.997h640zm0-319.875H0V.122h640z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 241 B

-9
View File
@@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<g stroke-width="1pt">
<path fill="#006" d="M0 0h640v480H0z"/>
<path d="M0 0v27.95L307.037 250h38.647v-27.95L38.647 0H0zm345.684 0v27.95L38.647 250H0v-27.95L307.037 0h38.647z" fill="#fff"/>
<path d="M144.035 0v250h57.614V0h-57.615zM0 83.333v83.333h345.684V83.333H0z" fill="#fff"/>
<path d="M0 100v50h345.684v-50H0zM155.558 0v250h34.568V0h-34.568zM0 250l115.228-83.334h25.765L25.765 250H0zM0 0l115.228 83.333H89.463L0 18.633V0zm204.69 83.333L319.92 0h25.764L230.456 83.333H204.69zM345.685 250l-115.228-83.334h25.765l89.464 64.7V250z" fill="#c00"/>
<path d="M299.762 392.523l-43.653 3.795 6.013 43.406-30.187-31.764-30.186 31.764 6.014-43.406-43.653-3.795 37.68-22.364-24.244-36.495 40.97 15.514 13.42-41.713 13.42 41.712 40.97-15.515-24.242 36.494m224.444 62.372l-10.537-15.854 17.81 6.742 5.824-18.125 5.825 18.126 17.807-6.742-10.537 15.854 16.37 9.718-18.965 1.65 2.616 18.85-13.116-13.793-13.117 13.794 2.616-18.85-18.964-1.65m16.368-291.815l-10.537-15.856 17.81 6.742 5.824-18.122 5.825 18.12 17.807-6.74-10.537 15.855 16.37 9.717-18.965 1.65 2.616 18.85-13.116-13.793-13.117 13.794 2.616-18.85-18.964-1.65m-89.418 104.883l-10.537-15.853 17.808 6.742 5.825-18.125 5.825 18.125 17.808-6.742-10.536 15.853 16.37 9.72-18.965 1.65 2.615 18.85-13.117-13.795-13.117 13.795 2.617-18.85-18.964-1.65m216.212-37.929l-10.558-15.854 17.822 6.742 5.782-18.125 5.854 18.125 17.772-6.742-10.508 15.854 16.362 9.718-18.97 1.65 2.608 18.85-13.118-13.793-13.117 13.793 2.61-18.85-18.936-1.65m-22.251 73.394l-10.367 6.425 2.914-11.84-9.316-7.863 12.165-.896 4.605-11.29 4.606 11.29 12.165.897-9.317 7.863 2.912 11.84" fill-rule="evenodd" fill="#fff"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

-186
View File
@@ -1,186 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h288v216H0z"/>
</clipPath>
</defs>
<g transform="scale(2.2222)" clip-path="url(#a)">
<path fill="#39c" d="M0 0v216h324V0H0z"/>
<path fill="#ff0" d="M0 144v12h324v-12H0zm0 24v12h324v-12H0z"/>
</g>
<path fill="#9cc" d="M142.647 28.067l2.952 2.952-2.953-2.953zm-2.952 5.903l2.952 2.953-2.952-2.952m5.904 0l2.95 2.953-2.95-2.952z"/>
<path fill="#ccf" d="M139.695 36.923l2.952 2.952-2.952-2.952m5.904 0l2.95 2.952-2.95-2.952z"/>
<path fill="#6cc" d="M136.743 42.827l2.952 2.952-2.952-2.953z"/>
<path fill="#c66" d="M142.647 42.827l2.952 2.952-2.953-2.953z"/>
<path fill="#6cc" d="M148.55 42.827l2.953 2.952-2.952-2.953z"/>
<path fill="#ccf" d="M136.743 45.78l2.952 2.95-2.952-2.95zm11.807 0l2.953 2.95-2.952-2.95z"/>
<path fill="#fcc" d="M139.695 48.73l2.952 2.954-2.952-2.953m5.904 0l2.95 2.954-2.95-2.953z"/>
<path fill="#6cc" d="M133.79 51.684l2.953 2.952-2.952-2.952z"/>
<path d="M142.16 34.065l-20.695 78.45-78.68 21.367 78.453 20.476 20.922 78.45 20.918-78.45 78.452-20.922-78.452-20.922-20.918-78.45z" stroke="#fff" stroke-width="3.69" fill="#c00"/>
<path fill="#6cc" d="M151.503 51.684l2.952 2.952-2.952-2.952z"/>
<path fill="#9cf" d="M133.79 54.636l2.953 2.952-2.952-2.952m17.713 0l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M136.743 57.588l2.952 2.952-2.952-2.952m11.808 0l2.953 2.952-2.952-2.952z"/>
<path fill="#69c" d="M130.838 60.54l2.953 2.952-2.952-2.952z"/>
<path fill="#c33" d="M137.726 62.51l.984 1.967-.984-1.968m11.808 0l.984 1.967-.984-1.968z"/>
<path fill="#69c" d="M154.455 60.54l2.952 2.952-2.952-2.952z"/>
<path fill="#9cf" d="M130.838 63.492l2.953 2.952-2.952-2.952m23.617 0l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M133.79 66.444l2.953 2.952-2.952-2.952m17.713 0l2.952 2.952-2.952-2.952z"/>
<path fill="#69c" d="M127.886 69.396l2.952 2.952-2.952-2.952zm29.521 0l2.952 2.952-2.953-2.952z"/>
<path fill="#9cc" d="M127.886 72.348l2.952 2.952-2.952-2.952m29.52 0l2.953 2.952-2.953-2.952z"/>
<path fill="#cff" d="M127.886 75.3l2.952 2.952-2.952-2.952m29.52 0l2.953 2.952-2.953-2.952z"/>
<path fill="#69c" d="M124.934 78.252l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M130.838 78.252l2.953 2.952-2.952-2.952m23.617 0l2.952 2.952-2.952-2.952z"/>
<path fill="#69c" d="M160.36 78.252l2.95 2.952-2.95-2.952z"/>
<path fill="#9cc" d="M124.934 81.204l2.952 2.953-2.952-2.952z"/>
<path fill="#c33" d="M131.82 83.174l.986 1.967-.985-1.966m23.618 0l.984 1.967-.984-1.966z"/>
<path fill="#9cc" d="M160.36 81.204l2.95 2.953-2.95-2.952z"/>
<path fill="#cff" d="M124.934 84.157l2.952 2.952-2.952-2.953m35.425 0l2.95 2.952-2.95-2.953z"/>
<path fill="#fcc" d="M127.886 87.11l2.952 2.95-2.952-2.95m29.52 0l2.953 2.95-2.953-2.95z"/>
<path fill="#9cc" d="M121.982 90.06l2.952 2.953-2.952-2.952z"/>
<path fill="#c33" d="M128.87 92.03l.984 1.968-.985-1.968m29.52 0l.985 1.968-.985-1.968z"/>
<path fill="#9cc" d="M163.31 90.06l2.954 2.953-2.953-2.952z"/>
<path fill="#ccf" d="M121.982 93.013l2.952 2.952-2.952-2.952m41.33 0l2.952 2.952-2.953-2.952z"/>
<path fill="#fcc" d="M124.934 95.965l2.952 2.952-2.952-2.952m35.425 0l2.95 2.952-2.95-2.952z"/>
<path fill="#9cc" d="M119.03 98.917l2.952 2.952-2.952-2.953z"/>
<path fill="#c33" d="M125.917 100.886l.984 1.968-.983-1.968m35.425 0l.985 1.968-.985-1.968z"/>
<path fill="#9cc" d="M166.264 98.917l2.952 2.952-2.952-2.953z"/>
<path fill="#ccf" d="M119.03 101.87l2.952 2.95-2.952-2.95m47.234 0l2.952 2.95-2.952-2.95z"/>
<path fill="#fcc" d="M121.982 104.82l2.952 2.953-2.952-2.952m41.33 0l2.952 2.953-2.953-2.952z"/>
<path fill="#9cc" d="M116.078 107.773l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M121.982 107.773l2.952 2.952-2.952-2.952m41.33 0l2.952 2.952-2.953-2.952z"/>
<path fill="#9cc" d="M169.216 107.773l2.952 2.952-2.952-2.952m-61.994 2.952l2.952 2.953-2.952-2.952z"/>
<path fill="#ccf" d="M110.174 110.725l2.952 2.953-2.952-2.952m64.946 0l2.952 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M178.072 110.725l2.952 2.953-2.952-2.952m-79.707 2.952l2.952 2.952-2.952-2.952z"/>
<path fill="#ccf" d="M101.317 113.678l2.953 2.952-2.953-2.952z"/>
<path fill="#fcc" d="M113.126 113.678l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M116.078 113.678l2.952 2.952-2.952-2.952m53.138 0l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M172.168 113.678l2.952 2.952-2.952-2.952z"/>
<path fill="#ccf" d="M183.976 113.678l2.952 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M186.928 113.678l2.952 2.952-2.952-2.952z"/>
<path fill="#69c" d="M86.557 116.63l2.952 2.952-2.953-2.952z"/>
<path fill="#9cc" d="M89.51 116.63l2.95 2.952-2.95-2.952z"/>
<path fill="#cff" d="M92.46 116.63l2.953 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M104.27 116.63l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M109.19 117.613l1.97.984-1.97-.984m67.9 0l1.967.984-1.968-.984z"/>
<path fill="#fcc" d="M181.024 116.63l2.952 2.952-2.952-2.952z"/>
<path fill="#cff" d="M192.833 116.63l2.952 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M195.785 116.63l2.952 2.952-2.952-2.952z"/>
<path fill="#69c" d="M198.737 116.63l2.952 2.952-2.953-2.952M77.7 119.582l2.953 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M80.653 119.582l2.952 2.952-2.952-2.952z"/>
<path fill="#cff" d="M83.605 119.582l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M95.413 119.582l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M100.334 120.565l1.968.984-1.968-.985m85.61 0l1.97.984-1.97-.985z"/>
<path fill="#fcc" d="M189.88 119.582l2.953 2.952-2.953-2.952z"/>
<path fill="#cff" d="M201.69 119.582l2.95 2.952-2.95-2.952z"/>
<path fill="#9cc" d="M204.64 119.582l2.953 2.952-2.952-2.952z"/>
<path fill="#69c" d="M207.593 119.582l2.952 2.952-2.952-2.952m-138.75 2.952l2.953 2.952-2.952-2.952z"/>
<path fill="#9cf" d="M71.796 122.534l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M86.557 122.534l2.952 2.952-2.953-2.952z"/>
<path fill="#c33" d="M91.478 123.517l1.968.984-1.968-.983m103.324 0l1.967.984-1.968-.983z"/>
<path fill="#fcc" d="M198.737 122.534l2.952 2.952-2.953-2.952z"/>
<path fill="#9cf" d="M213.497 122.534l2.952 2.952-2.953-2.952z"/>
<path fill="#69c" d="M216.45 122.534l2.95 2.952-2.95-2.952z"/>
<path fill="#6cc" d="M59.988 125.486l2.952 2.952-2.952-2.952z"/>
<path fill="#9cf" d="M62.94 125.486l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M74.75 125.486l2.95 2.952-2.95-2.952zm135.795 0l2.952 2.952-2.952-2.952z"/>
<path fill="#9cf" d="M222.353 125.486l2.953 2.952-2.953-2.952z"/>
<path fill="#6cc" d="M225.306 125.486l2.952 2.952-2.952-2.952m-174.174 2.952l2.952 2.952-2.952-2.952z"/>
<path fill="#ccf" d="M54.084 128.438l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M65.892 128.438l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M70.813 129.42l1.968.985-1.967-.984m144.653 0l1.968.985-1.968-.984z"/>
<path fill="#fcc" d="M219.4 128.438l2.954 2.952-2.953-2.952z"/>
<path fill="#ccf" d="M231.21 128.438l2.952 2.952-2.952-2.952z"/>
<path fill="#6cc" d="M234.162 128.438l2.952 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M42.275 131.39l2.952 2.952-2.952-2.952z"/>
<path fill="#ccf" d="M45.227 131.39l2.953 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M57.036 131.39l2.952 2.952-2.952-2.952zm171.222 0l2.952 2.952-2.952-2.952z"/>
<path fill="#ccf" d="M240.066 131.39l2.952 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M243.018 131.39l2.952 2.952-2.952-2.952M36.37 134.342l2.953 2.952-2.952-2.952z"/>
<path fill="#c66" d="M51.132 134.342l2.952 2.952-2.952-2.952zm183.03 0l2.952 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M248.922 134.342l2.953 2.952-2.953-2.952m-206.647 2.952l2.952 2.953-2.952-2.953z"/>
<path fill="#ccf" d="M45.227 137.294l2.953 2.953-2.952-2.953z"/>
<path fill="#fcc" d="M57.036 137.294l2.952 2.953-2.952-2.953m171.222 0l2.952 2.953-2.952-2.953z"/>
<path fill="#ccf" d="M240.066 137.294l2.952 2.953-2.952-2.953z"/>
<path fill="#9cc" d="M243.018 137.294l2.952 2.953-2.952-2.953z"/>
<path fill="#6cc" d="M51.132 140.247l2.952 2.952-2.952-2.953z"/>
<path fill="#ccf" d="M54.084 140.247l2.952 2.952-2.952-2.953z"/>
<path fill="#fcc" d="M65.892 140.247l2.952 2.952-2.952-2.953z"/>
<path fill="#c33" d="M70.813 141.23l1.968.984-1.967-.984m144.653 0l1.968.984-1.968-.984z"/>
<path fill="#fcc" d="M219.4 140.247l2.954 2.952-2.953-2.953z"/>
<path fill="#ccf" d="M231.21 140.247l2.952 2.952-2.952-2.953z"/>
<path fill="#6cc" d="M234.162 140.247l2.952 2.952-2.952-2.953M59.988 143.2l2.952 2.95-2.952-2.95z"/>
<path fill="#9cf" d="M62.94 143.2l2.952 2.95-2.952-2.95z"/>
<path fill="#fcc" d="M74.75 143.2l2.95 2.95-2.95-2.95zm135.795 0l2.952 2.95-2.952-2.95z"/>
<path fill="#9cf" d="M222.353 143.2l2.953 2.95-2.953-2.95z"/>
<path fill="#6cc" d="M225.306 143.2l2.952 2.95-2.952-2.95z"/>
<path fill="#69c" d="M68.844 146.15l2.952 2.953-2.952-2.952z"/>
<path fill="#9cf" d="M71.796 146.15l2.952 2.953-2.952-2.952z"/>
<path fill="#fcc" d="M86.557 146.15l2.952 2.953-2.953-2.952z"/>
<path fill="#c33" d="M91.478 147.134l1.968.984-1.968-.984m103.324 0l1.967.984-1.968-.984z"/>
<path fill="#fcc" d="M198.737 146.15l2.952 2.953-2.953-2.952z"/>
<path fill="#9cf" d="M213.497 146.15l2.952 2.953-2.953-2.952z"/>
<path fill="#69c" d="M216.45 146.15l2.95 2.953-2.95-2.952M77.7 149.104l2.953 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M80.653 149.103l2.952 2.952-2.952-2.952z"/>
<path fill="#cff" d="M83.605 149.103l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M95.413 149.103l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M100.334 150.086l1.968.984-1.968-.984m85.61 0l1.97.984-1.97-.984z"/>
<path fill="#fcc" d="M189.88 149.103l2.953 2.952-2.953-2.952z"/>
<path fill="#cff" d="M201.69 149.103l2.95 2.952-2.95-2.952z"/>
<path fill="#9cc" d="M204.64 149.103l2.953 2.952-2.952-2.952z"/>
<path fill="#69c" d="M207.593 149.103l2.952 2.952-2.952-2.952m-121.036 2.952l2.952 2.952-2.953-2.952z"/>
<path fill="#9cc" d="M89.51 152.055l2.95 2.952-2.95-2.952z"/>
<path fill="#cff" d="M92.46 152.055l2.953 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M104.27 152.055l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M109.19 153.038l1.97.984-1.97-.984m67.9 0l1.967.984-1.968-.984z"/>
<path fill="#fcc" d="M181.024 152.055l2.952 2.952-2.952-2.952z"/>
<path fill="#cff" d="M192.833 152.055l2.952 2.952-2.952-2.952z"/>
<path fill="#9cc" d="M195.785 152.055l2.952 2.952-2.952-2.952z"/>
<path fill="#69c" d="M198.737 152.055l2.952 2.952-2.953-2.952z"/>
<path fill="#9cc" d="M98.365 155.007l2.952 2.952-2.952-2.953z"/>
<path fill="#ccf" d="M101.317 155.007l2.953 2.952-2.953-2.953z"/>
<path fill="#fcc" d="M113.126 155.007l2.952 2.952-2.952-2.953z"/>
<path fill="#c33" d="M116.078 155.007l2.952 2.952-2.952-2.953m53.138 0l2.952 2.952-2.952-2.953z"/>
<path fill="#fcc" d="M172.168 155.007l2.952 2.952-2.952-2.953z"/>
<path fill="#ccf" d="M183.976 155.007l2.952 2.952-2.952-2.953z"/>
<path fill="#9cc" d="M186.928 155.007l2.952 2.952-2.952-2.953m-79.706 2.952l2.952 2.95-2.952-2.95z"/>
<path fill="#ccf" d="M110.174 157.96l2.952 2.95-2.952-2.95m64.946 0l2.952 2.95-2.952-2.95z"/>
<path fill="#9cc" d="M178.072 157.96l2.952 2.95-2.952-2.95m-61.994 2.95l2.952 2.953-2.952-2.952z"/>
<path fill="#c33" d="M121.982 160.91l2.952 2.953-2.952-2.952m41.33 0l2.952 2.953-2.953-2.952z"/>
<path fill="#9cc" d="M169.216 160.91l2.952 2.953-2.952-2.952z"/>
<path fill="#fcc" d="M121.982 163.863l2.952 2.952-2.952-2.952m41.33 0l2.952 2.952-2.953-2.952z"/>
<path fill="#ccf" d="M119.03 166.815l2.952 2.953-2.952-2.953z"/>
<path fill="#c33" d="M125.917 168.784l.984 1.968-.983-1.968m35.425 0l.985 1.968-.985-1.968z"/>
<path fill="#ccf" d="M166.264 166.815l2.952 2.953-2.952-2.953z"/>
<path fill="#9cc" d="M119.03 169.768l2.952 2.952-2.952-2.952m47.234 0l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M124.934 172.72l2.952 2.952-2.952-2.952m35.425 0l2.95 2.952-2.95-2.952z"/>
<path fill="#ccf" d="M121.982 175.672l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M128.87 177.64l.984 1.97-.985-1.97m29.52 0l.985 1.97-.985-1.97z"/>
<path fill="#ccf" d="M163.31 175.672l2.954 2.952-2.953-2.952z"/>
<path fill="#9cc" d="M121.982 178.624l2.952 2.952-2.952-2.952m41.33 0l2.952 2.952-2.953-2.952z"/>
<path fill="#fcc" d="M127.886 181.576l2.952 2.952-2.952-2.952m29.52 0l2.953 2.952-2.953-2.952z"/>
<path fill="#cff" d="M124.934 184.528l2.952 2.952-2.952-2.952z"/>
<path fill="#c33" d="M131.82 186.497l.986 1.968-.985-1.968m23.618 0l.984 1.968-.984-1.968z"/>
<path fill="#cff" d="M160.36 184.528l2.95 2.952-2.95-2.952z"/>
<path fill="#9cc" d="M124.934 187.48l2.952 2.952-2.952-2.952m35.425 0l2.95 2.952-2.95-2.952z"/>
<path fill="#69c" d="M124.934 190.432l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M130.838 190.432l2.953 2.952-2.952-2.952m23.617 0l2.952 2.952-2.952-2.952z"/>
<path fill="#69c" d="M160.36 190.432l2.95 2.952-2.95-2.952z"/>
<path fill="#cff" d="M127.886 193.384l2.952 2.952-2.952-2.952zm29.521 0l2.952 2.952-2.953-2.952z"/>
<path fill="#9cc" d="M127.886 196.336l2.952 2.953-2.952-2.954m29.52 0l2.953 2.953-2.953-2.954z"/>
<path fill="#69c" d="M127.886 199.29l2.952 2.95-2.952-2.95m29.52 0l2.953 2.95-2.953-2.95z"/>
<path fill="#fcc" d="M133.79 202.24l2.953 2.953-2.952-2.952m17.713 0l2.952 2.953-2.952-2.952z"/>
<path fill="#9cf" d="M130.838 205.193l2.953 2.952-2.952-2.952z"/>
<path fill="#c33" d="M137.726 207.162l.984 1.968-.984-1.968m11.808 0l.984 1.968-.984-1.968z"/>
<path fill="#9cf" d="M154.455 205.193l2.952 2.952-2.952-2.952z"/>
<path fill="#69c" d="M130.838 208.145l2.953 2.952-2.952-2.952m23.617 0l2.952 2.952-2.952-2.952z"/>
<path fill="#fcc" d="M136.743 211.097l2.952 2.952-2.952-2.953m11.808 0l2.953 2.952-2.952-2.953z"/>
<path fill="#9cf" d="M133.79 214.05l2.953 2.95-2.952-2.95zm17.713 0l2.952 2.95-2.952-2.95z"/>
<path fill="#6cc" d="M133.79 217l2.953 2.953L133.79 217m17.713 0l2.952 2.953-2.952-2.952z"/>
<path fill="#fcc" d="M139.695 219.953l2.952 2.952-2.952-2.952m5.904 0l2.95 2.952-2.95-2.952z"/>
<path fill="#ccf" d="M136.743 222.905l2.952 2.952-2.952-2.952m11.808 0l2.953 2.952-2.952-2.952z"/>
<path fill="#6cc" d="M136.743 225.857l2.952 2.953-2.952-2.953z"/>
<path fill="#c66" d="M142.647 225.857l2.952 2.953-2.953-2.953z"/>
<path fill="#6cc" d="M148.55 225.857l2.953 2.953-2.952-2.953z"/>
<path fill="#ccf" d="M139.695 231.762l2.952 2.952-2.952-2.952m5.904 0l2.95 2.952-2.95-2.952z"/>
<path fill="#9cc" d="M139.695 234.714l2.952 2.952-2.952-2.952m5.904 0l2.95 2.952-2.95-2.952m-2.953 5.904l2.952 2.952-2.953-2.952z"/>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

-18
View File
@@ -1,18 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" viewBox="0 0 512 512" width="640">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M106.25 0h1133.3v850H106.25z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" transform="translate(-149.33) scale(.6024)">
<path fill="#0053a5" d="M0 0h1300v850H0z"/>
<g fill="#ffce00">
<path d="M400 0h250v850H400z"/>
<path d="M0 300h1300v250H0z"/>
</g>
<g fill="#d21034">
<path d="M475 0h100v850H475z"/>
<path d="M0 375h1300v100H0z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 557 B

-8
View File
@@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<path fill="#3f9c35" d="M.1 0h640v480H.1z"/>
<path fill="#ed2939" d="M.1 0h640v320H.1z"/>
<path fill="#00b9e4" d="M.1 0h640v160H.1z"/>
<circle cx="304" cy="240" r="72" fill="#fff"/>
<circle cx="320" cy="240" r="60" fill="#ed2939"/>
<path d="M384 200l7.654 21.522 20.63-9.806-9.806 20.63L424 240l-21.522 7.654 9.806 20.63-20.63-9.806L384 280l-7.654-21.522-20.63 9.806 9.806-20.63L344 240l21.522-7.654-9.806-20.63 20.63 9.806L384 200z" fill="#fff"/>
</svg>

Before

Width:  |  Height:  |  Size: 545 B

-12
View File
@@ -1,12 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" viewBox="0 0 512 512" width="640" version="1">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-85.333 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)">
<path fill="#009" d="M-85.333 0h682.67v512h-682.67z"/>
<path d="M-85.333 0l682.67 512V0h-682.67z" fill="#fc0"/>
<path fill="#fff" d="M-21.46 75.087L-45.857 57.36l-24.397 17.727 9.32-28.68-24.398-17.726h30.155L-45.857 0l9.32 28.68h30.154L-30.78 46.407m60.873 65.57L5.696 129.703l9.32-28.68-24.398-17.726h30.155l9.32-28.68 9.32 28.68h30.154L45.17 101.022l9.32 28.68m27.15 54.611l9.318-28.68-24.397-17.726h30.156l9.32-28.68 9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.397-17.725m60.869 43.665l-24.397-17.725h30.154l9.32-28.68 9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.396-17.725-24.397 17.726m60.871 8.204h30.155l9.32-28.68 9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68m81.707 36.884l9.32-28.68 9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68-24.398-17.726m115.415 25.94l9.32 28.68h30.154L424.9 374.092l9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68-24.398-17.726h30.155m85.27 25.93l9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68-24.398-17.726h30.155m94.589 54.62h30.155L576.8 483.322l9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68-24.398-17.726h30.155l9.32-28.68"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

-6
View File
@@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640">
<path fill="#00267f" d="M0 0h640v480H0z"/>
<path fill="#ffc726" d="M213.333 0h213.333v480H213.333z"/>
<path id="a" d="M319.77 135.527c-6.933 18.907-14 38.587-29.12 53.654 4.694-1.546 12.907-2.933 18.187-2.8v79.52l-22.453 3.334c-.8-.08-1.067-1.333-1.067-3.04-2.16-24.693-8-45.44-14.72-66.907-.48-2.933-8.987-14.133-2.427-12.16.8.107 9.574 3.68 8.187 1.974-11.947-12.373-29.413-21.28-46.373-23.92-1.494-.373-2.374.374-1.04 2.107 22.506 34.64 41.333 75.52 41.173 124.027 8.747 0 29.947-5.173 38.72-5.173v56.107h11.067l2.533-156.693z"/>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 639.54 0)"/>
</svg>

Before

Width:  |  Height:  |  Size: 745 B

-4
View File
@@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<path fill="#006a4e" d="M0 0h640v480H0z"/>
<circle cx="280" cy="240" r="160" fill="#f42a41"/>
</svg>

Before

Width:  |  Height:  |  Size: 183 B

-7
View File
@@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<g fill-rule="evenodd" stroke-width="1pt">
<path d="M0 0h213.335v479.997H0z"/>
<path fill="#ffd90c" d="M213.335 0H426.67v479.997H213.335z"/>
<path fill="#f31830" d="M426.67 0h213.335v479.997H426.67z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 296 B

-7
View File
@@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<g fill-rule="evenodd">
<path fill="#de0000" d="M640.003 479.578H.378V0h639.625z"/>
<path fill="#35a100" d="M639.628 480H.003V240.216h639.625z"/>
<path fill="#fff300" d="M254.612 276.188l-106.066-72.434 131.043.122 40.386-117.322 40.388 117.322 131.043-.087-106.085 72.398 40.59 117.27-105.954-72.573-105.955 72.556"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 425 B

-7
View File
@@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#de2110" d="M0 319.997h640V480H0z"/>
<path fill="#fff" d="M0 0h640v160.003H0z"/>
<path fill="#319400" d="M0 160.003h640v160.003H0z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 283 B

-11
View File
@@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)">
<path fill="#e10011" d="M-32.5 0h720v480h-720z"/>
<path d="M114.25 479.77L-32.5 480V0l146.06.075 94.242 30.306-93.554 29.542 93.554 30.458-93.554 29.542 93.554 30.458-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54" fill="#fff"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 600 B

-15
View File
@@ -1,15 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-90.533 0h682.67v512h-682.67z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(84.875) scale(.9375)">
<path d="M-178 0l428.8 256L-178 512zm857.6 0L250.8 256l428.8 256z" fill="#00cf00"/>
<path d="M-178 0l428.8 256L679.6 0zm0 512l428.8-256 428.8 256z" fill="red"/>
<path d="M679.6 0h-79.902l-777.7 464.3v47.703H-98.1l777.7-464.3z" fill="#fff"/>
<path d="M398.855 256c0 81.767-66.285 148.05-148.052 148.05S102.75 337.768 102.75 256s66.285-148.053 148.053-148.053S398.855 174.232 398.855 256z" fill="#fff"/>
<path d="M-178 0v47.703l777.7 464.3h79.902V464.3L-98.098 0z" fill="#fff"/>
<path stroke="#00de00" stroke-width="3.901" fill="red" d="M279.943 200.164l-19.25.322-9.948 16.442-9.92-16.472-19.22-.41 9.303-16.822-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817zm-64.5 111.62l-19.25.322-9.948 16.442-9.92-16.47-19.22-.41 9.303-16.824-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817zm130.57 0l-19.25.322-9.948 16.442-9.92-16.47-19.22-.41 9.303-16.824-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

-14
View File
@@ -1,14 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs>
<clipPath id="a">
<path fill="gray" d="M67.64-154h666v666h-666z"/>
</clipPath>
</defs>
<g transform="matrix(.961 0 0 .7207 -65 110.99)" clip-path="url(#a)">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#319400" d="M0-154h333v666H0z"/>
<path fill="#ffd600" d="M333-154h666v333H333z"/>
<path fill="#de2110" d="M333 179h666v333H333z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 481 B

-7
View File
@@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#fff" d="M0 0h640v479.997H0z"/>
<path fill="#00267f" d="M0 0h213.33v479.997H0z"/>
<path fill="#f31830" d="M426.663 0h213.33v479.997h-213.33z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 305 B

-99
View File
@@ -1,99 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<path fill="#cf142b" d="M0 0h640v480H0z"/>
<path fill="#00247d" d="M0 0h320v160H0z"/>
<path d="M0 0v17.888L284.224 160H320v-17.888L35.776 0H0zm320 0v17.888L35.776 160H0v-17.888L284.224 0H320z" fill="#fff"/>
<path d="M133.333 0v160h53.334V0h-53.334zM0 53.333v53.334h320V53.333H0z" fill="#fff"/>
<path d="M0 64v32h320V64H0zM144 0v160h32V0h-32zM0 160l106.667-53.333h23.85L23.85 160H0zM0 0l106.667 53.333h-23.85L0 11.925V0zm189.483 53.333L296.15 0H320L213.333 53.333h-23.85zM320 160l-106.667-53.333h23.85L320 148.075V160z" fill="#cf142b"/>
<path d="M553.83 148.26v135.513c0 36.197-72.36 47.957-72.36 47.957s-72.358-11.76-72.358-47.957V148.26h144.72z" fill="#fff"/>
<path d="M553.83 283.773c0 36.197-72.36 47.957-72.36 47.957s-72.358-11.76-72.358-47.957c0 0 0-2.915 1.472-4.573 0 0-.797 6.02 3.828 10.574 0 0-3.628-6.423-.08-12.736 0 0-1.316 8.122 3.748 12.786 0 0-2.79-6.635.36-14.033 0 0-1.556 12.104 3.947 14.517 0 0 1.514-6.956-.678-11.42 0 0 3.787 1.528 3.587 11.62 0 0 1.196-1.487 1.515-8.765 0 0 .16 8.323 3.03 10.253 0 0 .878-.844-.318-4.624s.518-5.105.797-5.025c0 0-.628 4.18 2.877 7.318 0 0-1.52-6.554.594-7.44 0 0-.438 5.55 3.948 6.797 0 0 .32-1.61-.638-3.418 0 0-.837-2.146-.2-3.787 0 0 1.396 5.033 3.31 5.878 0 0-1.157-2.95-.08-5.878 0 0 .24 4.19 3.987 5.918 0 0-2.47-3.243-1.494-6.81l24.102 1.18 12.48.596 37.442-2.647 6.46-5.55s2.55 3.54-1.476 9.13c0 0 3.99-.725 5.265-6.958 0 0 1.634 3.458-.6 7.28 0 0 4.428-4.424 5.065-9.45 0 0 1.715 4.864-2.472 10.092 0 0 3.748-1.247 5.343-6.796 0 0 1.277 3.343-2.352 8.066 0 0 6.78-3.6 6.58-11.04 0 0 2.83 4.1-.4 9.73 0 0 3.47-3.096 3.79-7.72 0 0 1.913 2.09-.16 7.84 0 0 4.226-3.98 4.864-8.283 0 0 .917 3.98-2.71 9.007 0 0 2.47-.603 4.824-5.51 0 0 .638 1.932-1.515 5.47 0 0 2.314-.402 3.868-4.825 0 0 .28 2.654-.398 5.027 0 0 1.794-1.166 2.193-6.193 0 0 1.002 1.648 1.02 3.698.015 2.052-.002.705-.002.705z" fill="#2f8f22"/>
<path d="M516.57 205.436s-2.516.427-5.745-.557c-3.23-.985-4.535-.585-5.537 0 0 0 1.31-2.596-1.88-4.645 0 0 1.037 2.62-.398 3.843 0 0-.638.6-1.396-.304 0 0-1.116-1.146-2.292-2.03 0 0 2.71-.945 2.213-3.7-.5-2.754-1.974-3.116-2.77-3.457 0 0 .278 1.246 0 2.09 0 0-2.952-1.648 1.055-3.98 4.007-2.333 3.27-3.7 2.552-4.886-.718-1.185-2.253-2.492-3.01-2.955 0 0 .797 1.247.657 2.313-.14 1.065-1.955 1.75-1.596-.12.36-1.87-.02-1.55-.06-3.54 0 0 3.57 1.207 4.965-2.27 0 0 1.374-3.6-3.132-5.39 0 0 1.097 1.468.558 2.574 0 0-.956 1.81-2.093.342s-1.854-1.75-1.734-3.48c0 0 4.086.565 2.97-3.88 0 0-.658 2.957-5.96-1.024 0 0 3.447-3.54 2.112-6.394 0 0-.42-1.307-4.167-.543 0 0 3.25-2.05 1.874-3.8 0 0-.7-1.165-3.73.362 0 0 1.177-2.03-1.794-4.222 0 0-1.993 1.046-3.05 2.01 0 0-2.033-2.573-3.33-3.598 0 0-2.352.905-2.95 3.6 0 0-1.096-1.308-3.588-1.91 0 0-1.196 2.21.36 4.14 0 0-1.158-.04-3.27-.965 0 0-2.413-1.146-2.055.925.36 2.07.538 2.533 1.017 3.498 0 0-5.413-1.257-5.183 1.67.16 2.03.917 3.778 2.592 5.246 0 0-3.032 3.96-5.624.984 0 0-.897.965 1.037 3.498 0 0 1.934 2.13.34 3.48 0 0-2.134 1.707-3.17-1.61 0 0-3.45 3.438.618 6.072 0 0 2.613 1.488 5.284-.805 0 0-.817 6.594-3.37 5.327 0 0-1.535-1.125 1.216-2.472 0 0-3.967-.503-4.605 3.337 0 0-.49 3.055 2.97 4.162 0 0 2.672.965-.1 3.036 0 0-1.954 1.488-.677 3.7 0 0 1.535 2.432-2.353 2.673 0 0-2.113-.02-2.87-.3 0 0-.854 1.584-.258 3.395 0 0-1.936-1.442-6.342.154-4.406 1.597-4.067.47-4.426.954-.36.482-1.217 2.11-1.217 2.11s2.313 2.815 2.352 2.755c.04-.06-.438 3.217-.438 3.217l1.137.543 9.07-4.04 9.212-4.8 7.405.453 4.698 1.118 6.168.45 4.418-2.356h6.4l7.038 3.507 8.034 4.794 4.187.734 3.225-.172v-6.506l-1.57-2.354z" fill="#d40000" stroke="#000" stroke-width=".532" stroke-linejoin="round"/>
<path d="M443.503 213.043s3.51 1.79 4.974-.382c0 0 1.915-3.648-2.288-4.914 0 0 2.287-2.745-.165-5.278 0 0-1.286-1.357-3.53-.36 0 0-.926-1.932-3.11-1.872 0 0-1.913-.03-2.57 2.08 0 0-2.633-1.084-4.098.484 0 0-2.423 2.714.957 4.855l2.432.222 2.392-1.106 2.67.765c.003 0-.685 2.704 2.335 5.508z" fill="#d40000" stroke="#000" stroke-width=".532" stroke-linejoin="round"/>
<path d="M521.83 206.626c4.227-.398 5.72 3.17 5.72 3.17 2.215 5.198-2.49 7.973-2.49 7.973.36 1.165.4 2.692.4 2.692 6.617.805 5.46 8.244 5.46 8.244l-2.192-1.81c-3.828-1.488-7.775 1.77-10.606 7.238-2.83 5.47-1.475 8.042-.997 14.516.48 6.473 11.005 10.334 11.005 10.334s-4.984 12.827-8.214 21.07c-3.23 8.243-9.968 4.825-11.922 3.09-1.954-1.738-2.442-.773-3.43 0-.986.77 4.427 4.992-5.422 8.973-9.85 3.98-11.563 7.037-13.198 8.042-1.634 1.004-8.453.32-9.13-.524-.678-.844-.28-.844-2.83-2.413-2.553-1.568-6.86-2.935-11.565-5.227-4.706-2.292-4.586-5.228-4.546-5.83.04-.603 1.634-5.51-3.876-1.61-5.51 3.9-10.2-1.856-10.2-1.856-1.076-1.415-5.662-13.704-5.662-13.704-1.236-4.584-3.668-9.932-3.668-9.932.12-.04-.24.563 3.828-1.77 4.067-2.33 5.888-6.21 7.296-10.05 1.408-3.84.04-10.416-.478-11.743-.52-1.326-3.55-7.41-7.302-8.684-3.752-1.275-6.268 1.89-6.268 1.89s-1.158-7.44 5.46-8.244c0 0 .04-1.527.4-2.693 0 0-4.705-2.776-2.49-7.975 0 0 1.493-3.567 5.72-3.17l-1.022 1.935s-1.065 10.616 14.474 3.5c15.538-7.12 15.072-8.446 23.924-3.982l6.46-.12s9.33-4.317 12.32-2.46c2.99 1.857 13.756 7.888 13.756 7.888s10.407 3.903 12.44-3.296l-1.156-3.464z" fill="#64b4d1" stroke="#000" stroke-width=".399"/>
<path stroke-miterlimit="10" d="M475.078 252.65s-.54-3.258-1.107-5.368c0 0-1.153-3.31.815-5.636l2.44-2.807s1.515-2.04 3.393-2.318c0 0 1.877-.056 2.056-.438.18-.382 2.233-3.76 7.117 0 0 0 1.557-2.493 3.95-2.915 0 0 2.583-.785 3.833 1.145 0 0 2.904-2.202 5.397 1.342 0 0 3.45-1.94 5.96 1.918 0 0 3.41-1.663 5.503 1.88 2.094 3.546 1.675 4.993 1.675 4.993l1.554 5.63 5.504 6.795-12.8 4.825h-5.74l-11.484 3.076-20.395 1.568-5.682-6.695 8.013-6.996z" fill="#fff" stroke="#00247d" stroke-width=".532"/>
<path d="M457.84 286.547s-3.05.182-4.606.966c-1.555.784-2.75 1.628-4.545 2.774 0 0-.838 1.116-4.367.437 0 0-6.1-1.462-6.1 3.303 0 0-7.298.602-4.307 6.996 0 0 2.033 5.006 6.22 1.448 0 0-2.692 3.86 2.512 5.37 0 0 3.708.904 4.784-2.896 0 0 .6-1.508-.837-3.378 0 0 1.795-.362 3.05-2.292 0 0-3.827 4.838.36 6.58 0 0 5.26 1.32 5.56-4.168 0 0-.428-2.533 1.61-3.438 0 0 4.193-.965 6.107-5.64 0 0-6.028-3.21-5.443-6.06zm-12.32-48.107s-4.704-2.167-6.937 0c0 0-3.11-1.926-6.38 0 0 0-3.11 2.033-5.263 4.27 0 0-1.515 1.3-.957 5.388 0 0 .798 2.883.32 4.33 0 0-1.038-.204-3.11 2.253 0 0-2.633 3.048-4.945.358 0 0 .717 3.744 5.063 3.14 0 0-2.112 1.65-.278 5.912 0 0 1.356 3.016-.797 6.795 0 0 3.788-1.527 3.628-5.99 0 0-.32-3.016.797-5.148 0 0-1.116 1.938 1.476 6.072 0 0 1.993 2.975.36 6.07 0 0 3.747-1.366 3.388-5.91-.358-4.544-2.632-2.654-1.156-6.836 0 0 .36 2.142 1.475 3.222 1.116 1.08 2.552 2.89 1.954 5.906 0 0 2.233-2.775 1.714-5.63-.517-2.855-1.075-3.718-1.075-3.718l7.057-4.002 3.51-6.353.16-10.13z" fill="#d40000" stroke="#000" stroke-width=".532" stroke-linejoin="round"/>
<path stroke-miterlimit="10" d="M434.796 256.37s-2.91-.2-3.39-2.454m-5.104-1.486s1.014-.04 1.932.884c0 0 .7 1.045 1.697.924" fill="none" stroke="#000" stroke-width=".532"/>
<path d="M439.1 247.805s-1.513 0-2.35-.724c0 0-.88-.602-1.397.363 0 0-.797 1.367.678 1.97 0 0 1.835.925-1.076 2.775 0 0 3.47-1.247 2.074-2.935 0 0-1.515-1.086-.957-1.488 0 0 .16-.322.76.08.597.402 1.793.242 2.27-.04z"/>
<path fill="#784421" stroke="#000" stroke-width=".399" d="M484.877 256.09l1.784-.603-11.658-40.264-.427.114z"/>
<path d="M446.057 300.66s-2.75-1.547-5.024.263c0 0 .232-1.006 1.97-1.448 0 0 .94-2.654 3.572-2.413 0 0-1.076 1.286-2.512 2.373 0 0 1.516.156 1.994 1.224z"/>
<path stroke-miterlimit="2.613" d="M436.368 307.054s-4.366-2.744-2.004-7.358c0 0 .688-1.327 2.004-1.056 0 0 2.72.844.598 4.615 0 0-1.077 2.443-.598 3.8zm8.852 4.343s-6.22-2.834-4.307-7.66c0 0 .592-1.63 1.97-1.508 0 0 2.4.12 1.92 3.317 0 0-.72 3.136.417 5.85z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M443.904 293.39s-1.87 1.38-2.63 2.305c0 0-.76-.945-1.756-1.518 0 0 1.148-.15 1.757.365 0 0 .954-.924 2.63-1.152z"/>
<path stroke-miterlimit="2.613" d="M449.436 310.19s4.874-1.235 3.978-6.272c0 0-.48-2.2-2.542-1.9 0 0-2.487.635-.868 3.836 0 0 .957 2.286-.568 4.337z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path stroke-miterlimit="2.613" d="M471.46 203.645s3.14.963 4.845 1.658c0 0 4.545 2.05 10.317 0 0 0 3.903-1.546 4.424-1.658l-2.99 4.553-.15 2.352 1.87 2.744s-1.12.453-4.47-1.598c0 0-3.71-2.865-8.135 0 0 0-2.42 1.64-4.454 1.598l2.87-3.205-1.106-2.888-3.02-3.557z" fill="#f5ce00" stroke="#000" stroke-width=".532"/>
<path d="M451.32 304.174s.18-.24-.03-.347c0 0-.21-.09-.36.204 0 0-.507.807-.077 1.912 0 0 .407.765.21 1.565 0 0-.028.226.152.256 0 0 .172-.06.206-.225 0 0 .244-.78-.175-1.544 0 0-.508-1.186.075-1.82z" fill="#fff"/>
<path d="M518.84 213.043s-3.51 1.79-4.974-.382c0 0-1.914-3.648 2.288-4.914 0 0-2.288-2.745.164-5.278 0 0 1.286-1.357 3.53-.36 0 0 .926-1.932 3.11-1.872 0 0 1.913-.03 2.57 2.08 0 0 2.633-1.084 4.098.484 0 0 2.422 2.714-.957 4.855l-2.433.222-2.393-1.106-2.67.765c-.002 0 .686 2.704-2.334 5.508z" fill="#d40000" stroke="#000" stroke-width=".532" stroke-linejoin="round"/>
<path stroke-miterlimit="2.613" d="M491.048 210.21s-.09.723-.807.803c0 0-.748.242-1.184-.69 0 0-.05-.212-.062-.315-.05-.436-.2-1.69 1.156-2.714 0 0 2.214-1.81 6.44.382 0 0 3.35 1.608 5.662 2.975 0 0 5.98 3.218 6.7 3.46 0 0 2.63 1.326 6.658 1.487 0 0 5.502.402 7.834-3.458 0 0 1.775-2.936 0-4.806 0 0-.717-.844-1.897-.69-.495.067-1.043.295-1.57.91 0 0-.858 1.248.138 2.173 0 0 1.296.794 1.754-.884 0 0 .02-.12.06.03.025.097.318 1.377-.37 2.462 0 0-3.32 5.024-12.45-.182l-12.042-6.754s-6.04-3.097-9.65 1.748c0 0-2.91 4.02.838 6.655 0 0 2.79 1.668 4.545-.985 0 0 1.457-2.614-.836-3.76 0 0-2.013-.944-2.81 1.066-.798 2.01 1.554 2.533 1.773 1.106 0 0 .06-.343.12-.02z" fill="#f5ce00" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M443.315 230.937v-7.54c0-.592.004-1.085.9-1.81.898-.723 1.855-1.87 3.23 1.39 0 0 2.692-2.836 3.59-3.258 0 0 1.554-1.328 2.63.602 0 0 1.436-2.172 2.572-2.715 0 0 2.692-1.75 2.81 3.5l2.095-1.932s1.614-1.326 3.41.483c0 0 3.05 2.955 3.468 3.8 0 0 .673.914.725 2.357 0 0-.008 1.623.83 2.528 0 0 .956.844 1.883 1.025 0 0 2.183.06 2.96 2.11 0 0 .36-.355 1.436 9.473v17.912l-12.082 14.415-19.378-5.55-7.716-3.196-1.734-5.668 7.476-4.825 4.068-10.978-1.316-7.72-1.857-4.403z" fill="#e4cb5e" stroke="#000" stroke-width=".399"/>
<path d="M496.71 240.446l.917-1.367 2.193-1.69s3.35 8.79 3.51 10.708v2.728s5.023 1.282 5.9 9.002l-4.146 7.64-6.5-3.62-1.873-1.366v-22.036z" fill="#784421" stroke="#000" stroke-width=".399"/>
<path d="M435.156 300.797s.24-.317.075-.452c0 0-.104-.15-.387.21 0 0-1.32 1.477-.27 3.748 0 0 .12.324.33.218 0 0 .18-.09.014-.36 0 0-.94-1.87.24-3.363z" fill="#fff"/>
<path stroke-miterlimit="10" d="M454.75 299.314s.198-.683-.28-1.407c0 0-.318-.523-.2-1.207" fill="none" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="10" d="M459.05 221.106s.017 1.885.556 3.273c.538 1.386 2.356 3.785 2.475 5.082" fill="none" stroke="#000" stroke-width=".399"/>
<path d="M504.625 286.547s3.05.182 4.605.966c1.555.784 2.75 1.628 4.545 2.774 0 0 .837 1.116 4.366.437 0 0 6.102-1.462 6.102 3.303 0 0 7.297.602 4.306 6.996 0 0-2.033 5.006-6.22 1.448 0 0 2.692 3.86-2.512 5.37 0 0-3.708.904-4.784-2.896 0 0-.6-1.508.837-3.378 0 0-1.796-.362-3.05-2.292 0 0 3.826 4.838-.36 6.58 0 0-5.262 1.32-5.562-4.168 0 0 .43-2.533-1.61-3.438 0 0-4.192-.965-6.106-5.64 0 0 6.028-3.21 5.443-6.06z" fill="#d40000" stroke="#000" stroke-width=".532" stroke-linejoin="round"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".399" d="M456.643 229.46l4.978 40.18m-3.828-40.268l5.583 37.453m-4.536-37.627l6.43 37.144"/>
<path fill="#784421" stroke="#000" stroke-width=".399" d="M469.01 263.145l1.782-.603-11.66-40.265-.427.115z"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".399" d="M462.407 227.723l11.775 29.752m-12.562-29.271l11.365 31.08"/>
<path d="M442.967 308.542s-1.366-1.31-1.176-3.66c0 0 .08-.5-.17-.57 0 0-.268-.112-.307.47 0 0-.38 2.454 1.276 3.86 0 0 .11.142.294.1 0 0 .196-.042.083-.2z" fill="#fff"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".399" d="M462.938 227.32l12.14 27.14m-15.46-25.454l7.446 36.55"/>
<path stroke-miterlimit="2.613" d="M520.53 256.09c-5.32-3.018-6.485-9.713-6.485-9.713-1.286-6.665 1.316-11.942 1.316-11.942 3.44-7.268 9.333-8.62 9.333-8.62s-5.773 4.005-7.388 9.404c0 0-1.256 4.552-.538 9.046.717 4.493.448 3.347 1.555 6.815l2.207 5.01z" fill="#f5ce00" stroke="#000" stroke-width=".532"/>
<path d="M497.627 239.08l-22.347 7.055-1.22 9.955c-5.302 7.682-16.078 9.045-16.078 9.045l8.384 8.927 16.11 3.378 8.452-6.514 7.656-7.077c-.798-3.78-.36-9.39-.36-9.39 0-.945.36-3.157.36-3.157s-1.316-9.087-.957-12.224z" fill="#784421" stroke="#000" stroke-width=".243"/>
<path stroke-miterlimit="10" d="M474.368 253.59s14.718-4.597 23.494-8.287m-30.559 16.677s18.362-3.32 31.28-10.677l4.746-3.205" fill="none" stroke="#000" stroke-width=".399"/>
<path stroke-miterlimit="10" d="M503.33 250.826l-5.105 3.634s-20.535 9.47-36.17 9.722m36.165-2.992s-15.785 8.127-24.836 8.248" fill="none" stroke="#000" stroke-width=".399"/>
<path d="M517.045 238.44s4.705-2.167 6.938 0c0 0 3.11-1.926 6.38 0 0 0 3.11 2.033 5.263 4.27 0 0 1.515 1.3.957 5.388 0 0-.797 2.883-.32 4.33 0 0 1.038-.204 3.112 2.253 0 0 2.63 3.048 4.944.358 0 0-.72 3.744-5.065 3.14 0 0 2.113 1.65.28 5.912 0 0-1.356 3.016.797 6.795 0 0-3.79-1.527-3.63-5.99 0 0 .32-3.016-.796-5.148 0 0 1.116 1.938-1.475 6.072 0 0-1.993 2.975-.358 6.07 0 0-3.748-1.366-3.39-5.91.36-4.544 2.632-2.654 1.157-6.836 0 0-.36 2.14-1.476 3.222-1.117 1.08-2.552 2.89-1.954 5.906 0 0-2.233-2.775-1.715-5.63s1.077-3.718 1.077-3.718l-7.058-4.002-3.51-6.353-.16-10.13z" fill="#d40000" stroke="#000" stroke-width=".532" stroke-linejoin="round"/>
<path stroke-miterlimit="10" d="M437.1 263.87s.657-3.118 3.648-1.89c0 0 1.017-5.108 6.46-5.29 5.442-.18 5.74 5.31 5.74 5.67 0 0 1.6-2.355 4.27-2.082 0 0 4.602-.27 2.888 7.118l.87.927s3.516-8.254 10.753-6.083c0 0 7.057 2.15 2.452 8.987 0 0 3.483 4.524 6.436 4.1 2.954-.42 5.586-1.325 8.516-6.513 2.93-5.187 9.75-5.97 11.484-5.67 1.734.302 3.104 1.428 3.387 2.655 0 0 3.61-12.05 16.59-10.157l5.202 2.616 1.974.904-2.94 8.304-7.17 16.2-5.44 1.674-5.682-3.257-1.974 1.058-.16 4.852-7.495 5.395-5.204 2.144-5.742 3.92-1.336 3.506s-3.17-1.336-6.75 0l-1.184-2.9-3.35-3.198-13.01-6.138-2.35-7.58-2.376-1.06-2.66 3.046-3.886.453-5.802-3.92-6.16-17.794z" fill="#fff" stroke="#00247d" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M493.76 204.88s-4.966-.22-4.787 4.927" fill="none" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M526.426 259.556c-8.643-2.654-11.005-11.942-11.005-11.942-1.764-6.967 1.077-13.058 1.077-13.058 3.948-9.27 10.627-9.27 10.627-9.27 3.35-.09 3.75 2.776 3.75 2.776.317 2.03-1.108 2.764-1.108 2.764-2.293 1.247-3.738-.442-3.738-.442-.957-1.247-.22-2.352-.22-2.352.588-.825 1.715-.463 1.715-.463.892.275.797 1.39.797 1.39.005.03.025.03.025.03.04-.01.025-.024.025-.024s.2-1.367-1.137-1.508c0 0-2.6-.563-5.65 3.237 0 0-4.018 5.127-4.01 11.762 0 0-.507 12.455 12.472 15.682 0 0-1.406 2.02-3.887 9.317 0 0-2.81 9.38-5.495 14.45 0 0-3.567 7.233-11.522 4.278 0 0-4.735-2.08-4.724-5.52 0 0-.33-3.136 2.512-3.377 0 0 2.782-.21 2.75 2.17 0 0 .076 2.58-2.96 1.992 0 0-1.06-.226-.866-1.267 0 0 .17-.935 1.45-.528 0 0 .04.005.045-.015 0 0 .014-.022-.03-.035 0 0-.496-.222-1.02-.04 0 0-.468.157-.506.89 0 0-.03.587.6.92 0 0 .763.27 1.36.21 0 0 .805 1.624 2.625 2.174 2.534.765 4.62.027 5.898-.992 1.39-1.108 2.288-3.046 2.557-3.52.27-.475 2.602-5.7 4.356-11.32 0 0 1.535-4.845 2.76-7.378l.48-.994z" fill="#f5ce00" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M502.038 283.17s1.614-.22 1.614 1.22c0 0-.098 2.104-2.66 1.644 0 0-2.528-.553-1.63-3.378 0 0 .597-1.99 2.99-1.703 0 0 2.317.105 3.334 3.272 0 0 .777 2.67-.553 4.96-1.486 2.558-5.244 4.238-7.057 4.982 0 0-7.268 2.855-9.435 4.488 0 0-3.324 2.468-1.853 4.765 0 0 .568.875 1.42.875 0 0 .973.045 1.137-.95 0 0 .005-.02-.01-.045 0 0-.015 0-.02.025 0 0-.07.608-.598.834 0 0-.708.356-1.45-.272 0 0-.788-.754-.13-1.925 0 0 .862-1.443 2.87-.59 0 0 1.77.876 1.043 2.756 0 0-.65 1.73-2.782 1.724 0 0-1.607-.053-2.634-1.13-1.603-1.68-1.69-4.954-.277-6.647 0 0 1.336-1.8 4.017-2.895 1.553-.635 4.486-1.91 7.536-3.106 2.144-.84 4.108-1.848 5.383-3.358 0 0 1.137-1.266 1.466-3.438 0 0 .313-1.628-.68-1.985 0 0-.503-.226-1.056-.15 0 0-.014 0-.018.01 0 0-.024.024.032.015z" fill="#f5ce00" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M502.173 283.16s1.784-.323 2.9 1.8c0 0 .658 1.366.764 2.157m.583-7.584s-1.788.31-.868 2.838c.867 2.384 2.478 3.165 2.956 3.497" fill="none" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M471.458 210.208s.088.724.806.805c0 0 .75.24 1.186-.69 0 0 .05-.213.062-.316.05-.436.2-1.69-1.157-2.714 0 0-2.213-1.81-6.44.382 0 0-3.35 1.608-5.662 2.976 0 0-5.98 3.217-6.698 3.458 0 0-2.632 1.327-6.66 1.488 0 0-5.502.402-7.834-3.457 0 0-1.773-2.937 0-4.807 0 0 .72-.844 1.9-.688.494.065 1.04.293 1.57.91 0 0 .857 1.247-.14 2.17 0 0-1.296.796-1.754-.883 0 0-.02-.12-.06.03-.026.097-.32 1.377.37 2.463 0 0 3.318 5.023 12.45-.183l12.04-6.754s6.042-3.096 9.65 1.75c0 0 2.91 4.02-.837 6.654 0 0-2.792 1.67-4.546-.985 0 0-1.456-2.614.837-3.76 0 0 2.014-.944 2.812 1.067.797 2.01-1.556 2.533-1.774 1.105 0 0-.06-.343-.12-.022zm-29.482 45.882c5.32-3.018 6.485-9.713 6.485-9.713 1.287-6.665-1.315-11.942-1.315-11.942-3.44-7.268-9.333-8.62-9.333-8.62s5.774 4.005 7.39 9.404c0 0 1.255 4.552.537 9.046-.72 4.493-.45 3.347-1.556 6.815l-2.208 5.01z" fill="#f5ce00" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M468.746 204.88s4.966-.22 4.786 4.927" fill="none" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M436.08 259.556c8.643-2.654 11.005-11.942 11.005-11.942 1.764-6.967-1.077-13.058-1.077-13.058-3.947-9.27-10.626-9.27-10.626-9.27-3.35-.09-3.75 2.776-3.75 2.776-.317 2.03 1.108 2.764 1.108 2.764 2.292 1.247 3.738-.442 3.738-.442.957-1.247.22-2.352.22-2.352-.59-.825-1.715-.463-1.715-.463-.892.275-.797 1.39-.797 1.39-.005.03-.025.03-.025.03-.04-.01-.024-.024-.024-.024s-.2-1.367 1.136-1.508c0 0 2.602-.563 5.652 3.237 0 0 4.017 5.127 4.007 11.762 0 0 .51 12.455-12.47 15.682 0 0 1.406 2.02 3.888 9.317 0 0 2.81 9.38 5.494 14.45 0 0 3.568 7.233 11.522 4.278 0 0 4.737-2.08 4.726-5.52 0 0 .328-3.136-2.512-3.377 0 0-2.782-.21-2.752 2.17 0 0-.075 2.58 2.96 1.992 0 0 1.063-.226.868-1.267 0 0-.17-.935-1.45-.528 0 0-.04.005-.045-.015 0 0-.016-.022.03-.035 0 0 .494-.222 1.018-.04 0 0 .47.157.506.89 0 0 .03.587-.598.92 0 0-.763.27-1.36.21 0 0-.805 1.624-2.625 2.174-2.533.765-4.62.027-5.898-.992-1.39-1.108-2.288-3.046-2.557-3.52-.268-.475-2.6-5.7-4.355-11.32 0 0-1.536-4.845-2.76-7.378l-.48-.994z" fill="#f5ce00" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M460.468 283.17s-1.615-.22-1.615 1.22c0 0 .1 2.104 2.662 1.644 0 0 2.527-.553 1.63-3.378 0 0-.598-1.99-2.99-1.703 0 0-2.318.105-3.335 3.272 0 0-.778 2.67.553 4.96 1.485 2.558 5.243 4.238 7.057 4.982 0 0 7.267 2.855 9.435 4.488 0 0 3.324 2.468 1.854 4.765 0 0-.57.875-1.422.875 0 0-.972.045-1.136-.95 0 0-.005-.02.01-.045 0 0 .015 0 .02.025 0 0 .07.608.598.834 0 0 .708.356 1.45-.272 0 0 .787-.754.13-1.925 0 0-.863-1.443-2.872-.59 0 0-1.77.876-1.04 2.756 0 0 .646 1.73 2.78 1.724 0 0 1.606-.053 2.634-1.13 1.603-1.68 1.69-4.954.277-6.647 0 0-1.337-1.8-4.02-2.895-1.552-.635-4.484-1.91-7.535-3.106-2.144-.84-4.107-1.848-5.383-3.358 0 0-1.136-1.266-1.465-3.438 0 0-.314-1.628.678-1.985 0 0 .503-.226 1.056-.15 0 0 .016 0 .02.01 0 0 .024.024-.032.015z" fill="#f5ce00" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M460.333 283.16s-1.785-.323-2.9 1.8c0 0-.66 1.366-.765 2.157m-.581-7.585s1.787.31.867 2.838c-.868 2.383-2.478 3.164-2.957 3.496m22.935-76.35s4.32-2.705 8.733.29" fill="none" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M452.35 235.943s.6-2.412-2.152-6.635c0 0-1.795-3.86-2.752-6.332m6.221-2.654s1.557 3.794 2.093 5.493c0 0 1.932 4.76 2.342 5.725" fill="none" stroke="#000" stroke-width=".399"/>
<path stroke-miterlimit="10" d="M454.444 238.597s1.624 1.75 1.44 4.704m-6.824-6.574s1.796.865 1.677 5.63c0 0-.18 3.478 2.51 5.227m-4.429 1.226s5.616-.613 5.925 2.845c0 0 .12 3.317 2.033 3.68 0 0 2.867.27 3.435 2.925m-9.625-5.61s.987 1.478 1.944 2.11m5.263-5.76s1.427 2.163 1.696 3.43m4.485-29.455s1.316 1.79 2.592 2.634m2.671 7.961s2.79 1.368 2.313 8.405c0 0-.36 4.126.798 6.38" fill="none" stroke="#000" stroke-width=".399"/>
<path d="M456.09 228.796l.178.663s5.004.21 7.706-3.197l-.29-.654s-4.366-.222-7.595 3.186z" fill="#784421" stroke="#000" stroke-width=".399"/>
<path stroke-miterlimit="10" d="M474.116 255.643s17.307-5.16 23.977-8.168" fill="none" stroke="#000" stroke-width=".399"/>
<path fill="#784421" stroke="#000" stroke-width=".243" d="M472.26 223.724l-.202-.568 8.56-3.257.202.572z"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".399" d="M472.985 223.448l5.682 27.855m-4.697-28.229l6.51 27.727m-5.402-28.148l7.118 27.525m-4.326-28.585l9.702 20.66m-8.419-21.147l10.347 20.54m-9.397-20.901l11.192 20.334m-13.012 10.445l4.392-1.447m-7.717-1.309s12.873-3.76 22.616-7.69m-22.789 9.1s16.315-4.317 22.788-7.467M479.764 263.447l.854 2.613 2.336-.747-.798-2.59m4.197-1.153l.855 2.612 2.336-.747-.798-2.59m-13.466-14.71l-.202-3.536 21.392-6.496 1.157 2.975M484.15 239.845l1.166 3.122m6.314-5.393l1.36 2.97m.412-3.508l1.274 2.81m.42-3.326l1.34 2.936"/>
<path stroke-miterlimit="10" fill="none" stroke="#000" stroke-width=".399" d="M496.47 236.104l2.353-1.327.997 2.613M497.627 235.452l1.198 2.705"/>
<path stroke-miterlimit="10" d="M444.575 276.173s-4.187-4.24 0-8.393c0 0-4.545-2.223-3.827-5.8m11.304 17.552s-4.336.59-3.05-7.852c0 0-1.795 3.347-2.413 5.067-.464 1.288-.158 3.367 1.678 4.49.733.45 4.62 1.462 5.877-1.113m-6.937-13.511s-1.764 1.63-.508 4.615m2.331-4.223s.21 2.895 1.646 4.524m-.406-5.669s-.012 3.407 2.44 5.518m-1.22-6.695s.024 3.83 2.865 6.183m11.245-.574s1.434-3.137 4.454-2.985c0 0-1.465.663-1.435 2.13 0 0-.18 2.423 2.42 2.664 0 0 2.095.273 3.14-.873" fill="none" stroke="#00247d" stroke-width=".532"/>
<path stroke-miterlimit="10" d="M472.746 284.617s-7.446-3.498-6.67-8.534c0 0 .3-3.076 3.308-4.524m-1.572 3.196s-.658 2.172.808 3.68m.866-5.157s-.897 2.382.598 4.162m1.196-5.32s-1.076 1.972.21 3.75m-6.998 9.26s4.067 3.528 7.237 3.558m-8.523-2.443s3.8 3.076 6.177 3.53m-7.613-2.659s4.7 4.135 7.613 4.437m11.497 3.8s-4.618 2.49-1.038 5.12m-1.892-7.863s5.233-2.745 7.505-3.77m-5.621 5.187s7.566-4.615 9.808-5.61m-5.922 5.911s6.46-4.312 9.93-6.182m-5.653 6.031s4.456-3.498 8.763-6.03m1.525-4.374s-2.183-3.197-9.36 0c0 0 2.63-2.388 7.835-4.24m7.245-13.733s.588 2.592-.04 4.16" fill="none" stroke="#00247d" stroke-width=".532"/>
<path stroke-miterlimit="10" d="M492.364 278.375s1.495-2.202 5.293-3.287c0 0 1.024 2.563 3.978 1.99 0 0 4.455-.875 3.11-5.76 0 0-.927-3.65-6.016-4.01m15.137-6.118s5.173.93 5.084 5.152c0 0 .418 6.333-6.25 7.57m5.515-10.122s1.42-3.088 4.59-4.355m-3.851-1.808s1.413 2.265 2.38 2.595m-3.119-.786s1.332 1.627 1.78 1.9m-2.212-.332s.7 1.036 1.323 1.362m-27.939-25.846s1.007-1.633 3.51-.94m10.217 13.188s1.585-6.612 7.118-4.17m-2.244-.541s.57-3.05-.807-4.6M506 243.844s.705 1.26.102 2.29" fill="none" stroke="#00247d" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M517.245 311.397s6.22-2.835 4.306-7.66c0 0-.59-1.63-1.97-1.508 0 0-2.398.12-1.918 3.316 0 0 .72 3.137-.417 5.85z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M519.498 308.542s1.367-1.31 1.176-3.66c0 0-.08-.5.17-.57 0 0 .268-.113.308.47 0 0 .38 2.453-1.276 3.86 0 0-.113.14-.296.1 0 0-.196-.042-.082-.2z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M526.097 307.054s4.366-2.744 2.003-7.358c0 0-.688-1.327-2.003-1.056 0 0-2.722.844-.6 4.615 0 0 1.078 2.443.6 3.8z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M527.188 300.796s-.24-.316-.075-.452c0 0 .105-.15.388.21 0 0 1.322 1.478.27 3.748 0 0-.12.324-.328.22 0 0-.18-.092-.015-.363 0 0 .942-1.87-.24-3.364z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M513.028 310.19s-4.874-1.235-3.978-6.272c0 0 .48-2.2 2.542-1.9 0 0 2.487.635.868 3.836 0 0-.957 2.286.568 4.337z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M511.144 304.174s-.18-.24.03-.347c0 0 .21-.09.36.204 0 0 .507.807.077 1.912 0 0-.406.765-.208 1.565 0 0 .027.226-.153.256 0 0-.173-.06-.207-.225 0 0-.243-.78.176-1.544 0 0 .507-1.186-.076-1.82z" fill="#fff"/>
<path d="M516.527 300.66s2.75-1.547 5.024.263c0 0-.232-1.006-1.97-1.448 0 0-.94-2.654-3.572-2.413 0 0 1.077 1.286 2.512 2.373 0 0-1.515.156-1.993 1.224zm2.033-7.27s1.87 1.38 2.63 2.305c0 0 .76-.945 1.757-1.518 0 0-1.148-.15-1.757.365 0 0-.955-.924-2.63-1.152z"/>
<path stroke-miterlimit="10" d="M507.715 299.314s-.2-.683.28-1.407c0 0 .318-.523.2-1.207m19.575-40.33s2.912-.2 3.39-2.454m5.104-1.486s-1.014-.04-1.93.884c0 0-.7 1.045-1.698.924" fill="none" stroke="#000" stroke-width=".532"/>
<path d="M523.465 247.805s1.515 0 2.353-.724c0 0 .877-.602 1.395.363 0 0 .798 1.367-.677 1.97 0 0-1.835.925 1.076 2.775 0 0-3.47-1.247-2.073-2.935 0 0 1.513-1.086.955-1.488 0 0-.16-.322-.757.08-.6.402-1.795.242-2.273-.04z"/>
<path stroke-miterlimit="2.613" d="M525.526 211.188s.684-.93.404-3.725 2.147-3.116 3.08-2.313c0 0 .964.836.077 2.608-.512 1.022-1.33 2.347-3.56 3.43z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M526.438 209.102s.91-.978.475-3.1c0 0-.003-.21.117-.224 0 0 .22-.056.258.153 0 0 .49 2.264-.538 3.494 0 0-.187.18-.313 0 0 0-.137-.13 0-.322z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M524.75 210.172s-.07-1.127-2.018-3.04c-1.947-1.915-.346-3.68.846-3.664 0 0 1.235.02 1.68 1.9.257 1.09.474 2.592-.507 4.804z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M524.448 207.723s.035-1.38-1.728-2.82c0 0-.143-.168-.06-.257 0 0 .13-.187.3-.042 0 0 1.898 1.52 1.944 3.177 0 0-.02.27-.24.204 0 0-.193-.017-.216-.26z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M522.107 209.325s-.51-.918-2.913-1.77c-2.405-.854-1.755-2.954-.743-3.404 0 0 1.05-.46 2.175.947.65.814 1.43 1.99 1.482 4.228z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M521.053 207.638s-.546-1.265-2.748-1.82c0 0-.2-.09-.163-.206 0 0 .04-.226.255-.167 0 0 2.357.567 3.094 2.052 0 0 .094.252-.13.284 0 .002-.183.07-.307-.142z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M523.613 210.244s-1.12.315-3.696-.927c-2.574-1.242-3.702.92-3.25 2.076 0 0 .47 1.197 2.464.987 1.152-.122 2.693-.423 4.483-2.136z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M517.626 211.065s1.168.72 3.286-.1c0 0 .216-.04.25.075 0 0 .097.208-.113.284 0 0-2.254.898-3.702.11 0 0-.22-.153-.055-.31 0 0 .112-.162.333-.06z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M519.846 202.107s1.286.623.987 2.13" fill="none" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="10" d="M525.528 202.318s.503 1.592-.052 2.45" fill="none" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="2.613" d="M436.818 211.188s-.684-.93-.405-3.725c.28-2.795-2.146-3.116-3.08-2.313 0 0-.964.836-.077 2.608.512 1.022 1.33 2.347 3.562 3.43z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M435.905 209.102s-.91-.978-.475-3.1c0 0 .003-.21-.117-.224 0 0-.22-.056-.258.153 0 0-.49 2.264.538 3.494 0 0 .187.18.313 0 0 0 .138-.13 0-.322z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M437.592 210.172s.072-1.127 2.02-3.04c1.946-1.915.345-3.68-.847-3.664 0 0-1.235.02-1.68 1.9-.257 1.09-.474 2.592.507 4.804z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M437.896 207.723s-.035-1.38 1.728-2.82c0 0 .143-.168.06-.257 0 0-.13-.187-.3-.042 0 0-1.898 1.52-1.944 3.177 0 0 .02.27.24.204 0 0 .192-.017.216-.26z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M440.236 209.325s.51-.918 2.913-1.77c2.404-.854 1.754-2.954.742-3.404 0 0-1.05-.46-2.174.947-.65.814-1.43 1.99-1.482 4.228z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M441.29 207.638s.546-1.265 2.748-1.82c0 0 .2-.09.163-.206 0 0-.04-.226-.254-.167 0 0-2.357.567-3.094 2.052 0 0-.093.252.132.284 0 .002.182.07.306-.142z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M438.73 210.244s1.12.315 3.696-.927c2.574-1.242 3.702.92 3.25 2.076 0 0-.47 1.197-2.464.987-1.15-.122-2.692-.423-4.482-2.136z" fill="#64b4d1" stroke="#00247d" stroke-width=".399"/>
<path d="M444.717 211.065s-1.168.72-3.286-.1c0 0-.215-.04-.25.075 0 0-.096.208.114.284 0 0 2.254.898 3.7.11 0 0 .22-.153.056-.31 0 0-.11-.162-.333-.06z" fill="#fff"/>
<path stroke-miterlimit="2.613" d="M442.497 202.107s-1.286.623-.987 2.13" fill="none" stroke="#000" stroke-width=".532"/>
<path stroke-miterlimit="10" d="M436.815 202.318s-.503 1.592.052 2.45" fill="none" stroke="#000" stroke-width=".532"/>
<path d="M492.633 187.69s.815 2.327.463 4.434c-.314 1.885.115 2.372.796 2.745.59.322 1.955-.243 2.12-1.72 0 0 1.614 3.15-1.526 5.277 0 0-2.258 1.388-4.17-.467-.676-.653-.973-2.458-.644-4.132 0 0 .494-2.27-.33-4.6 0 0 1.286 1.373.958 4.11 0 0-.658 4.908 2.975 4.667 0 0 2.512-.03 2.587-3.076 0 0-.942 1.084-2.108.723-.827-.256-1.586-1.056-1.45-2.316.14-1.32.508-3.625.33-5.646zm-4.117 8.063s-.2 3.88-3.748 4.825c0 0 .5-.703-.3-2.633 0 0-.776-1.126-.716-2.875 0 0-1.13.884.16 3.216.777 1.408.1 3.097-.14 3.157-.24.06 5.86-.805 4.744-5.69zm-4.606-3.86s-.857-.965-.917-3.197c-.06-2.232-.478-2.774-.777-3.036 0 0 .438 1.93.318 3.116-.12 1.186.08 1.87.24 2.433 0 0-1.934.3-3.15-2.515-1.163-2.69-2.333-2.473-2.91-2.453 0 0 .673.075 2.032 2.533 1.358 2.457 1.735 2.957 5.164 3.118zm-9.05-5.831s1.116 2.674 1.156 4.082c0 0-2.592-.865-3.29-3.117 0 0-2.77.945-1.754 4.142 0 0-2.392-.845-3.47-2.796 0 0 1.337 1.005 2.573 1.448 0 0-.14-2.574 3.09-3.54 0 0 .48 2.306 2.093 2.856 0 0-.12-1.447-.398-3.076zm4.266-4.582s.897 1.306 2.73 1.366c.878.03 1.82-.17 2.733-1.367 0 0-.12 2.27-2.733 2.29 0 0-2.73.1-2.73-2.29zm-11.299 15.53s1.36 1.236 1.644 1.643c0 0 .958.935 1.78-.274 0 0 1.048-1.934 2.333-1.883 0 0-.912.634-1.937 2.46 0 0-.276.676-1.04.75-.356.037-.806.152-1.488-.56 0 0-.59-.72-1.29-2.137zm14.03-24.64c-2.73 0-.43 2.112-.43 2.112.06 3.347-2.625 4.377-4.454 3.408-1.83-.97-.4-3.408-.4-3.408s-2.062 1.356-.746 3.317c1.315 1.96 4.764 1.084 6.03-.725 1.266 1.81 4.715 2.684 6.03.724 1.317-1.962-.747-3.318-.747-3.318s1.43 2.437-.398 3.408c-1.83.97-4.516-.06-4.456-3.408 0 0 2.302-2.112-.43-2.11zm1.655-3.618s.956 1.63.747 4.1c0 0 .866-2.472-.748-4.1zm-8.372 3.83s-.21-1.78-1.945-1.93c0 0 1.465 1.056 1.944 1.93zm13.456 0s.21-1.78 1.944-1.93c0 0-1.466 1.056-1.944 1.93zm-16.209 2.714s1.376.423 2.213-.603c0 0-1.585.422-2.213.603zm-4.455-10.916s1.6-.182 3.2 2.2c0 0-1.586.845-1.974 1.358 0 0 0-.784.777-1.478 0 0-.3-1.206-2.003-2.08zm26.794 0s-1.6-.182-3.2 2.2c0 0 1.586.845 1.974 1.358 0 0 0-.784-.777-1.478 0 0 .298-1.206 2.003-2.08zm-12.35 1.777s1.435.394 3.23-.602c0 0 2.212-1.176 3.618 0 0 0-1.227-.545-3.59.602 0 0-2.362 1.295-3.258 0z"/>
<path d="M483.87 167.606s1.227-2.15 4.965-1.723c0 0-1.017 2.99-4.964 1.723z" fill="#fff"/>
<ellipse cx="486.449" cy="166.939" rx=".739" ry=".937" fill="#784421"/>
<ellipse cx="486.449" cy="166.939" rx=".439" ry=".575"/>
<path d="M475.856 163.022s2.362.15 3.798 1.056c0 0 1.525.905 3.26-.393 0 0 1.885-1.085 3.096-2.593 0 0-2.887 1.99-3.964 2.292 0 0-.987-.754-1.375-1.84 0 0 .15-.813 1.705-2.32 0 0-2.093.632-2.512 2.41 0 0 .39 1.087 1.196 1.932 0 0-.39.18-1.406-.453 0 0-2.213-.754-3.798-.09zm6.001 14.188c-2.043 1.766 0 1.585 0 1.585s2.044.18 0-1.584zm-1.182-11.053s-1.436.394-3.23-.602c0 0-2.214-1.176-3.62 0 0 0 1.227-.545 3.59.602 0 0 2.362 1.295 3.26 0z"/>
<path d="M479.18 167.606s-1.227-2.15-4.965-1.723c0 0 1.017 2.99 4.965 1.723z" fill="#fff"/>
<ellipse cx="476.601" cy="166.939" rx=".739" ry=".937" fill="#784421"/>
<ellipse cx="476.601" cy="166.939" rx=".439" ry=".575"/>
<path d="M554.063 148.26v135.513c0 36.197-72.36 47.957-72.36 47.957s-72.36-11.76-72.36-47.957V148.26h144.72z" fill="none" stroke="#000" stroke-width="1.28"/>
</svg>

Before

Width:  |  Height:  |  Size: 31 KiB

-36
View File
@@ -1,36 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640">
<path fill="#f7e017" d="M0 0h640v480H0z"/>
<path d="M0 33.333v213.334l640 100V233.333z" fill="#fff"/>
<path d="M0 146.667v100l640 200v-100z"/>
<g transform="translate(-160) scale(.66667)" fill="#cf1126">
<path d="M695.74 569.72c-19.36-2.57-37.11-8.73-49.44-17.17-2.39-1.64-4.64-2.98-4.99-2.98-.36 0-.65 1.82-.65 4.07 0 6.37-2.56 9.58-9 11.25-6.16 1.6-15.56-1.63-23.18-7.95-7.89-6.55-17-11.55-24.71-13.55-6.35-1.66-14.78-1.39-20.87.65-2.83.95-6.05 2.29-7.17 2.98-1.11.69-2.36 1.25-2.76 1.25-1.08 0-.93-6.85.2-9.04 1.49-2.87 5.16-5.7 9.44-7.26 2.16-.79 3.93-1.8 3.93-2.25 0-.45-.73-2.1-1.62-3.65-2.9-5.08-1.71-10 3.35-13.87 5.18-3.96 13.95-4.64 21.7-1.69 1.95.74 3.77 1.35 4.04 1.35 1.02 0 .4-1.43-2.41-5.52-3.24-4.74-3.88-7.08-3.48-12.72.52-7.14 6.34-12.98 13.47-13.5 5.82-.42 9.44 1.54 18.03 9.72 25.65 24.46 53.54 37.94 86.07 41.59 8.21.92 24.73.43 34.42-1.03 29.27-4.41 58.76-19.13 81.79-40.82 6.38-6.01 9.45-7.6 14.68-7.62 4.55-.02 7.74 1.45 11 5.05 2.97 3.3 3.98 6.43 3.66 11.44-.21 3.21-.73 4.79-2.64 7.9-2.82 4.59-2.34 5.01 3.24 2.85 7.54-2.94 16.83-1.58 21.84 3.18 4.41 4.19 4.83 8.38 1.4 14.06-1.25 2.08-2.27 4.03-2.27 4.34 0 .57.95.84 5.53 1.58 5.99.96 9.42 5.41 9.42 12.21 0 2.04-.25 3.7-.56 3.7-.3 0-2.57-.83-5.04-1.85-6.98-2.88-10.95-3.62-19.11-3.57-6.21.04-8.35.33-12.68 1.74-6.63 2.17-13.72 6.35-19.5 11.5-6.37 5.68-10.38 7.47-16.58 7.42-5.76-.06-9.7-1.73-11.78-5.02-1.11-1.76-1.27-2.83-1-6.81.18-2.59.14-4.71-.07-4.71-.22 0-2.46 1.42-4.99 3.17-6.64 4.56-10.87 6.82-18.47 9.83-23.18 9.17-56.63 13.14-82.24 9.75z"/>
<path d="M706.34 525.17c-38.58-3.703-75.494-23.798-97.939-55.657-24.37-33.235-32.05-77.117-24.611-117.24 3.954-18.267 11.929-36.546 25.544-49.554-10.85 23.003-14.516 49.369-8.73 74.29 8.99 49.753 51.036 91.87 101.34 99.156 19.9 5.761 40.487-.324 59.496-6.493 41.935-14.78 73.88-54.583 77.777-99.08 3.336-24.077-.36-49.113-11.207-70.915 6.183 3.269 13.987 16.087 18.59 24.707 16.002 31.003 16.733 68.155 7.312 101.24-12.78 42.097-44.965 78.978-87.511 92.382-19.308 6.308-39.842 8.231-60.058 7.167z"/>
<g id="a">
<path d="M512.02 469.9c-2.528-.396-5.316 2.092-4.363 4.697 1.823 2.633 4.964 3.92 7.798 5.18 6.792 2.722 14.18 3.782 21.471 3.605-2.513-.006.863.026 1.802 0 5.774.017 11.516-1.024 16.944-2.98 3.018-1.062 6.864-2.025 8.1-5.363 1.207-2.175-.98-4.347-3.185-3.911-3.072.67-5.944 2.064-8.99 2.857-6.572 1.854-13.494 2.57-20.303 2.012-4.98-.608-9.804-2.2-14.41-4.143-1.597-.705-3.096-1.733-4.865-1.954z"/>
<path d="M514.83 459.52c-2.556-.38-4.758 2.56-3.692 4.908 1.965 2.848 5.267 4.365 8.356 5.699 5.37 2.148 11.204 3.047 16.975 2.875-2.191-.006.753.026 1.565 0a37.592 37.592 0 0 0 14.325-2.832c2.774-1.078 6.17-2.124 7.325-5.177.896-1.677.212-4.116-1.9-4.247-1.929-.096-3.593 1.132-5.378 1.683-6.485 2.681-13.622 3.818-20.614 3.214-4.357-.56-8.52-2.168-12.47-4.03-1.485-.718-2.82-1.836-4.491-2.093z"/>
<path d="M518.28 449.57c-2.19-.263-3.698 2.209-3.329 4.182.327 1.733 1.883 2.898 3.17 3.96 5.328 3.898 12.082 5.558 18.625 5.34-2.541-.009 3.41.042 1.595-.007 4.144-.017 8.238-1.03 11.966-2.825 2.489-1.082 5.411-2.336 6.25-5.177.401-1.324.652-3.227-.841-3.97-1.564-.874-3.117.47-4.539 1.016-4.789 2.437-10.125 3.793-15.507 3.768-4.65.157-9.033-1.8-13.068-3.907-1.464-.746-2.67-2.043-4.321-2.38z"/>
<path d="M481.53 302.7c-3.257 3.26-.77 9.271-.946 13.543 1.688 13.158 3.785 26.484 8.697 38.87 6.015 12.102 18.79 18.573 26.533 29.268 2.767 5.155 1.785 11.355 2.368 16.994.458 15.366.316 30.743.047 46.111 6.939 3.482 14.474 6.986 22.456 5.647 4.73-1.13 13.512-1.832 14.496-6.543-.383-26.5-.63-53.01-.983-79.506-2.69-8.119-10.951-12.32-17.129-17.515a155.468 155.468 0 0 1-14.188-16.099c-2.622-4.417-12.868-6.009-9.161 1.677 2.173 6.654 7.72 11.61 9.109 18.602.303 3.831 4.877 10.879.973 13.114-2.484-4.222-6.082-7.815-10.682-9.958-4.432-3.304-11.759-4.68-13.359-10.517-1.175-8.28-5.415-15.782-10.887-21.986 1.41-7.436.005-16.737-6.423-21.49l-.921-.212z"/>
<path d="M491.44 304.19c-2.963.478-2.862 4.254-1.491 6.239 1.458 4.288 1.855 8.945 1.066 13.409 5.267 6.166 9.347 13.543 10.576 21.64.03 3.044 3.233 4.051 5.309 5.555 4.871 3.102 10.348 5.351 14.686 9.233.913.976 1.602 2.027.957.035-.677-2.547-1.026-5.358-3.021-7.285-2.735-2.94-6.15-5.563-10.133-6.46-.332-4.114-2.292-7.893-4.102-11.532-2.006-3.479-4.102-7.206-7.54-9.462.138-6.098.038-12.495-2.586-18.122-.77-1.446-1.903-3.163-3.72-3.25z"/>
<path d="M499.73 306.62c-2.064.613-1.67 3.159-1.016 4.716.989 4.316 1.144 8.774 1.063 13.184 3.791 3 6.163 7.35 8.322 11.587 1.353 2.83 2.636 5.751 3.155 8.865 3.076 1.018 5.768 2.946 8.171 5.077-.952-2.882-3.076-5.113-4.504-7.744-1.551-2.737-3.033-5.592-3.69-8.693-2.958-3.157-4.587-7.63-3.941-11.952.133-4.776-1.41-9.71-4.606-13.31-.805-.793-1.766-1.67-2.954-1.73z"/>
<path d="M509.16 307.97c-1.122.198-1.805 1.266-2.406 2.137-.233.873.837 1.812 1.008 2.76a21.771 21.771 0 0 1 1.416 10.426c-.086 2.502.809 4.946 2.084 7.065.368-1.563 1.816-2.687 3.386-2.84.571-.101 1.411.188 1.078-.683-.399-4.786-1.128-9.598-2.8-14.12-.649-1.614-1.385-3.314-2.784-4.42-.284-.201-.623-.374-.982-.325z"/>
</g>
<use height="100%" width="100%" xlink:href="#a" transform="matrix(-1 0 0 1 1440 0)"/>
<path d="M715.67 475.98c-13.493-1.285-25.667-11.12-29.829-24 .224-2.219 2.987 1.241 4.292 1.474 2.45 1.36 5.1 2.48 7.92 2.654 3.558 1.529 5.757 5.035 9.152 6.863 1.577 1.228 7.155 3.64 6.119-.264-1.307-2.04-2.206-4.625-1.081-6.962 1.892-4.15 4.802-7.763 7.73-11.226 2.153-.72 3.595 3.527 5.134 4.957 2.131 3.279 4.7 7.28 3.447 11.352-1.22 1.509-2.021 6.047 1.241 4.522 4.022-1.77 7.316-4.742 10.651-7.517 2.919-2.039 6.654-2.183 9.713-3.97 1.417-.36 4.37-3.195 4.986-1.623-1.676 4.488-4.482 8.507-7.482 12.211-4.86 5.55-11.432 9.725-18.786 10.902-4.346.796-8.806.964-13.207.628z"/>
<path d="M731.53 460.22c.297-2.708-.32-5.473-1.703-7.935-2.123-4.326-5.121-8.166-8.046-11.96-2.757-1.616-4.287 3.657-6.12 5.17-2.857 4.277-6.443 8.657-6.617 14.036-1.607 2.502-4.604-2.04-5.896-3.535-2.468-3.491-4.336-7.62-4.03-11.987-.292-7.036 1.057-14.041 3.62-20.581 1.935-5.583 5.076-11.006 4.757-17.105.224-4.59-.708-9.658-4.426-12.745-3.538-2.776 2.291-3.368 4.143-1.928 3.168.212 4.882 5.448 7.777 4.152 1.153-2.735 1.382-5.997 3.76-8.13 2.333-3.196 4.772 1.356 5.57 3.488 1.648 1.873-.092 6.507 2.583 6.628 3.206-2.247 5.492-6.022 9.591-6.844 1.663-.949 4.504-.127 2.312 1.785-3.034 2.844-5.626 6.4-6.179 10.63-.928 5.308.4 10.69 2.713 15.47 4.446 9.39 7.885 19.997 5.636 30.445-1.043 4.644-4.198 8.645-8.032 11.34-.484.293-1.25.273-1.413-.394z"/>
<path d="M726.73 389.63c-1.456-2.624-3.224-5.21-5.673-6.995-2.381-.005-3.85 2.999-5.468 4.573-1.134 2.11-2.512 5.638-5.305 2.88-4.444-2.594-5.23-8.276-5.202-12.959-.28-7.59 2.777-14.674 5.492-21.587 1.728-4.328 1.302-9.199.248-13.634-1.327-5.092-5.414-8.623-8.56-12.595.214-1.536 4.235-.697 5.748-.405 3.36.852 5.367 3.825 7.87 5.926 1.782-.54 1.055-4.14 1.884-5.833.062-2.382 3.233-5.522 4.541-2.112 1.959 2.168-.062 6.465 2.469 7.815 2.411-.893 3.6-3.529 5.866-4.72 2.23-1.52 5.378-1.69 7.778-.497.845 2.213-2.64 4.055-3.65 5.977-4.051 5.006-5.475 11.91-3.74 18.112 1.377 4.865 3.814 9.406 4.655 14.434 1.013 5.653.98 11.59-.484 17.16-.874 3.38-3.802 5.64-6.825 7.044-.746-.694-1.14-1.714-1.644-2.583z"/>
<path d="M711.61 326.89c-3.36-2.46-4.47-4.81-4.47-9.46 0-2.38.44-3.67 2.01-5.83 2.31-3.2 1.89-4.21-1.38-3.27-5.26 1.51-7.77.13-7.95-4.35-.08-2.19.38-3.12 3.33-6.66 2.36-2.84 3.22-4.33 2.75-4.8-.46-.46-3.25 1.96-8.98 7.79-4.57 4.65-9.71 9.4-11.42 10.56-9.84 6.64-19.24 7.67-23.53 2.56-2.2-2.61-2.08-4.08.46-5.66 1.17-.72 3.14-2.38 4.39-3.69 2.95-3.07 11.74-9.41 16.1-11.61 3.54-1.79 4.38-3 2.08-3-2.98 0-12.54 6.22-19.79 12.88-2.13 1.97-5.2 4.16-6.81 4.87-3.62 1.6-10.73 2.19-13.89 1.15-2.23-.74-6.3-4.58-6.3-5.95 0-.36.93-1.16 2.06-1.77 1.13-.6 3.16-2.07 4.5-3.24 5.8-5.09 16.79-10.33 25.51-12.16 2.77-.58 1.75-1.98-1.34-1.84-5.99.26-17.88 5.83-24.98 11.69-8.32 6.86-20.87 6.21-24.91-1.29-.7-1.29-1.11-2.5-.91-2.69.19-.19 2.66-.93 5.49-1.65 3.06-.77 9.12-3.28 14.91-6.17 9.11-4.54 11.81-5.51 18.08-6.52 2.82-.45 2.97-1.83.23-2.15-3.53-.42-8.94 1.35-18.5 6.05-12.28 6.04-15.72 7.08-22.19 6.7-5.9-.36-9.23-1.87-14.02-6.4-3.13-2.97-7.57-10.51-6.7-11.38.21-.21 1.65 0 3.2.45 1.72.51 6.65.85 12.59.86 8.31.02 10.52-.2 14.95-1.48 7.41-2.14 17.26-7.15 24-12.18 12.89-9.64 23.4-13.51 36.8-13.57 12.37-.05 20.24 2.81 27.21 9.88 2.36 2.39 4.37 3.94 4.7 3.61.31-.31.65-4.49.75-9.29 0 0 3.64-.35 4.41.67 0 7.79.09 8.4 1.22 8.4.74 0 1.53-.76 2.02-1.94 1.06-2.55 4.98-6.04 9.17-8.16 9.05-4.59 24.71-4.73 37.29-.34 5.3 1.86 11.18 5.18 16.78 9.5 5.62 4.32 17.11 10.1 23.9 12.03 6.87 1.95 18.98 2.44 25.19 1.03 2.56-.58 4.96-1.06 5.34-1.06 2.29 0-1.61 7.63-6.19 12.1-8.37 8.18-19.26 8.14-34.58-.12-9.55-5.14-20.97-7.95-20.97-5.15 0 .58.6.97 1.49.97 3.32 0 9.73 2.23 18.67 6.47 9.67 4.6 15.1 6.54 18.32 6.54 2.34 0 2.41 1.45.23 4.65-2.31 3.41-6.23 5.1-11.77 5.09-5.29-.02-8.23-1.18-12.96-5.11-7.91-6.58-27.62-13.92-26.86-10 .15.78 1.1 1.26 3.13 1.57 6.86 1.05 14.91 4.89 23.15 11.06 2.54 1.91 5.18 3.79 5.85 4.19 1.13.66 1.15.86.26 2.53-1.48 2.76-5.21 4.9-9.25 5.32-5.23.54-9.78-1.02-14.49-4.96-9.94-8.32-19.31-14.34-22.31-14.34-2.45 0-1.35 1.35 2.97 3.64 5.68 3.01 11.52 7.08 15.82 11.03 2.03 1.88 4.32 3.74 5.08 4.15 1.8.96 1.73 2.37-.25 4.96-2.02 2.64-5.36 3.8-9.69 3.34-8.64-.91-15.38-5.08-25.97-16.07-4.14-4.29-7.83-7.8-8.21-7.8-1.41 0-.58 1.91 2.15 4.97 3.38 3.78 4.03 5.91 2.75 8.98-1.13 2.72-3.01 3.35-6.87 2.31-3.95-1.07-4.57-.1-1.98 3.12 3.86 4.81 3.29 10.7-1.44 14.75-1.47 1.25-3.01 2.28-3.43 2.28-.41 0-1.45-1.07-2.32-2.38-3.04-4.62-5.71-4.59-8.67.08-1.03 1.63-1.9 2.95-1.93 2.94-.04-.01-1.43-1.01-3.08-2.23z"/>
<path d="M726.67 233.03l-5.13 4.06-4.6-3.47v27.74l9.73.12z"/>
<path d="M694.89 204.25c-1.02 13.11-4.35 22.26-8.98 32.35l11.1-10.29 7.72 9.17 8.36-9.33 8.53 7.88 8.2-8.2 8.52 9.97 7.4-8.2 12.54 9c-4.55-10.09-10.71-18.64-9.94-32.84-12.15 9.03-41.02 10.66-53.45.49z"/>
<path d="M716.95 197.56c-4.46.08-9.16.14-13.39.97-2.93.58-5.59 1.53-7.81 3.1.36 8.53 41 12.09 51.9.16-2.29-1.67-5.09-2.66-8.17-3.26-4.07-.79-8.57-.87-12.84-.94 0 2.34.02 4.69.02 7.04l-9.71-.03v-7.04z"/>
<path d="M724.9 153.97l-6.31.05v49.38l6.44.03z"/>
<path d="M724.89 155.24l-2.41 23.64 24.32 11.88-12.31-16.46 16.81-5.45zm-2.71-6.16c-3.69 0-6.42 1.38-6.42 3.02 0 1.64 2.73 3.03 6.42 3.03s6.4-1.39 6.4-3.03-2.71-3.02-6.4-3.02z"/>
</g>
<g fill="#f7e017">
<path d="M314.033 375.88c2.66-.88 4.174-2.493 5.26-5.6.54-1.547.907-3.153.814-3.573-.227-.994-1.374-.94-2.64.113-.867.727-.974 1.093-.727 2.573.633 3.734-.693 4.66-7.76 5.42-.7.074-2.727-.046-4.513-.266-3.36-.42-4.56-.087-3.34.926.366.307 1.3.72 2.073.914 1.887.486 8.813.16 10.833-.507zm14.647-.62c.4-.367 1.773-1 3.053-1.413 1.707-.547 2.587-1.134 3.307-2.207 2.073-3.087 1.687-5.747-1.36-9.333-1.653-1.947-2.387-1.894-3.707.266-1.14 1.867-1.113 1.987.527 2.414.86.22 1.687.853 2.14 1.633 1.787 3.093 1.26 5.007-1.387 5.027-2.4.02-3.06.36-3.706 1.913-.34.807-.614 1.667-.614 1.913 0 .654.907.54 1.747-.213zm-4.807-3.493c.454-1.227.614-3.434.56-7.934-.033-3.426-.166-6.333-.3-6.466-.4-.4-2.373.873-2.633 1.693-.133.427.087 1.413.487 2.187.613 1.193.693 2.306.506 6.98-.24 5.906.147 6.9 1.38 3.54z"/>
<path d="M312.593 368.953c.24-1.1.547-3.353.687-5 .14-1.646.48-3.726.747-4.626.68-2.307-.007-2.914-1.827-1.62l-1.353.966.28 3.314c.26 2.986-.214 8.553-.9 10.713-.187.573.08.427.833-.453.607-.707 1.3-2.194 1.533-3.294zm-10.006 1.607c2.434-2.036 2.154-5.514 2.693-8.347-.056-1.883 1.203-4.14.39-5.788-2.274.416-3.676 2.57-2.512 4.716.097 2.492.009 5.205-1.272 7.409-1.047 1.441-4.362 1.082-4.209-.96.832-3.072-2.848-1.577-4.284-.772-1.11.773-3.455.83-2.64-1.105-.538-2.577-3.854-.965-5.655-.976-1.701-.031-.14-3.447-2.582-2.848-4.537-.357-9.546.04-13.473-2.7-2.3-1.106-1.958-3.87-.761-5.66 1.429-2.443 1.837-5.5 4.105-7.395 2.246-2.154-2.118-1.245-3.1-.519-2.189 1.198-.156 4.282-1.947 5.993-1.046 1.774-2.424 4.224-4.846 3.886-3.494-.66-5.507-3.91-8.012-6.088-2.145-.428-.939 3.481.169 4.303 2.192 1.641 4.753 2.837 7.394 3.546 2.63-.42 2.715 3.022 4.963 3.562 4.125 1.922 8.722 2.498 13.222 2.733 1.768.147.774 3.295 3.098 2.673 1.298.337 4.231-.483 4.378 1.025-1.968 2.338 1.89 2.285 3.318 1.867 1.828-.28 4.164-.978 4.647 1.528 1.526 1.609 4.328 1.371 6.186.45.261-.15.507-.329.73-.533z"/>
<path d="M262.747 350.38c.74-.94 1.846-2.84 2.46-4.227.606-1.393 1.52-2.973 2.02-3.513 1.173-1.267.52-2.047-1.374-1.627-1 .22-1.406.587-1.573 1.454-.567 2.826-1.593 5.72-2.507 7.066-1.653 2.44-1.693 2.54-1.013 2.54.353 0 1.247-.76 1.987-1.693zm-24.974-15.653c-1.866 0-1.946 1.18-.126 1.813.88.307 1.626 1.047 2.226 2.253 1.774 3.527 2.814 4.154 7.52 4.56l3.02.274.147 1.833c.073 1.013.313 1.853.547 1.853.233 0 1.4-.506 2.58-1.106 2.213-1.12 4.313-3.734 4.313-5.354 0-1.06-1.767-2.206-3.373-2.206-.714 0-2.074.573-3.147 1.353-3.36 2.433-6.953 1.94-8.92-1.227-1.613-2.613-3.3-4.046-4.787-4.046zm16.307 6.5c.893 0 1.113.66.627 1.92-.334.866-1.42.893-1.747.04-.387-1.007.153-1.96 1.12-1.96zm126.48-4.1c-1.22.046-1.58.313-2.353 1.46-1.267 1.88-1.394 5.953-.227 7.393.727.893.833.913 2.373.273 2.147-.9 2.507-.866 2.5.287-.013 2.947-4.24 8.627-8.666 11.647-1.194.813-2.26 1.72-2.374 2.02-.32.84 1.32.653 3.334-.374 2.746-1.4 6.353-5.08 7.833-7.98 1.173-2.313 1.34-3.1 1.48-7.146.127-3.727.027-4.82-.607-6.06-.706-1.394-.933-1.52-2.706-1.52-.214 0-.407-.007-.587 0zm.147 2.6c.92 0 1.08.206 1.186 1.526.094 1.094-.1 1.76-.706 2.307-.827.747-.894.74-1.627-.373-1.027-1.574-.393-3.46 1.147-3.46zm-20.24 28.453c3.9-1.92 6.2-4.08 7.68-7.207.7-1.486 1.273-2.886 1.273-3.126 0-.54-1.92-1.434-3.073-1.434-1.147 0-1.38-.793-.887-2.986.48-2.14-.1-4.82-1.04-4.82-.34 0-.94.5-1.34 1.106-.613.94-.647 1.34-.193 2.707.666 2.027.14 3.54-1.674 4.833-.86.614-1.333 1.32-1.333 2.007 0 .58.073 1.053.16 1.053.093 0 1.04-.493 2.107-1.086l1.946-1.087 1.147.9c.627.493 1.147 1.3 1.147 1.793 0 2.374-6.767 6.36-11.414 6.734-2.473.2-2.893.113-3.753-.74-.7-.7-.9-1.287-.727-2.114.134-.633.374-1.786.534-2.56.426-2.066-.46-1.786-1.994.627-1.26 1.993-1.633 4.12-.926 5.24.58.913 4.433 1.787 7.16 1.62 1.713-.1 3.406-.58 5.2-1.46zm26.026-14.52c2.454-2.447 3.494-5.427 3.507-10.033l.007-3.46 2.026-.96c2.634-1.254 5.127-3.747 5.127-5.134 0-1.426-.633-1.353-1.78.2-.833 1.127-1.947 1.807-6.02 3.68-1.027.474-1.093.727-1.327 5.034-.273 4.966-.946 6.826-3.72 10.22-1.7 2.066-1.76 2.34-.58 2.34.487 0 1.727-.847 2.76-1.887zm-26.72-2.773c.234-.714-1.12-1.22-1.706-.64-.247.246-.314.673-.147.946.387.62 1.613.414 1.853-.306zm36.847-9.54c.24-.714-1.12-1.22-1.7-.64-.253.253-.32.68-.153.953.386.62 1.613.413 1.853-.313zm-44.347-25.827c-.953.454-1.447 1.483-2.11 2.269-.476.324-.094.627.18.932 1.682 1.811 2.393 4.258 3.192 6.54.785 2.693 1.773 5.585.953 8.391-.323 1.075-1.169 2.188-2.431 1.83-2.02-.125-4.009-.661-6.035-.64-1.803.094-3.197 1.735-5.04 1.556-1.179.078-1.129-2.412-2.223-1.746-.542 1.298-.275 2.746-.34 4.119.204.197.777.025 1.12.083h3.63c.257 1.253.225 2.69 1.125 3.687 1.26.448 2.677.061 3.875-.429 1.283-.597 1.455-2.14 1.818-3.343.386-1.292 2.078-.954 3.076-1.461 2.444-.713 4.045-3.253 3.902-5.751-.158-3.815-1.613-7.404-2.718-11.014-.555-1.59-.94-3.25-1.584-4.803-.076-.134-.23-.246-.39-.22zm-6.046 21.813c1.357-.088 1.947 1.58 1.66 2.687-.508 1.503-2.357.54-2.73-.544-.688-.968-.263-2.27 1.07-2.143z"/>
<path d="M295.96 324.813c-.607-.013-1.287.214-1.96.687-3.54 2.48-4.447 5.413-2.04 6.56 1.767.847 1.32 1.84-1.46 3.233-3.98 1.987-7.493 1.74-14.167-1.02-1.64-.68-2.066-.42-1.686 1.08.366 1.474 1.713 2.28 5.06 3.04 3.6.827 7.953.56 10.753-.646 1.367-.587 2.987-1.82 4.353-3.307l2.167-2.38 2.52.313c3.107.38 3.167.414 3.167 1.9 0 1.18.066 1.207 2.92 1.474 1.606.153 3.72.293 4.706.293 1.26.007 1.974.227 2.394.813.56.78.893.82 5.586.4 4.387-.4 5.247-.366 7.227.307 1.407.48 2.953.673 4.127.547 3.36-.38 7.993-3.127 8.666-5.147.08-.247 1.3-.68 2.707-.96 3.393-.68 3.54-1.42.373-1.813-1.373-.174-3.433-.674-4.58-1.127-1.153-.453-2.726-.833-3.5-.833-1.706 0-3.313 1.066-3.313 2.166 0 .72.253.794 2.273.587 1.9-.193 2.454-.087 3.454.707.66.52 1.1 1.133.96 1.353-.447.727-4.414 2.533-6.167 2.813-1.173.187-2.12.06-3.04-.413-1.54-.8-3.807-.92-4.233-.233-.18.3-.667.106-1.334-.52l-1.04-.98-2.353.98c-2.393.993-3.273.953-3.273-.187 0-.52-.7-.58-4.227-.353-3.887.253-4.293.186-5.02-.627-.673-.747-.687-1.007-.207-1.773.44-.707.44-1.014.02-1.434-.42-.42-.966-.413-2.5 0-3.866 1.034-4.96.454-4.96-2.566 0-1.814-1.04-2.914-2.373-2.934zm-.96 2.774c.207 0 .38.126.647.393.34.34.52.933.373 1.313-.347.9-1.987.867-2.333-.04-.167-.44.046-.933.54-1.293.346-.253.566-.38.773-.373z"/>
<path d="M288.067 330.4c2.353-1.493 2.3-1.38 2.64-5.527.233-2.926.193-3.146-.6-3.146-1.154 0-1.754 1.266-1.754 3.68 0 1.546-.24 2.24-1.066 3.06-1.96 1.96-6.827 1.066-7.44-1.367-.207-.833.06-1.587 1.08-3.033 2.126-3.02 1.646-3.76-.96-1.467-1.794 1.567-2.114 1.613-1.774.26.314-1.247-.34-1.74-1.8-1.373-.746.186-1.153.653-1.333 1.56-.173.886-.58 1.38-1.287 1.553-1.18.3-3.193-.82-3.193-1.773 0-.707 3.013-4.387 6.88-8.4 1.46-1.52 2.653-2.934 2.653-3.147 0-.213-.78-.387-1.733-.387-1.393 0-1.733.154-1.733.8 0 .44-1.947 2.994-4.334 5.68-4.973 5.6-5.386 6.767-2.926 8.26 1.98 1.214 4.52 1.12 6.513-.233l1.613-1.1v1.993c0 2.547.507 3.46 2.507 4.52 2.513 1.327 5.553 1.167 8.047-.413zm104.373-34.607c-1.845 1.102-.401 3.416-.122 4.953-.753 2.097-3.448 2.662-5.412 3.051-2.782.461-4.754 2.789-5.812 5.262-.574 1.606-1.958 4.096-3.466 1.651-1.312-1.329-3.722-2.382-5.272-.83-1.178 1.12-1.477 2.77-1.916 4.268-.695-1.151-1.007-2.865-2.48-3.229-2.352.331-1.502 3.296-.396 4.519 1.005 1.425 1.97 3.305.985 4.998-.868 2.034-3.873 3.406-5.637 1.666-1.649-.87-.546-3.976-2.17-4.147-.802.58-.869 3.83-2.153 2.068-.927-1.506-.436-3.568-1.57-4.923-1.34.167-2.418 2.475-1.972 3.714 1.788 2.412 2.523 5.437 3.22 8.311.435 1.151-.063 3.485 1.014 3.94.746-1.852.053-3.953.64-5.823 1.746-.22 3.687.577 5.518.154 2.619-.34 4.643-2.55 5.561-4.904.278-1.77-.053-3.565-.102-5.344 2.07.32 4.219.314 6.21.986.986 1.513-.314 3.632-.587 5.286-1.039 3.368-3.677 5.813-6.244 8.065-1.073.635-1.217 2.318.368 1.412 3.449-1.475 6.02-4.599 7.499-7.98 1.079-2.601.211-5.498.916-8.158 1.041-1.998 3.548-1.577 5.402-1.57 1.92-.074 3.558-2.31 2.917-4.175-.611-2.165 1.679-3.208 3.244-3.981 2.074-1.047 3.665-3.173 3.505-5.572-.086-1.227-.025-3.555-1.688-3.667zm-7.354 12.5c2.222.59-.402 4.835-1.583 2.146-.364-1.026.5-2.183 1.583-2.146zm-10.313 3.04c2.892-.169 1.853 4.054-.59 2.137-1.267-.636-.848-2.215.59-2.137zm-104.706 16.32c.08-.42-.134-.72-.514-.72-.806 0-1.293.707-.913 1.32.393.634 1.26.274 1.427-.6zm33.893-3.786c0-.62-.233-.854-.753-.754-1.134.214-1.26 1.654-.147 1.654.62 0 .9-.28.9-.9zm-41.94-20.347c-1.353-.278-2.204.867-2.667 1.958-1.011 1.7-2.247 3.44-4.062 4.34-1.305.363-2.729-.134-3.854-.807-1.343-.669-1.038-2.284-1.614-3.4-.971-.763-2.694.328-2.655 1.514-.108 1.59 1.38 2.51 2.616 3.124 1.05.643 2.572 1.001 2.991 2.302-.029 1.106.416 2.372 1.762 1.945 1.507-.025 1.897 1.81 1.289 2.911-.62 1.241-1.038 2.695-.741 4.077.72.606 1.455-1.02 1.976-1.484l1.063-1.417c2.666.144 5.329.484 8 .39 1.901-.035 3.52-1.208 4.728-2.584 1.709-1.787 3.113-3.886 5.065-5.428 1.389-.34.642-2.956-.809-2.2-1.307.49-1.718 1.967-2.624 2.909-1.543 1.868-3.118 3.764-5.063 5.229-1.416.587-3.047.33-4.502 0-.607-.531 1.206-.964 1.459-1.554.834-.834 1.825-1.625 2.309-2.72-.463-1.01-1.878-1.092-2.875-1.113-2.457.295-4.334 2.358-6.816 2.552-1.883.066-.903-1.974-.054-2.67 1.661-1.972 3.456-3.83 5.19-5.738.493-.592 2.273-1.154 1.134-1.986-.398-.144-.828-.144-1.246-.15zm1.208 9.98c1.24.696-.79 1.837-1.645 1.681-1.122.336-1.142-.807-.146-1.035.56-.292 1.152-.596 1.791-.647zm-3.812 2.603c.705-.013 2.183.665.795 1.098-.966.75-2.058-.762-.795-1.098z"/>
<path d="M289.433 317.827c0-.94-1.686-.807-1.873.146-.12.614.073.76.86.647.56-.08 1.013-.433 1.013-.793zm74.7-6.614c.174-.9-1.08-1.5-1.74-.84-.66.66-.053 1.914.84 1.74.414-.08.82-.486.9-.9zM247.88 302.06c1.173-1.007 1.187-1.073.68-3.287-.72-3.1-.673-3.433.507-3.726 1.493-.38 5.286 1.653 6.126 3.28.654 1.26.634 1.346-.473 2.373-1.193 1.1-1.187 2.387.007 2.387.986 0 3.713-2.58 3.713-3.507 0-1.287-3.027-4.327-5.42-5.44-1.48-.693-2.96-1.013-4.673-1.02-3.067 0-3.48.66-2.654 4.227.974 4.18-.346 4.746-3.713 1.593-2.5-2.34-3.487-4.773-3.473-8.607.006-4.113 1.58-6.146 5.126-6.626 2.354-.314 2.294-.867-.126-1.227-3.534-.533-6.52 1.827-7.654 6.04-1.26 4.673 1.627 10.367 6.734 13.3 2.673 1.533 3.74 1.58 5.293.24zm139.227-5.127c.286-.286.52-.933.52-1.433s.486-1.573 1.08-2.38c.6-.807 1.086-1.633 1.086-1.833 0-.82-1.353-.794-2.42.053-1.093.853-1.913.873-1.913.04 0-.207.52-.633 1.16-.947 1.587-.773 1.72-1.54.38-2.153-1.72-.78-3.447.647-3.627 3-.113 1.573.014 1.847 1.227 2.56 1.107.653 1.313 1 1.127 1.933-.32 1.62.353 2.187 1.38 1.16zm13.086-1.48c.96-.86 1.74-1.84 1.74-2.166 0-.327.827-1.194 1.84-1.92 2.874-2.067 3.507-4.154 2.22-7.36-.5-1.26-2.073-3-5.493-6.08-2.627-2.374-5.047-4.314-5.36-4.314-.933 0-.767 3.434.18 3.734 1.707.546 2.74 1.246 5.427 3.666 3.12 2.82 4.56 5.454 3.773 6.92-.753 1.42-1.753.98-4.507-1.973-1.446-1.553-2.88-2.82-3.173-2.82-.32.007-.547.567-.547 1.353 0 .987.527 1.927 1.954 3.514 2.326 2.586 2.553 4.14.806 5.513-.626.493-1.273.9-1.433.9-.153 0-.667-.773-1.133-1.713-.974-1.974-6.927-8.26-7.82-8.26-.407 0-.607.506-.607 1.506 0 1.207.24 1.634 1.2 2.127 1.18.613 4.1 3.553 7.033 7.1.84 1.013 1.667 1.833 1.847 1.84.173 0 1.1-.707 2.053-1.567zm5.84-16.713c-.386-1.247-8.373-9.467-9.193-9.467-.427 0-.56.507-.46 1.814.113 1.586.287 1.86 1.38 2.146.68.18 2.787 1.834 4.673 3.667 1.88 1.833 3.534 3.227 3.667 3.087.133-.134.107-.694-.067-1.247zm-47.7 92.52a1.187 1.088 0 1 1-2.374 0 1.187 1.088 0 1 1 2.374 0zm4.194-1.4a1.187 1.088 0 1 1-2.374 0 1.187 1.088 0 1 1 2.374 0z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 21 KiB

-867
View File
@@ -1,867 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" fill="#28ff09">
<path fill="#007934" d="M0 0h640v480H0z"/>
<path fill="#ffe000" d="M0 0h640v320H0z"/>
<path fill="#d52b1e" d="M0 0h640v160H0z"/>
<g stroke="#000" stroke-width="1.5">
<g stroke-width=".217">
<path d="M400.692 187.885c1.08.916 183.545 161.535 184.346 162.235.472-.555 1.388-1.626 1.837-2.128-.752-.678-183.282-161.2-184.356-162.178.326-.602-2.497 2.7-1.827 2.07z" fill="#a05a2c" transform="matrix(-.60671 .07311 .08527 .52021 595.663 83.676)"/>
<path d="M389.184 177.624c.763 1.213 2.953 4.297 2.626 6.843 1.145-1.144 1.684-1.964 2.762-3.194-.588 1.808-.203 2.756.67 3.257.625.72 2.36.287 3.45-.12-1.014.96-2.145 1.964-3.68 2.36-1.536.396-2.094.372-3.029.614 1.03.46 3.657 1.081 5.439 1.152.891.036 2.6-.021 3.27-.651 1.08.916 2.9-1.093 1.827-2.071.326-.602.25-1.486.19-2.66-.07-1.326-.633-3.554-1.871-5.544a17.245 17.245 0 0 1-.334 3.308c-.205 1.049-.818 1.965-1.413 2.948.29-.977.348-2.402-.623-3.287-.97-.886-2.175-.718-3.233-.038.879-1.05 1.569-1.703 2.64-2.907-1.261.164-5.538-1.076-6.997-1.817-1.459-.74-6.223-4.041-8.921-6.06 2.321 2.356 6.482 6.68 7.227 7.867z" fill="#e7e7e7" transform="matrix(-.60671 .07311 .08527 .52021 595.663 83.676)"/>
<path d="M400.692 187.885c1.08.916 183.545 161.535 184.346 162.235.472-.555 1.388-1.626 1.837-2.128-.752-.678-183.282-161.2-184.356-162.178.326-.602-2.497 2.7-1.827 2.07z" fill="#a05a2c" transform="matrix(-.60671 -.07311 -.08527 .52021 646.151 154.34)"/>
<path d="M389.184 177.624c.763 1.213 2.953 4.297 2.626 6.843 1.145-1.144 1.684-1.964 2.762-3.194-.588 1.808-.203 2.756.67 3.257.625.72 2.36.287 3.45-.12-1.014.96-2.145 1.964-3.68 2.36-1.536.396-2.094.372-3.029.614 1.03.46 3.657 1.081 5.439 1.152.891.036 2.6-.021 3.27-.651 1.08.916 2.9-1.093 1.827-2.071.326-.602.25-1.486.19-2.66-.07-1.326-.633-3.554-1.871-5.544a17.245 17.245 0 0 1-.334 3.308c-.205 1.049-.818 1.965-1.413 2.948.29-.977.348-2.402-.623-3.287-.97-.886-2.175-.718-3.233-.038.879-1.05 1.569-1.703 2.64-2.907-1.261.164-5.538-1.076-6.997-1.817-1.459-.74-6.223-4.041-8.921-6.06 2.321 2.356 6.482 6.68 7.227 7.867z" fill="#e7e7e7" transform="matrix(-.60671 -.07311 -.08527 .52021 646.151 154.34)"/>
<g>
<path d="M400.692 187.885c1.08.916 183.545 161.535 184.346 162.235.472-.555 1.388-1.626 1.837-2.128-.752-.678-183.282-161.2-184.356-162.178.326-.602-2.497 2.7-1.827 2.07z" fill="#a05a2c" transform="matrix(-.61268 0 0 .52533 621.816 118.783)"/>
<path d="M389.184 177.624c.763 1.213 2.953 4.297 2.626 6.843 1.145-1.144 1.684-1.964 2.762-3.194-.588 1.808-.203 2.756.67 3.257.625.72 2.36.287 3.45-.12-1.014.96-2.145 1.964-3.68 2.36-1.536.396-2.094.372-3.029.614 1.03.46 3.657 1.081 5.439 1.152.891.036 2.6-.021 3.27-.651 1.08.916 2.9-1.093 1.827-2.071.326-.602.25-1.486.19-2.66-.07-1.326-.633-3.554-1.871-5.544a17.245 17.245 0 0 1-.334 3.308c-.205 1.049-.818 1.965-1.413 2.948.29-.977.348-2.402-.623-3.287-.97-.886-2.175-.718-3.233-.038.879-1.05 1.569-1.703 2.64-2.907-1.261.164-5.538-1.076-6.997-1.817-1.459-.74-6.223-4.041-8.921-6.06 2.321 2.356 6.482 6.68 7.227 7.867z" fill="#e7e7e7" transform="matrix(-.61268 0 0 .52533 621.816 118.783)"/>
</g>
</g>
<g stroke-width=".217">
<path d="M400.692 187.885c1.08.916 183.545 161.535 184.346 162.235.472-.555 1.388-1.626 1.837-2.128-.752-.678-183.282-161.2-184.356-162.178.326-.602-2.497 2.7-1.827 2.07z" fill="#a05a2c" transform="matrix(.60671 .07311 -.08527 .52021 44.337 83.676)"/>
<path d="M389.184 177.624c.763 1.213 2.953 4.297 2.626 6.843 1.145-1.144 1.684-1.964 2.762-3.194-.588 1.808-.203 2.756.67 3.257.625.72 2.36.287 3.45-.12-1.014.96-2.145 1.964-3.68 2.36-1.536.396-2.094.372-3.029.614 1.03.46 3.657 1.081 5.439 1.152.891.036 2.6-.021 3.27-.651 1.08.916 2.9-1.093 1.827-2.071.326-.602.25-1.486.19-2.66-.07-1.326-.633-3.554-1.871-5.544a17.245 17.245 0 0 1-.334 3.308c-.205 1.049-.818 1.965-1.413 2.948.29-.977.348-2.402-.623-3.287-.97-.886-2.175-.718-3.233-.038.879-1.05 1.569-1.703 2.64-2.907-1.261.164-5.538-1.076-6.997-1.817-1.459-.74-6.223-4.041-8.921-6.06 2.321 2.356 6.482 6.68 7.227 7.867z" fill="#e7e7e7" transform="matrix(.60671 .07311 -.08527 .52021 44.337 83.676)"/>
<path d="M400.692 187.885c1.08.916 183.545 161.535 184.346 162.235.472-.555 1.388-1.626 1.837-2.128-.752-.678-183.282-161.2-184.356-162.178.326-.602-2.497 2.7-1.827 2.07z" fill="#a05a2c" transform="matrix(.60671 -.07311 .08527 .52021 -6.151 154.34)"/>
<path d="M389.184 177.624c.763 1.213 2.953 4.297 2.626 6.843 1.145-1.144 1.684-1.964 2.762-3.194-.588 1.808-.203 2.756.67 3.257.625.72 2.36.287 3.45-.12-1.014.96-2.145 1.964-3.68 2.36-1.536.396-2.094.372-3.029.614 1.03.46 3.657 1.081 5.439 1.152.891.036 2.6-.021 3.27-.651 1.08.916 2.9-1.093 1.827-2.071.326-.602.25-1.486.19-2.66-.07-1.326-.633-3.554-1.871-5.544a17.245 17.245 0 0 1-.334 3.308c-.205 1.049-.818 1.965-1.413 2.948.29-.977.348-2.402-.623-3.287-.97-.886-2.175-.718-3.233-.038.879-1.05 1.569-1.703 2.64-2.907-1.261.164-5.538-1.076-6.997-1.817-1.459-.74-6.223-4.041-8.921-6.06 2.321 2.356 6.482 6.68 7.227 7.867z" fill="#e7e7e7" transform="matrix(.60671 -.07311 .08527 .52021 -6.151 154.34)"/>
<g>
<path d="M400.692 187.885c1.08.916 183.545 161.535 184.346 162.235.472-.555 1.388-1.626 1.837-2.128-.752-.678-183.282-161.2-184.356-162.178.326-.602-2.497 2.7-1.827 2.07z" fill="#a05a2c" transform="matrix(.61268 0 0 .52533 18.184 118.783)"/>
<path d="M389.184 177.624c.763 1.213 2.953 4.297 2.626 6.843 1.145-1.144 1.684-1.964 2.762-3.194-.588 1.808-.203 2.756.67 3.257.625.72 2.36.287 3.45-.12-1.014.96-2.145 1.964-3.68 2.36-1.536.396-2.094.372-3.029.614 1.03.46 3.657 1.081 5.439 1.152.891.036 2.6-.021 3.27-.651 1.08.916 2.9-1.093 1.827-2.071.326-.602.25-1.486.19-2.66-.07-1.326-.633-3.554-1.871-5.544a17.245 17.245 0 0 1-.334 3.308c-.205 1.049-.818 1.965-1.413 2.948.29-.977.348-2.402-.623-3.287-.97-.886-2.175-.718-3.233-.038.879-1.05 1.569-1.703 2.64-2.907-1.261.164-5.538-1.076-6.997-1.817-1.459-.74-6.223-4.041-8.921-6.06 2.321 2.356 6.482 6.68 7.227 7.867z" fill="#e7e7e7" transform="matrix(.61268 0 0 .52533 18.184 118.783)"/>
</g>
</g>
<g stroke-width=".238">
<path d="M408.421 331.297c-4.148-7.959-21.27-18.781-24.222-19.09 7.87 17.358 20.839 23.639 24.222 19.09z" fill="#00e519" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M408.343 331.298c-3.383 4.549-16.274-1.733-24.144-19.011 11.722 11.098 22.203 19.168 24.144 19.011z" fill="#ffe533" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M408.343 331.298c-3.383 4.549-16.274-1.733-24.144-19.011 11.722 11.098 22.203 19.168 24.144 19.011z" fill="none" stroke-linecap="round" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M408.421 331.22c-4.42-8.465-22.357-18.936-24.261-19.129 7.91 17.319 20.878 23.678 24.261 19.13z" fill="none" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M384.558 175.702l-2.79 118.6c1.24 2.796 4.078 1.046 4.544 1.589 1.045 4.388 4.19 6.6 4.577 7.687.85 5.904-2.417 8.937-2.727 9.17-3.694 2.45-.436 7.887-1.097 8.858.076 2.33 3.766 3.454 3.452 6.095.272-.193.021 19.075-.02 21.133.62 1.398.764 14.373.764 14.373 3.494 1.472 21.213-2.506 21.407-2.236-1.267-17.284-9.67-46.683-8.697-47.887-.61-12.198-3.86-26.568-7.354-28.04-3.57-5.203-2.512-14.022-.762-15.383-3.728-1.784-4.619-5.318-4.813-5.589l1.166-85.54c-2.134-2.135-2.29-.736-3.885.625 0 0-.618-3.03-.385-3.263-1.087-1.476-3.03-.93-3.38-.192z" fill="#a05a2c" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M392.66 153.164c-.081 2.331-1.323 1.788-1.867 1.866l-2.02-.23c-2.019-.854-3.613-.114-3.963.625l-3.041 138.878c1.24 2.795 4.272 1.316 4.775 1.899l1.953-94.943s-.435-33.874-.348-43.196l5.439-.238c1.552.232 2.447-.663 2.566-2.567l-2.207-50.497-1.249 47.51-.038.893" fill="#cce5e5" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M392.66 153.164c-.081 2.331-1.323 1.788-1.867 1.866l-2.02-.23c-2.019-.854-3.613-.114-3.963.625l-3.041 138.878c1.24 2.795 4.272 1.316 4.775 1.899l1.953-94.943s-.434-33.873-.348-43.196l5.439-.238c1.552.232 2.447-.663 2.566-2.567l-2.207-50.497-1.249 47.51-.038.893" fill="#e7e7e7" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M403.592 303.916c4.93 1.898 5.78 7.259.417 10.838M403.741 309.277c1.242 1.863 3.108.618 3.108.618M392.975 273.78c-2.225 11.851-.757 21.018-.798 23.62 1.665 5.787.334 16.666-.95 18.103l1.953 31.348" fill="none" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M381.807 294.807c2.564.076 13.212-4.518 19.656-.018 2.128 9.67 2.042 18.528 2.546 19.965-9.365 3.387-15.076 4.597-17.098 4.832-.698-1.242-.307-3.65-.307-3.65-.58-2.37 1.79-3.188 1.79-3.188 1.908-4.78.437-9.362-2.437-10.913-3.572-2.017-2.368-1.902-2.834-2.133-1.202-1.903-1.316-4.895-1.316-4.895z" fill="#cce5e5" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M381.807 294.807c2.564.076 13.212-4.518 19.656-.018 2.128 9.67 2.042 18.528 2.546 19.965-9.365 3.387-15.076 4.597-17.098 4.832-.698-1.242-.307-3.65-.307-3.65-.58-2.37 1.79-3.188 1.79-3.188 1.908-4.78.437-9.362-2.437-10.913-3.572-2.017-2.368-1.902-2.834-2.133-1.202-1.903-1.316-4.895-1.316-4.895z" fill="none" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M388.875 298.141c3.338 1.396 5.899 4.734 5.546 8.502l-5.546-8.502" fill="#cce5e5" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M388.875 298.141c3.338 1.396 5.899 4.734 5.546 8.502M399.74 310.562c-.662.661-1.71.7-2.37.04a1.71 1.71 0 0 1 .003-2.407c.66-.66 1.708-.623 2.368.036.66.66.66 1.67-.001 2.33zM398.543 302.211a1.712 1.712 0 0 1-2.408.002c-.66-.66-.621-1.708.04-2.37a1.62 1.62 0 0 1 2.33 0c.66.659.699 1.708.038 2.368z" fill="none" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M383.187 188.717c-1.087-1.086-.892-3.068.47-4.43l9.129.187s.815.583 1.047 2.135c.193 1.592-1.284 2.14-1.284 2.14l-9.362-.032" fill="#cce5e5" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
<path d="M383.187 188.717c-1.087-1.086-.892-3.068.47-4.43l9.129.187s.815.583 1.047 2.135c.193 1.592-1.284 2.14-1.284 2.14l-9.362-.032" fill="none" transform="matrix(-.50918 -.19438 -.2267 .43658 583.204 218.206)"/>
</g>
<g stroke-width=".238">
<path d="M408.421 331.297c-4.148-7.959-21.27-18.781-24.222-19.09 7.87 17.358 20.839 23.639 24.222 19.09z" fill="#00e519" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M408.343 331.298c-3.383 4.549-16.274-1.733-24.144-19.011 11.722 11.098 22.203 19.168 24.144 19.011z" fill="#ffe533" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M408.343 331.298c-3.383 4.549-16.274-1.733-24.144-19.011 11.722 11.098 22.203 19.168 24.144 19.011z" fill="none" stroke-linecap="round" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M408.421 331.22c-4.42-8.465-22.357-18.936-24.261-19.129 7.91 17.319 20.878 23.678 24.261 19.13z" fill="none" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M384.558 175.702l-2.79 118.6c1.24 2.796 4.078 1.046 4.544 1.589 1.045 4.388 4.19 6.6 4.577 7.687.85 5.904-2.417 8.937-2.727 9.17-3.694 2.45-.436 7.887-1.097 8.858.076 2.33 3.766 3.454 3.452 6.095.272-.193.021 19.075-.02 21.133.62 1.398.764 14.373.764 14.373 3.494 1.472 21.213-2.506 21.407-2.236-1.267-17.284-9.67-46.683-8.697-47.887-.61-12.198-3.86-26.568-7.354-28.04-3.57-5.203-2.512-14.022-.762-15.383-3.728-1.784-4.619-5.318-4.813-5.589l1.166-85.54c-2.134-2.135-2.29-.736-3.885.625 0 0-.618-3.03-.385-3.263-1.087-1.476-3.03-.93-3.38-.192z" fill="#a05a2c" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M384.558 175.702l-2.79 118.6c1.24 2.796 4.078 1.046 4.544 1.589 1.045 4.388 4.19 6.6 4.577 7.687.85 5.904-2.417 8.937-2.727 9.17-3.694 2.45-.436 7.887-1.097 8.858.076 2.33 3.766 3.454 3.452 6.095.272-.193.021 19.075-.02 21.133.62 1.398.764 14.373.764 14.373 3.494 1.472 21.213-2.506 21.407-2.236-1.267-17.284-9.67-46.683-8.697-47.887-.61-12.198-3.86-26.568-7.354-28.04-3.57-5.203-2.512-14.022-.762-15.383-3.728-1.784-4.619-5.318-4.813-5.589l1.166-85.54c-2.134-2.135-2.29-.736-3.885.625 0 0-.618-3.03-.385-3.263-1.087-1.476-3.03-.93-3.38-.192z" fill="none" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M392.66 153.164c-.081 2.331-1.323 1.788-1.867 1.866l-2.02-.23c-2.019-.854-3.613-.114-3.963.625l-3.041 138.878c1.24 2.795 4.272 1.316 4.775 1.899l1.953-94.943s-.435-33.874-.348-43.196l5.439-.238c1.552.232 2.447-.663 2.566-2.567l-2.207-50.497-1.249 47.51-.038.893" fill="#cce5e5" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M392.66 153.164c-.081 2.331-1.323 1.788-1.867 1.866l-2.02-.23c-2.019-.854-3.613-.114-3.963.625l-3.041 138.878c1.24 2.795 4.272 1.316 4.775 1.899l1.953-94.943s-.434-33.873-.348-43.196l5.439-.238c1.552.232 2.447-.663 2.566-2.567l-2.207-50.497-1.249 47.51-.038.893" fill="#e7e7e7" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M403.592 303.916c4.93 1.898 5.78 7.259.417 10.838M403.741 309.277c1.242 1.863 3.108.618 3.108.618M392.975 273.78c-2.225 11.851-.757 21.018-.798 23.62 1.665 5.787.334 16.666-.95 18.103l1.953 31.348" fill="none" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M381.807 294.807c2.564.076 13.212-4.518 19.656-.018 2.128 9.67 2.042 18.528 2.546 19.965-9.365 3.387-15.076 4.597-17.098 4.832-.698-1.242-.307-3.65-.307-3.65-.58-2.37 1.79-3.188 1.79-3.188 1.908-4.78.437-9.362-2.437-10.913-3.572-2.017-2.368-1.902-2.834-2.133-1.202-1.903-1.316-4.895-1.316-4.895z" fill="#cce5e5" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M381.807 294.807c2.564.076 13.212-4.518 19.656-.018 2.128 9.67 2.042 18.528 2.546 19.965-9.365 3.387-15.076 4.597-17.098 4.832-.698-1.242-.307-3.65-.307-3.65-.58-2.37 1.79-3.188 1.79-3.188 1.908-4.78.437-9.362-2.437-10.913-3.572-2.017-2.368-1.902-2.834-2.133-1.202-1.903-1.316-4.895-1.316-4.895z" fill="none" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M388.875 298.141c3.338 1.396 5.899 4.734 5.546 8.502l-5.546-8.502" fill="#cce5e5" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M388.875 298.141c3.338 1.396 5.899 4.734 5.546 8.502M399.74 310.562c-.662.661-1.71.7-2.37.04a1.71 1.71 0 0 1 .003-2.407c.66-.66 1.708-.623 2.368.036.66.66.66 1.67-.001 2.33zM398.543 302.211a1.712 1.712 0 0 1-2.408.002c-.66-.66-.621-1.708.04-2.37a1.62 1.62 0 0 1 2.33 0c.66.659.699 1.708.038 2.368z" fill="none" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M383.187 188.717c-1.087-1.086-.892-3.068.47-4.43l9.129.187s.815.583 1.047 2.135c.193 1.592-1.284 2.14-1.284 2.14l-9.362-.032" fill="#cce5e5" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
<path d="M383.187 188.717c-1.087-1.086-.892-3.068.47-4.43l9.129.187s.815.583 1.047 2.135c.193 1.592-1.284 2.14-1.284 2.14l-9.362-.032" fill="none" transform="matrix(-.51306 -.18673 -.21778 .43991 576.226 216.583)"/>
</g>
<g stroke-width=".236">
<path d="M408.421 331.297c-4.148-7.959-21.27-18.781-24.222-19.09 7.87 17.358 20.839 23.639 24.222 19.09z" fill="#00e519" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M408.343 331.298c-3.383 4.549-16.274-1.733-24.144-19.011 11.722 11.098 22.203 19.168 24.144 19.011z" fill="#ffe533" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M408.343 331.298c-3.383 4.549-16.274-1.733-24.144-19.011 11.722 11.098 22.203 19.168 24.144 19.011z" fill="none" stroke-linecap="round" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M408.421 331.22c-4.42-8.465-22.357-18.936-24.261-19.129 7.91 17.319 20.878 23.678 24.261 19.13z" fill="none" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M384.558 175.702l-2.79 118.6c1.24 2.796 4.078 1.046 4.544 1.589 1.045 4.388 4.19 6.6 4.577 7.687.85 5.904-2.417 8.937-2.727 9.17-3.694 2.45-.436 7.887-1.097 8.858.076 2.33 3.766 3.454 3.452 6.095.272-.193.021 19.075-.02 21.133.62 1.398.764 14.373.764 14.373 3.494 1.472 21.213-2.506 21.407-2.236-1.267-17.284-9.67-46.683-8.697-47.887-.61-12.198-3.86-26.568-7.354-28.04-3.57-5.203-2.512-14.022-.762-15.383-3.728-1.784-4.619-5.318-4.813-5.589l1.166-85.54c-2.134-2.135-2.29-.736-3.885.625 0 0-.618-3.03-.385-3.263-1.087-1.476-3.03-.93-3.38-.192z" fill="#a05a2c" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M392.66 153.164c-.081 2.331-1.323 1.788-1.867 1.866l-2.02-.23c-2.019-.854-3.613-.114-3.963.625l-3.041 138.878c1.24 2.795 4.272 1.316 4.775 1.899l1.953-94.943s-.435-33.874-.348-43.196l5.439-.238c1.552.232 2.447-.663 2.566-2.567l-2.207-50.497-1.249 47.51-.038.893" fill="#cce5e5" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M392.66 153.164c-.081 2.331-1.323 1.788-1.867 1.866l-2.02-.23c-2.019-.854-3.613-.114-3.963.625l-3.041 138.878c1.24 2.795 4.272 1.316 4.775 1.899l1.953-94.943s-.434-33.873-.348-43.196l5.439-.238c1.552.232 2.447-.663 2.566-2.567l-2.207-50.497-1.249 47.51-.038.893" fill="#e7e7e7" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M403.592 303.916c4.93 1.898 5.78 7.259.417 10.838M403.741 309.277c1.242 1.863 3.108.618 3.108.618M392.975 273.78c-2.225 11.851-.757 21.018-.798 23.62 1.665 5.787.334 16.666-.95 18.103l1.953 31.348" fill="none" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M381.807 294.807c2.564.076 13.212-4.518 19.656-.018 2.128 9.67 2.042 18.528 2.546 19.965-9.365 3.387-15.076 4.597-17.098 4.832-.698-1.242-.307-3.65-.307-3.65-.58-2.37 1.79-3.188 1.79-3.188 1.908-4.78.437-9.362-2.437-10.913-3.572-2.017-2.368-1.902-2.834-2.133-1.202-1.903-1.316-4.895-1.316-4.895z" fill="#cce5e5" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M381.807 294.807c2.564.076 13.212-4.518 19.656-.018 2.128 9.67 2.042 18.528 2.546 19.965-9.365 3.387-15.076 4.597-17.098 4.832-.698-1.242-.307-3.65-.307-3.65-.58-2.37 1.79-3.188 1.79-3.188 1.908-4.78.437-9.362-2.437-10.913-3.572-2.017-2.368-1.902-2.834-2.133-1.202-1.903-1.316-4.895-1.316-4.895z" fill="none" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M388.875 298.141c3.338 1.396 5.899 4.734 5.546 8.502l-5.546-8.502" fill="#cce5e5" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M388.875 298.141c3.338 1.396 5.899 4.734 5.546 8.502M399.74 310.562c-.662.661-1.71.7-2.37.04a1.71 1.71 0 0 1 .003-2.407c.66-.66 1.708-.623 2.368.036.66.66.66 1.67-.001 2.33zM398.543 302.211a1.712 1.712 0 0 1-2.408.002c-.66-.66-.621-1.708.04-2.37a1.62 1.62 0 0 1 2.33 0c.66.659.699 1.708.038 2.368z" fill="none" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M383.187 188.717c-1.087-1.086-.892-3.068.47-4.43l9.129.187s.815.583 1.047 2.135c.193 1.592-1.284 2.14-1.284 2.14l-9.362-.032" fill="#cce5e5" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
<path d="M383.187 188.717c-1.087-1.086-.892-3.068.47-4.43l9.129.187s.815.583 1.047 2.135c.193 1.592-1.284 2.14-1.284 2.14l-9.362-.032" fill="none" transform="matrix(.51432 -.19635 .229 .441 54.694 217.373)"/>
</g>
<g stroke-width=".238">
<path d="M408.421 331.297c-4.148-7.959-21.27-18.781-24.222-19.09 7.87 17.358 20.839 23.639 24.222 19.09z" fill="#00e519" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M408.343 331.298c-3.383 4.549-16.274-1.733-24.144-19.011 11.722 11.098 22.203 19.168 24.144 19.011z" fill="#ffe533" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M408.343 331.298c-3.383 4.549-16.274-1.733-24.144-19.011 11.722 11.098 22.203 19.168 24.144 19.011z" fill="none" stroke-linecap="round" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M408.421 331.22c-4.42-8.465-22.357-18.936-24.261-19.129 7.91 17.319 20.878 23.678 24.261 19.13z" fill="none" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M384.558 175.702l-2.79 118.6c1.24 2.796 4.078 1.046 4.544 1.589 1.045 4.388 4.19 6.6 4.577 7.687.85 5.904-2.417 8.937-2.727 9.17-3.694 2.45-.436 7.887-1.097 8.858.076 2.33 3.766 3.454 3.452 6.095.272-.193.021 19.075-.02 21.133.62 1.398.764 14.373.764 14.373 3.494 1.472 21.213-2.506 21.407-2.236-1.267-17.284-9.67-46.683-8.697-47.887-.61-12.198-3.86-26.568-7.354-28.04-3.57-5.203-2.512-14.022-.762-15.383-3.728-1.784-4.619-5.318-4.813-5.589l1.166-85.54c-2.134-2.135-2.29-.736-3.885.625 0 0-.618-3.03-.385-3.263-1.087-1.476-3.03-.93-3.38-.192z" fill="#a05a2c" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M384.558 175.702l-2.79 118.6c1.24 2.796 4.078 1.046 4.544 1.589 1.045 4.388 4.19 6.6 4.577 7.687.85 5.904-2.417 8.937-2.727 9.17-3.694 2.45-.436 7.887-1.097 8.858.076 2.33 3.766 3.454 3.452 6.095.272-.193.021 19.075-.02 21.133.62 1.398.764 14.373.764 14.373 3.494 1.472 21.213-2.506 21.407-2.236-1.267-17.284-9.67-46.683-8.697-47.887-.61-12.198-3.86-26.568-7.354-28.04-3.57-5.203-2.512-14.022-.762-15.383-3.728-1.784-4.619-5.318-4.813-5.589l1.166-85.54c-2.134-2.135-2.29-.736-3.885.625 0 0-.618-3.03-.385-3.263-1.087-1.476-3.03-.93-3.38-.192z" fill="none" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M392.66 153.164c-.081 2.331-1.323 1.788-1.867 1.866l-2.02-.23c-2.019-.854-3.613-.114-3.963.625l-3.041 138.878c1.24 2.795 4.272 1.316 4.775 1.899l1.953-94.943s-.435-33.874-.348-43.196l5.439-.238c1.552.232 2.447-.663 2.566-2.567l-2.207-50.497-1.249 47.51-.038.893" fill="#cce5e5" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M392.66 153.164c-.081 2.331-1.323 1.788-1.867 1.866l-2.02-.23c-2.019-.854-3.613-.114-3.963.625l-3.041 138.878c1.24 2.795 4.272 1.316 4.775 1.899l1.953-94.943s-.434-33.873-.348-43.196l5.439-.238c1.552.232 2.447-.663 2.566-2.567l-2.207-50.497-1.249 47.51-.038.893" fill="#e7e7e7" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M403.592 303.916c4.93 1.898 5.78 7.259.417 10.838M403.741 309.277c1.242 1.863 3.108.618 3.108.618M392.975 273.78c-2.225 11.851-.757 21.018-.798 23.62 1.665 5.787.334 16.666-.95 18.103l1.953 31.348" fill="none" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M381.807 294.807c2.564.076 13.212-4.518 19.656-.018 2.128 9.67 2.042 18.528 2.546 19.965-9.365 3.387-15.076 4.597-17.098 4.832-.698-1.242-.307-3.65-.307-3.65-.58-2.37 1.79-3.188 1.79-3.188 1.908-4.78.437-9.362-2.437-10.913-3.572-2.017-2.368-1.902-2.834-2.133-1.202-1.903-1.316-4.895-1.316-4.895z" fill="#cce5e5" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M381.807 294.807c2.564.076 13.212-4.518 19.656-.018 2.128 9.67 2.042 18.528 2.546 19.965-9.365 3.387-15.076 4.597-17.098 4.832-.698-1.242-.307-3.65-.307-3.65-.58-2.37 1.79-3.188 1.79-3.188 1.908-4.78.437-9.362-2.437-10.913-3.572-2.017-2.368-1.902-2.834-2.133-1.202-1.903-1.316-4.895-1.316-4.895z" fill="none" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M388.875 298.141c3.338 1.396 5.899 4.734 5.546 8.502l-5.546-8.502" fill="#cce5e5" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M388.875 298.141c3.338 1.396 5.899 4.734 5.546 8.502M399.74 310.562c-.662.661-1.71.7-2.37.04a1.71 1.71 0 0 1 .003-2.407c.66-.66 1.708-.623 2.368.036.66.66.66 1.67-.001 2.33zM398.543 302.211a1.712 1.712 0 0 1-2.408.002c-.66-.66-.621-1.708.04-2.37a1.62 1.62 0 0 1 2.33 0c.66.659.699 1.708.038 2.368z" fill="none" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M383.187 188.717c-1.087-1.086-.892-3.068.47-4.43l9.129.187s.815.583 1.047 2.135c.193 1.592-1.284 2.14-1.284 2.14l-9.362-.032" fill="#cce5e5" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
<path d="M383.187 188.717c-1.087-1.086-.892-3.068.47-4.43l9.129.187s.815.583 1.047 2.135c.193 1.592-1.284 2.14-1.284 2.14l-9.362-.032" fill="none" transform="matrix(.51306 -.18673 .21778 .43991 63.939 216.583)"/>
</g>
<g stroke-width=".217">
<path d="M5.335 370.913c.935-1.063 62.714-68.448 63.427-69.236a153.975 153.975 0 0 1-2.095-1.875c-.69.74-62.624 68.192-63.62 69.248-.597-.336 2.906 2.544 2.288 1.863z" fill="#a05a2c" transform="matrix(.61022 -.02391 .04577 .52565 295.02 55.826)"/>
<g stroke-width=".359">
<path d="M146.62 176.744c1.44 1.8 4.086 4.047 6.246 3.687.18 3.42-4.41 6.39-6.03 5.67.99-3.6-3.348-6.503-3.258-6.503l3.042-2.854z" fill="#e7e7e7" fill-rule="evenodd" transform="matrix(-.73175 .07875 -.11314 -.6318 477.099 312.329)" stroke-width=".179"/>
<path d="M125.902 161.756c.232-3.518-.34-4.512-.865-8.856-.515-4.264-8.333-4.63-11.239-5.355 0 0 6.853-8.478 15.964-8.477 9.111.001 14.565 4.29 16.302 9.668 0 0-10.758-.532-11.666 3.821-.88 4.218-.454 5.166-.365 8.625" fill="#e7e7e7" transform="matrix(-.22646 .24601 -.29289 -.20204 427.993 212.114)"/>
<path fill="#e7e7e7" d="M123.744 158.973h12.374v6.364h-12.374z" transform="matrix(-.22646 .24601 -.29289 -.20204 427.993 212.114)"/>
</g>
</g>
<g fill-rule="evenodd">
<path d="M308.17 290.32l-.922 9.04s1.399-1.713 1.735-2.282c.336-.569 1.549-2.09 1.808-7.359 0 0-.947-2.913-1.392-2.907-.742-.366-1.229 3.508-1.229 3.508zm2.223-20.151s-2.426 14.513-2.672 15.833c0 .451 1.231 1.648 2.121-1.158l1.466-10.551s-.659-2.812-.915-4.124z" fill="#007934" stroke-width=".12307499999999999"/>
<path d="M315.88 284.57c-.592-.744-1.332-1.673-1.405-2.048l-.383 3.202s2.02 1.475 1.732 4.3l.392-.57.227-1.131s.415-1.886.418-3.015c0 0-.426-.182-.982-.738z" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M307.248 299.358s3.353-2.868 3.543-9.64l.416-1.887s.069 1.504.741.366c.655-1.514.623-2.83.623-2.83s1.212-1.52 1.577.354c0 0-1.126 8.854-1.202 9.607-.097.942-.268 2.073-.268 2.073s-.664-1.12-1.337.018c-.728 1.139-1.885 2.66-4.093 1.939zm4.06-25.067l-1.466 10.551s1.169.548 1.365 2.99c.107 1.126.555.556.741.365.244-.756.064-2.257.064-2.257l.638-7.343s-1.27-3.367-1.342-4.306z" fill="#ffe000" stroke-width=".12307499999999999"/>
<path d="M310.147 298.754l-.213 2.636s1.003-.014 1.676-1.152c.784-1.14 1.068-2.836 1.068-2.836s-.776-1.117-1.338.019c-.541.948-1.193 1.333-1.193 1.333zm1.8-10.556c.542-.947.715-2.642.623-2.829l-.682.572c.22 1.125.06 2.257.06 2.257z" fill="#ffe000" stroke-width=".12307499999999999"/>
<path d="M315.25 287.136c-.461-.934-1.24-1.487-1.24-1.487l-1.489 11.867s-.419 3.015-2.279 3.793c0 0 1.061 10.328 4.414 7.46.484-.383 1.09-3.589.892-5.466-.235-2.065-.782-4.878-.834-6.006-.033-1.315.153-2.648.476-4.721.133-.754.523-2.407.598-2.596.186-.19-.04-1.723-.538-2.844z" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M316.862 285.311s.907.928 1.074.925c.223-.003-2.353 19.353-2.353 19.353s.097-2.029-.655-5.97c-.611-3.2.177-7.5.866-9.561 0 0 .812-.606 1.068-4.747z" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M312.574 278.79s-.501 5.46-.619 7.155c0 0 1.699-2.469 2.137-.218l.383-3.203s-1.478-2.423-1.9-3.733z" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M311.273 287.815s-.558-6.116-3.52-1.792c-.115.001-.272 2.43-.102 3.01.093.778.913 1.74 1.256 2.318.647.964 1.34-.213 1.34-.213s.674-.983 1.026-3.323z" fill="#007934" stroke-width=".12307499999999999"/>
</g>
<path d="M586.927 838.91c-1.33-42.48-14.677-113.67-15.34-162.078l-146.33-155.995s-18.061 119.962-71.193 186.536l232.863 131.61" fill="#d52b1e" transform="matrix(.08205 -.00386 0 .08205 239.643 170.372)"/>
<path d="M597.494 844.433c6.162-29.214 13.559-62.066 18.467-123.541l-94.2-97.245c.377 38.745-43.493 96.608-46.462 168.84" fill="#ffe000" transform="matrix(.08205 -.00386 0 .08205 239.643 170.372)"/>
<path d="M678.728 937.604c10.806-51.253-15.684-58.916 23.72-129.896L615.4 720.15c-16.22 48.317-27.14 79.396-25.727 121.875l74.161 56.265" fill="#007934" transform="matrix(.08205 -.00386 0 .08205 239.643 170.372)"/>
<path d="M267.552 270.086c-1.446-4.298.517-12.73.299-18.134-.164-3.486 2.4-16.592 2.345-20.557l-14.116-8.816s-.614 14.325-2.239 29.928c-1.462 8.015-1.452 15.338-.402 21.455 1.5 8.696 2.975 12.266 6.487 15.944 6.235 6.452 19.659 2.724 19.659 2.724 11.309-2.34 17.822-9.463 17.822-9.463s-3.678.869-9.637 1.475c-13.062-.915-18.206 2.349-18.612-11.053" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M305.381 278.77l.218-.095c-2.448.916-5.862 1.928-5.862 1.928l-7.959.613c-17.262.403-15.101-10.285-14.417-27.53.164-6.544 1.461-14.786 1.127-17.704l-11.572-6.63c-3.775 10.665-2.598 18.125-3.354 23.58-.394 5.877-1.647 17.353.258 22.36 2.697 11.65 11.819 11.175 24.166 10.15 6.126-.507 9.421-2.082 9.421-2.082l7.967-4.584" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M305.606 278.536c-2.394 1.24-5.917 2.154-5.917 2.154l-8.066.797c-12.515 1.062-19.841-7.729-18.237-27.606.01-7.022.235-10.142 2.658-19.496l6.878 4.035v.648c-.389 2.1-1.373 7.01-1.373 9.255 0 15.96 10.091 28.218 23.839 30.3l.218-.093" fill="#007a3d" stroke-width=".12307499999999999"/>
<path d="M259.92 230.55c1.167 1.96 8.13 12.568 12.032 14.574M261.094 237.48c1.166 2.007 9.692 13.954 13.532 14.627M259.143 255.739c1.95 2.34 3.894 6.976 9.692 9.983M261.871 269.02c3.895 3.632 13.533 11.615 22.836 11.943M261.871 274.997c1.95 2.34 6.18 13.283 24.01 8.317M259.143 277.003c1.166 2.626 10.081 17.253 25.96 11.61" fill="none" stroke-width=".12307499999999999"/>
<path d="M277.751 264.834c-1.446-4.298.517-12.73.3-18.134-.164-3.486 1.48-15.542 1.425-19.506l-13.197-9.867s-.614 14.325-2.239 29.928c-1.462 8.015-2.576 17.831-1.493 23.943 1.773 10.002 6.582 12.815 7.45 13.59 6.742 6.005 21.96 5.415 23.472 4.874 10.874-3.886 15.611-10.795 15.611-10.795s-5.152-.083-11.111.523c-13.062-.915-19.658-.37-20.065-13.772" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M315.58 273.518l.218-.095c-2.448.917-5.862 1.929-5.862 1.929l-7.959.612c-17.262.404-15.101-10.285-14.417-27.53.164-6.544.39-12.422.055-15.34l-10.347-7.548c-3.774 10.664-2.751 16.68-3.507 22.135-.394 5.876-1.647 17.352.258 22.36 2.698 11.65 11.819 11.174 24.166 10.15 6.126-.508 9.422-2.083 9.422-2.083l7.966-4.584" fill="#ffe000" stroke-width=".12307499999999999"/>
<path d="M315.887 273.362c-2.394 1.24-5.917 2.154-5.917 2.154l-8.067.797c-12.514 1.062-19.84-7.729-18.237-27.606.011-7.023-.223-7.515 2.2-16.87 3.833 2.484 11.16 8.74 11.16 8.74s-1.994 2.805-1.526 6.728c0 15.96 6.421 24.062 20.169 26.144l1.508-13.035" fill="#007934" stroke-width=".12307499999999999"/>
<path d="M270.12 225.298c1.166 1.96 8.13 12.568 12.031 14.574M271.293 232.229c1.166 2.006 9.692 13.954 13.532 14.626M269.342 250.487c1.95 2.34 3.895 6.977 9.692 9.983M272.07 263.768c3.895 3.632 13.533 11.615 22.836 11.943M272.07 269.745c1.951 2.34 6.18 13.283 24.01 8.317M269.342 271.751c1.166 2.626 10.081 17.254 25.96 11.61" fill="none" stroke-width=".12307499999999999"/>
<path d="M256.173 223.966s-.584 5.083-.64 5.995c-.269 4.408-.145 7.744.063 9.82-.014.224.85 5.498.552 5.78-1.013 1.156-1.049 1.285-2.117.429-.153-.176.46-5.577.506-6.32.104-.797.27-7.106.384-9.857.012-1.088.947-6.444.947-6.444s.125-1.14.3.582" fill="#e8a30e" stroke-width=".12307499999999999"/>
<path d="M256.173 223.966s-.584 5.083-.64 5.995c-.269 4.408-.138 7.744.063 9.82-.014.224 1.03 7.565.705 5.787-1.013 1.156-1.221 1.592-2.289.737-.153-.176.48-5.892.525-6.635.104-.797.27-7.106.384-9.857.012-1.088.947-6.444.947-6.444s.125-1.14.3.582l.005.015z" fill="none" stroke-width=".12307499999999999"/>
<path d="M256.064 222.184s-1.151 6.09-1.256 9.584c-.15 4.24-.332 5.439-.264 7.91.044.17-.414 3.193-.549 4.507-.096.678.099.174-.014.224-.865.53-1.454.104-1.982-.314-.157-.118 1.4-3.781 1.445-4.524.821-10.758 2.381-17.062 2.381-17.062s-.622 3.817.239-.325" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M256.064 222.184s-1.151 6.09-1.249 9.585c-.15 4.239-.332 5.438-.265 7.91.045.169-.413 3.192-.548 4.506-.096.678.098.174-.014.225-.866.53-1.454.103-1.982-.314-.157-.119 1.399-3.782 1.445-4.532.821-10.757 2.375-17.062 2.375-17.062s-.623 3.817.238-.326v.008zm-.499 17.315s-.913.414-1.015.18m-.04-1.255s.78-.02.903-.24m-.045-1.049s-.576.375-.732.136m.718-1.682l-.555.024m.591-1.52l-.609.022m.514-2.148s-.344.153-.385-.073m.493-1.7l-.497-.022m-.475 9.564s-.896.127-.995-.158m1.066-1.906s-.892.073-.93-.211m.967-1.277s-.726.023-.777-.035m.919-1.4l-.722-.032m.718-1.69l-.494-.078m.694-1.402s-.45.093-.545-.136m.596-1.591s-.406.264-.389-.017m-.049 8.959s-.888.008-.871-.264M266.372 218.714s-.583 5.083-.64 5.995c-.269 4.408-.145 7.744.063 9.82-.014.224.85 5.498.552 5.78-1.013 1.156-1.049 1.285-2.117.429-.153-.176.46-5.577.506-6.32.104-.797.27-7.106.384-9.857.012-1.088.947-6.443.947-6.443s.125-1.14.3.582" fill="#e8a30e" stroke-width=".12307499999999999"/>
<path d="M266.372 218.714s-.583 5.083-.64 5.995c-.269 4.408-.138 7.744.063 9.82-.014.224 1.03 7.565.705 5.787-1.013 1.156-1.221 1.592-2.289.737-.153-.176.48-5.892.525-6.634.104-.798.27-7.107.384-9.858.012-1.088.947-6.443.947-6.443s.125-1.14.3.582l.005.014z" fill="none" stroke-width=".12307499999999999"/>
<path d="M266.263 216.932s-1.151 6.09-1.255 9.585c-.15 4.239-.333 5.438-.265 7.909.044.17-.414 3.193-.549 4.507-.096.678.099.174-.014.225-.865.53-1.454.103-1.982-.314-.156-.119 1.4-3.782 1.445-4.525.821-10.757 2.381-17.062 2.381-17.062l.239-.325" fill="#e8a30e" stroke-width=".12307499999999999"/>
<path d="M266.263 216.932s-1.151 6.09-1.249 9.585c-.15 4.239-.332 5.438-.264 7.91.044.169-.414 3.192-.55 4.507-.095.677.1.173-.013.224-.866.53-1.454.104-1.982-.314-.157-.119 1.4-3.782 1.445-4.532.822-10.757 2.375-17.062 2.375-17.062l.238-.325v.007zm-.499 17.315s-.913.414-1.014.18m-.04-1.255s.78-.02.903-.24m-.046-1.049s-.576.376-.732.136m.718-1.682l-.555.024m.591-1.519l-.609.021m.514-2.148s-.344.153-.385-.073m.493-1.7l-.497-.022m-.475 9.564s-.896.127-.994-.158m1.065-1.906s-.892.073-.93-.21m.967-1.278s-.726.023-.777-.035m.92-1.4l-.723-.032m.718-1.69l-.494-.077m.694-1.403s-.45.093-.545-.136m.596-1.59s-.406.263-.389-.018m-.049 8.959s-.888.008-.871-.264" fill="none" stroke-width=".12307499999999999"/>
<g fill="#e8a30e" stroke-width=".217">
<path d="M356.466 216.692s1.26 9.73 1.091 15.273c-.18 6.726 0 8.638-.367 12.549-.077.265.367 5.087.444 7.179.08 1.08-.176.268 0 .356 1.36.9 2.36.268 3.263-.356.357-.177-1.903-6.09-1.903-7.27-.268-17.1-2.183-27.198-2.183-27.198l-.357-.533" transform="matrix(.61184 .0275 -.03206 .5246 63.18 87.782)"/>
<path d="M356.466 216.692s1.268 9.73 1.08 15.273c-.177 6.726 0 8.638-.368 12.549-.077.265.368 5.087.445 7.179.08 1.08-.177.268 0 .356 1.36.9 2.36.268 3.263-.356.356-.177-1.904-6.09-1.904-7.282-.268-17.1-2.171-27.198-2.171-27.198l-.357-.533zM357.378 244.613s1.448.265 1.639-.18M357.569 241.339s1.447.18 1.447-.268M357.569 238.979s1.168.088 1.268 0M357.469 236.696h1.18M357.646 233.969l.812-.089M357.569 231.609s.624.18.812-.177M357.569 228.87s.624.447.624 0M357.378 243.066s1.448.077 1.448-.357" transform="matrix(.61184 .0275 -.03206 .5246 63.18 87.782)"/>
</g>
<path d="M306.015 221.65l.797.06s-1.233-.09-.797-.06z" fill="#005000" stroke-width=".12307499999999999"/>
<path d="M316.727 256.404s-.372-.16-.465 0c0 .08.093.16.186.16s.279-.16.279-.16zM315.705 257.52s1.58-.16 2.136-.16" fill="#fff" fill-rule="evenodd" stroke-width=".12307499999999999"/>
<g>
<g stroke-width="1.512">
<g stroke-width=".194">
<path d="M156.9 89.493c-.033 1.927-3.764 4.277-6.82.323-3.193-2.722-2.733-7.08-.329-7.767l27.817-34.577c1.144-.796 1.224-1.517 1.777-2.272 1.305 1.486 3.987 4.142 5.443 5.42-.81.86-1.461 1.67-1.618 2.323l-26.27 36.55z" fill="#e8a30e" fill-rule="evenodd" transform="matrix(1.8554 .0577 -.0868 1.58684 8.847 133.141)" stroke-width=".072"/>
<g stroke-width=".045" fill-rule="evenodd">
<path d="M123.245 190.484c.837-1.426 4.37 2.172 3.488 3.327-.882 1.155-4.256-1.888-3.488-3.327z" fill="#e7e7e7" stroke-linejoin="round" transform="matrix(2.96532 .0479 -.0869 2.53565 -11.09 -273.854)"/>
<path d="M126.418 193.544c-.628.584-3.183-1.828-2.8-2.765.66-.884 3.483 2.186 2.8 2.765z" fill="#cccccf" transform="matrix(2.96532 .0479 -.0869 2.53565 -11.09 -273.854)"/>
</g>
</g>
<path d="M3513.155 736.637c56.547-19.255 95.944-57.232 120-113.037M3934.483 1159.288c71.128-23.522 118.995-70.304 139.06-144.889M3964.46 1190.93c71.128-23.522 118.996-70.304 139.06-144.888M4138.493 1357.47c71.128-23.523 127.323-76.134 147.388-150.718M4169.303 1389.112c71.128-23.522 128.155-76.966 148.22-151.55" fill="none" transform="matrix(-.0802 .0023 .00223 .08257 624.115 158.975)"/>
<path d="M4338.34 1405.766c4.012 16.341 13.42 21.216 26.23 15.821M4192.589 1403.136c28.07 40.396 57.66 27.18 82.718 26.9" fill="none" stroke-linecap="round" transform="matrix(-.0802 .0023 .00223 .08257 624.115 158.975)"/>
<path d="M4375.222 1406.928c.312 10.999-9.015 20.158-20.851 20.476-11.837.318-21.717-8.326-22.089-19.323-.372-10.997 8.905-20.2 20.74-20.573 11.834-.373 21.761 11.555 22.193 22.55" fill="#e8a30e" transform="matrix(-.0802 .0023 .00223 .08257 624.115 158.975)"/>
<path d="M4336.24 1403.837c4.012 16.34 13.42 21.216 26.23 15.82M4192.589 1403.136c28.07 40.396 57.66 27.18 82.718 26.9" fill="none" stroke-linecap="round" transform="matrix(-.0802 .0023 .00223 .08257 624.115 158.975)"/>
</g>
</g>
<g>
<g fill-rule="evenodd">
<path d="M331.83 290.32l.922 9.04s-1.399-1.713-1.735-2.282c-.336-.569-1.549-2.09-1.808-7.359 0 0 .947-2.913 1.392-2.907.742-.366 1.229 3.508 1.229 3.508zm-2.223-20.151s2.426 14.513 2.672 15.833c0 .451-1.231 1.648-2.121-1.158l-1.466-10.551s.659-2.812.915-4.124z" fill="#007934" stroke-width=".12307499999999999"/>
<path d="M324.12 284.57c.592-.744 1.332-1.673 1.405-2.048l.383 3.202s-2.02 1.475-1.732 4.3l-.392-.57-.227-1.131s-.415-1.886-.418-3.015c0 0 .426-.182.982-.738z" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M332.752 299.358s-3.353-2.868-3.543-9.64l-.416-1.887s-.069 1.504-.741.366c-.655-1.514-.623-2.83-.623-2.83s-1.212-1.52-1.577.354c0 0 1.126 8.854 1.202 9.607.097.942.268 2.073.268 2.073s.664-1.12 1.337.018c.728 1.139 1.885 2.66 4.093 1.939zm-4.06-25.067l1.466 10.551s-1.169.548-1.365 2.99c-.107 1.126-.555.556-.741.365-.244-.756-.064-2.257-.064-2.257l-.638-7.343s1.27-3.367 1.342-4.306z" fill="#ffe000" stroke-width=".12307499999999999"/>
<path d="M329.853 298.754l.213 2.636s-1.003-.014-1.676-1.152c-.784-1.14-1.068-2.836-1.068-2.836s.776-1.117 1.338.019c.541.948 1.193 1.333 1.193 1.333zm-1.8-10.556c-.542-.947-.715-2.642-.623-2.829l.682.572c-.22 1.125-.06 2.257-.06 2.257z" fill="#ffe000" stroke-width=".12307499999999999"/>
<path d="M324.75 287.136c.461-.934 1.24-1.487 1.24-1.487l1.489 11.867s.419 3.015 2.279 3.793c0 0-1.061 10.328-4.414 7.46-.484-.383-1.09-3.589-.892-5.466.235-2.065.782-4.878.834-6.006.033-1.315-.153-2.648-.476-4.721-.133-.754-.523-2.407-.598-2.596-.186-.19.04-1.723.538-2.844z" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M323.138 285.311s-.907.928-1.074.925c-.223-.003 2.353 19.353 2.353 19.353s-.097-2.029.655-5.97c.611-3.2-.177-7.5-.866-9.561 0 0-.812-.606-1.068-4.747z" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M327.426 278.79s.501 5.46.619 7.155c0 0-1.699-2.469-2.137-.218l-.383-3.203s1.478-2.423 1.9-3.733z" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M328.727 287.815s.558-6.116 3.52-1.792c.115.001.272 2.43.102 3.01-.093.778-.913 1.74-1.256 2.318-.647.964-1.34-.213-1.34-.213s-.674-.983-1.026-3.323z" fill="#007934" stroke-width=".12307499999999999"/>
</g>
<path d="M586.927 838.91c-1.33-42.48-14.677-113.67-15.34-162.078l-146.33-155.995s-18.061 119.962-71.193 186.536l232.863 131.61" fill="#d52b1e" transform="matrix(-.08205 -.00386 0 .08205 400.357 170.372)"/>
<path d="M597.494 844.433c6.162-29.214 13.559-62.066 18.467-123.541l-94.2-97.245c.377 38.745-43.493 96.608-46.462 168.84" fill="#ffe000" transform="matrix(-.08205 -.00386 0 .08205 400.357 170.372)"/>
<path d="M678.728 937.604c10.806-51.253-15.684-58.916 23.72-129.896L615.4 720.15c-16.22 48.317-27.14 79.396-25.727 121.875l74.161 56.265" fill="#007934" transform="matrix(-.08205 -.00386 0 .08205 400.357 170.372)"/>
<path d="M372.448 270.086c1.446-4.298-.517-12.73-.299-18.134.164-3.486-2.4-16.592-2.345-20.557l14.116-8.816s.614 14.325 2.239 29.928c1.462 8.015 1.452 15.338.402 21.455-1.5 8.696-2.975 12.266-6.487 15.944-6.235 6.452-19.659 2.724-19.659 2.724-11.309-2.34-17.822-9.463-17.822-9.463s3.678.869 9.637 1.475c13.062-.915 18.206 2.349 18.612-11.053" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M334.619 278.77l-.218-.095c2.448.916 5.862 1.928 5.862 1.928l7.959.613c17.262.403 15.101-10.285 14.417-27.53-.164-6.544-1.461-14.786-1.127-17.704l11.572-6.63c3.775 10.665 2.598 18.125 3.354 23.58.394 5.877 1.647 17.353-.258 22.36-2.697 11.65-11.819 11.175-24.166 10.15-6.126-.507-9.421-2.082-9.421-2.082l-7.967-4.584" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M334.394 278.536c2.394 1.24 5.917 2.154 5.917 2.154l8.066.797c12.515 1.062 19.841-7.729 18.237-27.606-.01-7.022-.235-10.142-2.658-19.496l-6.878 4.035v.648c.389 2.1 1.373 7.01 1.373 9.255 0 15.96-10.091 28.218-23.839 30.3l-.218-.093" fill="#007a3d" stroke-width=".12307499999999999"/>
<path d="M380.08 230.55c-1.167 1.96-8.13 12.568-12.032 14.574M378.906 237.48c-1.166 2.007-9.692 13.954-13.532 14.627M380.857 255.739c-1.95 2.34-3.894 6.976-9.692 9.983M378.129 269.02c-3.895 3.632-13.533 11.615-22.836 11.943M378.129 274.997c-1.95 2.34-6.18 13.283-24.01 8.317M380.857 277.003c-1.166 2.626-10.081 17.253-25.96 11.61" fill="none" stroke-width=".12307499999999999"/>
<path d="M362.249 264.834c1.446-4.298-.517-12.73-.3-18.134.164-3.486-1.48-15.542-1.425-19.506l13.197-9.867s.614 14.325 2.239 29.928c1.462 8.015 2.576 17.831 1.493 23.943-1.773 10.002-6.582 12.815-7.45 13.59-6.742 6.005-21.96 5.415-23.472 4.874-10.874-3.886-15.611-10.795-15.611-10.795s5.152-.083 11.111.523c13.062-.915 19.658-.37 20.065-13.772" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M324.42 273.518l-.218-.095c2.448.917 5.862 1.929 5.862 1.929l7.959.612c17.262.404 15.101-10.285 14.417-27.53-.164-6.544-.39-12.422-.055-15.34l10.347-7.548c3.774 10.664 2.751 16.68 3.507 22.135.394 5.876 1.647 17.352-.258 22.36-2.698 11.65-11.819 11.174-24.166 10.15-6.126-.508-9.422-2.083-9.422-2.083l-7.966-4.584" fill="#ffe000" stroke-width=".12307499999999999"/>
<path d="M324.113 273.362c2.394 1.24 5.917 2.154 5.917 2.154l8.067.797c12.514 1.062 19.84-7.729 18.237-27.606-.011-7.023.223-7.515-2.2-16.87-3.833 2.484-11.16 8.74-11.16 8.74s1.994 2.805 1.526 6.728c0 15.96-6.421 24.062-20.169 26.144l-1.508-13.035" fill="#007934" stroke-width=".12307499999999999"/>
<path d="M369.88 225.298c-1.166 1.96-8.13 12.568-12.031 14.574M368.707 232.229c-1.166 2.006-9.692 13.954-13.532 14.626M370.658 250.487c-1.95 2.34-3.895 6.977-9.692 9.983M367.93 263.768c-3.895 3.632-13.533 11.615-22.836 11.943M367.93 269.745c-1.951 2.34-6.18 13.283-24.01 8.317M370.658 271.751c-1.166 2.626-10.081 17.254-25.96 11.61" fill="none" stroke-width=".12307499999999999"/>
<path d="M383.827 223.966s.584 5.083.64 5.995c.269 4.408.145 7.744-.063 9.82.014.224-.85 5.498-.552 5.78 1.013 1.156 1.049 1.285 2.117.429.153-.176-.46-5.577-.506-6.32-.104-.797-.27-7.106-.384-9.857-.012-1.088-.947-6.444-.947-6.444s-.125-1.14-.3.582" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M383.827 223.966s.584 5.083.64 5.995c.269 4.408.138 7.744-.063 9.82.014.224-1.03 7.565-.705 5.787 1.013 1.156 1.221 1.592 2.289.737.153-.176-.48-5.892-.525-6.635-.104-.797-.27-7.106-.384-9.857-.012-1.088-.947-6.444-.947-6.444s-.125-1.14-.3.582l-.005.015z" fill="#e8a30e" stroke-width=".12307499999999999"/>
<path d="M383.936 222.184s1.151 6.09 1.256 9.584c.15 4.24.332 5.439.264 7.91-.044.17.414 3.193.549 4.507.096.678-.099.174.014.224.865.53 1.454.104 1.982-.314.157-.118-1.4-3.781-1.445-4.524-.821-10.758-2.381-17.062-2.381-17.062s.622 3.817-.239-.325" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M383.936 222.184s1.151 6.09 1.249 9.585c.15 4.239.332 5.438.265 7.91-.045.169.413 3.192.548 4.506.096.678-.098.174.014.225.866.53 1.454.103 1.982-.314.157-.119-1.399-3.782-1.445-4.532-.821-10.757-2.375-17.062-2.375-17.062s.623 3.817-.238-.326v.008zm.499 17.315s.913.414 1.015.18m.04-1.255s-.78-.02-.903-.24m.045-1.049s.576.375.732.136m-.718-1.682l.555.024m-.591-1.52l.609.022m-.514-2.148s.344.153.385-.073m-.493-1.7l.497-.022m.475 9.564s.896.127.995-.158m-1.066-1.906s.892.073.93-.211m-.967-1.277s.726.023.777-.035m-.919-1.4l.722-.032m-.718-1.69l.494-.078m-.694-1.402s.45.093.545-.136m-.596-1.591s.406.264.389-.017m.049 8.959s.888.008.871-.264" fill="#e8a30e" stroke-width=".12307499999999999"/>
<path d="M373.628 218.714s.583 5.083.64 5.995c.269 4.408.145 7.744-.063 9.82.014.224-.85 5.498-.552 5.78 1.013 1.156 1.049 1.285 2.117.429.153-.176-.46-5.577-.506-6.32-.104-.797-.27-7.106-.384-9.857-.012-1.088-.947-6.443-.947-6.443s-.125-1.14-.3.582" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M373.628 218.714s.583 5.083.64 5.995c.269 4.408.138 7.744-.063 9.82.014.224-1.03 7.565-.705 5.787 1.013 1.156 1.221 1.592 2.289.737.153-.176-.48-5.892-.525-6.634-.104-.798-.27-7.107-.384-9.858-.012-1.088-.947-6.443-.947-6.443s-.125-1.14-.3.582l-.005.014z" fill="#e8a30e" stroke-width=".12307499999999999"/>
<path d="M373.737 216.932s1.151 6.09 1.255 9.585c.15 4.239.333 5.438.265 7.909-.044.17.414 3.193.549 4.507.096.678-.099.174.014.225.865.53 1.454.103 1.982-.314.156-.119-1.4-3.782-1.445-4.525-.821-10.757-2.381-17.062-2.381-17.062l-.239-.325" fill="#f7e214" stroke-width=".12307499999999999"/>
<path d="M373.737 216.932s1.151 6.09 1.249 9.585c.15 4.239.332 5.438.264 7.91-.044.169.414 3.192.55 4.507.095.677-.1.173.013.224.866.53 1.454.104 1.982-.314.157-.119-1.4-3.782-1.445-4.532-.822-10.757-2.375-17.062-2.375-17.062l-.238-.325v.007zm.499 17.315s.913.414 1.014.18m.04-1.255s-.78-.02-.903-.24m.046-1.049s.576.376.732.136m-.718-1.682l.555.024m-.591-1.519l.609.021m-.514-2.148s.344.153.385-.073m-.493-1.7l.497-.022m.475 9.564s.896.127.994-.158m-1.065-1.906s.892.073.93-.21m-.967-1.278s.726.023.777-.035m-.92-1.4l.723-.032m-.718-1.69l.494-.077m-.694-1.403s.45.093.545-.136m-.596-1.59s.406.263.389-.018m.049 8.959s.888.008.871-.264" fill="#e8a30e" stroke-width=".12307499999999999"/>
<g fill="#e8a30e" stroke-width=".217">
<path d="M356.466 216.692s1.26 9.73 1.091 15.273c-.18 6.726 0 8.638-.367 12.549-.077.265.367 5.087.444 7.179.08 1.08-.176.268 0 .356 1.36.9 2.36.268 3.263-.356.357-.177-1.903-6.09-1.903-7.27-.268-17.1-2.183-27.198-2.183-27.198l-.357-.533" transform="matrix(-.61184 .0275 .03206 .5246 576.82 87.782)"/>
<path d="M356.466 216.692s1.268 9.73 1.08 15.273c-.177 6.726 0 8.638-.368 12.549-.077.265.368 5.087.445 7.179.08 1.08-.177.268 0 .356 1.36.9 2.36.268 3.263-.356.356-.177-1.904-6.09-1.904-7.282-.268-17.1-2.171-27.198-2.171-27.198l-.357-.533zM357.378 244.613s1.448.265 1.639-.18M357.569 241.339s1.447.18 1.447-.268M357.569 238.979s1.168.088 1.268 0M357.469 236.696h1.18M357.646 233.969l.812-.089M357.569 231.609s.624.18.812-.177M357.569 228.87s.624.447.624 0M357.378 243.066s1.448.077 1.448-.357" transform="matrix(-.61184 .0275 .03206 .5246 576.82 87.782)"/>
</g>
<path d="M333.985 221.65l-.797.06s1.233-.09.797-.06z" fill="#005000" stroke-width=".12307499999999999"/>
<path d="M323.273 256.404s.372-.16.465 0c0 .08-.093.16-.186.16s-.279-.16-.279-.16zM324.295 257.52s-1.58-.16-2.136-.16" fill="#fff" fill-rule="evenodd" stroke-width=".12307499999999999"/>
</g>
<g>
<path d="M291.666 215.476c-.028-2.1 1.95-3.315 2.254-3.52.97-.656 1.63-1.224 3.722-1.497 0 0 .143.433.135.805-.007.372-.462 1.658-2.07 2.745-1.638 1.107-4.04 1.467-4.04 1.467z" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M291.643 214.675l29.644 38.48 1.408-1.387-30.24-39.087-.812 1.994z" fill="#a05a2c" fill-rule="evenodd" stroke-width=".12307499999999999"/>
<path d="M291.186 207.16s3.207-.333 2.783-2.166c-.453-1.813-2.613-1.778-3.515-1.863-.932-.062-3.874.622-4.746 1.497-.903.895-2.745 2.426-2.148 4.997.597 2.572 1.354 4.342 2.3 5.944.939 1.648.703 3.234.453 3.933-.077.296-.373 1.27.43 1.625 1.183.504 1.478.508 2.501-.632 1.048-1.115 2.451-2.92 2.422-5.02-.028-2.098 1.95-3.314 2.254-3.519.97-.656 1.63-1.224 3.722-1.497 0 0-.742-1.21-1.857-1.15-1.136.035-3.394-.966-4.599-2.149z" fill="#d52b1e" stroke-width=".12307499999999999"/>
<path d="M291.186 207.16s3.207-.333 2.783-2.166c-.453-1.813-2.613-1.778-3.515-1.863-.932-.062-3.874.622-4.746 1.497-.903.895-2.745 2.426-2.148 4.997.597 2.572 1.354 4.342 2.3 5.944.939 1.648.703 3.234.453 3.933-.077.296-.373 1.27.43 1.625 1.183.504 1.478.508 2.501-.632 1.048-1.115 2.451-2.92 2.422-5.02-.028-2.098 1.95-3.314 2.254-3.519.97-.656 1.63-1.224 3.722-1.497 0 0-.742-1.21-1.857-1.15-1.136.035-3.394-.966-4.599-2.149z" fill="none" stroke-width=".12307499999999999"/>
<path d="M291.186 207.16c-.432.007-1.712-.554-2.6-.24-.864.34-2.653 1.386-2.366 2.904M296.649 209.622s-1.85.761-3.153 1.642c-.547.37-2.359 2.043-3.527 3.24-1.032 1.023-1.26 2.4-3.474 3.897M295.483 209.351c-.38.338-.76.676-1.411 1.035-.621.339-.82.88-1.214 1.31" fill="none" stroke-width=".12307499999999999"/>
</g>
<g>
<g stroke-width="1.512">
<g stroke-width=".194">
<path d="M156.9 89.493c-.033 1.927-3.764 4.277-6.82.323-3.193-2.722-2.733-7.08-.329-7.767l27.817-34.577c1.144-.796 1.224-1.517 1.777-2.272 1.305 1.486 3.987 4.142 5.443 5.42-.81.86-1.461 1.67-1.618 2.323l-26.27 36.55z" fill="#e8a30e" fill-rule="evenodd" transform="matrix(-1.8554 .0577 .0868 1.58684 631.153 133.141)" stroke-width=".072"/>
<g stroke-width=".045" fill-rule="evenodd">
<path d="M123.245 190.484c.837-1.426 4.37 2.172 3.488 3.327-.882 1.155-4.256-1.888-3.488-3.327z" fill="#e7e7e7" stroke-linejoin="round" transform="matrix(-2.96532 .0479 .0869 2.53565 651.09 -273.854)"/>
<path d="M126.418 193.544c-.628.584-3.183-1.828-2.8-2.765.66-.884 3.483 2.186 2.8 2.765z" fill="#cccccf" transform="matrix(-2.96532 .0479 .0869 2.53565 651.09 -273.854)"/>
</g>
</g>
<path d="M3513.155 736.637c56.547-19.255 95.944-57.232 120-113.037M3934.483 1159.288c71.128-23.522 118.995-70.304 139.06-144.889M3964.46 1190.93c71.128-23.522 118.996-70.304 139.06-144.888M4138.493 1357.47c71.128-23.523 127.323-76.134 147.388-150.718M4169.303 1389.112c71.128-23.522 128.155-76.966 148.22-151.55" fill="none" transform="matrix(.0802 .0023 -.00223 .08257 15.885 158.975)"/>
<path d="M4338.34 1405.766c4.012 16.341 13.42 21.216 26.23 15.821M4192.589 1403.136c28.07 40.396 57.66 27.18 82.718 26.9" fill="none" stroke-linecap="round" transform="matrix(.0802 .0023 -.00223 .08257 15.885 158.975)"/>
<path d="M4375.222 1406.928c.312 10.999-9.015 20.158-20.851 20.476-11.837.318-21.717-8.326-22.089-19.323-.372-10.997 8.905-20.2 20.74-20.573 11.834-.373 21.761 11.555 22.193 22.55" fill="#e8a30e" transform="matrix(.0802 .0023 -.00223 .08257 15.885 158.975)"/>
<path d="M4336.24 1403.837c4.012 16.34 13.42 21.216 26.23 15.82M4192.589 1403.136c28.07 40.396 57.66 27.18 82.718 26.9" fill="none" stroke-linecap="round" transform="matrix(.0802 .0023 -.00223 .08257 15.885 158.975)"/>
</g>
</g>
</g>
<g fill="#007934" stroke="#000" stroke-width="2.163">
<path d="M339.65 175.519c1.774 2.839 4.406 7.962 5.125 11.886 1.325 7.24-.747 15.265-7.053 20.937-5.138 4.62-13.202 6.049-16.569 6.74-3.359.689-5.789 1.77-6.344 2.511-.028-.522-.105-1.045.456-1.568 1.595-.703 4.183-1.12 7.792-1.863 7.251-1.494 14.869-4.213 19.02-12.125 5.411-10.318 2.187-18.427-2.501-26.476l.074-.042z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.05408 .05219 -.05054 .0481 358.084 175.202)" fill="#d52b1e" stroke-width="1.701"/>
<path d="M346.576 204.939c-1.079.64-2.147.808-3.004 1.093-.662.221-1.8.58-2.193.728-.375.141-.96.405-1.46.632-.794.359-1.653 1.355-1.653 1.355s1.207 1.266 2.65 1.087c1.13-.14 1.7-.45 2.267-.726.59-.287.576-.612 1.425-1.224.939-.677 1.597-2.014 1.968-2.945zM340.924 206.135c-.345.542-1.172.5-1.645.426l-.213.27c.649.01 1.536.017 1.98-.568-.011-.087-.064-.128-.122-.128z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M346.561 204.988c-.976.95-2.798 2.008-4.627 2.79-1.83.782-3.97 1.032-5 1.026l-.272.287c1.483-.138 3.438-.407 5.094-1.087 2.16-.886 3.934-2.025 4.82-2.96l-.015-.056zM344.183 209.563c-1.947-.069-3.019.537-4.828.933-1.691.37-3.67-.51-4.764 1.117 4.407 2.856 7.589.935 9.592-2.05z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M340.22 213.564c-.84-.72-8.05-3.16-9.202-.432 1.715 1.897 6.736 2.32 9.201.432z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M338.51 215.484c-.761-.12-1.659-.297-2.536-.398-.881-.102-1.227-.255-1.878-.345-1.065-.147-2.285-1.642-6.04-.5 1.453 3.349 6.415 4.052 10.454 1.243zM340.134 213.618c-3.842.767-8.357-.002-10.142-1.054l-.284.19c4.115 1.753 8.114 1.522 10.426.864zM344.122 209.562c-2.262 1.518-5.178 2.649-11.423 1.812l-.086.216c8.558.734 9.405-.834 11.51-2.028z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M338.482 215.511c-2.986.106-4.667 1.437-10.26-1.316-.457-.225-1.067-.382-1.42-.55l-.513.19c.39.173 1.018.169 1.368.323 6.984 3.082 6.788 1.641 10.825 1.353z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(-.0379 -.06375 -.06265 .03283 363.213 205.172)" fill="#d52b1e" stroke-width="1.701"/>
<path d="M327.147 212.253c-.644.165-.83.932-.885 1.383l-.333.12c.17-.594.407-1.406 1.122-1.65.085.035.113.094.096.147z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.0748 .0178 -.01674 .06604 342.926 152.195)" fill="#d52b1e" stroke-width="1.701"/>
<path d="M341.622 203.153c-.14-2.086-1.153.805-3.197-3.855-.595-1.355-.59-2.219-.993-4.252 1.113 1.758 2.974 2.232 3.73 3.59.744 1.336.554 3.484.46 4.517z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M337.472 195.2s1.007 2.35 2.458 4.014c1.459 1.674 1.732 3.71 1.732 3.71" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M338.47 197.196c1.282 1.728 3.007 3.775 3.088 5.924l.2.075c-.298-2.827-1.97-4.132-3-5.558l-.289-.44zM349.317 199.864c-.94.773-1.927 1.052-2.7 1.434-.597.296-1.098.688-1.45.88-.337.184-.885.27-1.33.554-.704.452-2.082 2.033-2.082 2.033s1.306 1.07 2.116.895c2.355-.457 3.042-1.391 4.23-2.257.918-.75.979-2.534 1.216-3.539z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M340.695 204.836l-.221.325c1.351-.133 3.504-1.43 4.94-2.153 1.93-.972 3.012-1.711 3.826-3.093-.922 1.381-2.126 2.166-3.94 3.042-1.522.736-3.686 1.981-4.605 1.879z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M350.118 195.296c-.788.913-1.71 1.348-2.404 1.849-.536.387-.96.854-1.272 1.1-.299.236-.824.408-1.21.76-.614.56-1.525 2.19-1.525 2.19s.653.698 1.42.394c2.374-.294 3.071-1.42 3.954-3.446.494-1.05.983-1.819 1.037-2.847z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(-.07012 .03046 .02916 .06203 337.828 164.892)" fill="#d52b1e" stroke-width="1.701"/>
<path d="M342.51 201.585l-.16.356c2.846-1.297 6.579-3.913 7.801-6.578-1.738 2.874-4.608 4.77-7.64 6.222zM350.767 190.9c-.677.95-1.516 1.44-2.133 1.979-.477.417-.843.904-1.12 1.167-.265.252-.747.457-1.087.83-.538.59-1.278 2.255-1.278 2.255s.868.817 1.57.466c.7-.35 1.64-1.146 2.105-1.56.484-.433.603-1.475 1.171-2.27.662-.925.795-1.854.772-2.867z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M348.718 193.838c-1.38 1.572-3.079 3.071-4.67 3.757l-.124.36c2.589-1.467 3.68-2.794 4.826-4.067l-.032-.05zM349.787 188.192c-.47.923-1.177 1.47-1.665 2.028-.378.43-.637.907-.852 1.176-.206.257-.626.505-.88.878-.405.59-.81 2.141-.81 2.141s.588.627 1.188.22c.6-.405 1.46-1.235 1.827-1.662.38-.446.573-1.41.97-2.182.461-.898.424-1.723.222-2.599zM345.418 187.099c-.25.54-.35 1.071-.513 1.629l-.064-.399c.134-.437.24-.897.449-1.298.043-.01.085-.012.128.068z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M348.37 191.04c-1.026 1.564-2.367 3.112-3.748 3.938l-.055.331c2.188-1.65 2.985-2.96 3.843-4.23l-.04-.04zM342.75 200.935c-.114-.499-.206-.891-.533-1.34-.05-.002-.084.013-.095.06.298.482.424.905.507 1.49l.12-.21z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.04214 -.03823 .0377 .03686 317.377 169.143)" fill="#d52b1e" stroke-width="2.249"/>
<path d="M343.15 182.53c-.357-.31-.8-.588-1.25-.864-.05.018-.056.054-.041.099.516.326.97.644 1.354 1.006l-.064-.241zM348.672 182.886c-1.13 2.385-3.85 4.052-2.76 7.552 2.81 2.538 2.99-4.542 2.76-7.552z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M346.094 177.666c-.463 2.438-2.628 4.454-1.209 7.686 3.984 1.002 2.085-4.368 1.209-7.686z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M343.737 174.014c2.002 3.723 2.483 5.876.12 8.317 0 0-1.24-1.166-1.536-3.31-.25-1.815 1.23-3.988 1.416-5.007z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M340.413 171.853c.531 2.36-1.511 3.442 1.41 6.482 2.085-2.48 1.09-3.1-1.41-6.482z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M339.628 175.983c-3.368.36-2.056-2.56-3.016-5.255 1.983 1.478 4.67 2.073 3.016 5.255zM341.823 180.438c-.948-4.39-3.968-2.673-5.64-4.608.865 2.832 2.134 4.765 5.64 4.608zM343.182 184.523c-2.631-.173-4.765-1.47-6.182-4.38 2.7 1.204 5.692 1.326 6.182 4.38z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M343.58 188.336c-1.037-1.192-1.063-1.961-1.458-2.756-.655-1.315-1.349-2.48-3.042-3.707.012 3.106.454 6.537 4.5 6.463z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M344.179 191.58c-1.615-2.25-3.112-4.162-5.555-5.732 1.014 2.21.545 6.297 5.555 5.733z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M343.723 196.042c-4.957-.139-4.488-4.815-4.53-7.003.896 1.339 1.99 2.503 2.807 3.466.89 1.051 1.748 2.239 1.723 3.537z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M343.125 198.827c-.4-1.014-.093-1.423-.978-2.314-.956-.963-2.79-2.685-3.75-4.662-.14 1.748-.162 4.446 1.192 5.35 1.025.682 1.918.874 3.536 1.626zM338.795 206.074c-3.89-3.026-1.552-5.579-1.225-7.842.988 2.552 3.771 4.752 1.225 7.842zM340.39 176.898c-1.25-2.346-2.01-3.631-3.677-6.078 1.925 2.783 2.756 4.55 3.862 6.456" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M338.852 206.831c.158-3.081-.681-5.736-1.225-8.517.514 2.936 1.244 5.892.969 8.76l.256-.243zM343.47 199.444c-.405-1.884-4.118-3.135-5.045-7.512.76 4.351 4.524 5.448 4.903 7.897l.142-.385zM344.3 196.882l-.1.478c-.549-2.95-4.014-4.402-5.016-8.337 1.464 4.264 4.289 4.827 5.117 7.859zM344.986 192.465c-1.706-2.6-4.09-3.582-6.345-6.635 2.11 3 4.77 4.406 6.385 7.036l-.04-.401zM344.925 189.042c-1.876-.802-3.824-3.054-5.861-7.17 1.336 3.045 3.03 5.8 5.861 7.63v-.46z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M344.06 185.027c-2.19-1.731-5.03-2.881-7.071-4.914 1.696 1.935 4.956 3.288 7.13 5.2l-.06-.286zM342.367 180.725c-2.212-1.504-4.344-1.972-6.184-4.818 1.478 2.785 3.83 3.49 6.265 5.028l-.08-.21zM348.672 182.943c-.793 3.073-1.463 6.302-3.565 8.375l.02-.402c.96-.538 2.48-3.74 3.545-7.973zM346.114 177.78c-.145 3.176-.09 6.535-1.733 8.337l-.12-.363c1.675-1.357 1.535-4.946 1.853-7.974zM343.858 174.167c.562 2.794.603 5.38-.141 9.56l-.161-.306c.466-2.463.996-4.986.302-9.254zM340.474 171.949c1.123 2.37 1.982 4.77 1.249 7.342l-.202-.287c.87-2.352-.147-4.703-1.047-7.055z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<g fill-rule="evenodd">
<path d="M336.132 203.154c1.328 3.195-.427 5.516-2.503 6.86-1.616-4.643 1.75-4.123 2.503-6.86z" stroke-width=".12307469999999998"/>
<path d="M336.188 203.144c.228 1.977-1.921 4.19-2.587 7.534l-.3.272c.987-4.078 3.07-5.647 2.887-7.806z" stroke-width=".12307469999999998"/>
</g>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.05601 .01001 -.00615 .05237 338.38 154.373)" fill="#d52b1e" stroke-width="2.249"/>
<path d="M343.526 182.955c.028-.472-.022-.992-.079-1.516-.045-.03-.077-.012-.103.027.057.609.082 1.161.03 1.687l.152-.198z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.04356 -.02164 .00984 .0445 331.588 162.543)" fill="#d52b1e" stroke-width="2.653"/>
<path d="M343.156 182.354c-.109-.387-.288-.77-.473-1.153-.04 0-.06.03-.068.075.208.45.378.872.484 1.313l.057-.235z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.05689 -.00117 .00424 .05256 334.205 161.601)" fill="#d52b1e" stroke-width="2.249"/>
<path d="M344.857 188.619c-.065-.468-.216-.968-.375-1.471-.05-.02-.078.003-.096.047.175.585.309 1.122.36 1.648l.111-.224z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.0396 -.04244 .03543 .04092 320.579 173.713)" fill="#d52b1e" stroke-width="2.202"/>
<path d="M344.796 188.574c-.335-.345-.75-.653-1.173-.958-.048.02-.053.06-.04.109.486.362.912.715 1.273 1.117l-.06-.268z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.05312 .0204 -.01592 .05027 343.176 171.764)" fill="#d52b1e" stroke-width="2.249"/>
<path d="M342.839 200.803c.117-.458.165-.978.208-1.503-.039-.038-.074-.027-.107.007-.058.608-.137 1.155-.288 1.662l.187-.166z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(-.04214 -.03823 -.0377 .03686 368.488 187.701)" fill="#d52b1e" stroke-width="2.249"/>
<path d="M342.716 201.088c.357-.31.8-.588 1.249-.863.051.017.057.054.042.098-.517.327-.97.644-1.355 1.006l.064-.24z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.03761 .0427 -.0374 .03717 353.24 180.582)" fill="#d52b1e" stroke-width="2.249"/>
<path d="M339.48 206.158c.316-.352.6-.79.882-1.236-.017-.052-.053-.058-.098-.044-.334.512-.657.96-1.025 1.34l.242-.06z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(-.07659 -.00857 -.00906 .06738 354.597 173.163)" fill="#d52b1e" stroke-width="1.701"/>
<path d="M339.378 205.072c-.234.603-.067.837.072 1.1l-.147.308c-.207-.346-.285-.729-.102-1.447.086-.033.15-.01.177.039zM327.265 214.455c-.665.056-.998-.315-1.215-.72l-.356-.003c.376.502.775.898 1.534.891.068-.06.072-.125.037-.168z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(-.01693 .07142 -.06997 -.01428 363.697 211.457)" fill="#d52b1e" stroke-width="1.701"/>
<path d="M332.694 206.08c.503 3.082-1.295 5.586-4.006 6.363-.886-3.973 2.777-4.115 4.006-6.363z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M332.7 206.104c-.996 2.419-2.343 4.67-4.756 7.15l-.519.068c2.686-2.124 4.16-4.884 5.274-7.218z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<path d="M148.402 484.164a5.782 8.122 0 1 1-11.564 0 5.782 8.122 0 1 1 11.564 0z" transform="matrix(.03467 .06304 -.05716 .0142 350.326 197.074)" fill="#d52b1e" stroke-width="1.923"/>
<path d="M325.91 213.792c.492-.157.971-.415 1.449-.682-.007-.06-.05-.087-.11-.099-.561.3-1.092.546-1.658.699l.318.082z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<g stroke-width="2.423" fill-rule="evenodd">
<path d="M328.534 208.798c-.13 1.238-1.104 2.351-2.003 3.22-.897.869-.998 1.194-2.264 1.57-1.217-2.77 2.853-3.32 4.267-4.79z" stroke-width=".12306417"/>
<path d="M328.522 208.77c-1.358 2.539-3.52 3.788-4.697 5.427l-.168-.015c1.688-2.225 3.122-2.647 4.865-5.413z" stroke-width=".12306417"/>
</g>
<g>
<path d="M300.423 175.519c-1.775 2.839-4.407 7.962-5.126 11.886-1.325 7.24.747 15.265 7.053 20.937 5.138 4.62 13.202 6.049 16.57 6.74 3.358.689 5.788 1.77 6.343 2.511.028-.522.105-1.045-.455-1.568-1.596-.703-4.184-1.12-7.793-1.863-7.25-1.494-14.869-4.213-19.02-12.125-5.411-10.318-2.186-18.427 2.501-26.476l-.073-.042z" fill-rule="evenodd" stroke-width=".12307469999999998"/>
<g stroke-width="1.702">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.07409 0 0 -.07057 268.978 254.186)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.07409 0 0 -.07057 268.978 254.186)"/>
</g>
<g stroke-width="2.796">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.02842 .04392 -.03516 .01387 348.73 227.419)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.02842 .04392 -.03516 .01387 348.73 227.419)"/>
</g>
<g stroke-width="2.653">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.03535 -.02428 .03054 .0399 304.227 138.101)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.03535 -.02428 .03054 .0399 304.227 138.101)"/>
</g>
<g stroke-width="3.117">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.01435 -.0395 .03392 .0153 288.606 144.578)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.01435 -.0395 .03392 .0153 288.606 144.578)"/>
</g>
<g stroke-width="3.755">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.02689 -.02818 -.0238 -.01503 329.441 168.948)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.02689 -.02818 -.0238 -.01503 329.441 168.948)"/>
</g>
<g stroke-width="3.129">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.00698 -.0462 .03173 .01153 284.167 144.81)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.00698 -.0462 .03173 .01153 284.167 144.81)"/>
</g>
<g stroke-width="2.626">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.00092 -.04987 .04397 .00412 272.562 148.828)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.00092 -.04987 .04397 .00412 272.562 148.828)"/>
</g>
<g stroke-width="3.129">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.0074 -.04614 .03374 .00133 272.288 155.275)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.0074 -.04614 .03374 .00133 272.288 155.275)"/>
</g>
<g stroke-width="3.039">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.03127 -.02967 -.02827 -.02564 333.548 176.3)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.03127 -.02967 -.02827 -.02564 333.548 176.3)"/>
</g>
<g stroke-width="3.039">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.03333 -.02734 -.02635 -.02761 332.749 180.826)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.03333 -.02734 -.02635 -.02761 332.749 180.826)"/>
</g>
<g stroke-width="2.837">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.0345 -.03067 -.02937 -.02843 334.27 181.854)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.0345 -.03067 -.02937 -.02843 334.27 181.854)"/>
</g>
<g stroke-width="4.239" fill-rule="evenodd">
<path d="M296.838 183.006s-.286-.553-.29-1.066c-.004-.513.127-.778.127-.778l-.2-.123s-.1.55-.098.814c0 .265.01.332.01.332s-.36-.308-.438-.483c-.078-.174-.179-.434-.179-.434l-.174.078s.163.542.301.648c.483.37.777 1.111.777 1.111" stroke-width=".12305817"/>
<path d="M295.595 180.302a.369.543-6.466 1 1 .123 1.08.369.543-6.466 1 1-.123-1.08z" style="marker:none" overflow="visible" fill="#000" stroke-width=".1230638"/>
<path d="M296.837 180.294a.543.369-70.71 1 1-.359 1.026.543.369-70.71 1 1 .36-1.026z" style="marker:none" overflow="visible" fill="#000" stroke-width=".1230638"/>
</g>
<g stroke-width="4.239" fill-rule="evenodd">
<path d="M296.727 182.95s.571-.25.898-.645c.326-.395.392-.684.392-.684l.233.03s-.27.49-.438.695c-.167.204-.216.251-.216.251s.473-.012.644-.098c.17-.087.413-.225.413-.225l.086.17s-.469.318-.643.313c-.608-.017-1.304.372-1.304.372" stroke-width=".12305817"/>
<path d="M299.397 181.635a.543.369-44.426 1 1-.776.76.543.369-44.426 1 1 .776-.76zM298.439 180.845a.543.369-70.182 1 1-.368 1.023.543.369-70.182 1 1 .368-1.023z" style="marker:none" overflow="visible" fill="#000" stroke-width=".1230638"/>
</g>
<g stroke-width="3.004">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.01074 -.04747 .03516 -.00084 268.672 158.435)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.01074 -.04747 .03516 -.00084 268.672 158.435)"/>
</g>
<g stroke-width="2.724">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.03385 -.03415 -.0324 -.02762 334.855 181.986)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.03385 -.03415 -.0324 -.02762 334.855 181.986)"/>
</g>
<g stroke-width="2.931">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.03483 -.0357 -.0308 -.01906 334.11 178.856)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.03483 -.0357 -.0308 -.01906 334.11 178.856)"/>
</g>
<g stroke-width="2.447">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.01362 -.04871 .04988 -.00733 258.087 164.177)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.01362 -.04871 .04988 -.00733 258.087 164.177)"/>
</g>
<g stroke-width="2.842">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.02858 -.04283 -.03473 -.0136 332.565 174.813)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.02858 -.04283 -.03473 -.0136 332.565 174.813)"/>
</g>
<g stroke-width="2.422">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.02157 -.0478 .04628 -.01712 255.259 173.917)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.02157 -.0478 .04628 -.01712 255.259 173.917)"/>
</g>
<g stroke-width="3.885" fill-rule="evenodd">
<path d="M295.052 191.59s-.45-.51-.59-1.052c-.14-.542-.072-.857-.072-.857l-.244-.077s.04.608.112.888c.071.28.098.348.098.348s-.462-.23-.591-.394c-.129-.165-.305-.413-.305-.413l-.164.129s.317.53.492.606c.609.263 1.117.97 1.117.97" stroke-width=".12307679999999999"/>
<path d="M293.019 189.058a.402.593-20.556 1 1 .416 1.11.402.593-20.556 1 1-.416-1.11z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12306711999999999"/>
<path d="M294.33 188.72a.402.593 5.2 1 1-.107 1.18.402.593 5.2 1 1 .108-1.18z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12306711999999999"/>
</g>
<g stroke-width="3.885" fill-rule="evenodd">
<path d="M295.042 191.55s.538-.414.779-.92c.24-.505.233-.828.233-.828l.255-.03s-.156.59-.279.851c-.123.262-.162.324-.162.324s.497-.139.655-.275c.158-.137.377-.348.377-.348l.137.158s-.412.46-.597.502c-.649.143-1.282.74-1.282.74" stroke-width=".12307679999999999"/>
<path d="M297.519 189.45a.593.402-58.515 1 1-.62 1.012.593.402-58.515 1 1 .62-1.012zM296.295 188.87a.402.593 5.729 1 1-.119 1.179.402.593 5.729 1 1 .119-1.18z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12306711999999999"/>
</g>
<g stroke-width="2.537">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.03201 -.04797 .0389 -.01523 253.552 175.774)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.03201 -.04797 .0389 -.01523 253.552 175.774)"/>
</g>
<g stroke-width="2.212">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.02363 -.05235 -.05068 -.01874 339.21 175.067)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.02363 -.05235 -.05068 -.01874 339.21 175.067)"/>
</g>
<g stroke-width="2.336">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.02214 -.05352 -.04671 -.01248 336.956 173.835)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.02214 -.05352 -.04671 -.01248 336.956 173.835)"/>
</g>
<g stroke-width="1.984">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.03635 -.0527 .05184 -.03066 244.367 184.794)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.03635 -.0527 .05184 -.03066 244.367 184.794)"/>
</g>
<g stroke-width="2.614">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.00719 -.0538 -.04161 .00308 328.473 171.161)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.00719 -.0538 -.04161 .00308 328.473 171.161)"/>
</g>
<g stroke-width="1.874">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.05293 -.0429 .04597 -.04422 241.264 204.932)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.05293 -.0429 .04597 -.04422 241.264 204.932)"/>
</g>
<g stroke-width="2.222">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.0479 -.04483 .04024 -.0264 245.833 190.965)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.0479 -.04483 .04024 -.0264 245.833 190.965)"/>
</g>
<g stroke-width="2.124">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.01206 -.0593 -.05503 -.00787 337.411 171.36)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.01206 -.0593 -.05503 -.00787 337.411 171.36)"/>
</g>
<g stroke-width="3.469" fill-rule="evenodd">
<path d="M297.44 201.471s-.69-.322-1.076-.815c-.387-.493-.458-.848-.458-.848l-.286.03s.315.607.513.862c.199.255.257.314.257.314s-.578-.03-.784-.14c-.205-.112-.497-.288-.497-.288l-.11.206s.562.402.775.402c.743-.002 1.581.495 1.581.495" stroke-width=".12308011999999999"/>
<path d="M294.22 199.782a.45.664-44.111 1 1 .923.954.45.664-44.111 1 1-.924-.954z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12306015000000001"/>
<path d="M295.414 198.848a.45.664-18.355 1 1 .419 1.26.45.664-18.355 1 1-.419-1.26z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12306015000000001"/>
</g>
<g stroke-width="3.469" fill-rule="evenodd">
<path d="M297.531 201.436s.366-.667.387-1.293c.021-.627-.13-.955-.13-.955l.247-.144s.105.675.095.998c-.01.323-.022.405-.022.405s.449-.365.55-.576c.1-.211.231-.526.231-.526l.211.101s-.216.657-.388.782c-.602.438-.984 1.334-.984 1.334" stroke-width=".12308011999999999"/>
<path d="M299.133 198.171a.45.664 7.93 1 1-.183 1.316.45.664 7.93 1 1 .183-1.316z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12306015000000001"/>
<path d="M297.617 198.123a.45.664-17.827 1 1 .406 1.264.45.664-17.827 1 1-.406-1.264z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12306015000000001"/>
</g>
<g stroke-width="2.211">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.05587 -.0246 .02314 -.04526 254.426 218.653)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.05587 -.0246 .02314 -.04526 254.426 218.653)"/>
</g>
<g stroke-width="2.937">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(.0011 -.04911 -.03573 -.00164 323.245 178.559)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(.0011 -.04911 -.03573 -.00164 323.245 178.559)"/>
</g>
<g stroke-width="1.965">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.06412 -.02235 .0309 -.05043 248.71 225.745)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.06412 -.02235 .0309 -.05043 248.71 225.745)"/>
</g>
<g stroke-width="2.415">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.02272 -.04147 -.04626 .02988 318.545 167.86)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.02272 -.04147 -.04626 .02988 318.545 167.86)"/>
</g>
<g stroke-width="3.01" fill-rule="evenodd">
<path d="M303.337 208.66s-.583.456-1.207.094c-.625-.363-.853-.712-.853-.712l-.292.154s.595.515.917.703c.321.189.409.226.409.226s-.631.215-.899.185-.655-.095-.655-.095l-.03.268s.756.114 1.001.098c.245-.016 1.53-.515 1.53-.515" stroke-width=".1230789"/>
<path d="M299.46 208.735a.52.765-65.886 1 1 1.398.626.52.765-65.886 1 1-1.397-.626z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12313015"/>
<path d="M300.34 207.224a.52.765-40.13 1 1 .987 1.17.52.765-40.13 1 1-.986-1.17z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12313015"/>
</g>
<g stroke-width="3.01" fill-rule="evenodd">
<path d="M303.405 209.004s.49-.553.168-1.2c-.323-.645-.657-.894-.657-.894l.171-.283s.477.627.645.96c.168.332.2.422.2.422s.254-.617.24-.886c-.013-.269-.053-.66-.053-.66l.269-.014s.067.763.036 1.006c-.031.244-.61 1.496-.61 1.496" stroke-width=".1230789"/>
<path d="M303.72 205.14a.52.765-20.553 1 1 .538 1.433.52.765-20.553 1 1-.538-1.433z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12313015"/>
<path d="M302.157 205.924a.52.765-46.309 1 1 1.107 1.057.52.765-46.309 1 1-1.107-1.057z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12313015"/>
</g>
<g stroke-width="1.835">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.06885 -.00864 .00927 -.06415 261.043 243.504)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.06885 -.00864 .00927 -.06415 261.043 243.504)"/>
</g>
<g stroke-width="2.613" fill-rule="evenodd">
<path d="M310.77 212.544s-.467.713-1.283.548c-.815-.165-1.192-.461-1.192-.461l-.263.276s.84.341 1.26.428c.42.087.53.096.53.096s-.609.467-.912.533c-.304.065-.75.138-.75.138l.065.304s.868-.155 1.13-.263c.261-.108 1.48-1.127 1.48-1.127" stroke-width=".12307230000000001"/>
<path d="M306.569 214.058a.598.881-84.589 1 1 1.755.166.598.881-84.589 1 1-1.755-.166z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12305121000000001"/>
<path d="M306.97 212.084a.598.881-58.833 1 1 1.509.912.598.881-58.833 1 1-1.509-.912z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12305121000000001"/>
</g>
<g stroke-width="2.27">
<path d="M-609.043 575.416c2.993-5.86 54.135-52.969 100.641-49.438 34.051 2.586 39.685 11.2 39.685 11.2s3.174 8.864-27.059 15.358c-30.544 6.561-83.494 28.465-113.267 22.88z" fill-rule="evenodd" transform="matrix(-.03216 -.03785 -.0473 .03578 317.109 168.575)"/>
<path d="M-470.399 536.956c-36.55-4.34-73.797 11.164-102.962 22.854" transform="matrix(-.03216 -.03785 -.0473 .03578 317.109 168.575)"/>
</g>
<g stroke-width="2.613" fill-rule="evenodd">
<path d="M311.347 213.067s.22-.823-.447-1.321c-.667-.497-1.14-.58-1.14-.58l.03-.38s.815.397 1.16.653c.345.255.425.33.425.33s-.058-.765-.211-1.035c-.154-.27-.398-.65-.398-.65l.27-.154s.464.75.558 1.016c.094.267.148 1.854.148 1.854" stroke-width=".12307230000000001"/>
<path d="M309.672 208.928a.598.881-47.264 1 1 1.294 1.196.598.881-47.264 1 1-1.294-1.196z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12305121000000001"/>
<path d="M308.47 210.544a.598.881-73.02 1 1 1.685.515.598.881-73.02 1 1-1.686-.515z" style="marker:none" overflow="visible" fill="#000" stroke-width=".12305121000000001"/>
</g>
</g>
</g>
<path d="M319.103 208.988s-2.34 5.437-1.532 5.976c0 0 2.375-4.22 4.46-5.818 1.084-1.022 1.743.01 1.883-.89.14-.899-2.853-2.189-2.853-2.189l-1.915 2.696" fill="#452c25"/>
<path d="M593.678 214.479s-8.426 19.153-5.515 21.053c0 0 8.549-14.868 16.052-20.496 3.902-3.601 6.274.032 6.777-3.135.502-3.168-10.267-7.711-10.267-7.711l-6.894 9.497" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".585"/>
<path d="M310.563 213.127s-3.402 5.924-2.51 5.994c.892.07 4.53-7.554 4.53-7.554l-1.24.213-.78 1.347z" fill="#452c25"/>
<path d="M562.943 229.062s-12.246 20.868-9.035 21.113c3.211.246 16.305-26.609 16.305-26.609l-4.464.748-2.806 4.748z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M311.591 211.477s-3.556 5.828-2.667 5.922c.89.094 4.727-7.427 4.727-7.427l-1.245.179-.815 1.326z" fill="#452c25"/>
<path d="M566.642 223.246s-12.8 20.532-9.598 20.863c3.203.332 17.012-26.163 17.012-26.163l-4.482.629-2.932 4.671z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M312.31 210.463s-4.05 5.482-3.17 5.656c.877.175 5.353-6.968 5.353-6.968l-1.256.065-.926 1.247z" fill="#452c25"/>
<path d="M569.231 219.674s-14.575 19.312-11.414 19.928c3.16.615 19.27-24.548 19.27-24.548l-4.521.228-3.335 4.392z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M313.393 209.5s-4.741 4.868-3.895 5.163c.847.295 6.232-6.16 6.232-6.16l-1.253-.11-1.084 1.106z" fill="#452c25"/>
<path d="M573.128 216.281s-17.065 17.151-14.019 18.19c3.047 1.039 22.43-21.698 22.43-21.698l-4.51-.39-3.901 3.898z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M313.563 207.729s-4.138 5.413-3.263 5.602c.875.19 5.466-6.876 5.466-6.876l-1.256.043-.947 1.23z" fill="#452c25"/>
<path d="M573.737 210.044s-14.893 19.069-11.743 19.736c3.15.667 19.674-24.225 19.674-24.225l-4.523.153-3.408 4.336z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M312.507 212.38s-4.05 5.483-3.171 5.657c.878.175 5.354-6.968 5.354-6.968l-1.256.065-.927 1.247z" fill="#452c25"/>
<path d="M569.939 226.431s-14.575 19.312-11.414 19.928c3.16.615 19.27-24.548 19.27-24.548l-4.521.228-3.335 4.392z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M314.786 211.297s-2.37 4.463-2.1 4.647c.271.185 3.15-2.545 4.573-5.2 1.422-2.656-2.575.442-2.575.442" fill="#452c25"/>
<path d="M578.14 222.614s-8.532 15.721-7.558 16.371c.976.65 11.337-8.965 16.457-18.32 5.12-9.355-9.265 1.559-9.265 1.559" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M315.04 210.854s-2.341 5.437-1.532 5.976c0 0 2.936-3.28 3.703-5.886.766-2.606 0-.18 0-.18l-.213-2.83-1.916 2.695" fill="#452c25"/>
<path d="M579.054 221.054s-8.426 19.153-5.515 21.053c0 0 10.569-11.555 13.329-20.736 2.757-9.181 0-.633 0-.633l-.767-9.973-6.894 9.497" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".585"/>
<path d="M313.824 210.38s-4.742 4.868-3.895 5.163c.846.295 6.232-6.16 6.232-6.16l-1.253-.11-1.084 1.106z" fill="#452c25"/>
<path d="M574.678 219.38s-17.066 17.151-14.02 18.19c3.046 1.039 22.431-21.698 22.431-21.698l-4.511-.39-3.9 3.898z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M314.2 211.039s-4.741 4.868-3.895 5.163c.847.295 6.233-6.159 6.233-6.159l-1.253-.11-1.084 1.106z" fill="#452c25"/>
<path d="M576.034 221.704s-17.066 17.151-14.02 18.19c3.048 1.039 22.431-21.698 22.431-21.698l-4.51-.39-3.901 3.898z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M314.577 211.808s-4.741 4.869-3.895 5.164c.846.295 6.232-6.16 6.232-6.16l-1.253-.11-1.084 1.106z" fill="#452c25"/>
<path d="M577.389 224.415s-17.065 17.151-14.019 18.19c3.046 1.039 22.43-21.698 22.43-21.698l-4.51-.39-3.901 3.898z" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M314.932 205.124s-3.523 4.5-3.015 5.275c.508.774 3.726-2.066 4.742-4.057 1.016-1.992-1.694-1.365-1.694-1.365" fill="#452c25"/>
<path d="M578.665 200.869s-12.678 15.851-10.851 18.58c1.829 2.729 13.41-7.277 17.067-14.292 3.657-7.016-6.095-4.807-6.095-4.807" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M314.818 209.904s-3.019 5.779-2.24 5.447c.78-.332 3.84-4.678 4.179-5.637.339-.959.225-1.96.225-1.96l-2.338 1.437.2 1.12" fill="#452c25"/>
<path d="M578.257 217.706s-10.867 20.358-8.063 19.189c2.804-1.17 13.82-16.48 15.039-19.858 1.22-3.378.809-6.908.809-6.908l-8.412 5.067.722 3.944" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M314.84 208.003s2.505-4.606-.018.868c-2.523 5.474-3.467 4.57-3.467 4.57-.194-.312 2.194-4.02 2.194-4.02s1.774-2.854 2.199-3.126" fill="#452c25"/>
<path d="M578.333 211.01s9.018-16.228-.063 3.056c-9.08 19.284-12.477 16.1-12.477 16.1-.7-1.097 7.896-14.163 7.896-14.163s6.383-10.054 7.913-11.009" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".404"/>
<path d="M317.526 207.391s2.787-4.574-.006.87c-2.794 5.442-3.884 4.522-3.884 4.522-.226-.315 2.44-3.992 2.44-3.992s1.98-2.83 2.46-3.096" fill="#452c25"/>
<path d="M588.003 208.855s10.029-16.116-.024 3.06c-10.054 19.176-13.976 15.935-13.976 15.935-.815-1.111 8.783-14.066 8.783-14.066s7.122-9.971 8.851-10.905" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".431"/>
<path d="M584.324 202.053s-12.678 15.851-10.851 18.58c1.829 2.729 13.41-7.277 17.067-14.292 3.657-7.016-6.095-4.807-6.095-4.807" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="#452c25" stroke="#000" stroke-width=".473"/>
<g>
<path d="M352.82 251.078a32.82 36.923 0 1 1-65.64 0 32.82 36.923 0 1 1 65.64 0z" fill="#e8a30e"/>
<path d="M293.7 251.078c0-17.153 12.069-30.318 26.3-30.318s26.3 13.165 26.3 30.318" style="line-height:normal;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration-line:none;text-transform:none;block-progression:tb;marker:none" color="#000" font-weight="400" font-family="Sans" overflow="visible" fill="none" stroke="#390" stroke-width=".8205"/>
<path d="M287.224 253.014C288.119 272.506 302.452 288 320 288s31.88-15.495 32.774-34.987h-65.551z" fill="#007934" stroke="#eee" stroke-width=".08205"/>
<path d="M-237.597 1162.174a577.607 643.151 0 1 1-1155.215 0 577.607 643.151 0 1 1 1155.215 0z" transform="matrix(.05682 0 0 .05741 366.321 184.357)" fill="none" stroke="#000" stroke-width="6.465"/>
<g stroke="#000" stroke-width="1.112">
<path d="M200.51 493.622c-4.872 19.055.499 34.742 9.811 49.522 7.2 11.43 11.932 23.61 11.707 36.697a106.659 106.659 0 0 0-9.414 5.98l-75.258-49.986 50.524 74.427a109.144 109.144 0 0 0-2.643 3.845c-14.33-6.455-27.783-7.735-40.602-5.256-18.121 3.506-33.506-.29-49.571-9.864 10.029 16.919 24.991 24.21 42.027 28.076 13.2 2.996 25.132 8.254 34.238 17.703-.991 3.56-1.81 7.162-2.432 10.818l-88.583 17.963 88.384 16.902c.243 1.52.535 3.037.846 4.555-14.702 5.562-25.155 14.148-32.467 24.968-10.335 15.293-23.825 23.491-41.955 28.08 19.055 4.873 34.715-.56 49.496-9.873 11.43-7.201 23.61-11.932 36.697-11.707 1.847 3.275 3.838 6.399 5.98 9.414l-49.96 75.321 74.464-50.614c1.244.9 2.503 1.825 3.782 2.67-6.456 14.33-7.71 27.846-5.23 40.665 3.505 18.122-.316 33.443-9.89 49.508 16.919-10.029 24.21-24.991 28.076-42.028 2.996-13.2 8.254-25.131 17.703-34.237 3.567.994 7.154 1.808 10.817 2.431l17.963 88.584 16.903-88.384c1.52-.243 3.036-.536 4.554-.846 5.56 14.706 14.151 25.156 24.969 32.467 15.292 10.335 23.491 23.825 28.08 41.955 4.873-19.055-.561-34.715-9.874-49.496-7.215-11.452-11.893-23.595-11.643-36.723a106.654 106.654 0 0 0 9.35-5.955l75.322 49.961-50.55-74.49a109.142 109.142 0 0 0 2.606-3.756c14.334 6.474 27.84 7.71 40.665 5.23 18.121-3.506 33.443.316 49.508 9.89-10.03-16.919-24.965-24.146-42.002-28.013-13.185-2.992-25.103-8.351-34.2-17.792.989-3.554 1.747-7.142 2.368-10.791l88.61-17.9-88.41-16.966c-.243-1.52-.536-3.037-.846-4.555 14.715-5.557 25.153-14.146 32.467-24.968 10.335-15.292 23.85-23.428 41.981-28.017-19.055-4.872-34.742.498-49.523 9.81-11.451 7.215-23.595 11.894-36.723 11.644a106.67 106.67 0 0 0-5.954-9.35l49.987-75.258-74.517 50.487a109.173 109.173 0 0 0-3.755-2.607c6.465-14.326 7.735-27.783 5.256-40.602-3.506-18.12.29-33.506 9.864-49.57-16.92 10.028-24.146 24.964-28.013 42-3 13.215-8.349 25.186-17.83 34.29-3.543-.984-7.116-1.838-10.754-2.457l-17.9-88.61-16.965 88.41c-1.52.243-3.037.536-4.555.846-5.562-14.706-14.147-25.153-24.968-32.467-15.293-10.335-23.428-23.851-28.018-41.981z" style="marker:none" overflow="visible" fill="#d52b1e" stroke-width="1.669" transform="matrix(.07375 0 0 .07375 299.718 188.957)"/>
<g transform="matrix(.14262 0 0 .14262 328.862 239.516)" stroke="none">
<use transform="rotate(22.5 138.154 65.845)" width="330" height="330" fill="#fcbf49"/>
<use transform="matrix(-1 0 0 1 35.714 -47.857)" width="330" height="330" fill="#fcbf49"/>
<g fill="#000">
<g transform="translate(-30.71 2.139)">
<path d="M9.571-21.857c-11.5-10-26-11.5-34-4-5.806 7.763-5.289 16.904 1.5 26.5-.5 0-1.5.5-2 1-5.042-9.603-5.91-19.491-2.5-28.5 11-9 26-10 37 5"/>
<path d="M-8.429-24.857c-6.5 0-8 1.5-11 4s-4.5 2-5 2.5 0 2 1 1.5 3-1.5 6-4 6-2.5 9-2.5c9 0 14 7.5 15 7s-5-8.5-15-8.5"/>
<path d="M3.071-16.357c-6.5-7-18.5-7.5-23.5.5h2c5-8 17-4.5 18-1v1"/>
<circle cx="22" cy="-9" r="4.5" transform="translate(-31.429 -7.857)"/>
<path d="M-20.429-15.857c5 4.5 16 5 23.5-.5l-3.5-.5c-5 5.5-13 5-18 1v-1"/>
<path d="M3.571-13.857c-8.5 6.5-17 6-22 3s-5-4-4-4 2 1 6 3 10 2 20-2M-20.929 1.143a3 3 0 1 1-4 3c-.5 1-2.5 4-6.5 4h-1l1 1.5c1 0 4 0 6-1.5a4.5 4.5 0 1 0 4.5-7M-14.929 22.143c-4.5-3-6.5-7.5-11.5-7.5-1 0-3 .5-5 1.5h-1l1 1.5c2 0 5-2.5 8.5-.5s5.5 4 8 5M-16.429 22.143c-10-3-12-1-15-1h-1l1 2c4 0 6-3 15-1"/>
<path d="M-14.929 22.143c-11-1-7.5 5.5-16.5 5.5h-1l1 1.5c11 0 6-6 16.5-7"/>
</g>
<g transform="matrix(-1 0 0 1 -93.571 2.139)">
<path d="M9.571-21.857c-11.5-10-26-11.5-34-4-5.806 7.763-5.289 16.904 1.5 26.5-.5 0-1.5.5-2 1-5.042-9.603-5.91-19.491-2.5-28.5 11-9 26-10 37 5"/>
<path d="M-8.429-24.857c-6.5 0-8 1.5-11 4s-4.5 2-5 2.5 0 2 1 1.5 3-1.5 6-4 6-2.5 9-2.5c9 0 14 7.5 15 7s-5-8.5-15-8.5"/>
<path d="M3.071-16.357c-6.5-7-18.5-7.5-23.5.5h2c5-8 17-4.5 18-1v1"/>
<circle cx="22" cy="-9" r="4.5" transform="translate(-31.429 -7.857)"/>
<path d="M-20.429-15.857c5 4.5 16 5 23.5-.5l-3.5-.5c-5 5.5-13 5-18 1v-1"/>
<path d="M3.571-13.857c-8.5 6.5-17 6-22 3s-5-4-4-4 2 1 6 3 10 2 20-2M-20.929 1.143a3 3 0 1 1-4 3c-.5 1-2.5 4-6.5 4h-1l1 1.5c1 0 4 0 6-1.5a4.5 4.5 0 1 0 4.5-7M-14.929 22.143c-4.5-3-6.5-7.5-11.5-7.5-1 0-3 .5-5 1.5h-1l1 1.5c2 0 5-2.5 8.5-.5s5.5 4 8 5M-16.429 22.143c-10-3-12-1-15-1h-1l1 2c4 0 6-3 15-1"/>
<path d="M-14.929 22.143c-11-1-7.5 5.5-16.5 5.5h-1l1 1.5c11 0 6-6 16.5-7"/>
</g>
</g>
</g>
</g>
<g fill="#007934" stroke="#000" stroke-width="1.02">
<path d="M975.077 1010.892c13.593 1.219 27.742.363 39.851-3.698 11.06-4.1 23.17-6.992 35.28-6.188 0-1.622 3.52-2.88 1.482-4.1-4.51-2.478-10.07-2.023-15.63-4.515-9.084-3.697-14.582-10.326-23.664-14.893-.989-.35-5.005-2.439-5.005-4.514 19.663 25.345 63.528 10.669 101.39 6.59 3.521.817 12.603-2.024 20.14-4.515 9.084-3.282 31.26-1.64 36.821-5.388.927-.35-9.573-6.158-11.611-7.832-5.5-6.183-19.153-4.915-26.197-11.555-11.06-11.148-27.68-14.037-41.396-23.158-3.027-1.622-9.084-.888-13.593-1.75-5.662-4.29-.283-4.317-43.504-36.27-38.614-13.844-36.762-25.355-60.712-33.358-8.525-3.698-16.439-10.55-23.482-8.46-12.603 3.697-39.704 18.12-51.814 25.575-10.07 6.183-22.588 17.116-31.175 24.16-2.256 1.85-28.31 24.556-58.132 41.562-29.82 17.006-73.024 40.383-76.793 40.788 68.439-5.49-60.65 20.646 247.744 31.519z" stroke-linecap="round" transform="matrix(.11822 .00395 -.0041 .12303 212.096 130.2)"/>
<path d="M804.225 940.415c17.044-9.615 82.265-46.694 102.021-71.935-2.804.272 5.85 7.467 5.271 10.528 6.428-.43 2.89-7.037 8.232-7.466 4.118 0 7.077-1.719 10.616-3.062 4.117-.86 1.734 1.718 1.734 3.062-5.273 10.099-17.044 16.223-26.504 24.119 1.156.86 2.311 1.719 1.734 3.06 3.465.378 7.582.378 9.965-1.718.579-.43.579-1.773.579-2.632 3.538 1.29 2.311 3.922 1.156 5.694-2.312 5.265-12.35 4.78-15.312 9.615-3.467 5.211-7.005 9.616-12.348 13.591 4.115-3.491 8.81-7.896 14.154-8.326 8.233-.86 11.194-6.124 18.272-7.843 7.653-1.719 12.348-7.896 18.271-12.731-2.31 3.492-7.079 6.554-5.273 10.53.579.429 2.48 1.68 4.863.766-5.273 7.037-16.057 12.34-19.596 20.667-3.538-1.29-5.849 1.288-8.232 1.719-3.466 1.288-2.311 6.552-4.694 8.325-9.967 5.694-14.733 14.934-18.848 22.777-.58.86-8.233 5.26-11.195 6.126-5.272 2.2-37.907 28.147-38.483 24.654-3.467-16.648-36.27 14.656-112.745-8.996M985.95 971.962c-.578-.648-1.733-.966-1.733-1.285 1.155-2.61-4.117-2.938-4.117-5.583 8.81 0 15.888 9.467 21.23 3.57 1.158-1.326-2.31-3.25 2.89-4.894 1.156-.282-1.155-1.285-.578-1.967-2.888 0-5.271.32-7.077-.282-2.311-.642-3.539-1.284-6.427-1.966-2.89-.642-4.117-3.572 0-4.575 7.654-1.325 15.889 3.572 21.81.642 4.694-2.288 9.388-2.93 14.082-4.575 2.312-.643 10.04-.281 7.654 1.926-1.732 1.324-5.85.964-8.232 1.606-4.116 1.284-7.654 3.25-11.772 4.896 2.89-.32 2.312 2.93 5.85 1.966 5.273-1.605 10.616-3.571 16.465-4.254-.577-1.284 1.158-2.288 1.158-3.612h1.732c-2.89-3.893 5.272-2.247 8.233-5.54 0 .643.506.643 1.155.965-4.116 1.604-2.311 4.213-3.466 6.22-.578.643-2.311.964-1.733 1.967 2.311 1.606 2.311-1.284 4.116-.642 1.733.321 4.117.963 5.272.642 2.888 0 5.85-1.284 4.044-3.612-2.312-1.926-4.695-3.573-4.695-6.181 0-.321-.576-.642-1.732-.963 4.694 0 8.233 1.324 9.965 3.251 2.311 1.967 2.89 4.897 6.5 5.579 7.005.963 6.426-2.288 6.426-5.579 5.273.32 12.93 2.287 11.773 4.897-.506 1.926-4.693 3.571-8.81 3.933-2.888.28-1.156 2.287-2.888 2.609-3.467 0-7.656.642-8.812 1.966-1.155 1.967.577 5.864 2.888 7.18 3.467 1.612 10.545-.638 15.888 0 .507-2.929 4.118-3.885 7.077-5.895 3.467-1.927-1.732-3.573-4.693-4.897-2.311-.643-.577-1.285.578-2.93 1.733-1.926 7.077-.321 7.654-1.926 1.156-1.966-1.155-4.897 1.156-6.222 1.734-1.284 4.117.963 3.466 2.61 2.31-.281 2.89-1.607 5.272-1.927 2.888-.32 4.695 1.926 3.467 2.609-3.467 2.288-6.428 3.893-5.272 7.184 0 1.645-4.116 2.288-2.311 3.612 3.466 2.287 3.466 4.576 4.694 7.186 1.155 2.928 7.655 3.575 13.505 2.29-2.311-5.548 11.194-3.256 17.116-4.9.505 0 .505-.966 0-1.284-2.89-1.605-3.467-2.249-2.89-4.576 0-.281-1.083-.964-1.732-1.284 8.811 2.608 24.405 6.071 30.905 10.97-8.233 1.603-23.828-1.494-32.06.469-9.968 2.61-20.004 5.856-30.694 5.856-4.694 0-9.388-1.921-14.082-1.921m-94.966-2.61c1.156.278-2.887-.319-3.466-.647" transform="matrix(.11822 .00395 -.0041 .12303 212.096 130.2)"/>
<path d="M957.988 1017.332c16.347-1.417 19.336 10.721 29.697-.303 9.869 1.416 18.847-2.031 18.935-3.392 23.022 3.865 93.807-4.732 88.948-9.403-7.598-7.808-19.604-10.455-29.227-17.056-2.14-1.2-6.543-1.741-9.798-2.51-5.433-1.405-12.543.02-17.203-2.137-7.5-3.734-15.442-6.93-22.149-11.714-4.216-2.697-5.782-7.163-10.413-10.451-4.949-3.276-11.939-3.71-16.974-5.658-7.571-2.638-11.927-9.445-19.04-14.254-2.467-1.758-6.56-1.475-9.403-3.018-6.065-2.81-10.863-9.118-16.093-8.069-9.356 1.851-14.648 9.418-23.804 13.754-7.613 3.595-10.969 9.922-17.537 14.149-1.725 1.11-21.709 14.806-44.199 24.597-22.49 9.791-52.018 21.717-54.786 21.812 0 0 20.639 13.598 67.46 10.183l28.978 7.958 15.934-3.224s39.907-1.312 40.674-1.264z" transform="matrix(.11822 .00395 -.0041 .12303 212.096 130.2)"/>
<path d="M860.345 985.454c10.364-5.193 50.022-25.216 61.996-38.77-1.71.154 3.586 3.972 3.241 5.61 3.918-.249 1.743-3.77 4.999-4.016 2.51-.013 4.309-.94 6.463-1.67 2.507-.473 1.061.913 1.065 1.631-3.187 5.415-10.345 8.725-16.09 12.976.706.456 1.413.911 1.064 1.63 2.114.191 4.623.178 6.07-.95.352-.23.348-.949.346-1.408 2.16.678 1.42 2.089.72 3.04-1.394 2.821-7.515 2.594-9.308 5.188-2.099 2.795-4.244 5.16-7.49 7.303 2.5-1.88 5.349-4.248 8.606-4.495 5.016-.485 6.807-3.309 11.117-4.25 4.66-.942 7.505-4.259 11.103-6.862-1.4 1.874-4.297 3.526-3.186 5.645.354.228 1.77 1.398 3.22.902-3.196 3.778-10.008 6.14-12.142 10.6-2.16-.678-3.562.708-5.014.945-2.11.7-1.39 3.51-2.838 4.465-6.06 3.075-8.94 8.03-11.428 12.234-.35.461-5.004 2.837-6.807 3.31-3.209 1.192-23.031 15.163-23.393 13.298-2.158-8.887-21.4 4.952-68.084-7.452" transform="matrix(.11822 .00395 -.0041 .12303 212.096 130.2)"/>
</g>
<path d="M320 214.155c-18.126 0-32.82 16.53-32.82 36.923C287.18 271.47 301.873 288 320 288c18.126 0 32.82-16.531 32.82-36.923 0-20.392-14.694-36.923-32.82-36.923zm0 8.246c13.214 0 24.659 12.288 24.659 28.677S333.214 279.752 320 279.752c-13.214 0-24.659-12.285-24.659-28.674 0-16.39 11.445-28.677 24.659-28.677z" style="line-height:normal;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration-line:none;text-transform:none;block-progression:tb;marker:none" color="#000" font-weight="400" font-family="Sans" overflow="visible" fill="#00a6de" stroke="#000" stroke-width=".12307499999999999"/>
<g fill="#e8a30e" fill-rule="nonzero" stroke="#000" stroke-width="1.274">
<path d="M133.866 24.413c.106 6.945-1.984 7.193-12.543 8.965-10.347 1.736-12.33 1.772-12.473-4.819-.106-6.945 2.197-7.228 12.544-8.965 9.78-1.63 12.33-2.48 12.472 4.82z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M136.098 24.024c.142 4.358-6.626 5.42-14.74 6.767-8.15 1.347-14.563 2.268-14.704-1.842-.178-4.358 6.59-5.421 14.74-6.768 8.114-1.346 14.527-2.693 14.704 1.843zM56.906 333.886c22.251-73.417 28.098-128.87-3.756-207.567 52.866-62.22 91.665-40.642 126.708 3.543-33.342 77.705-24.626 133.087-5.563 204.555-41.456 27.036-77.563 26.256-117.39-.531z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M115.335 87.626c-1.099.035-2.197.07-3.296.177 3.685 89.256.567 177.803-.07 266.421 1.452.071 2.94.107 4.393.107-.248-89.185 3.933-175.536-.815-266.705h-.212z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M125.362 88.547c-9.354 81.248-12.827 163.347-10.559 265.784 1.276 0 2.587 0 3.862-.036-.531-101.09 2.339-183.26 10.347-264.862-1.205-.319-2.445-.638-3.65-.886zM143.291 3.579c-9.39 12.756-14.563 12.65-9.85 32.421 10.382-8.717 10.098-15.945 9.85-32.421z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M122.457 12.118c6.13 7.973 15.094 12.118 9.39 33.626-11.197-11.94-9.745-13.146-9.39-33.626z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M120.543 34.087c8.114 7.263 15.555 8.787 9.992 27.531-7.122-10.488-10.204-9.602-9.992-27.531z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M118.311 45.78c6.165 7.83 15.13 11.905 9.46 32.952-11.196-11.693-9.743-12.862-9.46-32.952z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M114.732 62.823c7.193 7.689 17.61 11.799 11.233 32.102-12.437-12.933-6.308-15.945-11.233-32.102z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M113.35 80.043c6.733 7.441 17.363 11.8 11.339 31.43-9.602-10.843-10.843-12.544-11.339-31.43zM149.492 21.543c-4.89 5.032-16.157 4.536-16.618 26.008 13.89-9.85 13.748-7.972 16.618-26.008z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M148.748 36.815c-5.209 4.642-17.256 4.075-17.646 24.2 14.811-9.07 14.67-7.298 17.646-24.2z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M146.976 50.634c-5.385 5.031-17.858 4.429-18.283 26.15 15.342-9.815 15.165-7.938 18.283-26.15z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M146.055 69.626c-5.67 2.587-18.921-2.551-19.027 24.378 11.338-3.72 10.559-11.906 19.027-24.378z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M139.748 86.031c-7.902 4.075-12.366 3.26-13.819 24.91 11.445-9.532 11.303-7.76 13.819-24.91zM148.43 98.787c-19.985 70.619-24.202 137.48-22.217 254.87 1.63-.212 3.224-.46 4.854-.744-.992-116.397 2.622-180.815 20.976-251.539a76.177 76.177 0 0 0-3.614-2.587zM181.028 20.976c-11.41 9.957-16.441 8.504-15.237 28.985 11.693-5.74 12.65-12.863 15.237-28.985z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M159.094 23.846c4.678 9.39 12.756 15.733 3.473 35.185-8.93-14.527-7.3-15.342-3.473-35.185z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M153.46 44.717c6.733 9.177 13.749 12.614 5.068 29.444-5.174-12.118-8.363-12.047-5.067-29.444z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M149.28 55.524c4.677 9.248 12.79 15.555 3.578 34.547-8.964-14.315-7.334-15.095-3.578-34.547z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M142.795 71.15c5.74 9.39 15.272 16.122 5.528 34.193-9.992-15.84-3.437-17.15-5.528-34.193z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M138.472 87.555c5.386 9 15.024 16.051 5.74 33.59-7.547-13.11-8.468-15.094-5.74-33.59zM184.04 40.11c-5.67 3.614-16.654.177-20.8 20.941 15.307-5.917 14.847-4.145 20.8-20.94z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M180.673 54.78c-5.917 3.153-17.645-.603-21.472 18.92 16.086-4.924 15.626-3.294 21.472-18.92z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M176.563 67.748c-6.165 3.472-18.283-.354-22.465 20.658 16.76-5.528 16.264-3.756 22.465-20.658z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M172.382 85.996c-6.024 1.028-18.106-7.44-22.854 18.744 11.763-.673 12.401-8.823 22.854-18.744z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M163.346 100.311c-8.433 1.878-12.685-.07-17.822 20.587 12.897-6.237 12.437-4.571 17.822-20.587zM167.173 115.157c-25.972 64.205-31.5 122.989-18.567 232.69 1.878-.71 3.792-1.524 5.705-2.375-12.862-104.74-7.795-163.381 16.051-226.878a101.355 101.355 0 0 0-3.189-3.437zM210.508 38.339c-12.402 8.007-17.256 5.775-18.213 26.22 12.225-3.827 13.96-10.7 18.213-26.22z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M188.398 37.63c3.65 10.027 11.02 17.646-.248 35.362-7.37-15.803-5.67-16.335.248-35.362z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M180.602 57.402c5.705 10.169 12.331 14.669 1.95 29.905-3.863-12.791-7.052-13.216-1.95-29.905z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M175.287 67.43c3.72 9.885 11.09 17.432-.035 34.724-7.406-15.591-5.705-16.087.035-34.725z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M167.244 81.85c4.713 10.205 13.465 18.355 1.878 34.69-8.256-17.257-1.594-17.54-1.878-34.69z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M161.22 97.37c4.394 9.78 13.252 18.284 2.162 34.122-6.095-14.138-6.803-16.264-2.162-34.122zM211.465 57.756c-5.989 2.622-16.548-2.516-22.855 17.362 15.839-3.401 15.201-1.736 22.855-17.362z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M206.61 71.717c-6.2 2.161-17.504-3.402-23.35 15.236 16.512-2.268 15.91-.709 23.35-15.236z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M201.154 83.87c-6.485 2.445-18.142-3.295-24.485 16.83 17.22-2.798 16.548-1.098 24.485-16.83z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M195.094 101.232c-6.094.071-17.22-10.24-24.696 14.882 11.763 1.24 13.252-6.732 24.696-14.882z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M184.606 113.953c-8.61.531-12.614-2.055-19.878 17.54 13.465-4.147 12.827-2.517 19.878-17.54zM101.374 89.858c-1.17.355-2.374.78-3.579 1.205 8.575 81.283 14.067 163.346 13.004 263.09 1.099.071 2.197.142 3.295.142 2.835-101.763-2.94-183.33-12.72-264.437zM83.339 1.913c9.318 13.252 14.492 13.43 9.673 32.989-10.347-9.32-10.028-16.548-9.673-32.989z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M104.138 11.587c-6.201 7.653-15.201 11.303-9.603 33.13 11.233-11.304 9.815-12.615 9.603-33.13z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M105.91 33.661c-8.186 6.804-15.627 7.937-10.17 27 7.193-10.133 10.24-9.035 10.17-27z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M108.07 45.496c-6.2 7.512-15.2 11.055-9.672 32.421 11.303-11.055 9.85-12.33 9.673-32.42z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M111.543 62.717c-7.228 7.334-17.68 10.842-11.41 31.5 12.509-12.225 6.379-15.591 11.41-31.5z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M112.819 80.043c-6.803 7.051-17.433 10.807-11.516 30.792 9.638-10.347 10.878-11.977 11.516-30.792zM77.031 19.524c4.855 5.28 16.123 5.456 16.477 26.929-13.854-10.63-13.713-8.752-16.477-26.93z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M77.67 34.83c5.173 4.926 17.255 5.032 17.503 25.158-14.775-9.85-14.598-8.114-17.504-25.157z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M79.37 48.72c5.35 5.35 17.823 5.457 18.142 27.213-15.272-10.7-15.13-8.823-18.142-27.213z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M80.185 67.783c5.67 2.906 18.921-1.488 18.886 25.441-11.339-4.358-10.488-12.507-18.886-25.44z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M86.386 84.543c7.901 4.5 12.33 3.969 13.677 25.654-11.41-10.134-11.268-8.362-13.677-25.654zM79.37 101.197c-1.17.85-2.339 1.772-3.543 2.728 18.496 70.122 25.299 134.965 23.67 248.776a90.42 90.42 0 0 0 4.286.744c2.623-115.122-4.464-182.02-24.413-252.248zM45.496 17.22c11.374 10.56 16.406 9.39 15.095 29.835C48.933 40.606 47.976 33.45 45.496 17.22z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M67.43 21.26c-4.713 9.142-12.863 15.059-3.686 35.008C72.78 42.236 71.15 41.35 67.43 21.26z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M72.921 42.449c-6.767 8.823-13.819 11.87-5.244 29.161 5.244-11.799 8.433-11.55 5.244-29.161z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M77.067 53.504c-4.748 9-12.898 14.846-3.827 34.335 9.071-13.82 7.441-14.67 3.827-34.335z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M83.41 69.484c-5.776 9.071-15.343 15.272-5.705 33.874 10.063-15.271 3.543-16.937 5.704-33.874z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M87.626 86.138c-5.386 8.716-15.095 15.2-5.917 33.236 7.618-12.65 8.539-14.563 5.917-33.236zM42.413 36.177c5.634 3.898 16.618 1.099 20.658 22.075-15.307-6.768-14.847-4.996-20.658-22.075z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M45.673 51.024c5.882 3.472 17.646.39 21.33 20.09-16.05-5.81-15.625-4.145-21.33-20.09z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M49.677 64.205c6.13 3.826 18.32.673 22.323 21.933-16.689-6.484-16.228-4.677-22.323-21.933z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M53.752 82.665c6.024 1.382 18.177-6.413 22.748 20.02-11.764-1.311-12.33-9.496-22.748-20.02z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M62.681 97.476c8.433 2.374 12.685.674 17.717 21.615-12.863-6.98-12.402-5.245-17.717-21.615zM60.91 117.673c-.957.992-1.914 2.02-2.87 3.083 23.491 65.09 27.318 120.862 19.665 224.575l1.063.744c1.24.531 2.445 1.063 3.685 1.559 8.716-105.2 4.429-162.106-21.544-229.96zM15.945 32.917c12.33 8.681 17.22 6.697 18.035 27.248C21.791 55.63 20.09 48.65 15.945 32.917z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M38.055 33.449c-3.72 9.815-11.126 17.008.036 35.362 7.44-15.378 5.74-16.016-.036-35.362z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M45.709 53.61c-5.776 9.85-12.437 14.032-2.126 29.835 3.968-12.579 7.122-12.827 2.126-29.835z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M50.953 63.957c-3.756 9.673-11.197 16.795-.177 34.724 7.547-15.165 5.846-15.768.177-34.724z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M58.925 78.839c-4.783 9.92-13.57 17.61-2.09 34.582 8.362-16.795 1.7-17.433 2.09-34.582z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M64.843 94.677c-4.43 9.532-13.359 17.54-2.374 34.016 6.2-13.819 6.909-15.874 2.374-34.016zM14.846 52.264c5.989 2.976 16.583-1.56 22.748 18.638-15.838-4.288-15.165-2.587-22.748-18.638z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M19.63 66.472c6.2 2.516 17.504-2.409 23.244 16.583C26.362 79.831 27 81.425 19.63 66.472z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M25.016 78.945c6.449 2.835 18.141-2.268 24.378 18.212-17.22-3.755-16.548-2.02-24.378-18.212z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M30.969 96.661c6.094.39 17.29-9.283 24.59 16.264-11.764.567-13.216-7.476-24.59-16.264z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M41.35 109.949c8.61 1.027 12.615-1.347 19.807 18.638-13.464-4.855-12.862-3.225-19.807-18.638zM102.295.531c8.717 13.89 13.855 14.422 8.15 33.556-9.886-9.993-9.248-17.185-8.15-33.556z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M122.634 11.657c-6.52 7.193-15.697 10.17-11.09 32.315 11.763-10.488 10.381-11.87 11.09-32.315z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M123.413 33.768c-8.468 6.236-15.98 6.838-11.374 26.22 7.618-9.602 10.63-8.291 11.374-26.22z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M125.008 45.709c-6.52 7.05-15.662 9.992-11.09 31.677 11.763-10.24 10.381-11.622 11.09-31.677z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M127.736 63.142c-7.582 6.803-18.177 9.567-12.862 30.614 13.075-11.339 7.087-15.13 12.862-30.614z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M128.232 80.504c-7.122 6.555-17.929 9.602-12.933 29.905 10.099-9.637 11.445-11.161 12.933-29.905zM95.173 17.681c4.642 5.599 15.874 6.52 15.272 27.992C97.087 34.122 97.157 36 95.173 17.681z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M95.138 32.988c4.96 5.28 17.008 6.201 16.37 26.292-14.315-10.878-14.244-9.107-16.37-26.292z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M96.2 46.949c5.103 5.705 17.576 6.661 16.902 28.382-14.775-11.729-14.74-9.815-16.901-28.382z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M96.13 66.012c5.563 3.295 18.992-.177 17.752 26.68-11.126-5.137-9.921-13.18-17.752-26.68z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M101.587 83.161c7.689 5.067 12.153 4.82 12.507 26.54-10.948-10.914-10.877-9.142-12.507-26.54zM91.098 94.004c-1.31.638-2.586 1.346-3.897 2.09 16.37 82.524 20.197 158.705 18.78 257.67.46.035.92.07 1.381.142l1.878-.426c2.374-88.299 0-174.578-18.142-259.476zM63.142 11.587C73.949 23.03 79.052 22.252 76.677 42.52c-11.338-7.335-11.87-14.528-13.535-30.933z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M84.827 17.362c-5.173 8.752-13.607 13.996-5.492 34.618 9.744-13.287 8.185-14.315 5.492-34.618z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M89.256 38.94c-7.228 8.257-14.457 10.737-6.768 28.63 5.847-11.373 9-10.842 6.768-28.63z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M92.8 50.28c-5.21 8.574-13.643 13.748-5.6 33.909 9.78-13.04 8.186-14.032 5.6-33.91z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M98.327 66.72c-6.272 8.575-16.122 13.997-7.477 33.308 10.878-14.422 4.43-16.654 7.477-33.308z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M101.693 83.622c-5.882 8.256-15.91 13.96-7.654 32.67 8.256-12.012 9.284-13.855 7.654-32.67zM59.067 30.26c5.421 4.323 16.547 2.41 19.488 23.634-14.917-7.973-14.563-6.13-19.488-23.634z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M61.547 45.283c5.705 3.934 17.61 1.808 20.303 21.756-15.767-7.086-15.413-5.385-20.303-21.756z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M64.913 58.748c5.918 4.323 18.213 2.126 21.154 23.634-16.37-7.795-15.98-5.953-21.154-23.634z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M67.996 77.492c5.953 1.843 18.496-4.96 21.72 21.756-11.692-2.232-11.87-10.453-21.72-21.756z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M76.146 92.976c8.326 3.012 12.65 1.666 16.582 22.926-12.472-7.973-12.118-6.237-16.582-22.926zM54.638 124.583c-.496.567-.992 1.134-1.488 1.736 19.381 47.94 24.838 87.236 21.082 127.24v.071c-.708 26.185-3.933 54.354-9.354 85.287 1.382.815 2.764 1.56 4.11 2.304l.78.283c15.271-88.547 13.819-153.957-15.13-216.921z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M71.114 107.858a153.221 153.221 0 0 0-3.65 3.296c22.182 73.133 25.229 140.563 22.04 238.89l2.94.991 1.276.32c4.217-100.064 1.489-170.009-22.606-243.497zM31.004 24.98c12.047 9.355 16.972 7.654 17.079 28.17-12.048-5.174-13.465-12.225-17.08-28.17z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M53.079 26.717c-4.04 9.602-11.729 16.405-1.205 35.326 8.008-14.952 6.307-15.661 1.205-35.326z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M60.06 47.303c-6.13 9.496-12.934 13.288-3.225 29.622 4.429-12.33 7.582-12.401 3.224-29.622z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M64.913 57.862c-4.11 9.46-11.799 16.193-1.417 34.69 8.079-14.741 6.413-15.45 1.417-34.69z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M72.354 73.17c-5.137 9.637-14.208 16.83-3.33 34.405 8.964-16.3 2.338-17.327 3.33-34.406z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M77.705 89.327c-4.784 9.248-13.96 16.76-3.579 33.803 6.697-13.465 7.476-15.484 3.579-33.803zM29.232 44.256c5.882 3.295 16.618-.673 22.075 19.842-15.661-5.173-15.094-3.401-22.075-19.842z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M33.52 58.713c6.094 2.834 17.574-1.489 22.641 17.787-16.405-4.11-15.838-2.48-22.641-17.787z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M38.445 71.433c6.342 3.189 18.248-1.276 23.74 19.524-17.079-4.713-16.476-2.941-23.74-19.524z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M43.76 89.469c6.094.708 17.61-8.363 24.023 17.539-11.799-.071-12.933-8.185-24.023-17.54z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M53.681 103.287c8.575 1.489 12.65-.673 19.134 19.666-13.287-5.599-12.72-3.933-19.134-19.666zM.496 46.7c13.146 6.662 17.717 3.934 20.693 24.202C8.646 68.35 6.272 61.689.496 46.7z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M22.43 43.689c-2.658 10.382-9.249 18.709 3.72 35.185 5.775-16.512 4.004-16.866-3.72-35.185z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M32.138 62.54c-4.713 10.7-10.843 15.909.992 29.976 2.587-13.146 5.705-13.89-.992-29.977z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M38.374 71.965c-2.693 10.24-9.283 18.496 3.472 34.547 5.847-16.3 4.11-16.618-3.472-34.547z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M47.835 85.465c-3.685 10.665-11.587 19.7 1.523 34.724 6.52-18.035-.106-17.61-1.523-34.724z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M55.346 100.311c-3.401 10.17-11.374 19.56 1.205 34.158 4.677-14.705 5.173-16.867-1.205-34.158zM1.453 66.083C7.689 68.103 17.68 61.902 25.902 81 9.78 79.264 10.63 80.858 1.452 66.083z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M7.689 79.476C14.067 81 24.732 74.268 32.386 92.232c-16.654-.567-15.874.957-24.697-12.756z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M14.28 91.028c6.696 1.771 17.751-5.174 26.043 14.208-17.433-.992-16.583.603-26.043-14.208z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M22.04 107.681c6.058-.602 16.121-11.976 26.043 12.225-11.587 2.444-13.855-5.315-26.044-12.225z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M33.697 119.232c8.61-.354 12.33-3.366 21.543 15.378-13.819-2.693-13.04-1.17-21.543-15.378zM139.606 93.543c-18.85 84.508-21.508 171.886-19.665 260.681a60.196 60.196 0 0 0 4.358-.354c-.78-99.921 2.41-175.925 19.24-258.2-1.31-.745-2.622-1.489-3.933-2.127zM167.563 14.492c-10.878 10.843-15.945 9.78-13.713 30.19 11.374-6.698 11.977-13.89 13.713-30.19z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M145.843 19.063c5.137 9.035 13.535 14.74 5.28 34.902-9.674-13.82-8.08-14.74-5.28-34.902z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M141.307 40.394c7.193 8.645 14.386 11.515 6.59 28.984-5.81-11.658-8.964-11.339-6.59-28.984z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M137.693 51.52c5.138 8.858 13.57 14.527 5.386 34.228-9.709-13.606-8.114-14.492-5.386-34.228z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M132.06 67.642c6.2 8.929 16.05 14.882 7.263 33.732C128.55 86.35 135 84.508 132.059 67.642z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M128.622 84.366c5.776 8.61 15.803 14.847 7.441 33.095-8.185-12.473-9.213-14.386-7.44-33.095zM171.531 33.378c-5.456 4.04-16.547 1.488-19.63 22.57 14.989-7.157 14.599-5.35 19.63-22.57z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M168.945 48.295c-5.705 3.614-17.61.815-20.41 20.587 15.804-6.2 15.414-4.5 20.41-20.587z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M165.543 61.583c-5.952 3.933-18.248 1.063-21.33 22.429 16.405-6.874 16.015-5.067 21.33-22.43z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M162.319 80.114c-5.953 1.524-18.46-5.988-21.827 20.551 11.693-1.594 11.906-9.78 21.827-20.55z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M154.063 95.138c-8.327 2.586-12.65.956-16.724 22.004 12.543-7.264 12.189-5.563 16.724-22.004zM159.343 107.469c-25.973 72.46-29.445 142.511-23.386 244.381a119.926 119.926 0 0 0 5.846-1.63c-6.697-103.039-3.366-168.98 20.728-239.775a122.426 122.426 0 0 0-3.188-2.976zM199.63 29.693c-12.118 8.681-17.008 6.697-17.256 27.213 12.083-4.5 13.535-11.48 17.256-27.213z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M177.52 30.189c4.004 9.85 11.657 17.043 1.027 35.398-7.901-15.414-6.236-16.052-1.027-35.398z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M170.469 50.386c6.059 9.85 12.826 13.996 3.011 29.799-4.323-12.579-7.511-12.827-3.011-29.8z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M165.508 60.697c4.04 9.673 11.693 16.795 1.205 34.724-7.973-15.2-6.272-15.767-1.205-34.724z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M157.996 75.543c5.067 9.957 14.102 17.646 3.118 34.583-8.858-16.795-2.232-17.433-3.118-34.583z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M152.54 91.417c4.712 9.532 13.854 17.54 3.366 33.98-6.591-13.818-7.37-15.873-3.367-33.98zM201.26 49.04c-5.882 2.976-16.583-1.595-22.181 18.602 15.697-4.252 15.094-2.551 22.18-18.603z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M196.902 63.283c-6.095 2.48-17.54-2.48-22.748 16.512 16.44-3.189 15.838-1.594 22.748-16.512z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M191.906 75.72c-6.378 2.8-18.213-2.267-23.847 18.178 17.114-3.72 16.476-2.02 23.847-18.178z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M186.484 93.437c-6.094.39-17.575-9.319-24.13 16.228 11.8.567 13.004-7.476 24.13-16.228z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M176.492 106.724c-8.575.993-12.685-1.381-19.24 18.603 13.287-4.855 12.72-3.225 19.24-18.603zM176.917 126.177c-30.33 65.622-27.744 135.425-15.236 215.681 1.56-.815 3.083-1.665 4.677-2.55-5.35-34.69-8.787-66.509-8.68-96.662v-.177c-1.56-35.044 4.145-70.548 22.216-112.607-.992-1.24-1.985-2.48-2.977-3.685zM229.996 53.114c-13.181 5.917-17.752 2.941-20.835 23.032 12.544-1.843 14.989-8.398 20.835-23.032z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M208.098 48.898c2.587 10.488 9.107 19.169-3.968 34.937-5.634-16.831-3.898-17.08 3.968-34.937z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M198.283 67.181c4.607 10.949 10.737 16.512-1.204 29.906-2.516-13.288-5.599-14.209 1.204-29.906z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M191.94 76.252c2.658 10.382 9.214 18.992-3.649 34.37-5.775-16.618-4.004-16.866 3.65-34.37z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M182.445 89.22c3.614 10.843 11.445 20.34-1.772 34.619-6.378-18.355.248-17.575 1.772-34.619z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M174.827 103.642c3.33 10.346 11.267 20.197-1.418 34.086-4.606-14.952-5.066-17.15 1.418-34.086zM228.933 72.46c-6.236 1.63-16.193-5.102-24.555 13.536 16.122-.85 15.307.709 24.555-13.535z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M222.626 85.465c-6.378 1.169-17.008-6.13-24.803 11.409 16.689.354 15.874 1.807 24.803-11.41z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M215.93 96.661c-6.698 1.382-17.682-6.165-26.115 12.756 17.433-.035 16.583 1.524 26.114-12.756z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M208.098 112.854c-6.059-.92-16.05-12.862-26.114 10.807 11.551 3.083 13.89-4.57 26.114-10.807z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M196.335 123.768c-8.61-.85-12.296-4.075-21.615 14.173 13.855-1.949 13.075-.46 21.615-14.173zM98.787 218.161l31.855.886c19.275.532 34.76 5.953 34.724 12.19 0 6.2-15.52 10.77-34.795 10.24l-31.854-.886c-19.276-.532-34.76-5.953-34.725-12.19.036-6.2 15.52-10.807 34.795-10.24z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
<path d="M76.713 217.524l-9.532 19.771c1.488 1.56 3.366 2.516 5.457 2.587l5.74.142 10.7-22.146-12.365-.354zm24.803.708L90.85 240.378l12.331.354 10.7-22.18-12.365-.32zm24.838.674l-10.7 22.145 12.33.355 10.701-22.146-12.33-.354zm24.803.708l-10.7 22.146 12.366.354 9.39-19.488c-1.56-1.736-3.544-2.8-5.74-2.87l-5.316-.142z" transform="matrix(.03575 0 0 .02899 319.94 266.083)"/>
</g>
<g fill="#e7e7e7" stroke="#000" stroke-width="3.085">
<path d="M-123.176 1511.601c.231-.046 2.996 43.372 6.382 64.529.414 2.59 3.55 4.092 4.255 6.618.761 2.733-.197 5.672-.237 8.51-.004.314.045.633 0 .945-.557 3.9-4 7.467-3.309 11.346.395 2.218 3.14 3.36 4.018 5.436 5.104 12.063 4.037 26.47 6.382 38.764.989 5.182-.949-.997 8.273 13.71.927 1.477 4.964 1.654 4.964 1.654l4.018.237 3.756 3.879-5.683 5.181-17.55 1.672-7.855-5.014s2.478-4.244 1.003-6.352c-1.057-1.511-4.835-.504-5.014-2.34-.327-3.362-.701-12.529-.836-12.535-.3-.014-.155-.595-.334-.836 0 0-12.781-14.673-17.215-23.232-2.293-4.427-2.145-9.913-4.68-14.206-1.623-2.75-5.226-4.1-6.518-7.02-10.75-24.288-21.523-71.13-21.56-70.866M-333.806 1500.42l45.303 11.326-18.01 62.892c-9.687 19.858-8.976 20.585-6.876 26.27 4.412 10.927 7.094 27.28 23.611 53.256 5.98 6.612 12.865 7.405 15.186 10.09.973 2.836 6.142 7.115 10.656 8.882h14.52c2.683-3.219 2.629-2.147 3.455-4.592-.809-2.968-7.805-1.947-12.33-6.022-1.93-7.709-11.724-19.563-12.558-27.673-4.453-17.719-2.745-18.236.12-36.206 1.428-9.257 11.112-29.67 14.981-40.783 7.801-11.86 16.285-32.525 16.473-47.46l-16.383-41.692-10.193-16.989M-307.151 1424.29c-75.622 20.367-49.746 84.639-28.886 85.866M-80.846 1319.762l12.895-22.825 1.448-8.413-.892-1.788-21.49 21.787-.374 1.447" transform="matrix(.03854 -.00105 .00336 .0412 316.202 206.397)"/>
<path d="M-41.126 1358.04c4.574 1.771 10.397 3.537 11.667.943 1.574-3.213 2.362-5.487-1.03-8.094-1.631-1.467 1.226-3.657-.47-7.813-12.192-8.803-21.059-9.234-23.656-16.062l-.093-4.688c-.142-5.925-18.515-8.837-22.782-11.843 0 0-7.515-3.838-11.593-4.782-1.743-.403-5.375-.343-5.375-.343-18.855-.648-29.123 17.69-33.25 28.906 0 0-8.195 51.377-19.407 74.437-1.021 2.101-2.519 3.994-4.25 5.563-1.683 1.525-3.55 3.798-5.812 3.594-51.977-4.684-87.39-7.783-108.688-7.594-21.297.19-46.89 14.984-48.531 16.625 0 0-24.886 13.887-32.125 37.406-2.417 7.854-1.156 17.225 1.344 26.594 18.063 63.042 46.705.951 55.06 1.904l10.283 1.174c12.073 1.377 31.42 36.918 64.993 44.775 101.333 23.715 134.014-26.041 141.588-138.264l1.393-1.585v-3.827l6.028-8.801.095-12.438-1.339-5.931.383-2.296 29.37-2.775 5.19-2.033" transform="matrix(.03854 -.00105 .00336 .0412 316.202 206.397)"/>
<path d="M-88.424 1324.949l14.756-26.12 1.658-9.626-1.022-2.046-24.592 24.93-.427 1.657M-345.177 1490.889c4.986 18.685 15.282 37.389 13.843 44.187-2.159 10.208-8.708 14.768-9.25 15.72-.497.872-2.898 2.128-3.687 2.75-3.416 2.688-5.997 8.222-7.781 12.187-2.2 4.889-3.573 9.281-3.407 14.125.619 17.994 8.412 55.142 8.938 55.687 0 0 5.945 3.612 7.437 7.063 1.52 3.513.627 6.838.063 10.625-.773 5.194-4.906 16.718-4.906 16.718s.042 2.254.687 2.938c1.806 1.914 8.188 5.312 8.188 5.312h14s-7.15-7.549-7.594-9.218c-.492-1.852-.688-3.273.031-5.344 1.328-3.825 5.668-8.296 7.157-10.563 1.603-2.44.656-8.937.656-8.937.064-2.364-1.876-3.5-1.938-4.5-.481-7.786-.507-13.398-.187-21.125.282-6.818 3.281-27.187 3.281-27.188 0 0 3.543-2.547 5-4.156 1.322-1.46 3.313-4.906 3.313-4.906s17.685-8.665 25.468-14.594c9.23-7.03 24.719-24.5 24.719-24.5s4.635-7.126 5.594-11.187c.325-1.378.207-2.85 0-4.25-1.123-7.602-3.522-15.092-6.688-22.094-3.075-6.8-6.77-13.497-11.812-19-.52-.567-1.844-1.375-1.844-1.375M-126.06 1534.245c-14.59 8.237-47.984 14.46-49.048 20.65 0 0-4.35 38.834-10.437 54.221-2.4 6.064-5.652 7.77-8.584 13.596-3.052 6.066-3.305 10.753-6.017 16.799-2.902 6.465-7.602 12.213-9.197 23.502l-.473 9.4 9.567 5.837-10.715 3.061-15.785-6.505-.096-14.351 4.88-14.733.382-2.392-3.253-9.089.191-32.336 4.88-24.013 4.113-88.686M-83.288 1362.833c6.113 5.096 14.467 8.511 34.706 3.013 3.568 2.358 7.336 5.279 16.683-5.364M-39.674 1347.53c.13-.13 3.596 2.47 4.956 2.503 1.06.025 2.559-1.967 1.752-2.653-.886-.753-2.568-1.619-3.454-1.102-1.286.751-3.226 1.473-3.254 1.252z" transform="matrix(.03854 -.00105 .00336 .0412 316.202 206.397)"/>
<path d="M317.778 261.411s.072.002.099.062c.09.203.31.238.483.024a.334.334 0 0 1 .083-.065c-.036-.003-.059 0-.087-.028-.194-.193-.394-.03-.46-.016-.045.01-.076.017-.118.023z" fill="#000" stroke="none"/>
</g>
<g fill-rule="evenodd" stroke="#e3e4e5" stroke-width=".423">
<g fill="#e7e7e7" stroke="#000">
<path d="M329.132 272.906l.001.005a1.912 1.912 0 0 0-.014.744c-.054.27-.058.532-.014.75a1.945 1.945 0 0 0-.012.715 2.006 2.006 0 0 0-.01.676c.246.19.945.212 1.258.04a2.207 2.207 0 0 0-.002-.71c.046-.236.04-.474-.003-.714.047-.218.047-.48-.004-.75.043-.206.05-.446-.005-.745a2.245 2.245 0 0 0-.005-.775 2.09 2.09 0 0 0-.006-.746 2.216 2.216 0 0 0-.006-.775v-.007c.036-.23.038-.489-.005-.782a2.379 2.379 0 0 0-.006-.791c.038-.241.04-.497-.005-.783.044-.229.043-.482-.006-.782.065-.243.039-.549-.008-.79v-.003a2.47 2.47 0 0 0-.004-.78c.042-.26.042-.52-.005-.782a3.244 3.244 0 0 0-.006-.791c.033-.258.028-.51-.009-.781a2.92 2.92 0 0 0-.009-.781 2.57 2.57 0 0 0 0-.794 2.68 2.68 0 0 0-.008-.783c.035-.242.037-.5-.01-.78.042-.281.034-.534-.009-.767.034-.26.032-.45.002-.708.006-.08 0-.229-.009-.308l-.789-.012c-.033.055-.043.164-.021.311-.04.113-.038.6.008.713a2.307 2.307 0 0 0-.018.766c-.05.28-.052.538-.02.781a2.676 2.676 0 0 0-.02.783 2.57 2.57 0 0 0-.01.793 2.916 2.916 0 0 0-.018.781c-.04.271-.049.523-.019.781-.037.27-.043.532-.016.791-.05.261-.053.521-.015.782-.045.24-.05.496-.014.78-.05.24-.08.548-.018.793-.053.3-.058.552-.016.782-.05.284-.05.54-.015.782a2.382 2.382 0 0 0-.017.791 2.63 2.63 0 0 0-.014.789 2.215 2.215 0 0 0-.017.775 2.09 2.09 0 0 0-.015.746c-.053.29-.054.541-.016.77z" stroke-width=".12297878999999999"/>
<path d="M329.124 273.647c.29.135 1.034.111 1.208.022M329.118 272.9c.277.118.94.112 1.21.022M329.154 272.118c.27.134.908.1 1.168.022M329.17 271.376c.297.135.945.098 1.146.02M329.184 270.61c.32.092.88.088 1.126.004M329.2 269.828c.329.079.842.082 1.105.004M329.215 269.035c.3.077.88.082 1.084.006M329.23 268.258c.26.084.81.076 1.063 0M329.252 267.473c.333.081.794.088 1.036.004M329.267 266.68c.34.08.82.07 1.015.005M329.28 265.9c.334.075.86.047.996.003M329.298 265.137c.313.057.839.027.973-.016M329.314 264.328c.308.083.818.045.95.002M329.335 263.565c.292.075.753.044.924-.017M329.359 262.767c.287.063.768.04.894-.001M329.37 261.981c.287.06.753.034.877-.006M329.398 261.2c.312.04.71.035.829-.003M329.416 260.402c.26.055.69.05.805.013M329.433 259.637c.283.045.673.042.785.006M329.402 258.927c.212.022.732.037.82.009M329.11 274.389c.295.135 1.049.111 1.226.022M329.096 275.1c.3.135 1.063.112 1.243.022" stroke-linejoin="round" stroke-width=".12297878999999999"/>
</g>
<g stroke="#e7e7e7">
<path d="M331.51 257.072c.477-.105 1.164-.119 2.11-.144a13.7 13.7 0 0 0-.86-.256c.553-.076 1.871-.059 2.209-.062a4.93 4.93 0 0 0-.948-.395c.725-.12 1.59-.005 2.2.093-.284-.16-.606-.366-1.014-.477.87-.06 1.216.01 2.023.12a2.617 2.617 0 0 0-.882-.485c.967-.177 1.51-.214 2.457-.138-2.738-1.253-6.06-.601-8.06.777.201-.314.633-.791 1.055-1.151a2.524 2.524 0 0 0-.692.038c.293-.32.844-.75 1.217-.898-.273-.015-.503-.02-.748.028.367-.34.92-.7 1.391-.94a3.11 3.11 0 0 0-.84.019c.37-.437 1.018-.883 1.59-1.155a3.948 3.948 0 0 0-.935.072c.476-.435 1.114-.89 1.951-1.313-3.32.372-5.154 2.766-5.31 4.794-.885-1.909-3.296-3.733-6.614-3.594.99.302 1.778.67 2.39 1.042a4.344 4.344 0 0 0-1.006.076c.674.19 1.47.546 1.972.937a3.37 3.37 0 0 0-.892.116c.556.172 1.231.454 1.704.747-.27-.01-.512.033-.796.092.432.093 1.121.447 1.512.732a2.74 2.74 0 0 0-.74.072c.998.39 1.062.565 1.282.697-2.071-.443-5.065.241-7.367 2.915.334-.281 1.76-.812 2.212-.934-.236.282-.317.43-.504.785.518-.418 1.299-.763 2.045-1.06a4.806 4.806 0 0 0-.406.744c.542-.336.708-.384 1.82-.913-.081.136-.302.43-.408.71.34-.193 1.146-.487 1.693-.684.038-.014-.329.3-.495.676.125-.047.884-.321.913-.329-1.752 1.223-3.058 3.275-2.793 5.77.1-.39.564-1.51.826-1.958-.029.297.038.79.093 1.01.258-.745.541-1.34.964-1.985-.035.399-.025.838.03 1.019.235-.551.422-1.025 1-2.045-.037.152-.045.582-.01.963.192-.42.637-1.248 1.072-1.86-.022.225-.062.606-.045.765.046-.081.183-.307.343-.56.249-.392.552-.85.65-.923.077.077.15.171.217.28.272.436.467 1.105.528 1.797.146-.34.208-.686.227-.87.31.696.66 1.783.686 2.382.104-.318.158-.516.196-1.013.324.52.606 1.8.632 2.355.126-.217.23-.49.306-.895.317.716.442 1.606.519 2.22.813-2.96-.354-4.873-1.777-6.333.358.194.81.593 1.253 1.073a4.879 4.879 0 0 0-.264-.874c.526.374 1.301 1.144 1.517 1.367-.037-.293-.079-.448-.233-.821.62.43 1.175 1.167 1.489 1.573a5.422 5.422 0 0 0-.205-.943c.567.424 1.13 1.274 1.388 1.753-.007-.327-.099-.674-.176-1.031.771.652 1.056 1.341 1.3 1.758.006-2.673-3.087-5.077-5.962-5.328z" fill="#007934" stroke-width=".12297878999999999"/>
<path d="M330.32 257.1c3.133-.448 7.159 2.251 7.152 5.3-.244-.417-.53-1.106-1.3-1.758.077.357.169.704.175 1.031-.256-.48-.82-1.33-1.387-1.753.13.404.18.755.205.943-.314-.406-.869-1.143-1.49-1.573.155.373.197.528.234.821-.216-.223-.991-.993-1.517-1.367.1.224.223.65.264.874-.443-.48-.896-.879-1.254-1.073M329.617 257.062c-1.876-1.209-5.857-.989-8.748 2.37.334-.282 1.76-.813 2.212-.935-.236.282-.317.43-.504.785.518-.418 1.299-.763 2.044-1.06a4.781 4.781 0 0 0-.405.744c.542-.336.708-.384 1.82-.913-.081.136-.303.43-.408.71.339-.193 1.146-.487 1.693-.684.038-.014-.33.3-.495.676.125-.047.884-.321.912-.33" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width=".12297878999999999"/>
<path d="M329.743 256.585c-.399-2.205-3.041-4.744-6.933-4.58.99.302 1.778.67 2.39 1.042a4.339 4.339 0 0 0-1.006.076c.674.189 1.47.546 1.972.937a3.372 3.372 0 0 0-.892.116c.556.171 1.23.454 1.704.747-.27-.01-.512.033-.796.092.432.093 1.121.447 1.512.732-.305-.008-.52.02-.741.072.998.389 1.063.565 1.283.697M329.715 257.456c-2.607.796-5.127 3.362-4.77 6.74.102-.39.565-1.51.827-1.958-.029.297.038.79.093 1.01.258-.745.541-1.34.964-1.985-.035.399-.025.838.03 1.02.235-.552.421-1.026 1-2.046-.037.152-.045.582-.01.963a13.31 13.31 0 0 1 1.072-1.86c-.022.225-.062.606-.046.764.119-.206.832-1.362.995-1.482M328.247 258.785a8.728 8.728 0 0 0-.388 1.452M327.294 259.437a9.718 9.718 0 0 0-.466 1.826M326.336 260.35a8.913 8.913 0 0 0-.564 1.888" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width=".12297878999999999"/>
<path class="fil1 str2" fill="none" stroke-linecap="round" stroke-linejoin="round" d="M329.87 258.622l.01-.603" stroke-width=".12297878999999999"/>
<path d="M332.57 261.249c.08.476.119.726.09 1.409M331.579 259.603c.102.532.145.883.144 1.594M330.655 258.537c.115.328.184.75.185 1.293M335.588 259.435c.348.446.517.949.584 1.207M334.178 258.455c.34.401.673 1.115.782 1.465M332.994 258.059c.293.382.493.786.681 1.23M323.081 258.497a4.665 4.665 0 0 1 1.73-1.196M324.621 258.221c.388-.49.587-.8 1.604-1.242M326.035 258.053c.32-.41.834-.873 1.614-1.15M327.32 258.079c.51-.464.978-.71 1.602-.976M325.2 253.047c.672.073 1.598.307 2.165.68M326.166 254.06c.61.01 1.445.193 1.873.426M326.978 254.923c.604.012 1.36.26 1.98.616M327.694 255.747c.809.07 1.363.365 1.724.585M330.26 256.476c1.91-1.623 5.572-2.509 8.545-1.148-.948-.077-1.49-.039-2.457.138.396.113.772.385.882.484-.807-.108-1.153-.178-2.023-.119.408.111.73.317 1.014.477-.61-.098-1.475-.212-2.2-.093.151.03.719.255.948.395-.338.003-1.656-.014-2.21.062.38.101.633.18.862.256-.948.025-1.634.04-2.111.144M336.348 255.466c-.589-.238-1.617-.346-2.145-.312M335.207 255.831c-1.04-.345-2.03-.326-2.526-.25M334.021 256.215c-.915-.258-1.99-.264-2.486-.189M332.76 256.672c-.882-.212-1.513-.182-2.01-.107M331.586 257.635c.36.306.618.664.806 1.109" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width=".12297878999999999"/>
<path d="M329.424 255.599c.156-2.028 1.99-4.422 5.31-4.794-.837.423-1.475.878-1.951 1.313.333-.066.563-.078.936-.072-.573.272-1.221.718-1.592 1.155.277-.05.562-.045.84-.02-.47.24-1.023.6-1.39.941.245-.048.475-.043.748-.028-.374.148-.924.577-1.218.898a2.52 2.52 0 0 1 .693-.038c-.422.36-.854.837-1.055 1.151M332.783 252.118c-.485.133-1.1.39-1.547.71M332.127 253.2a4.523 4.523 0 0 0-1.4.515M331.577 254.122c-.476.084-1.017.35-1.47.694M331.107 254.992a3.215 3.215 0 0 0-1.445.793M329.21 258.18a6.022 6.022 0 0 0-.29 1.159M330.09 257.33c1.85 1.615 4.149 3.695 3.09 7.549-.077-.615-.202-1.505-.52-2.221-.075.406-.18.678-.306.895-.025-.556-.307-1.836-.631-2.356a3.53 3.53 0 0 1-.196 1.015c-.025-.6-.376-1.687-.686-2.382a3.17 3.17 0 0 1-.227.869c-.076-.864-.36-1.69-.745-2.077" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width=".12297878999999999"/>
</g>
</g>
<g style="line-height:125%;-inkscape-font-specification:'Linux Biolinum Bold';text-align:center" font-weight="700" font-size="100" font-family="Linux Biolinum" letter-spacing="60" word-spacing="0" text-anchor="middle" fill="#e8a30e" stroke="#000" stroke-width="1.5">
<path d="M293.298 233.512l1.26.684.306-.563c.157-.289.204-.515.141-.68-.061-.167-.23-.325-.504-.474-.303-.165-.544-.226-.725-.184-.183.04-.333.168-.45.384-.152.28-.226.472-.222.577.004.103.07.189.194.256m1.644.893l1.62.879c.124.068.235.073.332.017.1-.06.216-.212.35-.458.127-.235.211-.432.252-.592.04-.164.035-.3-.016-.406a.714.714 0 0 0-.182-.254 1.884 1.884 0 0 0-.333-.217c-.756-.41-1.31-.29-1.66.362l-.363.669m-2.599-.773c.092-.169.208-.391.35-.667.14-.276.228-.447.264-.513a3.25 3.25 0 0 1 .553-.767c.195-.197.384-.324.567-.38a1.38 1.38 0 0 1 .495-.073c.15.008.292.049.426.122.188.102.33.275.429.52.1.242.142.49.13.744.287-.29.596-.486.924-.587.329-.101.654-.065.975.11.357.194.583.528.678 1.002.093.473-.04 1.039-.398 1.698-.122.226-.254.46-.396.706-.141.243-.256.446-.345.61l-.312.624-.025-.004c-.358-.27-.823-.56-1.396-.872l-1.764-.957c-.554-.301-1.05-.533-1.491-.696l-.014-.026c.145-.231.261-.43.35-.594M301.225 222.805c-.718.599-.593 1.478.374 2.636.488.585.974.93 1.46 1.036.483.105.922-.007 1.316-.336.356-.298.507-.657.452-1.077-.055-.42-.318-.912-.788-1.476-.543-.65-1.036-1.035-1.48-1.155-.445-.123-.89 0-1.334.372m3.729-.184c.528.633.758 1.315.689 2.044-.07.726-.439 1.368-1.107 1.926-.625.522-1.303.767-2.032.735-.729-.031-1.34-.341-1.83-.93-.522-.625-.754-1.317-.695-2.076.059-.76.405-1.403 1.039-1.932.668-.558 1.36-.814 2.077-.768.717.041 1.337.375 1.859 1M312.958 220.014c.15.538.264.872.345 1.002.317-.088.659-.199 1.026-.332.37-.133.661-.246.871-.338l.316-.134.024.027c.014.088.05.24.11.456.022.074.057.184.109.327l-.01.028c-.13.02-.29.056-.48.109l-2.405.67-.646.204-.018-.02c-.048-.371-.168-.906-.36-1.604l-.538-1.934a11.937 11.937 0 0 0-.53-1.558l.013-.028c.241-.05.45-.1.628-.15l.65-.206.014.02c.045.363.166.897.364 1.605l.517 1.856M322.203 217.151c.069-.627.096-1.174.083-1.643l.018-.022c.259.044.48.076.667.096l.68.05.005.025c-.114.423-.206.964-.278 1.622l-.217 1.995a11.879 11.879 0 0 0-.078 1.644l-.019.022c-.258-.044-.48-.076-.666-.096l-.68-.05-.006-.025c.115-.434.206-.974.274-1.623l.217-1.995M332.054 222.386c1.65-1.308 2.7-2.201 3.148-2.68.051.047.188.129.409.248.174.093.293.148.357.164-2.294 1.737-3.851 2.933-4.674 3.589l-.497-.267c.044-.456.114-1.143.21-2.061.096-.919.176-1.702.24-2.35.063-.65.1-1.113.111-1.386.075.058.315.196.72.413.284.153.47.244.558.273-.24 1.114-.435 2.466-.582 4.057M340.52 226.231c.466-.424.85-.816 1.15-1.177l.028-.004c.165.204.31.376.436.514l.476.487-.012.022c-.365.242-.792.586-1.282 1.032l-1.484 1.352c-.46.419-.843.812-1.147 1.18l-.029.004c-.164-.204-.31-.375-.435-.514l-.477-.487.013-.022c.373-.25.799-.594 1.28-1.035l1.483-1.352M345.505 236.238c.519-.533.96-1.005 1.326-1.417l-.022-.047-1.947.062c.088.215.204.476.347.784.072.155.171.36.296.618m-1.145-1.38c-.852.042-1.495.102-1.927.18a1.858 1.858 0 0 0-.134-.345 2.615 2.615 0 0 0-.216-.407c2.773-.018 4.74-.043 5.9-.075l.31.668c-2.01 2.11-3.32 3.548-3.929 4.31-.025-.09-.123-.32-.294-.689a5.363 5.363 0 0 0-.302-.593c.373-.318.84-.759 1.4-1.322a35.018 35.018 0 0 0-.334-.746c-.13-.281-.289-.608-.474-.982" style="-inkscape-font-specification:'Linux Biolinum Bold'" stroke-width=".12307499999999999"/>
</g>
<g fill="#e8a30e" stroke-width="1.792" stroke="#000" stroke-linecap="square" stroke-linejoin="round">
<path d="M324.923 280.609l-.768 2.208-2.337.048 1.863 1.412-.677 2.238 1.92-1.336 1.918 1.336-.677-2.238 1.863-1.412-2.337-.048zM334.06 276.717l-.769 2.208-2.337.048 1.863 1.412-.677 2.238 1.92-1.335 1.918 1.335-.677-2.238 1.863-1.412-2.337-.048zM348.17 251.756l-.768 2.209-2.337.047 1.863 1.413-.677 2.238 1.919-1.336 1.919 1.336-.677-2.238 1.863-1.413-2.337-.047zM341.47 269.563l.768 2.209 2.337.047-1.863 1.413.677 2.238-1.919-1.336-1.919 1.336.677-2.238-1.863-1.413 2.338-.047zM346.204 261.422l.767 2.208 2.338.048-1.863 1.413.677 2.237-1.92-1.335-1.918 1.335.677-2.237-1.863-1.413 2.337-.048zM315.077 280.609l.768 2.208 2.337.048-1.863 1.412.677 2.238-1.92-1.336-1.918 1.336.677-2.238-1.863-1.412 2.337-.048zM305.94 276.717l.769 2.208 2.337.048-1.863 1.412.677 2.238-1.92-1.335-1.918 1.335.677-2.238-1.863-1.412 2.337-.048zM291.83 251.756l.768 2.209 2.337.047-1.863 1.413.677 2.238-1.919-1.336-1.919 1.336.677-2.238-1.863-1.413 2.337-.047zM298.53 269.563l-.768 2.209-2.337.047 1.863 1.413-.677 2.238 1.919-1.336 1.919 1.336-.677-2.238 1.863-1.413-2.338-.047zM293.796 261.422l-.767 2.208-2.338.048 1.863 1.413-.677 2.237 1.92-1.335 1.918 1.335-.677-2.237 1.863-1.413-2.337-.048z" stroke-width=".12309248"/>
</g>
<g stroke="#000">
<g fill="#e7e7e7" stroke-width=".373">
<path d="M361.88 211.78l-.023-4.445h.547l-6.793-4.387-5.466-.003-6.756 4.381.54.003.023 4.442 17.926.012" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M361.88 211.78l-.023-4.445h.547l-6.793-4.387-.515-6.684h-4.43l-.52 6.68-6.757 4.382.54.003.023 4.442 17.926.012.002-.003zM363.967 217.618l.002 1.39-21.884-.024-.009-1.385 21.894.019" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M363.967 217.618l.002 1.39-21.884-.024-.009-1.385 21.894.019h-.002zM343.538 217.534l-.018-4.706.886-.002-.049 4.76.054-4.722-1.277-.037v-1.01l19.558.022.01 1h-1.207l.023 4.766-.043-4.766h.899l.02 4.713" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M343.538 217.534l-.018-4.706.886-.002-.049 4.76.054-4.722-1.277-.037v-1.01l19.558.022.01 1h-1.207l.023 4.766-.043-4.766h.899l.02 4.713" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M347.743 216.375l-.014-3.282h-2.626l.016 3.279 2.624.003" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M345.818 213.778l.008 1.906h1.202l-.006-1.906h-1.203M360.582 216.384l-.016-3.279-2.617-.003.013 3.282h2.62" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M358.657 213.79l.014 1.9h1.2l-.01-1.9h-1.204M360.562 211.04l-.015-3.282h-2.62l.008 3.282h2.628-.002z" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M358.637 208.449l.008 1.903h1.2l-.002-1.903h-1.206M347.722 211.028l-.018-3.276-2.622-.003.012 3.277h2.628v.002z" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M345.797 208.437l.006 1.9 1.203.003-.009-1.903h-1.2M352.474 211.034l-.012-3.276-2.623-.003.01 3.279h2.625" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M350.55 208.44l.007 1.9 1.202.006-.008-1.906h-1.2M356.137 211.04l-.018-3.282-2.622-.003.013 3.279 2.627.006" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M354.211 208.443l.01 1.906h1.201l-.006-1.906h-1.205" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M356.787 210.033l.03 7.566-7.6-.012-.028-7.56 7.597.006" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M356.787 210.033l.03 7.566-7.6-.012-.028-7.56 7.597.006h.002zM349.143 212.193l7.652.006M350.098 217.596l-.026-5.347M355.892 217.6l-.026-5.344M359.561 206.81l-4.28-3.124-4.808-.006-4.246 3.119 13.334.012M350.851 202.998l4.045.003M351.94 201.565l.006.95h1.858l-.006-.95h-1.858" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
<path d="M349.544 210.246h.554l-.162.297s.267.343.005.736l.145.274h-.534l.145-.26s-.273-.456.012-.75l-.164-.297M350.673 210.246h.554l-.16.297s.266.334.001.736l.144.274h-.532l.143-.26s-.267-.456.014-.75l-.164-.297M351.904 210.246h.552l-.165.297s.27.343.005.736l.145.28-.53-.007.143-.259s-.27-.453.01-.75l-.161-.298h.002zM353.293 210.248h.557l-.163.3s.266.338.002.733l.149.277h-.537l.144-.259s-.267-.459.018-.75l-.168-.3h-.002zM354.528 210.248h.553l-.164.3s.269.338.003.731l.147.28h-.533l.14-.26s-.27-.456.02-.75l-.166-.3M355.756 210.251l.552-.003-.163.3s.273.338.008.733l.139.278h-.534l.143-.26s-.266-.456.019-.75l-.163-.297" transform="matrix(.12173 0 0 .10848 277.026 225.119)"/>
</g>
<path d="M319.84 246.028h.32v.374h-.32v-.374z" fill="#e7e7e7" fill-rule="evenodd" stroke-width=".0319995"/>
<path d="M320.003 245.569l-.006.479" fill="none" stroke-width=".073845"/>
<path d="M319.825 245.748l.35.004" fill="none" stroke-width=".09329085000000001"/>
</g>
</g>
<g>
<path d="M317.139 210.304s-2.342 5.437-1.533 5.977c0 0 2.937-3.28 3.704-5.887.766-2.606 0-.18 0-.18l-.213-2.83-1.916 2.696" fill="#452c25"/>
<path d="M586.607 219.117s-8.426 19.153-5.515 21.053c0 0 10.569-11.555 13.329-20.736 2.757-9.181 0-.633 0-.633l-.767-9.973-6.894 9.497" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".585"/>
<path d="M317.633 207.706s-2.813 5.988-2.17 6.43c0 0 2.338-2.692 2.947-4.83.61-2.14 0-.148 0-.148l.782-3.85" fill="#452c25"/>
<path d="M588.388 209.963s-10.125 21.095-7.809 22.654c0 0 8.411-9.485 10.605-17.02 2.193-7.536 0-.52 0-.52l2.812-13.559" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M320.532 206.372s-2.814 5.988-2.17 6.43c0 0 2.337-2.692 2.947-4.83.61-2.14 0-.149 0-.149l.78-3.848" fill="#452c25"/>
<path d="M598.819 205.264s-10.125 21.095-7.81 22.654c0 0 8.411-9.485 10.606-17.021 2.194-7.536 0-.52 0-.52l2.811-13.559" transform="matrix(.27785 0 0 .28386 154.148 148.105)" fill="none" stroke="#000" stroke-width=".473"/>
<path d="M356.838 195.606l3.34 1.895s.814.676-.974.278c-1.789-.397-5.603-1.714-12.808-6.35-3.258-2.097-4.286-2.038-4.286-2.038l4.541.123 10.187 6.092z" fill="#452c25"/>
<path d="M356.838 195.606l3.34 1.895s.814.676-.974.278c-1.789-.397-5.603-1.714-12.808-6.35-3.258-2.097-4.286-2.038-4.286-2.038l4.541.123 10.187 6.092z" fill="none" stroke="#000" stroke-width=".11993183"/>
<path d="M357.942 194.782l3.34 1.895s.814.676-.974.278c-1.789-.398-5.603-1.714-12.808-6.35-3.258-2.097-.637 1.729-.637 1.729l.552-2.516 10.527 4.964z" fill="#452c25"/>
<path d="M357.942 194.782l3.34 1.895s.814.676-.974.278c-1.789-.398-5.603-1.714-12.808-6.35-3.258-2.097-.637 1.729-.637 1.729l.552-2.516 10.527 4.964z" fill="none" stroke="#000" stroke-width=".11993183"/>
<path d="M363.498 196.607s-3.989-.742-5.44-1.804c0 0 .254.458-1.696-.43 0 0 .752 1.71-4.739-2.03-5.491-3.741-3.571-1.861-3.571-1.861l1.536-.397s8.43 3.368 9.354 3.72c.925.353 4.556 2.802 4.556 2.802" fill="#452c25"/>
<path d="M363.498 196.607s-3.989-.742-5.44-1.804c0 0 .254.458-1.696-.43 0 0 .752 1.71-4.739-2.03-5.491-3.741-3.571-1.861-3.571-1.861l1.536-.397s8.43 3.368 9.354 3.72c.925.353 4.556 2.802 4.556 2.802z" fill="none" stroke="#000" stroke-width=".11683742000000001"/>
<path d="M342.645 198.1l1.336 1.906s-.444 1.787-5.083-1.69c-4.638-3.475-4.394-3.187-4.394-3.187l2.562-.358 5.626 3.193" fill="#452c25"/>
<path d="M342.645 198.1l1.336 1.906s-.444 1.787-5.083-1.69c-4.638-3.475-4.394-3.187-4.394-3.187l2.562-.358 5.626 3.193" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M336.62 199.056s2.154 2.819 1.675 3.17c-.48.35-3.024.199-4.84-2.56-1.817-2.758-.039-.14-.039-.14l.169-4.46 3.082 3.853" fill="#452c25"/>
<path d="M336.62 199.056s2.154 2.819 1.675 3.17c-.48.35-3.024.199-4.84-2.56-1.817-2.758-.039-.14-.039-.14l.169-4.46 3.082 3.853" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M338.832 197.759s2.074 2.676 1.848 3.083c-.226.407-3.15.149-5.48-2.492-2.33-2.64-.347-3.485-.347-3.485l3.942 2.754" fill="#452c25"/>
<path d="M338.814 197.689s2.092 2.746 1.866 3.153c-.226.407-3.15.149-5.48-2.492-2.33-2.64-.347-3.485-.347-3.485l3.96 2.824z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M350.651 196.179s5.911 2.542 1.527 2.376c0 0-8.588-2.313-13.03-6.118l1.256-1.662 10.178 5.256" fill="#452c25"/>
<path d="M350.651 196.179s5.911 2.542 1.527 2.376c0 0-8.588-2.313-13.03-6.118l1.256-1.662 10.178 5.256" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M353.753 195.445s3.2 1.941 3.438 2.68c.238.737-9.943-1.902-15.313-6.374l2.398-1.175 9.477 4.87z" fill="#452c25"/>
<path d="M353.753 195.445s3.2 1.941 3.438 2.68c.238.737-9.943-1.902-15.313-6.374l2.398-1.175 9.477 4.87z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M344.46 197.204s2.314 1.9 2.052 2.12c-.263.22-4.955-.482-8.639-3.317l.441-1.693 6.192 2.799" fill="#452c25"/>
<path d="M344.46 197.204s2.314 1.9 2.052 2.12c-.263.22-4.955-.482-8.639-3.317l.441-1.693 6.192 2.799" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M348.418 197.043s2.282 1.574 1.81 1.74c-.474.165-2.265 1.572-10.76-3.404l-1.002-.55 1.349-2.12 8.607 4.195" fill="#452c25"/>
<path d="M348.42 196.973s2.28 1.644 1.807 1.81c-.473.165-2.264 1.572-10.76-3.404l-1.001-.55 1.349-2.12 8.605 4.264z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M339.698 192.381s2.762 2.473 2.41 2.829c-.353.356-3.64-.427-5.09-1.505-1.45-1.077-2.505-2.458-2.505-2.458l3.08-.665 2.105 1.799z" fill="#452c25"/>
<path d="M339.698 192.381s2.762 2.473 2.41 2.829c-.353.356-3.64-.427-5.09-1.505-1.45-1.077-2.505-2.458-2.505-2.458l3.08-.665 2.105 1.799z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M336.406 188.251l5.031 2.999s4.106 2.898 3.673 3.158c-.434.26-3.67-.752-5.965-2.003-2.293-1.251-4.954-3.946-4.954-3.946" fill="#452c25"/>
<path d="M336.406 188.251l5.031 2.999s4.106 2.898 3.673 3.158c-.434.26-3.67-.752-5.965-2.003-2.293-1.251-4.954-3.946-4.954-3.946" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M333.231 202.433s.937 2.398.377 2.607c-.56.208-1.947-.219-3.062-2.393-1.114-2.174.971-1.255.971-1.255l1.714 1.041z" fill="#452c25"/>
<path d="M333.231 202.433s.937 2.398.377 2.607c-.56.208-1.947-.219-3.062-2.393-1.114-2.174.756-1.208.756-1.208l1.929.994z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M334.9 200.882s1.406 2.325 1.1 2.59c-.307.266-2.162 1.068-4.183-1.93-2.02-2.998 2.08-2.367 2.08-2.367l1.003 1.707z" fill="#452c25"/>
<path d="M334.9 200.882s1.406 2.325 1.1 2.59c-.307.266-2.162 1.068-4.183-1.93-2.02-2.998 2.08-2.367 2.08-2.367l1.003 1.707z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M330.696 190.392s4.798 9.266 4.4 9.758c-.4.493-2.296-.002-3.358-2.451-1.062-2.45-1.93-5.63-1.93-5.63l.888-1.677z" fill="#452c25"/>
<path d="M330.696 190.392s4.798 9.266 4.4 9.758c-.4.493-2.296-.002-3.358-2.451-1.062-2.45-1.93-5.63-1.93-5.63l.888-1.677z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M336.286 192.75s4.004 3.403 3.182 3.832c-.822.43-2.415-.192-4.757-2.509-2.342-2.317 1.538-1.464 1.538-1.464" fill="#452c25"/>
<path d="M336.267 192.68s4.023 3.473 3.201 3.902c-.822.43-2.415-.192-4.757-2.509-2.342-2.317 1.556-1.393 1.556-1.393z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M334.345 192.807s2.862 5.255 2.505 5.75c-.357.494-2.504-1.306-3.563-2.646-1.058-1.339-1.859-3.285-1.859-3.285" fill="#452c25"/>
<path d="M334.345 192.807s2.862 5.255 2.505 5.75c-.357.494-2.504-1.306-3.563-2.646-1.058-1.339-1.859-3.285-1.859-3.285" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M312.9 203.599s-.17 3.098 0 3.33c.17.23 1.74.23 1.825-2.082.085-2.312-.34-2.404-.34-2.404l-1.528 1.063" fill="#452c25"/>
<path d="M312.9 203.599s-.17 3.098 0 3.33c.17.23 1.74.23 1.825-2.082.085-2.312-.34-2.404-.34-2.404l-1.528 1.063" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M313.84 199.866s-1.104 3.468-.043 4.161c1.062.694 1.911-3.421 1.953-4.346.043-.925-1.91.185-1.91.185" fill="#452c25"/>
<path d="M313.84 199.866s-1.104 3.468-.043 4.161c1.062.694 1.911-3.421 1.953-4.346.043-.925-1.91.185-1.91.185z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M314.598 204.292s.212 3.237.807 3.376c.594.138 1.57-.925 1.57-1.757 0-.832-1.018-2.774-1.018-2.774l-1.402 1.017" fill="#452c25"/>
<path d="M314.598 204.292s.212 3.237.806 3.376c.595.138 1.571-.925 1.571-1.757 0-.832-1.019-2.774-1.019-2.774l-1.4 1.017" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M314.626 200.417s-1.104 3.467-.042 4.16c1.061.695 1.91-3.42 1.953-4.345.043-.925-1.91.185-1.91.185z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M314.712 194.852s-1.614 1.664-1.57 2.59c.041.924 2.377-1.25 2.59-1.666.211-.416-1.02-.924-1.02-.924" fill="#452c25"/>
<path d="M314.712 194.852s-1.614 1.664-1.57 2.59c.041.924 2.377-1.25 2.59-1.666.211-.416-1.02-.924-1.02-.924z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M313.603 193.919s-1.274 2.358-.935 3.098c.34.74 1.571-.555 2.166-1.387s-1.231-1.711-1.231-1.711" fill="#452c25"/>
<path d="M313.603 193.919s-1.274 2.358-.935 3.098c.34.74 1.571-.555 2.166-1.387s-1.231-1.711-1.231-1.711z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M331.51 190.795s2.034 3.832 1.475 4.04c-.56.208-1.419-.753-2.271-1.898-.853-1.146.796-2.142.796-2.142" fill="#452c25"/>
<path d="M331.51 190.795s2.034 3.832 1.475 4.04c-.56.208-1.419-.753-2.271-1.898-.853-1.146.796-2.142.796-2.142z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M331.557 198.631s.738 3.223.09 3.52c-1.267.582-1.974-2.29-2.05-3.37-.086-1.206 1.96-.15 1.96-.15zM329.022 203.74s.171 2.414-.177 2.631c-.347.217-1.199.275-2.148-1.754-.95-2.029-.508-1.27-.508-1.27l2.334-1.153.507 1.316" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M331.356 203.19s.273 2.555-.24 2.627c-.512.071-1.875-.793-2.469-2.323-.684-1.764 2.38-1.244 2.38-1.244l.33.94z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M328.953 195.35s2.623 5.87 2.201 6.707c-.826 1.636-3.21-3.576-3.93-5.61-.805-2.276 1.729-1.097 1.729-1.097z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M327.736 196.33s3.577 6.462 2.068 6.612c-1.508.15-4.25-4.686-4.71-5.81-.46-1.124 2.642-.801 2.642-.801z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M327.522 197.672s1.76 6.192.627 5.645c-1.134-.548-2.5-5.212-2.685-6.218-.187-1.007 2.058.573 2.058.573zM333.705 188.868s2.713 4.144 1.833 4.267c-.88.123-4.097-2.769-4.126-3.248-.03-.478 2.293-1.02 2.293-1.02z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M332.01 189.042s3.458 4.722 2.415 4.962c-1.043.24-1.121-.499-1.121-.499s-2.76-2.488-2.946-3.117c-.185-.63 1.55-1.406 1.55-1.406M335.436 189.116s2.379 2.453 1.754 3.284c-.623.83-3.928-3.107-4.377-3.607-.45-.5 2.881.226 2.881.226M329.67 192.525s3.83 7.461 3.124 8.22c-.705.758-4.962-5.595-5.11-6.516-.148-.92 2.024-1.844 2.024-1.844" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M327.466 193.2s1.532 2.334 1.445 3.592c-.086 1.257-2.315-1.8-2.507-2.376-.193-.576 1.062-1.216 1.062-1.216z" fill="#452c25" stroke="#000" stroke-width=".15500181000000002"/>
<path d="M330.617 191.99s1.191 2.41.826 3.135c-.365.725-1.988-1.464-2.553-2.32-.566-.856 1.727-.815 1.727-.815z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M325.09 194.358s1.87 2.074 1.78 3.18c-.09 1.105-2.804-1.613-3.042-2.123-.237-.508 1.263-1.057 1.263-1.057z" fill="#452c25" stroke="#000" stroke-width=".15950277000000002"/>
<path d="M337.175 188.374s2.83 2.539 2.39 2.937c-.439.398-4.267-2.343-4.843-2.876-.577-.533 2.453-.061 2.453-.061z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M334.782 188.19l2.213 1.865s2.056 1.374 1.704 1.73c-.352.355-3.572-1.12-4.144-1.79-.572-.672-.505-1.363-.505-1.363l.732-.441zM342.076 188.777s8.38 3.398 8.054 4.218c-.326.82-8.786-2.72-10.114-3.654-1.327-.934 1.934-.615 1.934-.615" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M342.378 189.854s6.294 3.543 5.56 3.884c-.735.34-5.24-.864-7.564-2.44-2.325-1.576-3.315-2.45-3.315-2.45l2.87-.668 2.45 1.674zM326.885 194.16s1.192 2.41.826 3.135c-.365.725-1.55-.62-2.115-1.475-.566-.856 1.29-1.66 1.29-1.66zM327.168 199.593s.983 3.51-.101 4.16c-1.085.65-1.791-3.498-1.801-4.423-.011-.926 1.902.263 1.902.263z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M322.296 193.81s3.5-1.537 4.12-1.414c0 0 .734-.184 1.129-.491s1.298-1.045 1.298-1.045-.62-4.24 3.838-3.81c4.458.43 10.327.983 11.513 1.168 1.185.184 5.53 1.413 6.546 1.905 1.016.491 7.635 3.487 8.99 3.979.802.291 2.572 1.398 3.882 2.252.902.588-.028.167-.028.167s-10.72-5.69-14.51-6.452c-.948-.19.065 1.086.065 1.086s-2.462-.971-3.478-1.401c-1.016-.43-1.863-.615-2.822-.553a5.798 5.798 0 0 1-2.257-.308c-.565-.184-3.782-.307-4.346-.368-.564-.062-1.016-.185-1.016-.185l.226.37-1.58-.247-.452.676s-1.524.307-1.637-.184c-.112-.492-.903 2.212-1.298 3.011-.395.799-1.862.799-2.314 1.29-.451.492-.733.8-.959.922-.226.123-1.354.8-1.75.8-.395 0-2.82.184-2.82.184l-.622-.984.282-.368zM326.897 203.746s.062 3.103-.116 3.327c-.178.224-1.747.16-1.752-2.154-.005-2.314.422-2.389.422-2.389l1.49 1.125" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M327.274 201.366s-.297-1.343-.51-1.528c-.212-.186.085-.37.085-.37s-.552-1.344-.891-1.576c-.34-.231.042-.417.042-.417s-.594-.926-1.019-1.204c-.425-.278 0-.324 0-.324s-.444-1.244-1.478-1.814c0 0-.686-.722-1.386-.92-.7-.2-2.436-.384-4.534-.346-2.21.04-3.147 1.572-3.147 1.572l-.14 1.778.318-.217-.468 2.212c-.074.506.397 1.386.423 2.443.008.335.029.685.066 1.044.101.95.323 1.957.754 2.885.034.073.065.288.107.219.108-.186.35.626.568.917 0 0 .131 1.105.235.695.041-.159.396.626.615 1.118.079.179.497 1.394.481.84-.017-.605.368 1.29.368 1.562l.51-.74.254.833.424-.046-.127.787s1.189-.972 1.232-1.343c.042-.37.084-.648.084-.648l.383-.371.594-.927s1.487 1.158 1.656 1.575c.17.417.34.788.34.788l.382-.37.34.833.212-.417.207.579.018-.036.135.382c.103.096.34.145.786-.6.637-1.066.595-1.9.637-2.085.043-.185.298.324.298.324s.552-1.019.467-1.667c-.085-.649.34-.417.34-.417s.084-1.714 0-2.131c-.086-.417.296-.324.296-.324s-.127-2.038-.254-2.27c-.128-.232.297-.278.297-.278z" fill="#452c25" stroke="#000" stroke-width=".1331534"/>
<path d="M324.298 196.65c.3.09.446.428.575.69-.008-.016.019-.092.003-.124-.128-.262-.278-.605-.578-.695.003 0-.02.124 0 .13M324.57 197.931c.553.469.6 1.108.57 1.807 0 .021.007.145.01.065.033-.74.025-1.489-.58-2 .013.011-.026.107 0 .128M325.72 198.587c.305.501.333 1.054.334 1.633 0 .074.013.074.013 0 0-.615-.016-1.218-.344-1.758.008.013-.021.095-.003.125M326.124 201.006c-.035.358-.1.71-.169 1.063a.43.43 0 0 0 .007.111c.07-.36.135-.718.17-1.083.003-.016-.004-.142-.009-.091M325.75 202.862c.03.235.06.468.035.705-.003.017.003.142.009.092.031-.299.002-.591-.034-.888-.006-.05-.011.075-.01.091M325.037 200.532c0 .397.004.793.036 1.188.004.05.01-.074.01-.091-.03-.365-.033-.73-.033-1.097 0-.073-.013-.073-.013 0M324.734 203.105c.031.376.032.753.032 1.131 0 .074.013.074.013 0 0-.408-.002-.816-.036-1.222-.004-.05-.01.074-.009.09M326.433 202.778c.164.173.264.376.302.614.003.025.008-.02.008-.023a.357.357 0 0 0-.002-.089 1.164 1.164 0 0 0-.308-.632c.015.017-.025.103 0 .13M326.331 200.181c.168.141.305.312.44.485-.015-.02.024-.1 0-.129a3.102 3.102 0 0 0-.44-.485c.014.012-.025.108 0 .13M324.935 202.124a5.928 5.928 0 0 1-.098 1.052.423.423 0 0 0 .006.112c.072-.384.102-.773.105-1.164 0-.073-.012-.073-.013 0M324.192 202.897c.03.316.03.631 0 .947 0 .017.005.142.01.091a6.235 6.235 0 0 0 0-1.13c-.005-.05-.011.075-.01.092"/>
<path d="M310.74 194.327s-.85 3.19-.213 3.514c1.247.633 2.052-2.209 2.166-3.283.127-1.203-1.954-.231-1.954-.231" fill="#452c25"/>
<path d="M310.74 194.327s-.85 3.19-.213 3.514c1.247.633 2.052-2.209 2.166-3.283.127-1.203-1.954-.231-1.954-.231z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M312.577 194.301s-1.614 1.665-1.57 2.59c.041.924 2.377-1.249 2.589-1.665.213-.416-1.02-.925-1.02-.925" fill="#452c25"/>
<path d="M312.577 194.301s-1.614 1.665-1.57 2.59c.041.924 2.377-1.249 2.589-1.665.213-.416-1.02-.925-1.02-.925z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M285.056 194.536s-3.334 1.673-3.626 2.389c-.292.716 10.056-1.085 15.742-5.104l-2.306-1.365-9.81 4.08z" fill="#452c25"/>
<path d="M285.056 194.536s-3.334 1.673-3.626 2.389c-.292.716 10.056-1.085 15.742-5.104l-2.306-1.365-9.81 4.08z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M288.953 195.208s-6.034 2.195-1.646 2.283c0 0 8.695-1.81 13.327-5.35l-1.17-1.732-10.435 4.655" fill="#452c25"/>
<path d="M288.991 195.136s-6.072 2.267-1.684 2.355c0 0 8.695-1.81 13.327-5.35l-1.17-1.732-10.473 4.727z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M297.91 189.08s-6.411 3.283-5.69 3.653c.722.37 5.266-.647 7.644-2.127 2.378-1.48 3.397-2.312 3.397-2.312l-2.845-.786-2.506 1.572z" fill="#452c25"/>
<path d="M297.91 189.08s-6.411 3.283-5.69 3.653c.722.37 5.266-.647 7.644-2.127 2.378-1.48 3.397-2.312 3.397-2.312l-2.845-.786-2.506 1.572z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M295.49 196.281s-2.292 1.918-2.026 2.136c.265.219 4.949-.52 8.598-3.383l-.462-1.69-6.158 2.847" fill="#452c25"/>
<path d="M295.49 196.281s-2.292 1.918-2.026 2.136c.265.219 4.949-.52 8.598-3.383l-.462-1.69-6.158 2.847" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M291.502 195.983s-2.2 1.681-1.72 1.824c.481.143 2.342 1.463 10.579-3.91l.972-.597-1.453-2.052-8.39 4.597" fill="#452c25"/>
<path d="M291.497 195.914s-2.195 1.75-1.715 1.893c.481.143 2.342 1.463 10.579-3.91l.972-.597-1.453-2.052-8.383 4.666z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M289.802 189.593c-6.927 2.423-13.874 7.25-13.874 7.25.68-.231 17.826-7.134 17.826-7.134M305.001 200.408s-1.486 2.266-1.189 2.544c.298.277 2.124 1.155 4.247-1.758 2.123-2.912-1.996-2.45-1.996-2.45L305 200.408z" fill="#452c25"/>
<path d="M305.001 200.408s-1.486 2.266-1.189 2.544c.298.277 2.124 1.155 4.247-1.758 2.123-2.912-1.996-2.45-1.996-2.45L305 200.408z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M306.615 202.027s-1.019 2.358-.467 2.59c.552.23 1.953-.14 3.142-2.266 1.19-2.127-.552-1.064-.552-1.064l-2.123.74zM303.345 198.513s-2.25 2.728-1.783 3.098c.467.37 3.015.324 4.926-2.358 1.91-2.682.042-.139.042-.139l-.552-2.45-2.675 1.71" fill="#452c25"/>
<path d="M306.615 202.027s-1.019 2.358-.467 2.59c.552.23 1.953-.14 3.142-2.266 1.19-2.127-.552-1.064-.552-1.064l-2.123.74zM303.345 198.513s-2.25 2.728-1.783 3.098c.467.37 3.015.324 4.926-2.358 1.91-2.682.042-.139.042-.139l-.552-2.45-2.675 1.71" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M301.18 197.126s-2.166 2.59-1.954 3.005c.213.416 3.143.278 5.563-2.265 2.42-2.544.467-3.468.467-3.468l-4.033 2.589" fill="#452c25"/>
<path d="M301.18 197.126s-2.166 2.59-1.954 3.005c.213.416 3.143.278 5.563-2.265 2.42-2.544.467-3.468.467-3.468l-4.033 2.589" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M297.358 197.31l-1.401 1.85s.382 1.803 5.138-1.48c4.755-3.282 4.501-3.005 4.501-3.005l-2.548-.462-5.733 2.959" fill="#452c25"/>
<path d="M297.337 197.241l-1.38 1.92s.382 1.802 5.138-1.48c4.755-3.283 4.501-3.006 4.501-3.006l-2.548-.462-5.711 3.028z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M282.19 194.478l-3.015 1.355s-.681.598 1.09.642c1.77.045 5.428-.445 11.79-4.053 2.878-1.632 4.7-3.187 4.7-3.187l-2.318-.86-12.247 6.103z" fill="#452c25"/>
<path d="M282.19 194.478l-3.015 1.355s-.681.598 1.09.642c1.77.045 5.428-.445 11.79-4.053 2.878-1.632 4.7-3.187 4.7-3.187l-2.318-.86-12.247 6.103z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M277.027 196.38s4.337-.472 6.06-1.602c0 0-.352.527 1.866-.339 0 0-1.104 1.986 5.362-1.95 6.467-3.937.053-.08.053-.08l7.182-4.114-.42-.82s-13.722 5.876-14.76 6.204c-1.038.327-5.343 2.7-5.343 2.7" fill="#452c25"/>
<path d="M290.342 192.45l7.208-4.155-.42-.82s-13.722 5.876-14.76 6.204c-1.038.327-5.343 2.7-5.343 2.7s4.337-.471 6.06-1.601c0 0-.352.527 1.866-.339 0 0-1.078 1.946 5.389-1.99z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M308.526 201.927s-.425 3.438.085 3.565c.51.127 1.953-.955 2.548-3.056.594-2.1-2.335-1.846-2.335-1.846l-.425 1.21" fill="#452c25"/>
<path d="M308.526 201.927s-.425 3.438.085 3.565c.51.127 1.953-.955 2.548-3.056.594-2.1-2.335-1.846-2.335-1.846l-.425 1.21" fill="none" stroke="#000" stroke-width=".15584574"/>
<path d="M310.776 203.506s-.254 2.405.085 2.636c.34.231 1.19.324 2.208-1.664 1.02-1.989.552-1.249.552-1.249l-2.293-1.248-.552 1.294" fill="#452c25"/>
<path d="M310.776 203.39s-.254 2.52.085 2.752c.34.231 1.19.324 2.208-1.664 1.02-1.989.552-1.249.552-1.249l-2.293-1.248-.552 1.41z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M311.413 199.022s-1.868 4.069-.806 4.022c1.061-.046 2.505-3.098 2.717-3.791.212-.694-1.91-.231-1.91-.231" fill="#452c25"/>
<path d="M311.413 199.022s-1.868 4.069-.806 4.022c1.06-.046 2.505-3.098 2.717-3.791.212-.694-1.91-.231-1.91-.231z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M311.251 198.986s-.703 4.484.3 4.104c1.004-.38 1.572-3.757 1.59-4.487.019-.732-1.89.383-1.89.383" fill="#452c25"/>
<path d="M311.251 198.986s-.703 4.484.3 4.104c1.004-.38 1.572-3.757 1.59-4.487.019-.732-1.89.383-1.89.383z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M312.772 199.438s-1.104 3.467-.042 4.16c1.061.694 1.91-3.42 1.953-4.346.042-.924-1.91.186-1.91.186" fill="#452c25"/>
<path d="M312.772 199.438s-1.104 3.467-.042 4.16c1.061.694 1.91-3.42 1.953-4.345.042-.925-1.91.185-1.91.185z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M308.42 198.296s-1.062 3.19-.425 3.514c1.246.633 2.264-2.208 2.378-3.283.127-1.202-1.953-.23-1.953-.23zM300.5 191.716s-2.844 2.358-2.505 2.728c.34.37 3.652-.277 5.138-1.294 1.486-1.018 2.08-1.573 2.08-1.573l-2.547-1.572-2.165 1.711z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M303.006 189.312s-1.826 1.48-1.486 1.85c.34.37 3.609-.972 4.203-1.62.595-.646.552-1.34.552-1.34l-3.27 1.11z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M304.874 189.08s-2.463 2.035-1.868 2.775c.594.74 4.034-2.543 4.5-2.96.468-.416-2.887.093-2.887.093" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M303.77 188.156l-4.968 2.358s-4.204 2.728-3.78 3.005c.425.278 3.695-.6 6.03-1.757 2.336-1.155 4.926-3.097 4.926-3.097M305.154 190.84s-5.375 4.621-4.568 5.084c.806.462 4.401-1.474 6.821-3.693" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M305.835 192.362s-3.041 5.134-2.702 5.642c.34.509 2.548-1.202 3.652-2.497 1.104-1.294 1.972-3.206 1.972-3.206" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M307.584 192.815s-3.296 6.125-2.914 6.634c.382.508 2.293.092 3.44-2.312 1.146-2.404 1.048-3.955 1.048-3.955l-1.574-.367z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M309.5 193.109s-3.664 7.56-2.942 8.3c.722.74 4.778-5.734 4.964-6.649.327-1.608-2.065-1.79-2.065-1.79M301.774 188.11s-3.312 1.572-2.632 1.895c.679.324 3.779-1.063 4.203-1.202.425-.139-1.57-.693-1.57-.693z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M302.284 188.618s-2.038 1.619-1.614 2.035c.425.416 3.525-1.249 4.12-1.757.593-.509-2.506-.278-2.506-.278z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M306.56 188.748s-2.785 3.745-1.932 3.893c.854.147 4.089-2.415 4.134-2.859.045-.443-2.202-1.034-2.202-1.034z" fill="#452c25" stroke="#000" stroke-width=".14093631"/>
<path d="M307.804 189.59s-2.972 3.744-2.123 3.976c.85.23.934-.37.934-.37s2.335-1.942 2.505-2.45c.17-.51-1.231-1.203-1.231-1.203" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M308.739 190.468s-2.166 3.745-1.614 3.976c.552.231 1.443-.693 2.335-1.803.892-1.11-.721-2.173-.721-2.173z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M309.29 192.179s-1.274 2.358-.934 3.097c.34.74 1.571-.554 2.166-1.387.594-.832-1.232-1.71-1.232-1.71zM309.825 198.724s-.85 3.19-.213 3.514c1.247.634 2.052-2.208 2.166-3.282.127-1.203-1.953-.232-1.953-.232z" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M315.66 194.41s-.85-.278-1.487-.278c0 0-1.868-1.48-2.887-1.618-1.019-.139-.149-.162-.149-.162s-.106-2.427-.403-2.612c0 0-.17-2.497-1.741-2.682-1.571-.185-5.096.139-5.733-.092-.636-.232-2.588-1.046-6.284-.047-3.782 1.023-11.223 4.364-11.605 4.457-.382.092 8.548-1.96 11.053-3.07 0 0 2.505-.184 3.27-.415 0 0-2.845 1.386-.213.786 2.633-.602 2.038 0 2.038 0s-.254.6 1.232.277c1.486-.324 1.486 0 1.486 0s1.699.6 3.015-.185c0 0 .68 2.358 1.529 2.681 0 0 1.009 2.161 3.132 2.577 0 0 1.009.715 1.22.854l1.2.394 1.284-1.004" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M298.25 188.017s-8.492 3.052-8.195 3.884c.297.832 8.874-2.358 10.233-3.237 1.36-.878-1.91-.693-1.91-.693" fill="#452c25" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M321.76 194.598c.194.032.358.12.532.21.006.002.08.048.093.03.014-.02-.052-.078-.056-.082a1.539 1.539 0 0 0-.362-.269c-.222-.114-.438-.233-.687-.275-.05-.008.134.168.147.178.089.071.216.188.333.208M315.148 201.01c.126.241.145.52.271.761-.008-.015.02-.093.004-.124-.126-.241-.145-.52-.271-.762.007.016-.02.093-.004.125M316.302 194.47c.284-.101.585-.104.88-.139.015-.002.006-.13 0-.129-.295.035-.596.038-.88.138-.021.008.004.128 0 .13M317.996 194.331c.27-.127.555-.138.847-.138.01 0 .01-.13 0-.13-.292 0-.578.012-.847.139-.023.011.007.126 0 .13M315.048 195.83c-.035.005-.037.034-.04.066a.327.327 0 0 0 .003.088c.004.025.008-.02.009-.023-.003.024.013 0 .028-.003.016-.003.003-.13 0-.129M314.872 200.394c0 .238.003.477.037.713.004.025.01-.02.01-.023a.35.35 0 0 0-.003-.089c-.03-.2-.03-.4-.03-.601-.001-.074-.014-.074-.014 0"/>
<path d="M316.587 213.894s-.96.743-1.069 1.093c-.108.35-.138.688-.138.688s.86-.104.754.37c0 0 .28.16.723-.869.443-1.03.862-1.473 1.176-1.443.315.03.715.335.917.55.202.215.48.375.83.275 0 0-.367-.56-.135-.683.232-.122.585-.099.585-.099s-.293-.697-.923-.798c-.63-.101-1.066-.277-.917-.55.15-.275.956-2.403.956-2.403l-1.068-1.568-.428 1.364s.14.806.145 1.013c.005.207-.85 1.97-.964 2.072-.115.102-2.404.987-2.677 1.074-.272.088-.842.765-.842.765l-.065.51s.384-.314.507-.128c0 0 .265-.335.504-.21.238.126.2.174.2.174s.424-.28.499-.416c.075-.137.095-.12.095-.12s.214-.057.526-.11" fill="#bd8759"/>
<path d="M316.587 213.894s-.96.743-1.069 1.093c-.108.35-.138.688-.138.688s.86-.104.754.37c0 0 .28.16.723-.869.443-1.03.862-1.473 1.176-1.444.315.03.715.336.917.55.202.216.48.376.83.276 0 0-.367-.56-.135-.683.232-.122.585-.099.585-.099s-.293-.697-.923-.798c-.63-.101-1.066-.277-.917-.55.15-.275.956-2.403.956-2.403l-1.068-1.568-.428 1.364s.14.806.145 1.013c.005.207-.85 1.97-.964 2.072-.115.102-2.404.987-2.677 1.074-.272.088-.842.765-.842.765l-.065.51s.384-.314.507-.128c0 0 .265-.335.504-.21.238.126.2.174.2.174s.424-.28.499-.416c.075-.137.095-.12.095-.12s.214-.057.526-.11" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M323.117 209.17s.04 1.807.04 2.142c0 .337-.04.84-.232 1.134-.193.294-.386.462-.694.462-.31 0-1.119-.042-1.273.252-.155.294-.27.462-.27.462s.501-.294.578 0c.077.294-.192.546-.192.546s.462.084.886-.168.656-.294.849-.294c.193 0 .347.21.347.21s.116.63.077 1.008c-.039.378-.116 1.134.309 1.134 0 0 .154-.378.308-.42.154-.042.579.378.502.504 0 0 .077-.798-.078-1.26-.154-.462-.231-.966-.231-.966s1.311.462 1.427.63c.116.168.424.462.54.42.115-.042 0-.42.231-.504.232-.084.347.126.347.126s-.385-.882-.964-1.176c-.578-.294-.964-.294-1.195-.546-.232-.252-.27-.546-.309-.84-.038-.294.01-2.832.01-2.832l-.974-.191" fill="#bd8759"/>
<path d="M323.137 209.038s.02 1.939.02 2.274c0 .337-.04.84-.232 1.134-.193.294-.386.462-.694.462-.31 0-1.119-.042-1.273.252-.154.294-.27.462-.27.462s.501-.294.578 0c.077.294-.192.546-.192.546s.462.084.886-.168.656-.294.85-.294c.192 0 .346.21.346.21s.116.63.077 1.008c-.039.378-.116 1.134.309 1.134 0 0 .154-.378.308-.42.154-.042.579.378.502.504 0 0 .077-.798-.078-1.26-.154-.462-.231-.966-.231-.966s1.311.462 1.427.63c.116.168.424.462.54.42.116-.042 0-.42.231-.504.232-.084.347.126.347.126s-.385-.882-.964-1.176c-.578-.294-.964-.294-1.195-.546-.232-.252-.27-.546-.309-.84-.038-.294.01-2.832.01-2.832l-.993-.156z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M315.069 197.32s-.128-1.287.233-1.425c0 0 .128-1.18 1.699-1.018 0 0 .53-.878 1.38-.416 0 0 .806-.393 1.274-.162.467.232 1.04.625 1.082.717 0 0 .68-.139.998.116.319.254.17 1.086.17 1.086s.764.585.828 1.102c.064.517.064.725-.107.863 0 0 .34.278.277.67-.064.394-.383.964-.446.964-.064 0 .042 1.025-.297 1.372-.34.347-.659.416-.807.462-.149.046-.53.601-.892.67-.36.07-.849-.554-.891-.74-.043-.184-.531-.392-.531-.392s-1.104 1.179-1.847.994c-.743-.185-1.104-.81-1.168-.925-.064-.116-.276-.97-.276-.97s-.828-.487-.764-.949c.063-.462.403-1.017.403-1.017l-.318-1.002z" fill="#dcddde"/>
<path d="M317.828 211.941c-.1.018-.17.003-.236-.043M318.196 211.008a.801.801 0 0 1-.317-.113M317.816 211.487c.071.04.154.056.237.043M317.032 212.948c.045.031.1.051.158.056M323.619 212.068c.157.028.3.112.463.126M323.889 211.606c-.125.031-.231.007-.308-.084M323.966 211.06a.867.867 0 0 1-.424-.042M323.426 212.908c.147.02.283.092.424.126M323.465 213.496a.216.216 0 0 1 .193.042M323.58 215.092a.4.4 0 0 1 .27.042M318.76 213.029a.34.34 0 0 0-.27.211M319.545 213.103c-.169.098-.32.235-.341.432M314.668 213.97c.131.118.325.188.439.298M325.007 213.328a.352.352 0 0 0-.192.252M325.547 213.496a.185.185 0 0 0-.115.168" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M313.45 215.074l.551-.142.053.021s-.36.697-.263.866c.099.17-.492-.306-.34-.745" fill="#d9c0b9"/>
<path d="M313.45 215.074l.551-.142.053.021s-.36.697-.263.866c.099.17-.492-.306-.34-.745z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M315.545 215.486s-.609 1.017.181 1.526c0 0-.049-.949.57-1.153l-.75-.373z" fill="#d9c0b9"/>
<path d="M315.545 215.486s-.609 1.017.181 1.526c0 0-.049-.949.57-1.153l-.75-.373z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M319.587 214.537l-.184-.55.214-.288.432-.005.183.086s.348.793.044 1.21c0 0-.129-.448-.276-.51 0 0-.322-.05-.413.057" fill="#d9c0b9"/>
<path d="M319.587 214.537l-.184-.55.214-.288.432-.005.183.086s.348.793.044 1.21c0 0-.129-.448-.276-.51 0 0-.322-.05-.413.057z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M320.938 213.374h.362l.137.338-.051.312-.312.144s-.515-.131-.389.482c0 0-.241-1.126.253-1.276" fill="#d9c0b9"/>
<path d="M320.938 213.374h.362l.137.338-.051.312-.312.144s-.515-.131-.389.482c0 0-.241-1.126.253-1.276z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M323.492 215.893l.374-.412.401.212s-.166 1.088-.23 1.17c-.062.08-.074.093-.074.124s-.063-.206-.184-.344c-.12-.137-.246-.737-.287-.75" fill="#d9c0b9"/>
<path d="M323.492 215.893l.374-.412.401.212s-.166 1.088-.23 1.17c-.062.08-.074.093-.074.124s-.063-.206-.184-.344c-.12-.137-.246-.737-.287-.75z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M325.926 214.8s.603.75.528.994c0 0 .62-.626-.178-1.513l-.35.519z" fill="#d9c0b9"/>
<path d="M325.926 214.8s.603.75.528.994c0 0 .62-.626-.178-1.513l-.35.519z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M323.282 195.889c.12.034.194.122.235.24.003.005.008-.04.008-.045 0-.024.003-.056-.005-.08-.04-.119-.116-.209-.238-.244.002 0-.02.124 0 .129M323.417 197.966c.188.197.328.426.405.69-.006-.021.015-.089.004-.125a1.697 1.697 0 0 0-.409-.694c.016.016-.024.103 0 .129M322.977 196.443c.184.159.34.345.508.519-.015-.016.025-.104 0-.13-.169-.173-.324-.36-.508-.518.014.012-.025.107 0 .129M323.482 199.895c.053.311-.018.577-.134.852-.014.034.011.106.004.124.147-.352.201-.71.136-1.087a.433.433 0 0 0-.006.111M323.956 200.969c.024.16.029.317 0 .477a.402.402 0 0 0-.002.088c0 .004.004.048.008.023a2.158 2.158 0 0 0 0-.7c-.003-.025-.008.02-.008.023a.357.357 0 0 0 .002.089M325.787 204.748c.121.433.13.876.131 1.323 0 .073.013.073.013 0 0-.489-.008-.974-.14-1.447.006.021-.014.088-.004.124M325.483 205.628c-.1.305-.201.61-.34.9-.015.032.012.108.004.124a7.36 7.36 0 0 0 .339-.9c.011-.035-.01-.104-.004-.124M315.251 202.708c.284.37.437.812.677 1.21-.008-.014.02-.095.003-.125-.24-.399-.394-.843-.68-1.214.016.02-.023.1 0 .13M317.047 202.752c-.258.034-.322-.338-.542-.415.004.001-.02.122 0 .129.22.077.284.45.542.415.015-.002.004-.13 0-.129M316.03 204.471c.185.326.307.686.507 1.004-.008-.013.022-.095.004-.125-.2-.317-.323-.677-.509-1.003.008.014-.02.094-.003.124M317.217 204.89c.209.25.398.515.506.828-.006-.02.016-.09.004-.125-.11-.315-.3-.58-.51-.833.015.019-.024.1 0 .13M317.113 206.133c.106.217.2.44.305.657-.007-.016.02-.092.004-.124-.106-.218-.2-.44-.305-.658.007.017-.02.093-.004.125M318.232 206.375c.06.228.095.463.097.7 0 .073.013.073.012 0a3.29 3.29 0 0 0-.106-.824c.006.022-.013.088-.003.124M317.756 207.407c.073.329.17.65.34.942-.008-.014.02-.095.004-.125-.169-.287-.265-.604-.338-.928a.35.35 0 0 0-.006.111M318.03 203.02c.268.102.536.203.813.277 0 0 .019-.124 0-.13a8.087 8.087 0 0 1-.813-.276c.005.002-.021.12 0 .129M318.233 204.162c.32.178.656.32.983.485-.008-.004.023-.117 0-.13-.327-.164-.663-.306-.983-.484.01.005-.024.116 0 .13M318.538 205.443c.165.2.345.385.542.554-.014-.012.025-.107 0-.13a4.468 4.468 0 0 1-.542-.553c.016.02-.023.1 0 .129M318.875 207.033c.138.22.202.463.236.72.003.025.008-.02.009-.023a.348.348 0 0 0-.003-.088 1.79 1.79 0 0 0-.238-.734c.007.013-.022.096-.004.125M319.822 203.08c.03.153.066.305.103.457-.005-.023.013-.088.004-.125a10.11 10.11 0 0 1-.1-.443c-.005-.025-.008.019-.008.023a.308.308 0 0 0 .002.088M322.196 202.131a3.573 3.573 0 0 1-.237.485c-.018.03.01.11.003.125.09-.157.17-.317.237-.485.014-.034-.01-.106-.003-.125M323.174 202.09c0 .272-.005.543-.065.81a.382.382 0 0 0 .006.111c.069-.302.071-.612.072-.921 0-.074-.013-.074-.013 0M323.379 203.59c.025.233 0 .463-.033.694a.589.589 0 0 0 .007.112c.04-.3.066-.597.035-.898-.006-.05-.011.075-.01.091M324.125 205.011c-.044.322-.238.578-.47.788-.026.022.014.116 0 .129.238-.214.432-.477.477-.805a.55.55 0 0 0-.006-.112M321.721 203.62c-.067.134-.155.255-.237.38-.011.018-.005.061-.004.08 0 .004.003.052.007.045.083-.125.17-.246.237-.38.01-.02.005-.059.005-.08 0-.005-.004-.051-.008-.045M321.994 205.522a1.89 1.89 0 0 1-.339.38c-.025.02.014.119 0 .13.135-.107.238-.243.34-.381.01-.015.005-.048.005-.065 0-.007-.008-.061-.006-.064M321.147 206.525c-.33-.327-.486-.747-.337-1.223.011-.036-.01-.104-.004-.124-.166.529-.056 1.084.341 1.477-.015-.016.025-.105 0-.13M320.026 205.469c.025.196.024.386-.032.574-.011.036.009.104.003.125.079-.263.07-.541.035-.81-.003-.025-.008.019-.008.023a.36.36 0 0 0 .002.088M322.602 206.735c-.07.235-.196.441-.305.658-.016.032.012.109.004.125.108-.217.235-.423.305-.658.01-.036-.01-.104-.004-.125M324.263 207.428c-.144.252-.309.49-.475.727-.019.027.012.113.004.124.166-.237.33-.474.474-.727.017-.03-.012-.11-.003-.124M325.074 208.3c-.07.443-.104.89-.138 1.338-.002.021.006.145.011.065.033-.432.067-.864.133-1.292a.5.5 0 0 0-.006-.111M326.122 206.746c.002.15.031.3.034.45.002.09.013.006.012-.035-.003-.15-.032-.3-.034-.45-.002-.09-.013-.006-.012.035M314.977 201.861a2.74 2.74 0 0 0 .137 1.295c-.006-.02.016-.09.004-.124-.12-.348-.188-.678-.134-1.06a.587.587 0 0 0-.006-.11"/>
<path d="M318.817 196.346c.716-.657 1.66-1.348 2.676-1.106 0 0 .017-.125 0-.13-1.015-.241-1.96.45-2.676 1.107-.025.023.015.115 0 .129M322.257 197.128c-.718-.488-1.972-.667-2.675-.065-.026.022.014.117 0 .13.703-.603 1.957-.424 2.675.064-.012-.008.025-.112 0-.129M319.516 198.23c.294.953.675 1.923.508 2.941a.5.5 0 0 0 .007.112c.18-1.104-.19-2.138-.512-3.177.007.021-.014.09-.003.125M318.368 198.81c.176.963.064 1.936-.002 2.905-.002.021.006.144.01.065.07-1.027.185-2.06-.002-3.081a.42.42 0 0 0-.006.11M319.9 198.103c.936.222 1.851.846 2.355 1.69-.008-.014.021-.095.004-.125-.506-.846-1.42-1.471-2.359-1.694 0 0-.018.125 0 .129M319.066 199.405c.003.592.05 1.185-.123 1.76-.01.036.01.103.003.124.185-.615.136-1.25.133-1.884 0-.073-.013-.074-.013 0M320.537 199.274c.588.486 1.054 1.22 1.142 1.998.006.051.01-.074.008-.09-.09-.795-.548-1.539-1.15-2.037.013.012-.025.108 0 .13M316.207 200.899c.195-.278.437-.595.763-.714.021-.008-.004-.127 0-.13-.329.12-.57.44-.766.719-.019.028.012.113.004.125M317.609 195.836c-.124-.53-.522-.842-.947-1.126.01.006-.023.1 0 .114.422.283.82.596.943 1.123-.004-.02.012-.078.004-.111M316.78 195.827c-.49-.233-.998-.26-1.53-.26-.009 0-.009.128 0 .128.532 0 1.04.028 1.53.26-.008-.003.022-.117 0-.128M318.31 195.745c.066-.509-.01-.989-.448-1.303.011.008-.022.098 0 .113.368.264.502.63.443 1.092a.472.472 0 0 0 .006.098M320.155 196.346c.46-.245.962-.199 1.465-.195.009 0 .01-.13 0-.13-.503-.003-1.005-.049-1.465.196-.024.013.009.124 0 .129M320.983 197.582c.71.075 1.253.44 1.72.976-.032-.036.048-.203 0-.258-.468-.536-1.01-.901-1.72-.976-.01-.002-.027.255 0 .258M317.859 199.54c-.168.68-.04 1.54-.825 1.818-.042.015.008.255 0 .258.795-.282.662-1.14.831-1.826.019-.074-.017-.205-.006-.25" fill="#fff"/>
<path d="M319.515 199.009c.272.714.653 1.444.506 2.237-.01.05.009.245.013.223.18-.977-.17-1.812-.513-2.709.015.038-.033.18-.006.249M320.537 198.883c.693.088 1.303.705 1.395 1.414.006.05.017-.039.017-.046a.938.938 0 0 0-.005-.177c-.093-.721-.697-1.359-1.407-1.45-.01 0-.029.256 0 .26M320.53 199.907c.11.593.278 1.187.067 1.781-.024.07.021.21.007.249.262-.74.076-1.507-.06-2.253a.915.915 0 0 0-.013.223M320.155 197.322c.762-.13 1.569-.244 2.229.26-.026-.02.05-.22 0-.258-.66-.504-1.467-.39-2.23-.26-.03.005-.005.258 0 .258M318.76 195.807c.092-.63.647-1.08 1.204-1.284.042-.015-.009-.255 0-.258-.575.21-1.123.673-1.217 1.32a.918.918 0 0 0-.005.176c0 .008.01.096.018.046M318.064 196.186c-.019-.699-.325-1.262-.626-1.873.014.029-.034.164-.006.22.27.548.594 1.083.61 1.714.005.16.024.012.022-.061M317.422 196.56c-.136-.622-.546-1.034-1.089-1.319.018.01-.047.234 0 .259.524.274.944.678 1.076 1.283a.762.762 0 0 0 .013-.223M316.397 196.311c-.356-.248-.73-.481-1.163-.548-.006 0-.023.198 0 .202.433.066.807.3 1.163.547-.019-.013.04-.174 0-.2M318.617 199.236c.061.661.144 1.329-.185 1.932-.034.061.023.22.007.249.393-.723.269-1.577.196-2.364-.009-.1-.02.15-.017.183" fill="#fff"/>
<path d="M319.387 198.879c.221.621.482 1.283.438 1.957-.002.043.012.29.022.13.054-.821-.181-1.572-.453-2.336.014.039-.031.179-.007.249M319.9 197.972c.632.194 1.26.401 1.72.911-.032-.034.048-.204 0-.258-.46-.51-1.088-.717-1.72-.911.005.001-.04.246 0 .258M318.19 196.568c.066-.55.125-1.098.13-1.653.003-.147-.023-.147-.025 0-.005.493-.064.982-.124 1.47-.004.034.006.284.019.183M317.034 196.217c-.467-.212-.882-.515-1.274-.845.028.023-.05.215 0 .258.392.33.807.634 1.274.846-.014-.007.045-.238 0-.259M316.843 199.536c-.3.19-.507.454-.64.786-.019.044-.01.112-.01.158 0 .01.012.102.016.09.133-.327.338-.589.633-.776.05-.031-.022-.244 0-.258M317.659 200.021c-.012.453-.261.828-.562 1.142-.049.051.031.226 0 .258.362-.378.572-.799.586-1.331.002-.082-.02-.25-.024-.069M319.797 196.458c.376-.594 1.284-.643 1.891-.809.038-.01-.002-.257 0-.258-.614.168-1.518.218-1.898.818-.037.058.023.224.007.25M315.62 196.448a2.073 2.073 0 0 1-.412-.192c.011.006-.03.142 0 .16.133.074.266.149.411.192-.002 0 .024-.152 0-.16M315.702 199.487c-.131.054-.267.108-.357.224-.022.028-.013.098-.013.13 0 .03 0 .06.004.09 0-.004.006.042.009.039.09-.116.226-.171.357-.225.02-.008.012-.113.012-.129a.732.732 0 0 0-.012-.13M316.251 199.627c-.27.12-.466.354-.634.593-.03.042.017.178.005.195.167-.236.363-.466.63-.585.035-.016-.012-.198 0-.203M317.291 199.884c-.235.574-.877 1.207-.411 1.849-.017-.022.045-.196.006-.25-.322-.444.245-.943.412-1.35.027-.068-.022-.212-.007-.249M318.024 199.875c.018.584-.085 1.161-.187 1.734a.895.895 0 0 0 .013.223c.12-.672.219-1.342.198-2.026-.006-.18-.027-.014-.024.069M319.904 199.184c.425.558.803 1.158.984 1.847-.01-.044.027-.176.007-.249-.183-.693-.563-1.295-.992-1.856.032.041-.046.198 0 .258M320.123 198.735c.7.534 1.48 1.036 1.974 1.79-.017-.024.043-.191.006-.248-.496-.76-1.276-1.264-1.98-1.8.026.02-.05.22 0 .258" fill="#fff"/>
<path d="M320.535 197.813c.261-.025.504-.015.752.076.222.082.406.266.608.388.204.122.41.233.575.409.218.228.22.618.284.913.004.02.02-.148.01-.19-.051-.242-.079-.486-.161-.72-.08-.228-.278-.368-.47-.491-.23-.148-.457-.297-.685-.447-.271-.178-.603-.188-.913-.158-.022.002-.01.221 0 .22" fill="#fff"/>
<path d="M322.25 199.248c.077.226.168.447.245.673-.009-.026.02-.116.005-.162-.078-.226-.168-.447-.246-.673.01.026-.02.117-.004.162M320.288 195.677c.493-.135.998-.225 1.483-.393.041-.014-.007-.255 0-.258-.485.168-.99.257-1.483.393-.038.01.002.258 0 .258M318.232 195.925c.069-.262.18-.475.33-.698.183-.274.21-.618.435-.869.048-.054-.031-.223 0-.258-.186.206-.25.472-.357.723-.128.302-.329.525-.415.853-.02.073.018.205.007.249M316.547 200.543c-.088.425-.072.868.085 1.274-.015-.038.033-.18.007-.25a1.365 1.365 0 0 1-.08-.801c.012-.056.008-.12.005-.177 0-.009-.008-.095-.017-.046M317.57 201.346c-.177.241-.18.608-.087.884a.358.358 0 0 0 .015-.085c.003-.046.007-.104-.008-.149-.052-.154-.013-.28.08-.407.019-.027.011-.09.011-.121 0-.014-.017-.115-.012-.122M318.33 200.938c-.009.245-.14.477-.242.692-.022.048.017.156.006.18.126-.267.243-.522.253-.823.002-.059-.013-.18-.018-.049M318.353 199.504v.308c0 .01-.003.13.012.13s.013-.12.013-.13v-.308c0-.01.003-.13-.013-.13-.014 0-.012.121-.012.13M318.005 199.685c.02.036.036.072.05.112.008.054.012.057.012.008a.77.77 0 0 0-.014.24c0 .01.008.097.017.047.04-.211.048-.463-.058-.656-.006-.013-.015.08-.015.09 0 .041-.013.12.009.159M317.51 199.52c-.05.16-.084.323-.112.49a.796.796 0 0 0-.004.176c0 .008.009.096.017.047.026-.158.058-.312.107-.464.015-.048.01-.11.009-.159 0-.011-.013-.1-.016-.09M317.13 199.543c-.23.283-.539.47-.851.645-.049.028.019.248 0 .259.312-.175.62-.363.851-.646.021-.026.013-.097.013-.129 0-.013-.017-.124-.013-.129M316.47 199.655a1.58 1.58 0 0 1-.466.253c-.042.014.007.255 0 .258a1.59 1.59 0 0 0 .467-.252c.022-.018.013-.106.013-.13 0-.008-.012-.13-.013-.129M315.537 199.426c-.136.06-.276.113-.412.173-.036.016.01.203 0 .208.136-.06.276-.113.412-.174.036-.016-.01-.203 0-.207M318.38 199.314c.004.168.03.332.062.498.01.049.017-.038.017-.047a.768.768 0 0 0-.004-.176c-.023-.114-.048-.228-.05-.344 0-.011-.012-.1-.015-.09-.017.047-.01.11-.01.159M318.82 199.111c.002.198.021.388.092.574.003.01.015-.08.015-.09.002-.048.008-.114-.009-.16a.96.96 0 0 1-.073-.324c0-.009.002-.129-.013-.129-.014 0-.012.12-.012.13M319.158 199.067c.06.083.126.197.129.303 0 .01.012.1.015.09.017-.047.01-.11.01-.159a.833.833 0 0 0-.147-.483c-.009-.013-.015.081-.015.09 0 .037-.014.127.009.16M319.574 198.904c.145.031.276.09.384.196-.002-.002.013-.119.013-.13 0-.026.01-.107-.013-.128a.763.763 0 0 0-.384-.197c-.002 0-.034.251 0 .259M319.794 198.567c.17.142.357.247.576.28.007.002.03-.253 0-.258a1.17 1.17 0 0 1-.576-.28l-.013.129c0 .024-.01.11.013.129M320.26 197.445c.15.001.294.026.44.056.003 0 .033-.252 0-.259a2.316 2.316 0 0 0-.44-.056c-.018 0-.02.259 0 .259M320.044 196.907c.09-.146.224-.254.354-.36.022-.018.012-.105.012-.13l-.012-.128c-.134.109-.27.22-.36.369-.023.036-.01.12-.01.159 0 .008.008.102.016.09M319.635 196.39a.973.973 0 0 1 .186-.46c.021-.028.013-.097.013-.13 0-.013-.018-.123-.013-.128a1.044 1.044 0 0 0-.203.67c0 .008.01.097.017.047M319.303 196.15c.169-.239.282-.511.439-.758.022-.035.01-.12.009-.159 0-.009-.008-.103-.016-.09-.156.247-.27.52-.44.758-.022.032-.009.122-.008.158 0 .01.007.103.016.09" fill="#fff"/>
<path d="M318.545 195.302c.007.29.027.58.088.863.011.048.017-.037.018-.047a.673.673 0 0 0-.004-.176 3.656 3.656 0 0 1-.077-.709c-.004-.18-.026-.013-.025.069M317.319 195.504c.044.105.102.204.154.305.033.064.063.128.088.195a.94.94 0 0 1 .025.077c-.016-.053.012-.039-.02.016-.035.06.023.221.007.249.074-.128.062-.336.029-.477-.053-.222-.189-.406-.277-.614.015.036-.035.182-.006.25M317.075 196.008a4.51 4.51 0 0 0-.55-.449 1.69 1.69 0 0 0-.012.13c0 .022-.01.113.013.128.19.14.38.28.549.45-.003-.002.012-.12.012-.13 0-.027.01-.107-.012-.129M317.878 196.277c.113-.567.092-1.134-.14-1.667.015.035-.036.182-.008.249.17.388.22.769.135 1.195-.012.056-.008.12-.005.176 0 .009.008.096.017.047M319.08 195.537c.018 0 .018-.258 0-.258-.02 0-.02.258 0 .258" fill="#fff"/>
<path d="M317.72 196.302c.03-.32.105-.634.137-.954.01-.09.009-.183 0-.273-.006-.066-.02-.066-.027 0-.032.32-.107.633-.137.953-.008.09-.009.184 0 .274.006.065.02.066.027 0M321.194 198.295c.278.09.552.28.681.554.009.018.023-.121.024-.136.002-.066.016-.175-.013-.238-.133-.28-.408-.474-.692-.568.01.003-.06.368 0 .388M320.255 200.224c.05.165.054.317.023.487a1.166 1.166 0 0 0-.007.265c0 .013.013.144.027.07.07-.386.081-.818-.032-1.196a.667.667 0 0 0-.024.135c-.002.076-.009.165.013.239M319.472 199.7c0 .32.02.64-.045.955-.018.084-.012.18-.007.265 0 .013.011.143.026.07.087-.425.066-.859.064-1.29 0-.013.004-.193-.018-.193s-.02.18-.02.193M319.074 200.046c-.11.426-.22.851-.306 1.282-.017.085-.012.18-.007.266 0 .013.011.142.026.07.084-.42.19-.832.298-1.244.028-.11-.028-.308-.01-.374M319.61 200.318c.003.365.046.733.005 1.097-.01.09-.008.184 0 .274.007.066.02.065.027 0 .051-.459.01-.912.006-1.371 0-.014.003-.194-.019-.194s-.02.18-.02.194M317.038 200.513c.008-.115.006-.138-.003-.07a.595.595 0 0 1-.075.193c-.032.057-.015.176-.013.238 0 .013.013.154.023.135.135-.243.125-.562.087-.83-.01-.075-.025.057-.026.069-.005.088-.005.178.007.265M318.168 199.747c.075.145.07.271.069.43 0 .013-.003.194.019.194.021 0 .018-.18.018-.194.003-.267.03-.56-.096-.804-.01-.018-.023.122-.023.136-.003.064-.017.178.013.238M318.475 199.614a.368.368 0 0 1 .136.182c.009.023.012.093.01.012 0 .038.003.078.01.116-.001-.002.005.043.014.02.025-.071.015-.166.013-.239-.003-.189-.03-.357-.183-.479-.006-.005-.013.063-.013.057a1.366 1.366 0 0 0-.006.137c0 .045 0 .091.006.137.002.011.002.047.013.057M318.855 199.27c.061.123.131.241.192.365.01.02.014-.017.015-.02a.973.973 0 0 0 .008-.116c0-.05 0-.1-.002-.15-.002-.024 0-.065-.011-.088-.062-.123-.132-.242-.192-.365-.01-.02-.014.017-.015.02a.923.923 0 0 0-.009.116c0 .05 0 .1.003.149.002.024 0 .066.01.089M319.706 198.961c.15.214.305.424.472.624-.006-.006.019-.174.019-.193 0-.047.013-.155-.02-.194a9.326 9.326 0 0 1-.461-.61c-.013-.02-.023.122-.023.135-.003.055-.021.19.013.238M320.145 198.232c.114.2.246.389.39.568-.006-.008.019-.175.019-.194 0-.047.013-.154-.02-.194a4.119 4.119 0 0 1-.379-.554c-.01-.019-.023.122-.023.136-.002.06-.019.181.014.238M315.867 196.28a1.715 1.715 0 0 0-.412-.252 1.118 1.118 0 0 0-.02.193c0 .025-.01.181.02.194.15.063.285.15.412.253 0 0 .018-.181.018-.194 0-.036.015-.167-.018-.194M317.207 195.819a.489.489 0 0 1 .042.117.74.74 0 0 0 .009.116c0-.002.006.043.015.02.025-.071.014-.166.013-.239a1.01 1.01 0 0 0-.068-.388c-.01-.021-.015.019-.015.02a.88.88 0 0 0-.008.116c-.003.068-.016.173.013.238M318.265 194.814c.006.255-.02.522-.151.744-.033.055-.016.178-.014.238 0 .013.012.154.024.135.205-.349.188-.827.178-1.22a.562.562 0 0 0-.024-.135c-.025.07-.015.165-.013.238M318.503 196.247c.225-.151.379-.383.5-.625.03-.06.014-.173.012-.238 0-.013-.014-.153-.023-.135-.118.237-.268.462-.49.61-.032.022-.018.162-.018.194 0 .011.015.196.019.194M319.162 196.219c.077-.08.142-.172.22-.253.011-.012.011-.042.013-.056.004-.046.006-.092.006-.137 0-.046 0-.092-.006-.137 0 .006-.008-.062-.014-.057-.077.08-.142.172-.22.252-.011.013-.011.042-.013.057a1.365 1.365 0 0 0-.005.137c0 .046 0 .092.005.137 0-.006.009.062.014.057M320.15 196.392a7.723 7.723 0 0 1-.74-.028c-.018-.002-.041.384 0 .388.246.024.493.027.74.028.028 0 .03-.388 0-.388M319.93 197.285c.33.197.65.412.99.589-.027-.014.07-.35 0-.387-.34-.178-.66-.392-.99-.59.032.02-.073.343 0 .388" fill="#fff"/>
<path d="M319.958 197.958c.294.187.614.33.88.562 0 0 .018-.18.018-.194 0-.038.014-.165-.019-.194-.265-.23-.585-.374-.879-.561a1.975 1.975 0 0 0-.019.194c0 .03-.013.172.02.193M318.069 196.548c.042-.141.041-.293.041-.439 0-.013.003-.193-.019-.193s-.02.18-.02.193c0 .053 0 .008.003 0a.352.352 0 0 1-.014.066c-.022.073-.015.162-.014.238.003.038.003.078.01.116 0-.005.006.045.014.02M315.757 195.517c.257.316.584.545.902.792.235.183.409.495.663.64-.03-.017.073-.347 0-.388-.229-.13-.382-.406-.585-.577-.335-.281-.7-.51-.98-.854.047.058-.071.3 0 .387M316.306 196.56a7.673 7.673 0 0 1-.44-.504c-.004-.005-.014.063-.013.057a1.516 1.516 0 0 0-.006.136c0 .047-.013.155.02.194.14.174.283.345.439.505-.003-.003.019-.177.019-.194 0-.042.014-.16-.019-.193M315.999 199.12c-.104.189-.191.386-.325.555-.032.04-.019.146-.019.194 0 .02.026.185.02.193.136-.173.227-.375.334-.568.031-.057.015-.176.013-.238 0-.013-.013-.154-.023-.135M316.287 199.509c-.004.215-.078.43-.105.643a1.28 1.28 0 0 0 0 .275c.007.066.02.063.027 0 .034-.276.11-.536.115-.815.003-.073.012-.168-.013-.239a.593.593 0 0 0-.023.136M317.3 201.29c.183-.613.163-1.26.15-1.894-.005-.272-.039-.02-.037.103.01.48.015.954-.124 1.417-.032.108.03.31.01.374M317.894 199.803c.07.213.084.406.05.628a1.259 1.259 0 0 0-.006.265c0 .011.014.144.026.07.066-.44.08-.911-.06-1.337a.622.622 0 0 0-.023.136c-.003.073-.01.166.013.238M318.475 199.585c.214.262.279.61.258.943-.003.063.018.434.033.196.03-.505.044-1.116-.29-1.526.005.007-.02.174-.02.194 0 .046-.013.154.02.193" fill="#fff"/>
<path d="M318.635 199.326c.134.557.237 1.119.294 1.69.015.151.031-.224.027-.274-.06-.605-.169-1.2-.31-1.79.015.068-.037.264-.01.374M319.184 199.185c.244.337.457.691.577 1.095a.66.66 0 0 0 .023-.136c.003-.075.009-.164-.013-.238-.12-.403-.333-.758-.577-1.094.024.033-.068.293-.01.373M320.32 198.251c-.113-.196-.352-.22-.554-.203-.038.003-.018.389 0 .387.19-.016.436.002.544.19.01.018.023-.122.024-.136.002-.06.018-.182-.014-.238" fill="#fff"/>
<path d="M319.738 198.098a7.46 7.46 0 0 1 1.071-.056c.03 0 .03-.387 0-.387-.358 0-.715.004-1.07.056-.045.006-.012.39 0 .387M320.398 195.158c-.285.34-.436.803-.532 1.233-.018.083-.011.18-.006.265 0 .014.01.142.026.07.09-.41.242-.858.512-1.18.032-.04.019-.148.019-.194 0-.02-.025-.187-.02-.194M318.85 195.491c.053.327.188.629.28.945a.674.674 0 0 0 .022-.135c.003-.076.009-.165-.013-.238-.087-.303-.219-.593-.27-.906-.012-.075-.025.057-.026.07-.005.086-.007.177.007.264M318.558 196.056a1.549 1.549 0 0 1-.297-.526c-.008-.026-.016.023-.015.019a.884.884 0 0 0-.008.116c-.003.075-.01.165.013.238.06.204.175.377.307.54.004.005.013-.063.013-.057.005-.045.006-.091.006-.137 0-.047.013-.153-.02-.193M318.036 196.308c-.43-.14-.844-.311-1.209-.589.04.03-.075.33 0 .387.365.278.778.45 1.209.59-.009-.003.06-.368 0-.388" fill="#fff"/>
<path d="M318.51 196.2s-1.708.292-2.159.395c-.45.104-1.47.207-1.826.207-.356 0-.902-.284-1.282-.362-.38-.077-1.613-.206-2.064.259-.45.465-.735.62-.877.774-.143.155-.714.662-.737.887-.022.224.144.56.428.56.285 0 .883.606.882.732-.002.212.782.439 1.52.435 1.33-.008 1.985-.679 3.98-.444 1.086.128 3.084-.723 3.44-1.24.356-.516.57-1.059.214-1.653-.356-.594-1.423-.533-1.519-.55" fill="#dba05f"/>
<path d="M318.51 196.2s-1.708.292-2.159.395c-.45.104-1.47.207-1.826.207-.356 0-.902-.284-1.282-.362-.38-.077-1.613-.206-2.064.259-.45.465-.735.62-.877.774-.143.155-.714.662-.737.887-.022.224.144.56.428.56.285 0 .883.606.882.732-.002.212.782.439 1.52.435 1.33-.008 1.985-.679 3.98-.444 1.086.128 3.084-.723 3.44-1.24.356-.516.57-1.059.214-1.653-.356-.594-1.423-.533-1.519-.55z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M311.358 198.116s-.005.037-.012-.021l-.01-.046-.012-.031-.003-.035c-.007-.012.036.008.174-.127 0 .002.042-.065.117-.178a.839.839 0 0 1 .43-.28c.26-.061.502-.017.535-.015.011-.015-.59-.021-.63.049.003-.047.58-.067.611-.027.008-.013-.545-.018-.586.058 0-.034.501-.058.556-.012 0 0-.093-.01-.119-.008l.044.007h-.07l-.041-.004a.5.5 0 0 1 .117.023c0 .001.05-.014-.147-.004 0 0-.12-.022-.316.04-.257.038-.249.387-.638.61"/>
<path d="M311.314 197.97c.023.002.19-.066.351-.363-.045-.081.604-.334.671-.253.003-.003.177 0 .279.016" fill="none" stroke="#939598" stroke-width=".00028131"/>
<path d="M311.957 197.408c-.066-.009-.395.269-.365.285-.071.17-.256.282-.278.277M311.985 197.448c0-.022.446-.064.534-.031" fill="none" stroke="#000" stroke-width=".00028131"/>
<path d="M311.902 197.567c-.012-.047.464-.111.509-.079" fill="none" stroke="#939598" stroke-width=".00028131"/>
<path d="M312.4 197.87s.02.012-.007-.015l-.02-.023-.013-.02-.017-.015s-.015.006-.134.112c0 0-.052.04-.114.097-.002-.005-.116.096-.244.166-.136.02-.334.11-.334.144-.012-.053.392-.158.386-.165.029.02-.358.09-.365.169-.014-.048.355-.14.37-.141.019.021-.325.078-.335.152 0 .002.047-.046.066-.047l-.025.018c.012-.012.029-.014.044-.02l.025-.012s-.069.03-.067.045c.004.008-.039-.004.09-.039.002.012.325-.066.694-.406"/>
<path d="M312.34 197.787c-.003-.005-.143.14-.29.244.002.024-.302.202-.38.18-.006-.009-.13.053-.182.116" fill="none" stroke="#939598" stroke-width=".00028131"/>
<path d="M311.89 198.147c.023-.022.214-.152.214-.154.067-.072.235-.206.236-.206M311.897 198.18c.016.016-.284.057-.332.13" fill="none" stroke="#000" stroke-width=".00028131"/>
<path d="M311.983 198.172c.02.039-.32.13-.334.14" fill="none" stroke="#939598" stroke-width=".00028131"/>
<path d="M312.872 196.488s-.024-.543-.546-.75c-.522-.206-1.115-.232-1.328-.206-.214.026-.25.121-.516.164-.267.043-.552.172-.552.172s0-.026-.142.232c-.143.258-.38.388-.26.62.118.233.04.273.185.317.146.045-.072-.079-.072-.079s-.915.295-.692.855c.222.56.445.35.512.34.066-.012.517-.245.517-.245l.74-.692s.873-.34.968-.367c.095-.026.508.01.508.01l.678-.371z" fill="#c6262c"/>
<path d="M312.872 196.488s-.024-.543-.546-.75c-.522-.206-1.115-.232-1.328-.206-.214.026-.25.121-.516.164-.267.043-.552.172-.552.172s0-.026-.142.232c-.143.258-.38.388-.26.62.118.233.04.273.185.317.146.045-.072-.079-.072-.079s-.915.295-.692.855c.222.56.445.35.512.34.066-.012.517-.245.517-.245l.74-.692s.873-.34.968-.367c.095-.026.508.01.508.01l.678-.371z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M312.209 197.76c0 .136-.137.31-.307.39-.17.08-.307.035-.307-.1s.137-.31.307-.39c.17-.08.307-.035.307.1"/>
<path d="M308.585 200.238s-.716-1.232 1.27-1.835c0 0 .6.326.739.553 0 0-.346.578-1.478.729 0 0-.508.15-.53.553" fill="#d9c0b9"/>
<path d="M308.585 200.238s-.716-1.232 1.27-1.835c0 0 .6.326.739.553 0 0-.346.578-1.478.729 0 0-.508.15-.53.553z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M308.793 200.037s.8.168 1.339-.227c.442-.323.6-.176.715-.15 0 0 .024-.403-.254-.704 0 0-.56.463-.976.589-.415.125-.696.084-.824.492" fill="#d9c0b9"/>
<path d="M308.793 200.037s.8.168 1.339-.227c.442-.323.6-.176.715-.15 0 0 .024-.403-.254-.704 0 0-.56.463-.976.589-.415.125-.696.084-.824.492z" fill="none" stroke="#000" stroke-width=".13287209000000003"/>
<path d="M311.015 199.632c.149 0 .3.002.446-.032.017-.004 0-.13 0-.13-.146.035-.297.033-.446.033-.01 0-.01.13 0 .13M310.735 197.563c-.123.001-.086.148-.16.21-.01.01-.006.052-.006.065l.006.064c.074-.061.04-.209.16-.21.01 0 .01-.129 0-.129M311.147 197.842c.062-.116.184-.164.295-.22.023-.01-.008-.124 0-.128-.113.056-.235.105-.298.223-.01.02-.005.059-.005.08 0 .004.005.051.008.045M311.681 198.555a.26.26 0 0 0 .24-.117c.01-.014.006-.048.006-.064 0-.007-.01-.062-.006-.065a.26.26 0 0 1-.24.117c-.006 0-.012.128 0 .129M312.103 198.403a.753.753 0 0 0 .378-.328c.01-.019.005-.059.005-.08 0-.004-.005-.05-.008-.045a.744.744 0 0 1-.375.324c-.022.01.006.127 0 .13M311.44 197.706c-.093.157-.27.237-.376.384-.02.027.011.114.003.125.106-.148.283-.227.376-.385.011-.018.006-.06.005-.08 0-.004-.004-.05-.008-.044M311.727 199.766c.338.018.665-.027.992-.116.018-.005-.003-.129 0-.13a3.11 3.11 0 0 1-.992.117c-.008 0-.012.129 0 .13M313.289 199.708c.442-.32.815-.595.96-1.156.009-.036-.01-.102-.004-.124-.144.556-.52.834-.956 1.15-.025.02.012.121 0 .13M313.551 198.94c.315-.188.54-.483.663-.83.013-.035-.01-.105-.003-.125a1.548 1.548 0 0 1-.66.825c-.025.015.01.123 0 .13M313.403 196.982c.241-.029.504.171.673.326-.015-.013.025-.106 0-.129-.169-.155-.432-.355-.673-.326-.014.002-.005.13 0 .13M319.665 197.958c.274-.443.124-.997-.16-1.394.008.011-.022.098-.003.125.24.335.4.758.16 1.145-.019.029.01.111.003.124M314.885 197.332c.277.2 1.04.711.831 1.131-.016.032.011.109.004.125.285-.575-.451-1.107-.834-1.385.012.008-.026.11 0 .129M317.034 199.394a1.45 1.45 0 0 0 .071-.366.44.44 0 0 0 0-.091c-.002-.022-.006-.022-.009 0a1.304 1.304 0 0 1-.065.332c-.009.023-.005.056-.005.08 0 .005.006.05.008.045" fill="#7a2e26"/>
<path d="M317.859 199.19c.165-.027.33-.112.496-.224M309.897 198.724c-.325.2-.836.202-.938.65-.002.007 0 .03.003.028.1-.447.613-.448.935-.645.006-.004-.003-.03 0-.033" fill="#5e3f17"/>
<path d="M309.677 197.29c.14.002.304.076.283.247a.397.397 0 0 0 0 .091c.002.023.006.022.009 0a.668.668 0 0 0-.023-.324c-.044-.11-.163-.142-.269-.144-.009 0-.01.13 0 .13M310.348 197.548a.654.654 0 0 0-.064-.58c.008.011-.022.096-.003.124.07.103.108.206.063.331-.012.035.01.105.004.125M310.89 196.974c-.034-.226-.113-.477-.321-.594.01.005-.024.115 0 .129.203.114.282.356.316.576.004.025.008-.019.008-.023a.36.36 0 0 0-.003-.088M311.368 196.858c.03-.21.012-.435-.162-.576.014.011-.026.109 0 .13.096.077.174.203.156.335a.464.464 0 0 0-.002.088c0 .003.005.048.008.023M310.569 196.15c.467-.236 1.418-.341 1.784.13-.016-.02.023-.098 0-.128-.366-.472-1.317-.367-1.784-.13-.024.011.008.125 0 .129" fill="#842116"/>
<path d="M309.456 198.1c.106-.156.072-.367-.031-.514.007.01-.023.097-.004.124.028.039.05.078.07.122.022.054-.009.1-.038.144-.012.017-.005.06-.005.08 0 .004.004.05.008.045M314.224 199.47a.628.628 0 0 0 .289-.419.359.359 0 0 0 .002-.088c0-.004-.004-.047-.008-.023a.61.61 0 0 1-.283.4c-.025.016.011.123 0 .13M314.939 199.411a.38.38 0 0 0 .092-.252c0-.024.004-.056-.005-.08-.002-.004-.007.04-.007.046-.003.055-.046.119-.08.157-.011.012-.006.05-.006.065 0 .005.007.062.006.064M319.257 197.041a.92.92 0 0 1 .084.672.391.391 0 0 0 .007.111c.066-.295.064-.639-.088-.907.008.014-.02.094-.003.124M318.828 197.48c.085.21.079.429.054.652-.002.017.004.142.01.09.032-.294.052-.586-.06-.867.007.019-.018.09-.004.125M318.423 197.856c0 .157.002.314-.052.464-.014.035.01.105.003.124.068-.186.062-.392.062-.588 0-.073-.013-.073-.013 0" fill="#7a2e26"/>
<path d="M324.253 210.469l.09.254s.02.05.064.091l-.135-.381-.019.036z" fill="#452c25"/>
<path d="M314.452 194.95c-1.714.098-3.405-1.041-3.405-1.041-2.123-.416-2.247-2.336-2.247-2.336-.85-.324-1.58-2.506-1.58-2.506-1.316.786-2.964.009-2.964.009s0-.324-1.486 0-1.232-.277-1.232-.277.595-.602-2.038 0c-2.632.6.213-.786.213-.786-.764.23-3.27.416-3.27.416-.92.041-1.852.495-2.868.784-.633.18-1.715.39-2.262.624-1.46.624-4.385 1.965-6.8 2.913-3.177 1.246-5.694 2.195-5.528 2.155.198-.048 3.449-2.107 7.52-3.953 3.78-1.715 8.12-3.301 10.308-3.922 2.84-.941 5.164-.492 6.483-.013.637.23 4.15-.108 5.721.076 1.572.185 1.735 2.769 1.735 2.769.298.185.404 2.612.404 2.612s-.87.024.148.162c1.02.139 2.888 1.618 2.888 1.618.637 0 .709-.022.709-.022s.37-.467.88-.662.977-.39 1.55-.433c.573-.044 1.382-.05 1.955.016.573.065 1.25.07 2.057.222.807.152.892.195 1.146.282.255.087.483.03.483.03 1.05-.438 2.995-1.213 3.443-1.124 0 0 .734-.185 1.13-.492.394-.307 1.297-1.045 1.297-1.045s-.623-4.388 3.835-3.958c4.459.43 10.37 1.003 11.555 1.187 1.185.184 5.43 1.397 6.446 1.889 1.016.491 3.935 1.799 5.234 2.374.527.233 2.536 1.123 4.022 1.71 2.231.88 3.898 2.348 3.898 2.348-1.398-.592-2.528-1.268-3.635-1.749-.896-.389-1.832-.57-2.561-.893-1.546-.687-2.736-1.312-3.673-1.748-3.453-1.608-3.421-1.673-4.82-1.782-.964-.076.693 1.176.693 1.176s-3.16-1.23-4.176-1.66c-1.016-.43-1.862-.614-2.822-.553a5.797 5.797 0 0 1-2.257-.307c-.565-.184-3.782-.307-4.346-.369-.564-.061-1.016-.184-1.016-.184l.226.369-1.58-.246-.452.676s-1.523.307-1.637-.185c-.112-.491-.903 2.213-1.298 3.012-.395.798-2.198.534-2.649 1.025-.452.492-1.415.82-1.64.944-.226.123-.91.065-1.306.065-.587 0-.087.009-1.05.192 0 0-.834-.008-1.152-.138-.319-.13-1.02-.332-1.372-.433-.482-.137-3.163-.198-3.545-.177-.382.022-1.028.22-1.453.393-.424.174-1.168.63-1.168.738" fill="#dcddde"/>
<path d="M314.452 194.95c-1.714.098-3.405-1.041-3.405-1.041-2.123-.416-2.247-2.336-2.247-2.336-.85-.324-1.58-2.506-1.58-2.506-1.316.786-2.964.009-2.964.009s0-.324-1.486 0-1.232-.277-1.232-.277.595-.602-2.038 0c-2.632.6.213-.786.213-.786-.764.23-3.27.416-3.27.416-.92.041-1.852.495-2.868.784-.633.18-1.715.39-2.262.624-1.46.624-4.385 1.965-6.8 2.913-3.177 1.246-5.694 2.195-5.528 2.155.198-.048 3.449-2.107 7.52-3.953 3.78-1.715 8.12-3.301 10.308-3.922 2.84-.941 5.164-.492 6.483-.013.637.23 4.15-.108 5.721.076 1.572.185 1.735 2.769 1.735 2.769.298.185.404 2.612.404 2.612s-.87.023.148.162c1.02.139 2.888 1.618 2.888 1.618.637 0 .709-.022.709-.022s.37-.467.88-.662.977-.39 1.55-.433c.573-.044 1.382-.05 1.955.016.573.065 1.25.07 2.057.222.807.152.892.195 1.146.282.255.087.483.03.483.03 1.05-.438 2.995-1.213 3.443-1.124 0 0 .734-.185 1.13-.492.394-.307 1.297-1.045 1.297-1.045s-.623-4.388 3.835-3.958c4.459.43 10.37 1.003 11.555 1.187 1.185.184 5.43 1.397 6.446 1.889 1.016.491 3.935 1.799 5.234 2.374.527.233 2.536 1.123 4.022 1.71 2.231.88 3.898 2.348 3.898 2.348-1.398-.592-2.528-1.268-3.635-1.749-.896-.389-1.832-.57-2.561-.893-1.546-.687-2.736-1.312-3.673-1.748-3.453-1.608-3.421-1.673-4.82-1.782-.964-.076.693 1.176.693 1.176s-3.16-1.23-4.176-1.66c-1.016-.43-1.862-.614-2.822-.553a5.797 5.797 0 0 1-2.257-.307c-.565-.184-3.782-.307-4.346-.369-.564-.061-1.016-.184-1.016-.184l.226.369-1.58-.246-.452.676s-1.523.307-1.637-.185c-.112-.491-.903 2.213-1.298 3.012-.395.798-2.198.534-2.649 1.025-.452.492-1.415.82-1.64.944-.226.123-.91.065-1.306.065-.587 0-.087.009-1.05.192 0 0-.834-.008-1.152-.138-.319-.13-1.02-.332-1.372-.433-.482-.138-3.163-.199-3.545-.177-.382.022-1.028.22-1.453.393-.424.174-1.168.63-1.168.738" fill="#e7e7e7" stroke="#000" stroke-width=".06460753"/>
<path d="M314.628 194.436s-.18.138-.225.483c-.045.345-.023.208-.023.208" fill="#452c25"/>
<path d="M323.291 193.93c.227.17.462.343.663.544.007.008.072.067.05.02a.543.543 0 0 0-.107-.142 6.537 6.537 0 0 0-.733-.606c-.042-.031.004.045.01.053a.553.553 0 0 0 .117.132" fill="#574f4c"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 207 KiB

-5
View File
@@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 6.4 4.8">
<path fill="#21468b" d="M0 0h6.4v4.8H0z"/>
<path fill="#fff" d="M0 0h6.4v3.2H0z"/>
<path fill="#ae1c28" d="M0 0h6.4v1.6H0z"/>
</svg>

Before

Width:  |  Height:  |  Size: 227 B

-45
View File
@@ -1,45 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<g stroke-width="1pt">
<path fill-rule="evenodd" fill="#229e45" d="M0 0h640v480H0z"/>
<path d="M321.406 435.935l301.483-195.67-303.308-196.2L17.11 240.734l304.296 195.2z" fill-rule="evenodd" fill="#f8e509"/>
<path d="M452.77 240.005c0 70.328-57.103 127.34-127.544 127.34-70.442 0-127.544-57.012-127.544-127.34s57.104-127.34 127.544-127.34c70.442 0 127.545 57.012 127.545 127.34z" fill-rule="evenodd" fill="#2b49a3"/>
<path fill="#ffffef" fill-rule="evenodd" d="M283.3 316.274L279.357 314l-4.093 2.025.917-4.55-3.162-3.332 4.52-.53 2.124-4.08 1.894 4.22 4.46.81-3.345 3.13m86.098 26.224l-3.94-2.274-4.092 2.025.916-4.55-3.16-3.332 4.52-.53 2.122-4.08 1.894 4.22 4.46.81-3.345 3.13m-36.215-29.993l-3.404-1.964-3.536 1.748.792-3.93-2.73-2.88 3.904-.457 1.834-3.523 1.636 3.645 3.853.7-2.89 2.705m86.865-8.477l-3.342-1.928-3.472 1.718.777-3.858-2.68-2.827 3.833-.45 1.8-3.46 1.607 3.58 3.783.686-2.837 2.657M330.37 265.03l-3.94-2.273-4.093 2.025.916-4.55-3.162-3.332 4.522-.53 2.123-4.08 1.894 4.22 4.46.81-3.346 3.13M225.13 225.52l-3.94-2.274-4.094 2.025.916-4.548-3.16-3.333 4.52-.53 2.122-4.08 1.894 4.22 4.46.81-3.345 3.13m13.283 57.14l-3.94-2.275-4.094 2.025.916-4.548-3.16-3.334 4.52-.53 2.123-4.08 1.894 4.22 4.46.81-3.345 3.132m131.954-67.33l-3.48-2.007-3.616 1.788.81-4.017-2.794-2.944 3.994-.47 1.875-3.603 1.673 3.728 3.94.715-2.955 2.766m-6.665 38.24l-2.74-1.582-2.85 1.408.64-3.164-2.2-2.32 3.145-.368 1.477-2.838 1.318 2.936 3.103.563-2.327 2.18m-142.199 50.422l-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09m200.14 15.164l-2.144-1.135-2.227 1.01.5-2.27-1.72-1.666 2.46-.265 1.154-2.038 1.03 2.108 2.426.404-1.82 1.563"/>
<path fill="#ffffef" fill-rule="evenodd" d="M219.263 287.603l-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09"/>
<path fill="#ffffef" fill-rule="evenodd" d="M219.263 287.603l-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09m42.299 3.048l-2.63-1.52-2.733 1.353.61-3.037-2.11-2.225 3.02-.354 1.416-2.722 1.265 2.817 2.978.54-2.233 2.09m-4.786 16.989l-2.63-1.518-2.734 1.352.612-3.038-2.11-2.225 3.017-.354 1.417-2.724 1.265 2.817 2.977.54-2.233 2.09m87.381-22.301l-2.63-1.52-2.733 1.353.61-3.036-2.11-2.225 3.018-.353 1.417-2.724 1.265 2.817 2.977.54-2.233 2.09m-25.099 3.048l-2.63-1.518-2.734 1.352.612-3.037-2.11-2.225 3.018-.353 1.417-2.724 1.264 2.817 2.98.54-2.234 2.09m-68.8-5.838l-1.648-.952-1.714.847.384-1.902-1.323-1.394 1.89-.222.89-1.706.792 1.765 1.864.34-1.4 1.31m167.838 45.384l-2.63-1.518-2.733 1.35.612-3.035-2.11-2.226 3.017-.354 1.417-2.724 1.264 2.817 2.978.54-2.233 2.09m-20.832 5.844l-2.178-1.26-2.264 1.122.507-2.522-1.748-1.848 2.5-.294 1.174-2.262 1.048 2.34 2.466.45-1.85 1.735m10.371 2.297l-2.03-1.173-2.108 1.044.472-2.344-1.63-1.718 2.33-.274 1.093-2.103.976 2.177 2.296.417-1.723 1.615m29.11-22.761l-1.955-1.13-2.03 1.006.454-2.257-1.567-1.655 2.243-.262 1.053-2.024.94 2.092 2.21.402-1.658 1.553M394.24 327.69l-2.554-1.395-2.652 1.24.594-2.786-2.05-2.043 2.93-.325 1.376-2.5 1.227 2.586 2.89.496-2.167 1.92m.549 14.247l-2.33-1.395-2.418 1.24.542-2.786-1.87-2.044 2.673-.324 1.255-2.5 1.12 2.586 2.635.496-1.977 1.918m-18.929-23.055l-1.955-1.13-2.032 1.006.455-2.257-1.568-1.653 2.242-.263 1.054-2.025.94 2.093 2.213.402-1.66 1.554m-17.781 2.273l-1.954-1.13-2.03 1.006.454-2.257-1.57-1.653 2.244-.263 1.053-2.025.94 2.093 2.21.402-1.658 1.554m-30.408-24.59l-1.955-1.128-2.03 1.004.454-2.257-1.568-1.654 2.243-.264 1.053-2.024.94 2.094 2.212.402-1.66 1.553m3.734 57.024l-1.656-.956-1.72.85.386-1.91-1.33-1.4 1.9-.223.893-1.715.795 1.772 1.874.34-1.407 1.316m-46.131-86.63l-3.942-2.274-4.093 2.025.917-4.548-3.162-3.334 4.52-.53 2.124-4.08 1.894 4.22 4.46.81-3.345 3.132"/>
<path d="M444.368 285.817c1.944-5.083 4.45-12.75 5.783-19.786-67.742-59.508-143.26-89.993-238.68-83.72-3.422 6.558-6.16 13.423-8.47 20.853 113.063-10.786 195.936 39.27 241.37 82.654z" fill-rule="evenodd" fill="#fff"/>
<path d="M413.914 252.36l2.42 1.323c-.38.858-.48 1.61-.31 2.25.18.645.625 1.208 1.335 1.688.75.515 1.424.74 2.016.68.6-.06 1.045-.306 1.335-.734a1.27 1.27 0 0 0 .225-.863c-.027-.3-.192-.66-.495-1.075-.21-.28-.72-.873-1.53-1.777-1.04-1.16-1.66-2.138-1.86-2.936-.28-1.122-.11-2.14.51-3.06.4-.59.936-1.03 1.612-1.318.686-.29 1.433-.355 2.24-.198.81.157 1.664.54 2.55 1.143 1.453.987 2.33 2.048 2.63 3.184.305 1.138.117 2.253-.565 3.345l-2.404-1.484c.3-.665.375-1.24.218-1.723-.147-.485-.55-.95-1.21-1.397-.676-.46-1.302-.682-1.874-.663a1.01 1.01 0 0 0-.856.468c-.186.277-.228.59-.13.943.13.45.668 1.193 1.625 2.234.953 1.04 1.604 1.89 1.95 2.547.355.657.516 1.34.482 2.05-.023.706-.284 1.427-.778 2.16a4.11 4.11 0 0 1-1.812 1.493c-.76.33-1.57.412-2.437.24-.86-.177-1.794-.607-2.798-1.29-1.462-.992-2.36-2.093-2.687-3.3-.322-1.213-.125-2.523.6-3.925zm-11.478-7.533l2.472 1.22c-.345.872-.417 1.628-.22 2.26.208.637.672 1.183 1.4 1.635.775.482 1.455.68 2.043.596.6-.086 1.037-.346 1.306-.786a1.25 1.25 0 0 0 .19-.87c-.038-.302-.218-.655-.54-1.058-.22-.272-.75-.84-1.597-1.713-1.087-1.117-1.746-2.07-1.978-2.86-.323-1.11-.194-2.133.385-3.077a3.619 3.619 0 0 1 1.56-1.38c.674-.316 1.42-.413 2.23-.29.818.127 1.685.473 2.595 1.04 1.492.926 2.408 1.952 2.753 3.074.35 1.126.21 2.247-.427 3.365l-2.464-1.385c.275-.676.327-1.252.15-1.728-.168-.482-.59-.93-1.264-1.35-.697-.433-1.33-.628-1.9-.586-.37.025-.647.195-.838.504-.172.282-.204.594-.09.944.145.443.714 1.165 1.71 2.168.994 1 1.68 1.822 2.052 2.465.38.64.568 1.318.563 2.027.007.708-.227 1.437-.69 2.193a4.158 4.158 0 0 1-1.75 1.565c-.746.36-1.556.474-2.427.336-.865-.14-1.815-.536-2.848-1.175-1.498-.933-2.438-1.996-2.815-3.19-.374-1.2-.23-2.514.438-3.943zm-14.206-3.807l7.276-11.966 8.837 5.416-1.23 2.026-6.43-3.942-1.615 2.652 5.983 3.668-1.225 2.015-5.984-3.667-1.977 3.256 6.657 4.08-1.228 2.017-9.063-5.557zm-20.692-16.993l1.08-2.1 5.4 2.796-2.546 4.962c-.79.238-1.78.296-2.982.17a9.355 9.355 0 0 1-3.317-.986c-1.3-.673-2.29-1.528-2.976-2.572a5.911 5.911 0 0 1-.974-3.47 8.61 8.61 0 0 1 .977-3.703c.664-1.298 1.53-2.31 2.59-3.04 1.057-.727 2.25-1.09 3.57-1.09 1.008-.002 2.104.306 3.29.916 1.542.8 2.577 1.747 3.104 2.846.54 1.096.638 2.28.298 3.555l-2.728-.82c.14-.702.057-1.356-.25-1.957-.296-.606-.806-1.095-1.527-1.47-1.097-.567-2.146-.67-3.155-.305-1 .363-1.85 1.23-2.554 2.6-.76 1.48-1.005 2.76-.73 3.842.277 1.073.944 1.886 2.008 2.437.524.27 1.1.44 1.73.507.64.066 1.22.05 1.753-.05l.81-1.582-2.872-1.485zm-90.242-22.379l2.034-13.867 4.172.62 1.123 9.826 3.86-9.093 4.188.618-2.033 13.87-2.59-.382 1.6-10.918-4.343 10.512-2.685-.398-1.134-11.32-1.6 10.915-2.592-.382zm-14.108-1.638l1.305-13.96 10.307.974-.217 2.36-7.503-.706-.29 3.095 6.978.657-.22 2.352-6.98-.658-.353 3.8 7.764.73-.22 2.354-10.572-.998z" fill="#309e3a"/>
<g stroke-opacity=".502">
<path d="M216.5 191.28c.04-1.43.284-2.62.736-3.58a6.649 6.649 0 0 1 1.346-1.884c.566-.552 1.18-.956 1.844-1.21.88-.347 1.888-.505 3.023-.475 2.056.06 3.682.744 4.877 2.057 1.205 1.315 1.775 3.114 1.714 5.395-.06 2.26-.72 4.017-1.982 5.264-1.26 1.24-2.914 1.834-4.963 1.777-2.077-.056-3.708-.736-4.9-2.037-1.19-1.308-1.755-3.078-1.694-5.307z" fill="#309e3a"/>
<path d="M219.414 191.252c-.043 1.586.29 2.8.997 3.643.708.837 1.625 1.27 2.748 1.3 1.122.03 2.055-.35 2.794-1.138.745-.797 1.14-2.007 1.184-3.633.043-1.605-.277-2.813-.96-3.622-.676-.81-1.595-1.23-2.757-1.262-1.162-.03-2.11.345-2.843 1.128-.733.777-1.12 1.972-1.163 3.584z" fill="#f7ffff"/>
</g>
<g stroke-opacity=".502">
<path d="M233.052 198.51l.163-14.017 5.933.07c1.494.018 2.574.157 3.244.42.677.257 1.214.71 1.613 1.36s.593 1.385.584 2.215c-.013 1.052-.332 1.918-.956 2.598-.623.675-1.55 1.095-2.777 1.26.605.363 1.104.76 1.49 1.193.397.43.923 1.195 1.585 2.293l1.673 2.754-3.372-.04-2.002-3.074c-.71-1.098-1.198-1.788-1.46-2.072-.265-.29-.545-.487-.842-.593-.297-.11-.77-.17-1.418-.177l-.57-.008-.068 5.852-2.82-.033z" fill="#309e3a"/>
<path d="M235.976 190.455l2.086.024c1.353.016 2.198-.03 2.536-.142.337-.112.603-.305.796-.584s.293-.627.3-1.048c.004-.472-.118-.853-.37-1.142-.243-.296-.594-.486-1.05-.567-.23-.034-.915-.06-2.057-.072l-2.2-.026-.04 3.555z" fill="#fff"/>
</g>
<g stroke-opacity=".502">
<path d="M249.003 185.188l5.147.26c1.16.06 2.04.195 2.64.405a4.68 4.68 0 0 1 2.036 1.396c.553.646.958 1.426 1.218 2.34.26.907.356 2.015.29 3.326-.058 1.153-.252 2.138-.58 2.96-.4 1-.938 1.797-1.618 2.396-.51.453-1.19.79-2.034 1.016-.632.166-1.468.222-2.51.17l-5.295-.27.706-14z" fill="#309e3a"/>
<path d="M251.706 187.685l-.468 9.274 2.103.105c.786.042 1.357.025 1.71-.046.46-.093.85-.268 1.16-.526.32-.26.59-.695.81-1.31.223-.62.36-1.47.416-2.553s0-1.918-.16-2.507c-.16-.59-.404-1.053-.73-1.397-.327-.342-.75-.583-1.27-.724-.39-.11-1.157-.193-2.306-.25l-1.264-.067z" fill="#fff"/>
</g>
<g stroke-opacity=".502">
<path d="M317.63 210.22l3.26-13.63 4.4 1.06c1.666.402 2.737.732 3.21.99.73.392 1.274.996 1.634 1.81.36.81.41 1.755.152 2.84-.2.836-.518 1.504-.958 2-.438.5-.932.854-1.48 1.07-.54.212-1.064.31-1.57.3-.685-.028-1.65-.19-2.89-.49l-1.786-.432-1.23 5.142-2.743-.66z" fill="#309e3a"/>
<path d="M323.086 199.552l-.926 3.868 1.5.362c1.082.26 1.82.364 2.218.308a1.85 1.85 0 0 0 1.581-1.448c.12-.496.073-.94-.14-1.33a1.94 1.94 0 0 0-.957-.87c-.312-.143-.96-.332-1.95-.57l-1.324-.32z" fill="#fff"/>
</g>
<g stroke-opacity=".502">
<path d="M330.606 214.106l4.64-13.22 5.598 1.98c1.408.498 2.387.98 2.937 1.445.56.463.923 1.064 1.093 1.807s.12 1.505-.156 2.286c-.348.992-.928 1.71-1.736 2.153-.806.438-1.817.537-3.032.298.457.54.802 1.076 1.03 1.61.238.536.49 1.43.765 2.683l.704 3.15-3.18-1.126-.913-3.556c-.322-1.27-.562-2.08-.72-2.435-.158-.36-.36-.638-.607-.834-.246-.202-.673-.41-1.286-.627l-.536-.192-1.938 5.52-2.66-.942z" fill="#309e3a"/>
<path d="M335.938 207.426l1.967.695c1.276.452 2.09.68 2.445.683.355.005.67-.093.943-.295.272-.2.478-.5.616-.896.155-.445.162-.845.017-1.2-.135-.36-.408-.65-.813-.876-.206-.106-.847-.35-1.924-.73l-2.075-.736-1.177 3.356z" fill="#fff"/>
</g>
<g stroke-opacity=".502">
<path d="M347.01 213.6c.424-1.363.982-2.444 1.673-3.24a6.58 6.58 0 0 1 1.808-1.45c.696-.377 1.397-.598 2.102-.665.94-.093 1.953.03 3.038.37 1.965.614 3.344 1.717 4.14 3.308.803 1.593.867 3.48.19 5.658-.67 2.162-1.78 3.67-3.33 4.528-1.548.852-3.302.97-5.26.357-1.982-.62-3.37-1.718-4.164-3.294-.793-1.583-.858-3.44-.196-5.57z" fill="#309e3a"/>
<path d="M349.826 214.385c-.47 1.514-.48 2.773-.026 3.778.455.996 1.22 1.663 2.293 2 1.073.334 2.07.223 2.996-.336.932-.562 1.64-1.62 2.122-3.172.476-1.535.495-2.783.056-3.75-.432-.962-1.204-1.618-2.313-1.964-1.11-.347-2.123-.243-3.04.312-.915.548-1.61 1.592-2.09 3.133z" fill="#fff"/>
</g>
<g stroke-opacity=".502">
<path d="M374.305 233.12l6.415-12.45 5.27 2.736c1.326.69 2.23 1.3 2.71 1.84.49.532.768 1.18.835 1.94s-.092 1.505-.47 2.242c-.48.934-1.153 1.564-2.017 1.892-.86.322-1.872.28-3.043-.128.378.598.645 1.18.8 1.74.158.564.288 1.484.387 2.763l.262 3.215-2.993-1.555-.415-3.648c-.145-1.304-.27-2.14-.378-2.512-.105-.377-.27-.682-.487-.91-.214-.233-.61-.5-1.186-.798l-.507-.264-2.677 5.197-2.505-1.3z" fill="#309e3a"/>
<path d="M380.503 227.226l1.853.962c1.2.625 1.977.962 2.33 1.016.35.054.675 0 .973-.162.296-.16.54-.428.733-.803.216-.42.276-.814.184-1.186-.087-.374-.315-.702-.685-.98-.19-.134-.79-.465-1.808-.993l-1.952-1.013-1.63 3.16z" fill="#fff"/>
</g>
<g stroke-opacity=".502">
<path d="M426.107 258.704c.797-1.183 1.642-2.056 2.536-2.62a6.609 6.609 0 0 1 2.146-.862 5.45 5.45 0 0 1 2.2-.028c.93.184 1.864.596 2.805 1.235 1.704 1.156 2.708 2.612 3.014 4.366.31 1.758-.173 3.58-1.448 5.472-1.263 1.873-2.758 2.998-4.488 3.37-1.728.365-3.44-.028-5.14-1.182-1.718-1.168-2.732-2.622-3.04-4.362-.303-1.746.168-3.543 1.413-5.39z" fill="#309e3a"/>
<path d="M428.578 260.254c-.886 1.316-1.256 2.518-1.112 3.61.15 1.087.69 1.945 1.62 2.578.932.632 1.92.815 2.967.55 1.055-.27 2.037-1.077 2.944-2.425.896-1.33 1.273-2.52 1.13-3.572-.138-1.047-.688-1.898-1.65-2.552s-1.962-.85-3-.583c-1.033.26-1.998 1.06-2.9 2.394z" fill="#fff"/>
</g>
<path d="M301.824 204.523l2.248-9.84 7.268 1.675-.378 1.662-5.287-1.217-.504 2.18 4.926 1.136-.382 1.655-4.918-1.132-.614 2.677 5.475 1.26-.378 1.66-7.456-1.717z" fill="#309e3a"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

-13
View File
@@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-12 0h640v480H-12z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="translate(12)">
<path fill="#fff" d="M968.53 480H-10.45V1.77h978.98z"/>
<path fill="#ffe900" d="M968.53 344.48H-10.45V143.3h978.98z"/>
<path fill="#08ced6" d="M968.53 480H-10.45V320.59h978.98zm0-318.69H-10.45V1.9h978.98z"/>
<path d="M-10.913 0c2.173 0 391.71 236.82 391.71 236.82l-392.8 242.38L-10.916 0z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 586 B

-91
View File
@@ -1,91 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<path fill="#ffd520" d="M.1 0h640.1v480H.1z"/>
<path d="M.1 480h640.1V0z" fill="#ff4e12"/>
<g stroke="#000" stroke-width=".521">
<g fill="#fff">
<path d="M345.392 150.072c-3.99-1.417-6.567.644-6.437 5.795.127 5.152 2.834 8.114 6.824 6.182l-.387-11.977z" stroke-width=".41680000000000006"/>
<path d="M348.896 140.424c-3.323-2.624-6.423-1.499-7.957 3.42-1.533 4.92.077 8.594 4.477 8.047l3.48-11.466z" stroke-width=".41680000000000006"/>
<path d="M354.432 131.088c-2.863-3.124-6.103-2.51-8.406 2.1-2.3 4.61-1.3 8.494 3.133 8.66l5.273-10.76zM350.8 176.472c-4.893 1.803-5.41 8.5-2.317 12.62 3.09 4.122 8.757 4.894 11.847 0l-9.528-12.623z" stroke-width=".41680000000000006"/>
<path d="M345.136 162.304c-4.637-1.545-8.814 4.682-9.53 10.302-.9 7.083-10.947 9.401-5.407 20.09 1.157-6.825 5.667-10.56 9.27-10.817 3.607-.257 9.017-1.03 11.334-5.409l-5.667-14.166zM359.816 189.864c-5.41 1.288-6.183 8.5-2.32 13.651 3.307 4.41 13.65 3.349 13.394-1.03l-11.074-12.62zM375.144 233.264c.257-4.636-7.21-6.439-10.817-5.538-3.606.902-10.497-.128-12.106-3.992-1.287 3.091.58 6.44 5.796 8.114 3.947 1.267 3.864 4.12 2.704 5.409 2.963.515 11.72.515 14.423-3.993z" stroke-width=".41680000000000006"/>
<path d="M370.896 203.648c-5.28-2.318-8.41 1.213-10.43 4.636-2.964 5.023-12.107-1.416-15.197 5.28 4.186-1.803 8.446 2.042 10.43 3.349 5.667 3.734 16.614 2.575 18.16-6.182l-2.963-7.083z" stroke-width=".41680000000000006"/>
<path d="M373.984 209.824c-5.28 3.992-7.34 8.757-7.21 11.977.13 3.22 4.637 10.302 9.53 10.689 2.834-5.796 4.25-18.03-2.32-22.666zM352.096 234.68c0-1.932 2.833-2.704 4.763-2.06 1.934.643 4.894 2.575 3.864 4.636l-8.627-2.576zM322.984 224.12c-.513-2.318 3.22-6.31 8.243-4.121 5.02 2.19 5.667 6.44 3.604 8.114l-11.847-3.993z" stroke-width=".41680000000000006"/>
<path d="M335.216 228.368c-.387-1.288 3.23-3.86 9.403-2.318 6.18 1.545 7.697 5.525 7.47 8.628l-16.873-6.31zM322.344 224.12c3.22-2.447 2-7.084-.903-8.5-5.28-2.576-3.347-9.272-6.697-10.56-3.347-1.288-6.567-3.606-6.697-5.924-1.673 3.22-.643 6.182 1.677 8.242 2.317 2.061-1.803 10.432 1.157 12.621l11.463 4.121zM253.312 222.32c-2.704-4.25-9.144-3.477-11.848-.515-2.704 2.962-2.318 7.34.258 9.272l11.59-8.758zM268.768 216.008c-1.03-5.666-7.856-6.31-11.59-4.894-3.735 1.417-6.31 7.083-3.864 11.204l15.455-6.31z" stroke-width=".41680000000000006"/>
<path d="M279.072 215.232c2.447-4.765-2.318-11.848-7.727-12.878-4.516-.86-9.852-.837-11.59-5.28-1.095 3.863 1.803 6.31 5.151 8.5 3.348 2.189-.644 7.856 4.765 11.075l9.401-1.417z" stroke-width=".41680000000000006"/>
<path d="M278.56 215.4c-1.127-3.413 1.159-7.955 5.786-7.636 4.627.318 7.264 3.68 5.224 7.884l-11.01-.248z" stroke-width=".41680000000000006"/>
<path d="M288.856 215.656c-.637-3.538 2.264-7.712 6.8-6.748 4.537.964 6.674 4.664 4.067 8.54l-10.867-1.792z" stroke-width=".41680000000000006"/>
<path d="M299.088 217.28c-.46-3.566 2.647-7.59 7.13-6.401 4.483 1.19 6.433 4.992 3.633 8.732l-10.763-2.331zM221.376 276.28c-8.629 0-10.736 2.054-11.977 10.946-1.545 11.076 13.523 12.364 11.977-10.946z" stroke-width=".41680000000000006"/>
<path d="M225.24 264.688c-13.265-5.023-20.476 15.969-33.612 12.234 4.7 7.47 16.094.014 20.347.773 7.212 1.288 22.795-1.417 13.265-13.007zM216.608 293.408c-6.568-2.962-13.651 7.083-12.363 11.462 1.635 5.561 16.613 1.03 12.363-11.462zM185.96 336.68c3.606 1.027 7.984 3.09 7.212 10.043-.773 6.954-13.908 21.12-25.756 21.894-11.848.773-16.099 15.066-26.272 11.073 9.53-1.8 9.53-12.62 16.999-15.966-5.41-1.933-8.243 10.303-15.196 10.303-6.954 0-10.303 11.074-18.803 10.3-8.5-.77-9.394 13.483-26.4 13.654-13.007.126-29.104 15.323-34.9 8.757 12.621-1.804 17.714-8.797 25.242-16.487 12.106-12.36 25.757-6.823 30.393-17.77a31.651 31.651 0 0 1-18.287 5.41c-7.922-.164-16.613 12.62-25.5 6.953 5.152-.643 8.5-2.833 13.91-8.5 5.538-5.803 13.666-2.053 20.09-7.983 10.044-9.274 18.673-1.547 28.332-13.137-2.705-1.287-8.5-.387-13.91 2.447-5.408 2.833-12.362-1.934-18.544 1.416.773-7.596 15.196-3.25 24.211-8.5 10.175-5.923 18.61-4.186 26.659-3.476-11.204-.064-15.583-10.69-31.036-7.6-6.74 1.35-12.106-9.27-18.803-3.864.193-3.99 7.212-7.21 14.424-3.346 7.212 3.863 10.119-3.381 24.47 5.666 5.923 3.734 16.097-2.32 22.536 1.674-.837-2.447-4.508-3.994-8.822-3.67 2.705-5.537 20.155-4.83 27.753.71z" stroke-width=".41680000000000006"/>
<path d="M197.424 328.304c-5.666-4.379-13.522.903-18.931-1.159 0 3.605 1.803 9.015 7.727 11.075 1.803-1.286 9.916-8.37 11.204-9.916z" stroke-width=".41680000000000006"/>
<path d="M206.312 315.816c-8.886-4.507-10.431 6.697-17.386 4.379.258 3.22 2.834 7.212 8.5 8.113l8.887-12.492z" stroke-width=".41680000000000006"/>
<path d="M211.592 305.64c-13.136-5.151-14.81 7.47-22.537 5.022 1.803 4.379 12.879 6.697 18.545 5.152l3.992-10.174zM229.616 250.392c-3.477-4.894-10.818-.901-11.977 4.894-1.159 5.795 1.674 13.908 6.568 12.105l5.409-16.999z" stroke-width=".41680000000000006"/>
<path d="M238.504 234.936c-6.053-1.416-13.007-.773-12.234 5.151-2.319 1.03-2.962 8.63 3.348 10.303l8.886-15.455z" stroke-width=".41680000000000006"/>
<path d="M242.496 230.944c-5.924-6.954-12.53-6.793-16.226-3.864-6.826 5.41-13.459 2.319-13.652 7.727 4.122-3.155 7.727.644 11.076-.515 3.348-1.159 5.795 5.28 15.068 2.576l3.734-5.924zM228.2 334.88c.902 1.673 6.439 2.447 9.144-.387 3.584-3.756-.386-14.167-6.053-14.94-5.666-.772-6.181 11.72-3.09 15.327z" stroke-width=".41680000000000006"/>
<path d="M221.76 335.136c8.113 2.96 11.59-3.737 7.212-7.985-1.16 1.417-5.41 6.568-7.212 7.985z" stroke-width=".41680000000000006"/>
<path d="M191.368 346.208c-1.546 4.637-9.53 5.41-18.545 19.834-9.015 14.423-17.643 8.37-19.833 18.286 10.818-8.757 19.314-2.94 25.756-11.59 9.788-13.137 17.848-11.25 21.636-20.09 5.409-12.62 29.105-12.364 30.393-32.196-7.984-1.546-33.226 19.832-39.407 25.755zM394.592 151.488c10.303 3.348 10.56 16.742 22.406 21.12 11.85 4.379 13.01 14.938 22.667 12.363-9.014-2.447-8.37-12.878-17.77-15.454-11.027-3.02-15.197-19.833-23.957-22.408M441.856 221.416c1.803 4.121 1.547 11.462-4.893 13.394 3.476 2.189 8.626.128 11.46-4.636-4.25 9.4-1.417 17.9 5.28 19.575-3.22-6.568 3.993-9.66 1.676-13.909 4.25 1.803 7.984 7.598 7.854 11.204 5.54-6.182-4.12-14.424-2.317-20.218l-19.06-5.41zM375.144 287.608c-6.31-5.538-9.003 1.448-12.106-.966-2.897-2.254-6.76-2.576-8.24-.322 5.41.193 2.766 4.379 13.263 5.409-10.497.708-8.563 12.428-15.583 11.848 7.47 7.083 11.333-6.31 17.386-4.12-1.803.514 2.833 4.764-.387 10.43 5.217-.128 7.34-7.34 7.987-11.075l-2.32-11.204zM236.184 347.752c-2.318-1.93-9.015-2.833-11.59-1.287-2.576 1.544-1.674 1.93 1.416 2.19 3.091.257 7.082 5.257.387 5.537-3.091.127-2.06 7.597-8.5 8.114 2.64 3.22 10.174 1.093 12.878-2.447-.515 2.897 3.348 5.537 1.803 9.014 4.765.516 1.996-9.657 9.53-9.144-3.09.387-1.803 7.34 3.606 5.537-3.22 1.547-1.545 5.28 2.06 4.38-2.317.773-3.09 3.733.13 5.41 3.09-4.25-.387-19.446-11.72-27.303zM516.68 205.656c9.857 0 17.846-7.992 17.846-17.85 0-9.856-7.99-17.848-17.846-17.848-9.86 0-17.85 7.992-17.85 17.848 0 9.858 7.99 17.85 17.85 17.85z" stroke-width=".41680000000000006"/>
<path d="M423.44 227.216c5.41-5.151 13.654-7.727 19.317-3.864 5.666 3.864 24.47 8.5 33.743 2.061 9.27-6.44 13.65-9.788 17.77-9.015 3.094 4.636 6.827 6.825 11.464 7.212 1.416 1.545 6.44 2.833 9.273 2.446 4.12 1.03 9.143-.257 13.134-4.636 6.183.902 11.977-3.734 14.166-10.688 6.567-.773 6.954-8.114 2.834-13.008-3.864-.772-.9-13.78-14.94-11.204 5.926 3.606 1.416 10.818 6.313 14.167-3.35 0-7.663 1.416-8.694 6.439 1.287-3.477-.193-5.795-1.096-6.568.13-2.962-6.437-10.238-12.62-7.598 4.443.966 1.933 8.113 5.153 10.817-2.32.13-4.767 1.288-6.183 3.349-1.674-2.962-7.597-6.053-11.204-6.31 0-1.03-.193-3.091-.643-4.122-1.61-3.09-2.963-6.76-2.32-11.461-3.09 3.348-5.666 7.985-7.21 11.333-4.893-3.349-17 1.545-22.666 2.833-5.667 1.288-24.727-1.803-29.107-6.44-4.376-4.635-12.876-7.469-20.86-9.787-10.98-3.186-11.076-15.196-23.183-23.438-.257 14.94 22.41 62.331 27.56 67.482zM297.232 341.056c9.53 0 17.257-7.727 17.257-17.257 0-9.53-7.727-17.256-17.257-17.256-9.53 0-17.257 7.726-17.257 17.256 0 9.53 7.726 17.257 17.257 17.257z" stroke-width=".41680000000000006"/>
<path d="M256.016 327.792c3.477 4.508 9.4 4.251 11.848 3.864 2.06 5.407 8.628 5.28 11.462 8.24 2.833 2.964 12.49 2.707 15.324 1.03-2.574-.256-5.923-1.8-9.143-4.506-3.886-3.264-2.06-9.788-5.151-12.105 2.318-2.576 2.704-6.825 2.19-8.5 2.446-1.417 4.249-3.735 4.507-4.894 4.25-.257 7.983-2.447 9.53-4.12 2.19 2.06 7.727-.645 10.69 2.832.644-8.5-7.47-13.007-12.88-10.173-2.19-1.16-7.984-.387-9.014 1.159-1.803-.773-6.826 1.803-9.144 3.477 2.576-1.417 2.962-5.667 1.932-7.212 2.189-.901 4.636-3.863 4.893-6.053 3.091.515 7.726-1.545 9.787-1.03-3.347-4.379-8.884-5.924-14.551-5.538-5.86.323-8.37 4.444-9.144 8.887-3.477 2.06-4.636 9.014-3.348 11.461-1.997-.064-3.864 1.868-4.636 2.962-2.705-1.159-6.568-1.995-9.337-1.995M253.056 298.56c-1.159-3.348.376-6.363 1.159-9.014 1.996-6.761.773-8.5-5.28-7.598-.515 3.219 2.576 13.78 4.121 16.612z" stroke-width=".41680000000000006"/>
<path d="M248.616 282.328c1.545 1.545 7.019 2.254 7.598-2.64.666-5.618-1.61-7.792-6.503-5.602-.386 1.288-.838 6.568-1.095 8.242z" stroke-width=".41680000000000006"/>
<path d="M249.776 273.896c2.06.837 6.504 2.511 8.95-2.254 2.053-3.996-.643-7.083-4.893-6.826-1.03 1.16-3.091 5.28-4.057 9.08z" stroke-width=".41680000000000006"/>
<path d="M253.576 264.432c.515 1.545 5.795 6.697 9.658 2.962 3.864-3.735 3.864-9.272-1.931-11.333-1.546.258-6.182 5.667-7.727 8.37z" stroke-width=".41680000000000006"/>
<path d="M261.296 256.064c1.159 3.22 4.765 8.757 11.462 6.181 6.697-2.575 3.863-10.946.773-12.62-1.803.129-9.144 3.477-12.235 6.439z" stroke-width=".41680000000000006"/>
<path d="M273.536 249.624c-.515 2.833 0 10.56 9.143 10.431 9.143-.128 6.57-10.817 4.25-12.363-3.734 0-10.045.129-13.393 1.932z" stroke-width=".41680000000000006"/>
<path d="M287.312 248.072c-1.03 2.19-3.352 16.6 14.553 12.62 2.316-.514 8.37-13.78-14.553-12.62z" stroke-width=".41680000000000006"/>
<path d="M297.096 249.36c-1.8 1.803 2.833 16.355 14.94 13.908 12.106-2.447 1.933-16.226-14.94-13.908z" stroke-width=".41680000000000006"/>
<path d="M307.4 251.552c-1.93 3.992.97 15.84 15.906 15.84 13.537 0-.71-15.582-15.906-15.84z" stroke-width=".41680000000000006"/>
<path d="M319.12 255.032c-.97 2.213-2.157 14.774 15.454 15.84 12.75.773 9.66-17.257-15.454-15.84z" stroke-width=".41680000000000006"/>
<path d="M338.056 260.312c-2.187 3.864-4.507 13.522 14.81 14.295 12.377.496 4.767-14.037-14.81-14.295z" stroke-width=".41680000000000006"/>
<path d="M354.152 263.272c-2.833 3.864-.747 11.442 6.437 12.878 9.016 1.803 10.303-6.696 4.123-10.817-6.183-4.121-10.56-2.06-10.56-2.06z" stroke-width=".41680000000000006"/>
<path d="M362.912 265.072c-2.06 3.606-.783 12.363 12.877 12.363 2.833 0 13.653-11.075-12.877-12.363zM257.184 433.016c11.064 0 20.034-8.97 20.034-20.034 0-11.066-8.97-20.036-20.034-20.036-11.065 0-20.034 8.97-20.034 20.036 0 11.064 8.97 20.034 20.034 20.034z" stroke-width=".41680000000000006"/>
<path d="M404.12 141.704c-1.547 1.545-4.763 6.181-5.41 7.984-6.697 20.09 11.18 35.097 21.637 56.664 8.243 17 7.213 43.787-5.667 60.786-4.406 5.815-3.09 7.47-8.757 13.394-2.173 2.272-4.636 5.15-3.863 13.393 3.607-1.288 8.757 2.06 9.786 4.894 2.577-1.288 6.184-.773 7.47.772 4.377-2.06 7.984-1.03 11.847 3.092 3.35-.516 6.956 0 10.303 3.605 1.803-3.605 5.41-4.893 7.983-4.12-.256-4.637 4.38-7.985 8.5-6.182-1.286-6.182 4.38-10.819 9.79-9.015 4.634-3.606 13.907-3.864 18.544 1.545-8.243-2.318-7.983 6.44-14.94 5.667 1.803 5.151-2.833 8.113-7.467 9.787 2.96-1.417 6.18-3.09 7.21-1.288 2.577-2.253 7.727-1.416 9.017-.257 3.41-1.095 6.697-.258 8.24 3.863 4.637 2.833 7.727 10.045 4.38 15.454-1.03-5.666-4.893-5.409-6.44-7.727-3.607 1.288-7.213 1.288-8.243-1.03-2.06 2.06-9.014 3.864-12.103.773-1.16 4.636-5.154 8.5-9.79 8.5 1.29 3.605-2.317 9.788-5.15 12.878 4.38 2.317 3.09 7.47 2.06 10.56 6.696 1.03 1.03 6.953 12.62 10.817-5.664 1.803-16.74 0-18.287-6.954-5.667-.256-9.53-5.923-9.27-11.85-4.38-4.12-5.024-10.043 1.03-14.164-5.154 1.545-7.987-6.697-15.457-3.348-3.714 1.666-13.52-1.16-13.39-4.637-1.547 2.576-10.947 1.546-12.238-2.833-3.09 1.674-10.303-1.159-10.173-5.409-3.994 1.803-9.4-1.416-9.143-5.537-3.734-.515-4.12-3.864-3.864-6.697-3.35-1.545-2.446-4.765-1.16-8.628-2.316-2.576-1.286-6.182.517-9.53-2.577-2.576-2.06-5.667-1.29-9.272-12.363-1.03-27.85-4.012-63.36-14.939-53.574-16.484-67.998 22.15-56.15 46.362 13.67 27.935-1.545 34 3.091 54.863 4.894 1.03 7.47 5.15 7.212 9.53 2.897.127 4.958 2.83 3.927 7.984 2.447-.45 5.603.256 7.663 2.316 1.804-3.346 7.728-4.12 10.819-.256 6.695-.517 10.045 4.893 9.788 11.59 3.603 6.44 2.317 14.297-1.547 19.317.387-2.703 0-6.567-.126-8.883-.24-4.264-6.184-5.154-5.54-8.63-3.09.256-6.053-1.417-7.083-3.734-1.803 1.543-4.378 2.06-6.568 1.287 3.477 1.546 6.182 7.726 5.152 11.846 1.803 3.093 1.416 8.76-.773 11.206-1.03 5.02-4.894 6.824-9.916 4.634 2.833-1.8 3.863-5.02 3.734-7.727-1.803-1.543-2.704-4.506-2.833-6.31-5.022.774-11.977-3.476-13.26-5.156-11.064 0-20.033 8.97-20.033 20.036-.515-4.123-5.728-8.183-5.084-11.66-3.09-9.53 1.288-18.416 13.909-20.216-1.545-3.607 3.863-7.344 1.803-11.464-2.632-5.263-7.47-12.106-14.68-20.09 4.378-7.47 3.09-17.514.514-23.696-3.698-8.877-7.212-6.697-20.348 7.726-21.408 23.507-49.968 17-75.21 32.454-6.706 4.107-13.392 5.667-6.18-1.543 7.211-7.214 26.271-14.424 38.634-20.607 23.152-11.577 42.756-30.908 50.483-68.512 18.157-88.368 84.992-59.24 127.232-42.756 39.657 15.477 32.453-19.575 12.363-40.695-24.146-25.386-19.317-45.331-7.983-61.3 20.346-2.834 59.37 4.25 51.513 11.075z" stroke-width=".41680000000000006"/>
<path d="M475.856 358.784c12.174 0 22.043-9.866 22.043-22.04s-9.87-22.043-22.043-22.043c-12.174 0-22.043 9.869-22.043 22.043s9.87 22.04 22.043 22.04z" stroke-width=".41680000000000006"/>
</g>
<g fill="none">
<path d="M391.76 142.728c-4.893 21.636-.773 31.423 6.44 40.953 14.903 19.697 26.786 64.649 9.786 94.008" stroke-width=".41680000000000006"/>
<g stroke-linecap="round">
<path d="M417.512 252.328c2.06-.773 5.923-3.22 6.827-7.47M419.056 242.928c.643-3.735 6.437-5.344 6.567-9.336M419.184 228.368c-.387-3.864 5.797-7.34 4.893-11.204M415.84 214.464c-.517-2.19 5.15-6.31 3.607-9.787M411.592 200.944c-1.16-2.447 2.703-5.28 1.03-7.856M405.408 190.12c-.387-1.674 1.997-5.344.71-7.533M399.224 177.376c.513-.644 2.577-2.19 1.737-4.121M394.976 168.04c.837-.451 3.347-1.224 3.027-3.09" stroke-width=".41680000000000006"/>
<path d="M266.064 410.856c-5.151-1.803-11.59.773-12.878 5.153M257.048 420c.644-4.377 7.34-6.31 9.4-4.25-4.249-2.317-6.31 5.923-2.575 6.183M298.52 318.136c-3.09 1.546-3.99 7.212 0 11.463M303.152 319.424c-2.187 1.803-2.06 7.212 1.16 8.5-2.703-1.932 0-5.28 1.933-5.409 1.93-.129 3.217 2.19.9 4.507M484.096 332.168c-7.21-1.93-13.006 6.44-6.44 13.91-.127-7.213 5.023-11.976 11.334-10.69M486.088 340.376c-1.773 0-2.77 1.387-2.77 2.737 0 1.416 1.223 2.77 3.22 2.77 1.29 0 2.32-1.48 2.32-2.64M511.52 182.264c1.16 4.379 7.213 6.182 11.977 5.151M523.496 184.584c-3.733.129-6.823-3.348-6.567-6.31 0 2.189 5.024 3.22 6.567 1.803" stroke-linejoin="round" stroke-width=".41680000000000006"/>
<path d="M267.864 331.656c-1.03-2.577 3.091-5.152 3.22-7.6.129-2.446 4.636-4.378 9.272.258M278.168 296.888c-.901.386-1.674.901-2.447 1.159M287.056 310.92c-1.095.065-3.348-.064-4.572-.902M282.552 315.816c-.901.451-2.898 1.224-4.057 1.482M238.376 393.6c-.129 2.32 2.19 5.667 3.477 6.697M248.424 388.064c-1.288 1.93-2.06 5.28-1.288 7.597M267.608 395.792c-2.318-1.547-.773-5.54-1.03-8.114-.258-2.576 2.704-6.696 8.5-3.22M245.976 381.112c2.318-.387 4.765-.26 6.31.383M275.336 373.768c-1.03 1.417-1.288 2.963-1.416 3.993M286.152 373.512c-1.803 0-3.348 1.287-4.121 2.577M261.168 307.576c2.06.709 7.405 3.992 7.598 7.405M283.064 290.832c-6.31-.129-8.757-6.568-3.992-6.568M294.4 299.456c-2.447 1.03-1.287 5.28 2.19 7.34M279.328 339.896c-1.224-1.543.386-6.05 4.379-4.7M288.728 386.904c.256-3.927 5.216-6.247 7.213-1.803M270.44 398.104c-.322-4.313 1.867-5.73 3.799-5.987 1.931-.256 4.701 1.35 5.989 4.184M232.064 401.328c.258-2.577 2.447-5.28 4.765-4.893M467.736 286.968c-1.677 1.224-2.77 6.697 3.603 7.212M457.952 295.984c0 .644.837 1.545 1.353 1.932M488.344 306.288c-1.673-1.288-5.99 3.928-2.06 7.727M447.392 349.56c-.967-3.67 2.447-4.637 5.667-3.863M439.152 323.544c1.93-1.288 3.863-2.704 6.31-3.348M438.12 337.704c0-3.09 1.543-5.663 2.96-6.437M449.448 302.168c-.257 3.735 1.29 7.34 2.45 9.272M480.104 302.424c-1.87.58-3.543 1.288-4.25 2.833M478.04 312.984c.903-.773 1.933-1.674 2.383-2.318M526.72 200.552c0 3.606-4.507 5.537-7.467 3.22M536.512 200.68c1.993 1.545 8.883.065 7.273-3.927M528.136 221.416c-1.417-.258-3.863-1.803-4.893-3.09M542.304 210.728c-2.317.515-3.863 0-5.023-.515M505.728 223.608c1.287 0 4.377-.515 6.503-1.61M501.864 200.816c-1.673-.193-2.9.129-3.863.773M527.816 207.12c-.45 1.61-1.61 4.121-3.027 5.216" stroke-width=".41680000000000006"/>
<path d="M497.488 212.792c3.22-1.417 7.213 9.53 14.94 5.666M513.072 207.12c-1.03 1.417-1.673 3.606-1.803 5.538" stroke-linejoin="round" stroke-width=".41680000000000006"/>
</g>
<path d="M359.048 190.384c1.03-.129 2.833-.515 3.22-1.803M226.528 310.28c3.864 2.19 6.568 5.924 4.894 11.462M403.6 178.536c1.16.773 5.54.773 7.987-.129M414.68 181.112c-.13 1.803.387 8.628-3.09 10.045M412.88 190.256c3.22 1.03 9.66.644 11.72-5.28M420.088 189.992c1.673 2.576 2.187 7.598-2.833 10.302M421.376 194.248c3.733 1.288 12.363 1.416 11.46-5.924M429.88 194.248c2.577 3.606 13.91 7.856 12.106.386M419.448 204.672c4.377 1.03 10.56-1.932 7.983-9.658M439.792 198.88c.643 2.962 15.066 6.053 13.137-.644M450.224 202.104c2.707 6.181 17 5.666 12.494-2.576M460.4 205.96c2.833 3.477 15.457 1.417 10.434-6.954M470.696 205.832c7.857 5.924 17-2.576 7.083-8.758M482.288 203.904c6.957 5.538 15.457-4.508 9.403-7.34M427.296 201.584c2.19.644 6.827.386 7.857-3.606M433.416 200.68c-.257 5.86 9.597 8.114 12.106 1.353M442.24 205.704c1.803 3.863 10.43 5.409 11.846-.129M452.672 208.152c1.417 3.864 8.886 3.477 10.946-.515M460.912 210.216c2.317 5.022 11.846 5.022 14.037-2.318M473.28 211.112c3.733 2.318 11.72 1.417 11.074-5.795M482.808 210.472c5.537 4.508 13.394.129 9.53-7.47M491.952 216.392c2.963-.515 4.507-6.439 1.417-7.984M423.312 217.424c6.18-3.348 7.34-9.014 3.09-14.552M428.592 211.76c3.863 2.318 11.203-.129 12.49-5.795M433.872 212.4c2.187 2.833 2.573 6.31-.26 9.53M435.672 216.008c6.823-4.25 15.323 3.606 9.014 8.371M443.528 215.624c1.547-.386 4.25-3.22 4.507-6.439M446.616 218.584c2.833-2.962 22.154 3.091 9.917 9.272M455.632 210.472c3.733 1.417 5.667 6.697 0 8.5M460.528 223.352c4.12-4.25 17-1.545 12.363 3.864M469.8 221.672c2.317-7.856 16.097-2.962 11.59.257M466.968 213.816c.387 1.546.513 5.409-2.06 7.47M478.56 212.272c.513 1.288.387 3.735-.773 5.28M487.312 212.4c.773 1.416 2.06 4.121-.773 6.31M377.08 153.16c.127 7.34 2.703 12.234 12.62 7.598M380.168 161.92c-4.893 6.568.643 13.651 10.303 6.568M365.096 165.136c6.697 7.212 18.674 1.932 10.946-9.015M384.16 171.32c-1.29 7.083 4.507 8.5 9.27 5.28M359.176 166.296c1.22 7.121 8.5 12.75 15.583 8.371M367.936 176.088c0 10.174 14.037 11.333 17.257.773M380.168 183.296c4.507 9.272 14.294 5.538 17.514-.129M370.248 168.488c1.803 4.507 5.41 9.53 13.78 5.795M344.496 166.296c1.16 3.735 7.857 8.242 15.583 3.09M349.256 171.064c-4.123 6.053 4.12 11.72 14.037 2.704M354.152 178.536c1.673 8.5 5.02 15.326 17.126 4.379M365.224 187.288c4.38 5.409 11.077 8.757 17.386-.386" stroke-width=".41680000000000006"/>
<path d="M387.248 188.832c-.387 6.439.9 9.658 5.923 9.4 3.96-.202 7.727-3.348 9.917-6.696M392.272 198.24c-.13 7.34 5.663 13.136 16.483 5.667M396.776 206.864c-2.06 5.538 4.12 14.552 16.226 9.916M371.152 192.184c-.77 7.083 5.797 11.848 16.357 2.704M376.304 200.04c.387 5.795 6.953 12.75 16.614 2.704M380.936 207.384c-.773 9.916 8.37 12.75 16.097 5.151M367.16 200.04c2.06.129 3.733-1.674 4.763-2.962M371.536 207.248c1.803.386 4.897-1.288 5.927-3.348M376.048 218.968c2.06 2.19 9.014.644 9.914-2.318M383.776 218.84c3.863 9.014 14.163 8.628 18.414-1.545M400.256 220.904c1.93 5.28 6.827 8.628 14.81 6.825M404.12 226.312c-4.507 7.34 1.417 15.969 11.46 7.47M406.568 237.256c-.513 4.636 3.737 9.916 9.53 10.56M387.504 223.736c-1.547 10.431 5.923 15.454 15.326 9.916M376.56 228.76c2.447 1.932 6.827 2.19 10.946.644M392.528 235.456c-2.32 8.758 6.697 15.068 14.423 5.28M380.04 230.176c.13 4.507 4.51 9.4 12.106 7.984M413.392 247.176c-5.153 3.477-6.183 9.658 1.03 13.65M400.768 245.368c.26 5.28 2.707 8.242 8.5 8.757M393.176 242.664c-7.727 7.083-.13 15.326 9.014 8.371M398.584 253.224c-2.577 8.114 7.083 13.007 12.234 4.765M382.616 235.968c-2.833 7.985.773 13.265 7.34 12.75M372.44 234.424c.387 4.765 4.507 6.439 9.143 5.409M375.4 239.448c-3.477 6.697 1.803 10.302 8.76 7.727M405.28 262.112c-1.16 4.25-.517 7.34 5.793 8.758M405.664 268.168c-7.6 3.477-8.243 10.818-2.32 15.582M399.544 259.992c-3.99 3.606-3.22 9.851 1.16 12.298M365.744 236.488c-4.38 4.315-.193 16.226 9.463 9.724M390.856 251.552c-5.927 4.894-3.22 13.78 6.567 11.333M381.064 247.816c-3.09 8.758-.127 11.848 6.827 11.977" stroke-width=".41680000000000006"/>
<path d="M359.304 236.096c-5.28 3.992-3.863 9.658-1.543 12.234 2.316 2.576 6.693 1.417 8.11-1.931M348.224 232.624c-5.923 7.598 0 16.613 8.374 13.909M379.912 255.16c-6.053 2.19-10.67 7.686-6.957 12.492 2.19 2.833 11.72 3.22 14.424-7.727M368.96 248.072c-3.477 5.023-2.32 9.788 4.12 12.234M368.576 257.48c-3.737 2.06-6.183 4.508-5.28 9.015M360.208 249.624c-1.417 6.053.257 9.788 3.99 11.59M360.08 256.832c-5.797-.386-8.757 2.06-6.827 7.727M353.768 258.248c-5.667-2.06-6.57-6.954-4.123-12.106M348.872 253.744c-6.183.258-8.886 3.348-8.886 7.598" stroke-width=".41680000000000006"/>
<path d="M340.496 229.656c-4.507 1.932-5.923 7.985-4.25 11.333 1.677 3.348 6.957 3.606 10.177 1.416M327.88 224.896c-4.12 4.636.643 13.651 7.987 11.462M317.32 221.288c-3.863 5.409.387 14.424 10.303 11.848M328.136 258.248c-1.03-6.44 5.667-10.689 13.91-2.318M338.056 242.928c-2.447 2.19-3.603 5.666-3.22 8.5M306.76 218.2c-4.25 7.212.903 13.78 10.046 11.204M330.584 236.096c-6.053 6.053-3.993 12.106.513 15.582M326.72 243.184c-9.143.129-9.657 10.689-2.187 14.038M319.768 232.624c-3.733 2.576-4.893 9.658 1.547 12.492M319.512 248.464c-3.863-1.803-8.5.386-8.114 4.894M313.712 248.592c-3.477-8.242-13.65-6.825-12.746 1.674M316.544 238.416c-2.187.386-6.567 1.674-8.24 5.023M308.952 229.144c-4.12 4.636-.903 10.174 2.447 11.333M296.72 216.136c-.773 5.538 1.417 8.242 8.37 7.727M299.16 223.224c-2.707 6.697.9 9.658 7.853 9.272M300.704 231.464c-4.12 4.894-1.287 10.174 2.703 12.363M298.776 237.648c-7.34-.902-8.5 7.598-6.053 11.59" stroke-width=".41680000000000006"/>
<path d="M292.848 215.496c-4.506 1.932-7.081 7.598-4.635 11.075 2.448 3.477 7.342 2.318 10.045.515M289.76 228.112c-3.734 5.666-.387 9.916 3.607 11.59" stroke-width=".41680000000000006"/>
<path d="M275.336 214.848c-2.962 3.09-1.159 9.402 6.053 9.53 5.806.104 8.757-5.409 6.954-9.272M280.36 224.376c-2.318 5.151-.901 10.689 7.856 9.787M291.952 242.28c-5.409-2.447-12.62 0-9.53 6.44M281.648 233.136c-2.19 3.09-1.417 7.47 1.03 10.174M281.264 241.376c-3.606.644-7.083 2.576-4.894 8.242M275.848 244.984c-4.636-1.417-10.56 1.932-6.954 6.697M268.128 247.176c-3.992-.644-8.757 3.606-4.894 7.856M261.688 251.552c-3.606.902-7.856 5.023-4.121 8.242M279.848 231.336c-5.151 2.318-5.667 8.114-3.22 12.363M274.432 220.648c-7.727 2.962-7.598 13.265.901 16.484M271.728 234.808c-4.636 2.704-5.538 7.856-2.447 11.204M263.616 216.784c-3.091 1.03-2.833 10.56 5.409 10.302M255.12 220c-6.182 4.121 1.288 14.552 11.333 7.083M260.912 229.656c-.901 4.25.258 8.886 7.083 9.402M261.296 235.328c-4.894 1.803-5.795 11.848 3.09 12.62M245.72 226.184c-6.31 5.795 5.151 10.818 9.402 2.447M236.96 235.84c-3.091 3.735 7.727 13.522 12.492-2.833M250.608 232.752c.257 3.863 2.576 6.181 7.34 6.439M257.824 242.928c-7.598 1.159-10.045 10.689-1.545 12.75M243.784 241.64c-.258 3.606 3.477 6.568 7.727 5.924M255.376 255.416c-6.954 1.545-7.856 10.56-1.674 10.045M250.48 273.832c-5.796-1.738-5.924-8.629-.773-11.204" stroke-width=".41680000000000006"/>
<path d="M245.72 267.776c-4.893 2.962-2.962 10.045-.386 11.075 2.575 1.03 4.636-.257 4.894-2.446M249.84 286.32c.515 3.348-11.913 2.06-5.537-8.37M244.232 286.904c-4.185 6.568 2.64 11.912 6.954 6.31M244.816 294.824c-1.674 5.28 4.7 9.08 8.82 4.959M230.904 245.368c-2.318 4.765 9.272 6.568 10.045-3.22M227.688 252.456c-2.318 9.272 15.196 7.34 10.689-4.636M238.76 254c2.447 1.417 9.788 1.545 11.59-6.31M245.072 254.256c.515 2.447 2.704 5.409 4.765 6.31M236.704 256.704c-.773 5.023 4.25 9.144 10.045 8.758M237.6 261.6c-2.833 3.864-3.735 11.333 5.152 11.848M224.08 262.888c-1.417 3.992 6.954 8.114 11.848 1.545M221.504 273.056c-.709 3.027 6.825 7.083 11.075-5.795M229.232 273.832c1.803 3.22 7.856 5.795 11.59-.515M234.768 277.184c-1.545 4.507 2.705 8.757 7.856 7.47M225.112 276.152c-1.03 6.439 6.439 10.174 11.075 6.825M220.216 278.984c-2.189 8.242 8.371 11.333 12.363 5.151M229.88 286.584c.387 4.636 7.599 8.628 13.265 4.765M217 290.448c-.515 2.06 8.114 4.121 9.4-3.091M222.024 292.248c2.06 5.28 9.014 6.568 13.007.129M232.712 294.952c.902 4.894 7.212 7.598 12.75 4.25M247.776 301.136c-1.416 6.568 5.409 11.848 9.658 8.242M236.832 299.976c-2.06 7.212 6.954 11.333 11.977 7.34M226.016 296.368c-.515 6.697 4.765 10.689 10.818 7.727M214.552 297.016c-1.803 4.379 7.727 7.985 12.234 4.25M208.624 308.992c2.447 2.833 10.946 0 11.72-6.31M218.032 307.312c3.09 3.606 10.431 5.538 13.394-2.19M228.848 309.12c-.129 5.538 9.788 9.53 13.007-.644M253.504 310.472c-.902 2.705 1.224 7.018 5.666 7.533M245.328 308.8c-.644 3.09 3.864 7.404 8.629 5.666M254.864 315.752c-1.288 3.348-.194 8.177 4.314 8.113M255.312 322c-3.348 2.833-1.932 7.856 2.898 8.05M253.576 326.76c-4.765 3.218-3.09 10.302 3.22 9.918M239.152 313.112c0 6.954 8.628 7.984 10.302 1.545M246.104 318.776c-1.288 4.121 2.06 8.114 7.34 6.954M247.136 368.488c1.16 1.677 5.924-1.157 4.636-3.99-1.287-2.833-6.335-1.293-5.795 1.673M250.608 363.336c.644-5.667-6.053-6.567-7.727-1.673M245.328 358.832c1.674-2.833-3.992-6.697-6.31-2.577M241.08 354.576c1.545-4.123-4.894-5.923-5.409-2.19M234.256 346.976c.773-2.06 7.985-.773 4.894 3.477M244.688 355.608c2.833-2.577-1.931-7.857-4.894-5.923M263.744 363.464c-2.254.257-4.573 1.737-2.898 6.503 1.16 3.307 6.117 3.477 6.825 1.48" stroke-width=".41680000000000006"/>
<path d="M260.464 365.848c-2.19-1.417-6.954.967-4.765 5.603 1.648 3.49 5.795 2.06 6.44.257M248.16 372.48c1.094 1.93 6.567 1.097 7.533-1.03M251.896 366.104c1.159-.773 3.283.19 3.735 1.157M251.512 334.36c-3.735 2.447-1.417 9.917 4.379 7.983M250.352 340.416c-2.962 2.317-.258 9.53 5.28 6.827M251.256 347.24c-2.06 2.06-.065 7.79 5.28 6.697M250.48 350.072c-1.16-.517-4.186-.13-5.474 1.8M247.136 323.992c-2.833 2.704-1.481 8.243 3.799 8.693M246.104 329.656c-4.057 1.997-4.057 10.043 4.056 10.366M245.784 338.736c-2.253 1.803-1.159 8.757 4.636 7.853M247.648 346.336c-.838.837-.967 2.963-.258 3.863M245.072 343.696c-2.06.063-4.765 1.547-5.474 3.67M235.864 339.896c.773-2.06 7.148-1.93 7.598 4.123M244.104 336.808c-.902.193-2.64 1.03-3.09 2.77M241.336 317.944c-2.77 2.511-4.121 10.432 4.314 11.976M235.736 334.296c0-2.127 5.731-3.93 7.727-.773M232.064 322.768c.837 1.61 4.829 3.8 7.276 1.997M211.328 310.152c-.128 3.735 2.962 7.083 7.212 6.568 4.25-.515 5.151-4.25 3.863-6.697M219.184 316.848c-2.833 3.477.644 8.371 3.863 6.954M222.408 314.4c1.674-.644 7.212-1.417 8.886 1.159M204.504 315.432c-1.288 1.932 6.697 3.864 9.4.129M211.2 317.488c-.258 2.576 1.03 6.954 7.598 5.151" stroke-width=".41680000000000006"/>
<path d="M219.832 326.632c1.03-2.19-3.864-5.795-7.598-1.803-3.735 3.992.515 8.5 2.833 6.953M202.704 318.008c-1.932 3.348 5.538 9.466 9.788 3.8" stroke-width=".41680000000000006"/>
<path d="M197.744 323.8c-2.704 2.77.644 7.857 4.701 6.31 4.056-1.545 3.67-5.795 2.705-6.889" stroke-width=".41680000000000006"/>
<path d="M192.528 328.952c-2.19 1.995-.065 6.695 2.962 6.695 3.026 0 4.894-2.38 4.314-5.406M204.824 328.568c-.387 2.962 3.992 5.022 6.825 2.255M211.784 325.408c.386-.644.065-1.74-.579-2.254M187.832 332.944c-2.51 1.997 2.898 7.533 6.31 2.447M207.208 331.848c-1.61 1.543.965 5.6 3.541 4.377M198.392 334.68c.386 2.767 5.795 4.827 9.208.58M201.352 337.448c-.837 1.74.838 4.51 2.898 4.123M252.608 353.36c-1.995 3.927 4.379 8.5 9.015 3.733M257.24 359.216c-.965 2.123.194 5.087 1.932 6.18M251.192 363.656c.451-1.933 3.22-3.737 5.731-2.833M247.84 358.568c.386-1.737 2.704-3.477 4.443-3.023M399.48 278.208c-9.143.129-5.28 14.81 2.577 11.848M396.52 289.032c-1.803 2.962 1.673 7.663 5.537 4.894M401.032 294.504c-2.707 4.507 6.953 11.397 10.817 4.314M408.76 301.52c.127 4.25 12.49 6.954 10.69-1.545M418.288 304.608c2.96 5.022 14.037 5.538 12.877-1.932M428.72 307.832c2.32 3.348 13.137 5.409 12.75-1.546M384.8 265.464c1.543 3.992 6.823 5.409 12.62 3.09M381.456 268.296c3.607 2.318-1.673 12.878-7.21 8.628M381.456 274.864c3.993 1.932 8.886.515 10.303-5.151M389.312 274.088c.387 2.962 4.637 5.28 10.174 4.121M379.392 277.184c5.153 4.379-2.317 13.394-5.667 9.272M381.328 280.528c2.447 1.803 8.757.773 9.4-3.992M387.896 280.528c.517 3.09 2.963 4.25 6.44 4.379M379.912 284.776c2.573 3.606 9.014 4.636 11.846-.129M388.92 287.352c-.257 3.477 3.607 6.31 7.6 5.538M374.888 295.08c3.347 1.674 6.953-4.636 4.12-9.014M378.752 301.776c3.993.258 4.507-5.795.773-9.144M387.896 307.312c3.35-.773 2.317-8.114-5.797-8.758M398.064 312.728c3.22-.902.643-9.015-8.24-8.5M410.304 315.56c2.187-3.348-5.023-9.014-10.946-6.053M416.352 320.192c3.993 1.159 6.697-9.4-5.923-7.727M423.696 320.192c3.48-.901 5.927-7.212-4.247-5.151M431.424 320.712c3.09 1.546 4.507-7.47-4.897-5.022M379.52 292.632c3.863 2.19 9.917-.386 9.4-5.28M387.376 291.608c1.29 2.318.773 6.825-1.673 7.984M387.76 297.016c2.577 1.03 6.053.129 8.114-3.992M392.272 297.016c.77 1.803 1.03 5.409-.647 7.212M392.92 300.104c2.833 1.545 6.18-.515 7.597-3.477M398.712 299.2c2.06 1.288 3.863 7.34.387 9.788M401.032 306.16c2.447.129 6.053.129 8.37-2.962M407.728 304.872c2.19.644 4.763 4.25 3.863 7.47M411.72 311.176c2.45-.258 6.697-1.932 7.857-4.894M418.416 308.216c2.063 1.159 3.48 3.606 3.22 6.439M421.632 312.592c2.447-.129 4.637-1.416 5.28-4.121M426.272 310.28c1.803.644 3.993 2.704 4.123 5.151M430.136 313.88c1.803-.258 3.09-1.417 4.25-3.22M439.28 310.408c2.32 2.318-.77 10.046-5.537 8.629M389.824 154.32c-4.767 2.833-18.29 1.932-11.594-9.272M391.112 146.72c-9.4 3.735-20.994-3.477-8.886-11.333M379.008 132.816c-7.857 0-13.137 12.62-2.573 17M348.488 138.096c-2.06 3.992 5.28 8.37 10.303 4.379 3.89-3.093 3.604-11.462 1.287-14.682M344.496 147.624c-2.577 8.5 16.357 9.014 13.394-4.508M343.464 160.248c.643 6.439 18.16 4.379 12.49-8.629M358.016 148.008c1.417 1.932 5.28 5.28 11.846 4.636M361.104 138.864c.58 2.318 4.507 4.121 9.53 2.383M185.384 334.808c-4.443 3.157 2.383 8.114 4.894 2.64M181.904 337.256c-4.442 3.153 2.383 8.11 4.894 2.637M178.232 339.64c-4.444 3.157 2.382 8.114 4.894 2.64M174.368 341.832c-4.25 2.253.708 7.79 5.022 2.897M170.184 343.96c-4.25 2.25.709 7.79 5.023 2.897M191.76 337.32c-.065 3.283 6.182 4.637 8.434-.26M195.688 340.352c-1.932 2.447 1.61 5.473 3.542 4.377M187.376 339.896c-.194 2.77 5.215 4.38 7.856 1.353M190.344 342.8c-1.739 2.253 1.674 5.28 3.863 4.377M183.776 342.408c.193 2.19 3.283 4.7 6.632 3.283M185.768 345.368c-1.288 1.16-.644 3.867 1.159 4.703M179.072 345.176c-.515 1.997 2.898 5.54 6.375 3.22M179.776 347.496c-2.06 1.61-1.803 4.057.837 4.377M174.824 347.24c-.257 1.35 1.482 3.54 3.671 3.283M163.808 347.112c-2.06 1.093 3.22 6.697 6.503 1.48M158.72 349.424c-2.576 1.227 3.8 7.407 6.633 1.097M175.4 349.168c-1.997.45-3.284 3.35-1.61 4.507M168.896 350.2c-.258 1.16 2.19 3.09 4.186 2.383M167.224 350.72c-1.932 1.223-.902 4.633 1.353 4.12M160.336 352.968c-1.803 1.35-.58 4.057 1.932 3.413M163.616 352.776c.065.707 1.674 1.803 3.027 1.353M154.088 351.616c-2.253.967-2.124 6.633 5.474 3.543M149 353.872c-3.156 1.547-2.125 5.797 4.765 1.74M154.344 355.936c-.837.643-1.738 3.477 1.417 2.38M148.552 357.28c-1.288 1.16-.45 3.543 2.383 2.64M141.92 357.672c-2.318 1.353 2.768 3.157 6.182-.45M143.464 359.344c-1.03 1.03-1.03 4.057 1.674 2.963M136.896 360.568c-1.545 1.16 1.094 2.707 5.924.58M138.824 362.24c-1.803 1.48-1.61 3.347 1.03 2.767M133.48 363.08c-1.996 1.803.901 3.027 4.379 1.543M133.544 365.08c-3.413 1.543-1.932 4.377.193 3.283M247.52 374.928c-.791 1.703 1.803 3.09 4.25 2.703 2.35-.37 4.599-2.306 2.833-5.02M254.728 375.96c2.318 1.803 6.439-.257 6.439-2.963" stroke-width=".41680000000000006"/>
</g>
<g fill="#fff">
<path d="M396.776 103.064c-10.303-5.151-31.68-14.682-37.734-6.954 5.537-2.318 21.764.129 35.157 12.492l2.577-5.538z" stroke-width=".41680000000000006"/>
<path d="M403.024 102.52c-11.914-13.878-18.93-10.771-27.497-15.551-8.046-4.492-20.863-5.41-23.346 1.733 11.757-5.726 22.55 3.08 29.18 4.145 9.106 1.462 14.246 8.502 16.91 11.74l4.754-2.067zM447.904 100.744c-6.183-14.166-19.403-10.466-25.243-16.484-8.497-8.757-30.003-16.87-38.89-10.818 19.573-1.03 27.91 13.492 38.376 18.545 7.47 3.606 15.454 11.333 25.757 8.758z" stroke-width=".41680000000000006"/>
<path d="M424.728 99.2c-10.56-13.136-26.79-24.726-34.257-20.348 9.787.515 12.877 7.34 19.834 11.72 6.953 4.378 3.863 10.688 14.423 8.628zM374.496 122.384c-11.077-4.121-32.71-6.181-42.757 6.44 16.743 2.832 41.983 1.287 42.757-6.44z" stroke-width=".41680000000000006"/>
<path d="M372.44 127.28c-11.077-5.151-19.726 2.044-30.137 1.03-19.83-1.932-33.997-.773-35.8 8.758 11.334-10.174 30.394-1.803 38.12-3.864 7.727-2.06 36.317-.257 45.33 3.606-4.636-5.666-11.846-7.212-17.513-9.53zM407.208 97.784c-2.573-8.5-2.447-17.514 10.303-16.87-3.22-3.993-15.066-6.053-17 8.886-14.037-10.302-29.363-12.106-32.193-3.22 7.21-6.181 18.413-1.674 31.806 13.523 1.16-.644 4.25-1.932 7.083-2.318z" stroke-width=".41680000000000006"/>
<path d="M387.896 109.504c-7.983-5.151-18.803-13.522.13-16.87-8.114-4.379-19.963-2.447-18.674 12.492-21.636-8.758-37.173-5.802-40.44 2.833-3.606 9.53 9.79 14.81 12.107 8.757-2.447 1.03-10.817-1.803-6.44-7.212 4.38-5.408 26.82-1.348 48.166 9.788 5.924 3.09 26.27 2.576 5.15-9.788z" stroke-width=".41680000000000006"/>
<path d="M382.224 123.672c-6.16-12.578-26.143-1.159-30.17-13.342-5.504 17.85 28.416 7.972 30.17 13.342zM509.336 137.32c4.19 2.082 7.813-1.191 1.403-3.758 4.194 2.08 7.85-1.114 1.44-3.683 4.194 2.081 7.85-1.113 1.44-3.682-1.71 1.722-4.156 8.032-4.283 11.123zM511.52 113.112c9.274-9.787-.77-13.136 10.56-23.18 9.274-8.22 1.77-13.697 10.563-20.091 2.834-2.06 9.014-6.182 9.53-10.303 3.734 9.272-11.593 10.56-10.563 25.5.657 9.512-5.773 8.68-8.24 24.726-.516 3.348-2.833 10.818-11.85 3.348z" stroke-width=".41680000000000006"/>
<path d="M515.648 117.488c5.15-11.075 11.063-10.862 13.906-15.196 5.41-8.242 16.87 1.417 26.53-5.924-1.673 10.431-14.68 6.697-20.346 13.394-5.666 6.696-10.303 9.788-20.09 7.727z" stroke-width=".41680000000000006"/>
<path d="M516.936 121.096c9.017-7.212 15.66-2.4 21.894-6.182 15.71-9.53 22.023 1.932 36.06-2.575-3.737 9.014-24.47 1.288-33.484 7.984-9.016 6.697-40.696 13.136-24.47.773zM490.664 172.48c-.13-4.121-3.993-9.402-9.403-10.045-5.407-.644-7.727-6.31-11.847-6.568-4.12-.257-6.826-8.5-12.493-8.371-5.667.129-7.984 7.47 5.28 14.166 13.266 6.697 27.946 14.424 28.463 10.819zM473.92 175.96c-5.667.258-6.44 8.5-11.846 8.758 7.466 3.992 12.876-1.803 16.74-6.955l-4.894-1.803z" stroke-width=".41680000000000006"/>
<path d="M478.56 176.984c-4.893 4.121-6.31 12.75.773 15.196-4.25-5.86 7.47-8.5 3.864-13.909l-4.637-1.287z" stroke-width=".41680000000000006"/>
<path d="M483.448 177.248c-3.863 7.47 6.053 8.37 3.477 14.038 5.666-1.288 6.57-11.977 1.416-14.81l-4.893.772z" stroke-width=".41680000000000006"/>
<path d="M445.584 161.272c9.274-.515 17.754 4.501 23.44 12.62 3.607 5.152 15.71 7.212 19.834 3.091 4.12-4.12 1.803-12.878-8.5-10.044-2.577-4.379-10.047-2.834-13.65-6.44-3.607-3.605-17.518-13.908-21.124.773z" stroke-width=".41680000000000006"/>
<path d="M480.36 166.944c-2.447.515-3.22 4.765-1.677 6.954M485.64 169.52c.773 1.288.257 3.09-.13 3.992M460.272 161.664c4.763.258 5.667 3.735 10.817 5.023" stroke-linecap="round" stroke-width=".41680000000000006"/>
<path d="M457.12 149.944c16.457 4.121 29.514 7.727 37.61 12.363 8.097 4.637 20.634 5.924 31.604 2.834 10.97-3.091 32.123-5.924 31.08 7.727 5.75-6.826-1.567-14.167-16.194-15.455.263-6.696-6.903-12.75-12.057-8.757 4.767-.644 8.88 8.242-.52 11.848 1.827-6.697-4.833-12.75-11.753-9.788 4.44 1.288 8.93 8.734-1.004 11.59-6.27 1.804-15.41-.514-22.2-4.635-6.79-4.122-44.923-19.06-36.566-7.727z" stroke-width=".41680000000000006"/>
<path d="M498.648 143.248c-5.15 2.318-1.803 7.727-9.786 10.818-7.987 3.09-13.524 10.173-11.72 16.226 5.41-11.848 14.94-11.333 18.286-15.969 3.35-4.636 8.243-11.461 3.22-11.075z" stroke-width=".41680000000000006"/>
<path d="M500.064 144.016c-.257 9.4-7.657 5.976-4.767 19.189.904 4.12 2.577 10.817-.256 17.514 8.306-6.052 2.963-18.768 6.696-23.567 1.804-2.318 4.12-5.924 5.024-9.014-1.934 5.408-1.804 15.454 3.476 18.03-4.25-10.046 11.464-18.288.644-29.878-1.544 2.833-6.44 7.855-10.817 7.727zM473.792 134.616c1.29 1.932 2.577 6.826 1.417 9.53 2.576-1.545 6.313-5.537 7.47-8.242 5.28.773 7.34 7.34 2.32 10.174 3.09 0 8.37 0 11.33-3.477-3.603-3.993-14.806-10.175-22.537-7.985z" stroke-width=".41680000000000006"/>
<path d="M393.688 116.144c-.833-.76-2.24-1.481-4.763-2-7.797-1.599-3.77-8.627 2.866-8.564 14.163-15.454 22.117-3.541 39.374-8.435 6.04-1.712 10.186-1.206 13.477.217 7.726-5.15 16.79-3.712 23.36 2.341.73-1.16 1.71-2.047 3.086-2.43 6.05-1.68 10.944 3.48 12.617 10.176 4.717-.874 10.103 1.46 13.647 4.68 4.906-2.52 8.286-2.632 9.53-.04 4.38-2.061 10.054-3.353 12.886 3.601 2.834 6.954-6.696 4.894-8.243 19.575-.953 9.057-11.073 12.621-19.06 7.212-12.773-8.653-25.24-10.045-31.423 3.09-6.18 13.137-11.023 20.769-26.014 16.485-5.406-1.546-12.363.515-16.74 6.439-4.38 5.924-11.076.386-19.06 1.03 10.044-1.545 6.197-4.072 14.94-4.636 7.984-.515 5.924-7.984 11.074-9.015-20.09 5.152-19.317-2.318-35.8 2.833 7.21-9.272 18.543-4.12 24.21-9.53-14.94-.257-21.62-10.017-28.333-5.923-10.56 6.439-5.927 24.772-33.483 23.18-13.394-.772-21.894 1.03-29.877 9.016 13.91-28.847 32.83-13 41.983-22.15 5.41-5.41 9.53-9.531 12.363-14.682.997-1.814 2.347-2.85 4.033-3.25-22.923-7.213-9.06-18.447 13.35-19.219z" stroke-width=".41680000000000006"/>
<path d="M506.872 112.088c.35.724.53 1.664.53 2.826 0 5.666-8.5 5.924-9.014 14.295-.27 4.379-.773 6.826-3.736 6.31-2.96-.515-5.537-5.15-2.704-10.56" stroke-linecap="round" stroke-width=".41680000000000006"/>
<path d="M397.936 107.704c-2.133-1.499-4.267-2.108-6.18-2.126M444.592 97.32c6.82 2.953 10.146 10.037 20.054 10.384 9.536.335 15.456 14.166 31.423 5.151.433-.244.856-.472 1.266-.683M468 99.704c-1.423 2.263-1.747 5.423-1.357 8.195M436.832 128.824c-12.103 0-15.197 6.181-15.197 12.106 0 5.924 5.667 13.65 15.714 13.65 10.043 0 15.453-6.18 15.453-12.878 0-6.697-6.183-12.878-15.97-12.878z" stroke-width=".41680000000000006"/>
<path d="M439.016 154.32c-.257-3.348-6.31-2.833-6.053-5.409.256-2.576 3.35-3.606 3.35-7.212s5.406-3.863 7.21-1.03c1.803 2.833 7.213 8.37 8.373 5.538M443.528 140.672c-2.833 2.833-4.12 8.628-.387 13.136M447.392 145.048c-.9 1.932-1.157 4.894-.127 6.697" stroke-width=".41680000000000006"/>
<path d="M495.488 135.584c9.466.773 11.077-9.66 3.993-10.302M483.84 107.448c-3.283-4.185-10.817-5.602-10.946 3.284" fill="none" stroke-width=".41680000000000006"/>
<path d="M471.992 120.84c-3.22-7.985-11.463-9.144-15.843-5.151-3.644 3.322-3.734 11.976 4.123 13.78 2.704-3.22 7.984-7.47 11.72-8.628zM468.448 115.816c-4.637-4.121-11.463 3.67-5.28 10.818M380.248 135.328c3.103-.737 7.64.782 14.597 4.054 4.38 2.06 17.517 6.44 25.757 2.06-8.5 3.091-14.937-9.787-21.377-8.242-6.44 1.546-18.223 3.928-23.18-.773 12.103.773 18.613-8.817 32.45-.515 3.867 2.318 8.76 3.864 13.137 3.606-11.33-13.651-26.27-4.894-27.817-15.969 6.827 7.341 23.503-1.674 32.003 12.106M396.264 121.608c-1.593-1.983-.873-3.96-2.583-5.524" stroke-width=".41680000000000006"/>
</g>
<path d="M483.84 107.448c-2.833-3.026-9.014-.644-7.277 5.474 1.354-2.833 4.25-5.216 7.277-5.474zM466.328 123.944c1.95-1.416 3.963-2.579 5.66-3.105-.927-2.292-2.263-4.021-3.807-5.228-1.473-1.018-5.706 4.675-1.853 8.333z" stroke="none"/>
<g fill="none" stroke-linecap="round">
<path d="M458.72 113.496c-4.637-3.09-8.886-2.833-10.303-.257-3.347-.13-6.117 2.318-6.247 7.211M449.32 122.512c-5.537-3.799-13.137-2.382-12.62 6.118M433.352 133.456c2.703-2.19 6.567-3.735 9.53.129M474.696 125.088c-1.03 1.416-1.803 3.606-.13 6.954-2.06-2.704-7.21-2.704-12.75 4.507M486.928 124.704c-6.697.773-6.567 5.151-1.16 7.083M439.28 108.344c-5.667-1.159-9.786 2.19-1.93 5.023M450.096 104.48c-7.987-1.932-11.206.129-7.6 1.932M427.04 136.552c-.257 2.833 1.287 6.568 5.923 2.318M428.592 145.048c0 .773-.13 1.674-.647 2.318M410.04 107.312c-4.893-1.417-5.793-5.924-.127-5.538M408.368 117.744c-5.41-1.803-5.41-7.083-.903-6.568M418.416 115.04c-6.31-1.546-6.567-5.924-1.8-5.28M419.184 101.648c-3.347-.257-8.5 3.477.13 5.667M428.592 109.12c-7.857-1.159-7.727 2.06-3.093 4.121M434.512 101.648c-6.053-1.159-8.114 2.447-3.993 3.992M415.456 123.928c-1.483-1.223-2.703-7.083 4.377-5.344M430.136 122.128c-4.763-1.288-9.27 3.348-4.893 6.053M436.44 116.592c-5.02-.902-9.27.515-6.567 2.318" stroke-width=".41680000000000006"/>
</g>
<path d="M483.568 107.448c-2.83.524-5.367 2.187-7.01 5.472" fill="#fff" stroke-width=".41680000000000006"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 40 KiB

-13
View File
@@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)">
<path fill="#fff" d="M-28 0h699.74v512H-28z"/>
<path fill="#d72828" d="M-52.992-77.837h218.72v276.26h-218.72zM289.42-.572h380.91v199H289.42zM-27.545 320.01h190.33v190.33h-190.33zM292 322.12h378.34v188.21H292z"/>
<path fill="#003897" d="M196.65-25.447h64.425v535.78H196.65z"/>
<path fill="#003897" d="M-27.545 224.84h697.88v63.444h-697.88z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 625 B

-7
View File
@@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" fill="#28ff09">
<g fill-rule="evenodd" fill-opacity="1">
<path fill="#00cbff" d="M0 0h640v480H0z"/>
<path fill="#fff" d="M0 160h640v160H0z"/>
<path fill="#000" d="M0 185.97h640v108.05H0z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 305 B

-61
View File
@@ -1,61 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h682.6v512H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)" transform="scale(.9376 .9375)">
<path fill="#b20000" d="M0 0h1024v340.11H0z"/>
<path fill="#429f00" d="M0 340.11h1024V512H0z"/>
<path fill="#fff" d="M0 0h113.37v512H0z"/>
<g stroke-width="1pt" fill="#b20000">
<path d="M5.394 8.682h5.398v8.68H5.394zm16.196 0h16.196v8.68H21.59zM26.983 0h5.398v8.68h-5.397zM53.98 0h5.4v8.68h-5.4zm21.59 8.682h16.197v8.68H75.57zM80.98 0h5.398v8.68H80.98z"/>
<path d="M16.196 17.36h10.798v8.68H16.196zm16.196 0H43.19v8.68H32.392zm37.785 0h10.798v8.68H70.177zm16.196 0H97.17v8.68H86.374zm-75.586 8.68h10.798v8.678H10.787zm26.999 0h10.797v8.678H37.786zm26.998 0H75.58v8.678H64.785zm26.983 0h10.797v8.678H91.767zM102.57 8.682h5.397v8.68h-5.398zM5.394 34.718h10.798v8.678H5.394zm37.786 0h10.797v8.678H43.18zm53.995 0h10.798v8.678H97.175zM10.787 60.75h10.798v8.68H10.787zm5.409 8.68h10.798v8.677H16.196zm21.59-8.68h10.797v8.68H37.786zm-5.394 8.68H43.19v8.677H32.392zM21.59 78.107h16.196v8.678H21.59z"/>
<path d="M26.983 86.784h5.398v8.68h-5.397zm37.801-26.032H75.58v8.678H64.785zm5.393 8.678h10.798v8.677H70.177zm21.59-8.68h10.797v8.68H91.767zm-5.394 8.68H97.17v8.677H86.374zM75.57 78.107h16.197v8.678H75.57z"/>
<path d="M80.98 86.784h5.398v8.68H80.98zm-27-8.677h5.4v8.678h-5.4zm-53.98 0h5.398v8.678H0zm107.963 0h5.398v8.678h-5.397zm-80.98 43.39h5.398v8.678h-5.397z"/>
<path d="M21.59 130.174h16.196v8.678H21.59zm-5.394 8.678H43.19v8.678H16.196zm64.784-17.355h5.398v8.678H80.98z"/>
<path d="M75.57 130.174h16.197v8.678H75.57zm-5.393 8.678H97.17v8.678H70.178zm5.393 43.39h26.994v8.678H75.57zM64.784 147.53h37.79v8.68h-37.79zm-53.997 0h37.79v8.68h-37.79zm5.409 43.39h16.196v8.678H16.196zm-5.409-8.678H37.78v8.678H10.788zm75.586-17.356h26.994v8.678H86.373zM80.98 190.92h16.195v8.678H80.98z"/>
<path d="M21.59 199.597h5.398v8.68H21.59zm64.783 0h5.398v8.68h-5.397zM0 164.886h26.994v8.678H0zm48.588 17.356h16.196v8.678H48.588zm5.392 8.678h5.4v8.678h-5.4zm-16.194-26.034h37.79v8.678h-37.79zM59.375 34.718h10.798v8.678H59.375z"/>
<path d="M48.588 43.395h16.196v8.678H48.588z"/>
<path d="M43.18 52.073h10.797v8.68H43.18zm16.195 0h10.798v8.68H59.375zM0 43.395h10.798v8.678H0z"/>
<path d="M5.394 52.073h10.798v8.68H5.394zm97.176-8.678h10.797v8.678H102.57zM97.175 52.073h10.798v8.68H97.175zM0 130.174h5.398v8.678H0zm107.963 0h5.398v8.678h-5.397zm-59.375 69.423h16.196v8.68H48.588z"/>
<path d="M43.18 208.276h10.797v8.678H43.18zm16.195 0h10.798v8.678H59.375zm-21.589 8.678h10.797v8.678H37.786zm26.998 0H75.58v8.678H64.785z"/>
<path d="M32.392 225.63H43.19v8.68H32.392zm37.785 0h10.798v8.68H70.177zm-43.194 8.68H37.78v8.678H26.984zm48.587 0h10.8v8.678h-10.8z"/>
<path d="M16.196 242.987h16.196v8.678H16.196zm64.784 0h16.195v8.678H80.98z"/>
<path d="M91.767 234.31h10.797v8.678H91.767zm5.408-8.68h10.798v8.68H97.175z"/>
<path d="M102.57 216.954h10.797v8.678H102.57zM10.787 234.31h10.798v8.678H10.787zm-5.393-8.68h10.798v8.68H5.394z"/>
<path d="M0 216.954h10.798v8.678H0zm21.59 34.711h5.398v8.678H21.59zm64.783 0h5.398v8.678h-5.397zM53.98 225.63h5.4v8.68h-5.4zm-16.194 26.035h5.398v8.678h-5.398zm32.391 0h5.398v8.678h-5.398zm-16.197 0h5.4v8.678h-5.4zm-53.98 0h5.398v8.678H0zm107.963 0h5.398v8.678h-5.397zM53.98 130.174h5.4v8.678h-5.4zM26.983 43.395h5.398v8.678h-5.397zm53.997 0h5.398v8.678H80.98zM48.588 104.14h16.196v8.68H48.588z"/>
<path d="M37.786 112.818H53.98v8.68H37.787z"/>
<path d="M43.18 121.497h5.397v8.678H43.18zM32.392 104.14H43.19v8.68H32.392z"/>
<path d="M37.786 95.463H53.98v8.678H37.787z"/>
<path d="M43.18 86.784h5.397v8.68H43.18zm16.195 8.679H75.57v8.678H59.376z"/>
<path d="M64.784 86.784h5.398v8.68h-5.398zm5.393 17.356h10.798v8.68H70.177z"/>
<path d="M59.375 112.818H75.57v8.68H59.376z"/>
<path d="M64.784 121.497h5.398v8.678h-5.398zm21.589-17.357H97.17v8.68H86.374z"/>
<path d="M91.767 95.463h16.196v8.678H91.767z"/>
<path d="M102.57 104.14h10.797v8.68H102.57z"/>
<path d="M91.767 112.818h16.196v8.68H91.767z"/>
<path d="M97.175 121.497h5.4v8.678h-5.4zm0-34.713h5.4v8.68h-5.4zM0 104.14h10.798v8.68H0z"/>
<path d="M5.394 95.463H21.59v8.678H5.394z"/>
<path d="M16.196 104.14h10.798v8.68H16.196z"/>
<path d="M5.394 112.818H21.59v8.68H5.394z"/>
<path d="M10.787 121.497h5.398v8.678h-5.398zm0-34.713h5.398v8.68h-5.398zm-5.393 69.424h21.594v8.678H5.394zm26.998 0h21.594v8.678H32.392zm26.983 0H80.97v8.678H59.374zm26.998 0h21.594v8.678H86.373zM43.18 173.563h26.993v8.68H43.18zm-37.786 0h26.993v8.68H5.394zm75.586 0h26.993v8.68H80.98zm26.983 34.713h5.398v8.678h-5.397zM0 208.276h5.398v8.678H0zm5.394 295.051h5.398v-8.678H5.394zm16.196 0h16.196v-8.678H21.59z"/>
<path d="M26.983 511.997h5.398v-8.678h-5.397zm26.997 0h5.4v-8.678h-5.4zm21.59-8.67h16.197v-8.678H75.57z"/>
<path d="M80.98 511.997h5.398v-8.678H80.98zm-64.784-17.352h10.798v-8.678H16.196zm16.196 0H43.19v-8.678H32.392zm37.785 0h10.798v-8.678H70.177zm16.196 0H97.17v-8.678H86.374zm-48.587-8.682h10.797v-8.678H37.786zm26.998 0H75.58v-8.678H64.785zm26.983 0h10.797v-8.678H91.767zm10.803 17.364h5.397v-8.678h-5.398zM5.394 477.293h10.798v-8.678H5.394z"/>
<path d="M43.18 477.293h10.797v-8.678H43.18zm53.995 0h10.798v-8.678H97.175zM10.787 451.26h10.798v-8.68H10.787zm5.409-8.683h10.798V433.9H16.196zm21.59 8.683h10.797v-8.68H37.786zm-5.394-8.683H43.19V433.9H32.392zm-10.802-8.682h16.196v-8.678H21.59z"/>
<path d="M26.983 425.225h5.398v-8.678h-5.397zm37.801 26.035H75.58v-8.68H64.785zm5.393-8.683h10.798V433.9H70.177zm21.59 8.683h10.797v-8.68H91.767zm-5.394-8.683H97.17V433.9H86.374zm-10.803-8.682h16.197v-8.678H75.57z"/>
<path d="M80.98 425.225h5.398v-8.678H80.98zm-27 8.67h5.4v-8.678h-5.4zm-53.98 0h5.398v-8.678H0zm107.963 0h5.398v-8.678h-5.397zm-80.98-43.385h5.398v-8.68h-5.397z"/>
<path d="M21.59 381.84h16.196v-8.68H21.59zm-5.394-8.682H43.19v-8.68H16.196zM80.98 390.51h5.398v-8.68H80.98z"/>
<path d="M75.57 381.84h16.197v-8.68H75.57zm-5.393-8.682H97.17v-8.68H70.178zm5.393-43.386h26.994v-8.68H75.57zm-10.786 34.703h37.79v-8.678h-37.79zm-53.997 0h37.79v-8.678h-37.79zm5.409-43.385h16.196v-8.682H16.196zm-5.409 8.682H37.78v-8.68H10.788zm75.586 17.352h26.994v-8.68H86.373zM80.98 321.09h16.195v-8.68H80.98zM0 347.124h26.994v-8.68H0zm48.588-17.352h16.196v-8.68H48.588zm5.392-8.682h5.4v-8.68h-5.4zm-16.194 26.034h37.79v-8.68h-37.79zm21.589 130.169h10.798v-8.678H59.375zm-10.787-8.683h16.196v-8.677H48.588zm-5.408-8.68h10.797v-8.68H43.18zm16.195 0h10.798v-8.68H59.375zM0 468.61h10.798v-8.677H0zm5.394-8.68h10.798v-8.68H5.394zm97.176 8.68h10.797v-8.677H102.57zm-5.395-8.68h10.798v-8.68H97.175zM0 381.84h5.398v-8.68H0zm107.963 0h5.398v-8.68h-5.397zM43.18 303.738h10.797v-8.68H43.18zm16.195 0h10.798v-8.68H59.375zm-21.589-8.682h10.797v-8.68H37.786zm26.998 0H75.58v-8.68H64.785zm-32.392-8.682H43.19v-8.68H32.392zm37.785 0h10.798v-8.68H70.177z"/>
<path d="M26.983 277.704H37.78v-8.68H26.984zm48.587 0h10.8v-8.68h-10.8zm-59.374-8.682h16.196v-8.68H16.196zm64.784 0h16.195v-8.68H80.98zm10.787 8.682h10.797v-8.68H91.767z"/>
<path d="M97.175 286.374h10.798v-8.68H97.175zm5.395 8.682h10.797v-8.68H102.57zm-91.783-17.352h10.798v-8.68H10.787z"/>
<path d="M5.394 286.374h10.798v-8.68H5.394zM0 295.056h10.798v-8.68H0zm21.59-34.713h5.398v-8.678H21.59zm32.39 26.031h5.4v-8.68h-5.4zm0 95.466h5.4v-8.68h-5.4zm-26.997 86.77h5.398v-8.677h-5.397zm53.997 0h5.398v-8.677H80.98zm-32.392-60.737h16.196v-8.678H48.588zm-10.802-8.683H53.98v-8.677H37.787zm5.394-8.68h5.397v-8.68H43.18zm-10.788 17.363H43.19v-8.678H32.392z"/>
<path d="M37.786 416.543H53.98v-8.678H37.787zm5.394 8.682h5.397v-8.678H43.18zm16.195-8.682H75.57v-8.678H59.376zm5.409 8.682h5.398v-8.678h-5.398z"/>
<path d="M70.177 407.873h10.798v-8.678H70.177zm-10.802-8.683H75.57v-8.677H59.376zm5.409-8.68h5.398v-8.68h-5.398zm21.589 17.363H97.17v-8.678H86.374z"/>
<path d="M91.767 416.543h16.196v-8.678H91.767z"/>
<path d="M102.57 407.873h10.797v-8.678H102.57zm-10.803-8.683h16.196v-8.677H91.767zm5.408-8.68h5.4v-8.68h-5.4zm0 34.715h5.4v-8.678h-5.4zM0 407.873h10.798v-8.678H0z"/>
<path d="M5.394 416.543H21.59v-8.678H5.394z"/>
<path d="M16.196 407.873h10.798v-8.678H16.196zM5.394 399.19H21.59v-8.677H5.394zm5.393-8.68h5.398v-8.68h-5.398zm0 34.715h5.398v-8.678h-5.398zm-5.393-69.419h21.594v-8.68H5.394zm26.998 0h21.594v-8.68H32.392zm26.983 0H80.97v-8.68H59.374zm26.998 0h21.594v-8.68H86.373zM43.18 338.442h26.993v-8.68H43.18zm-37.786 0h26.993v-8.68H5.394zm75.586 0h26.993v-8.68H80.98zm26.983-34.704h5.398v-8.68h-5.397zM0 303.738h5.398v-8.68H0zm48.588-43.395h5.398v8.68h-5.398zm10.787 0h5.398v8.68h-5.398zm0-17.356h5.398v8.678h-5.398zm-10.787 0h5.398v8.678h-5.398zM10.787 477.293h10.798v8.68H10.787zm75.586-164.885h5.398v-8.68h-5.397zm-64.783 0h5.398v-8.68H21.59zm26.995-8.674H64.78v8.677H48.585z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 54 KiB

-11
View File
@@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" fill="#28ff09">
<defs>
<clipPath id="a">
<path fill-opacity=".67" fill="#000" d="M-79.06 0h682.67v512H-79.06z"/>
</clipPath>
</defs>
<g fill-opacity="1" clip-path="url(#a)" transform="translate(74.118) scale(.9375)">
<path fill="#fff" d="M81.137 0h362.276v512H81.137z"/>
<path fill="#bf0a30" d="M-100 0H81.138v512H-100zm543.413 0H624.55v512H443.414zM135.31 247.41l-14.067 4.808 65.456 57.446c4.95 14.764-1.72 19.116-5.97 26.86l71.06-9.02-1.85 71.512 14.718-.423-3.21-70.918 71.13 8.432c-4.402-9.297-8.32-14.233-4.247-29.098l65.414-54.426-11.447-4.144c-9.36-7.222 4.044-34.784 6.066-52.178 0 0-38.195 13.135-40.698 6.262l-9.727-18.685-34.747 38.17c-3.796.91-5.413-.6-6.304-3.808l16.053-79.766-25.42 14.297c-2.128.91-4.256.125-5.658-2.355l-24.45-49.06-25.21 50.95c-1.9 1.826-3.803 2.037-5.382.796l-24.204-13.578 14.53 79.143c-1.156 3.14-3.924 4.025-7.18 2.324l-33.216-37.737c-4.345 6.962-7.29 18.336-13.033 20.885-5.744 2.387-24.98-4.823-37.873-7.637 4.404 15.895 18.176 42.302 9.46 50.957z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

-19
View File
@@ -1,19 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" version="1">
<defs>
<path d="M0-360l69.42 215.845 212.04-80.3L155.987-35.604l194.986 115.71-225.88 19.65 31.104 224.592L0 160l-156.198 164.35 31.105-224.592-225.88-19.65 194.985-115.71-125.47-188.854 212.037 80.3z" id="a"/>
<path d="M0-210L54.86-75.508l144.862 10.614L88.765 28.842l34.67 141.052L0 93.334l-123.435 76.56 34.67-141.052-110.957-93.736L-54.86-75.508z" id="b"/>
</defs>
<path fill="green" d="M0 0h640v480H0z"/>
<circle cx="320" cy="240" r="66.667" fill="#ffe000"/>
<circle cx="340.787" cy="240" r="54.857" fill="green"/>
<circle cx="109.841" cy="173.333" r="69.841" fill="#ffe000"/>
<path d="M105.022 225.994h17.44s.787-1.6-.176-2.398c-.963-.8-4.713-.975-3.7-3.803 2.083-5.813 2.374-4.02 3.682-17.827 1.308-13.806 1.937-35.46 1.937-35.46h-2.52s.486 6.734-.967 15.502c-1.454 8.77-1.89 9.543-3.488 16.277-1.6 6.733-1.84 7.314-3.294 11.238-1.453 3.924-1.6 4.118-3.876 7.75-2.276 3.634-1.453 2.277-2.712 4.457-.63 1.09-1.405.8-1.83 1.593-.423.793-.496 2.67-.496 2.67z" fill="#802000" stroke="#7b3100" stroke-width="1.481"/>
<path d="M118.33 122.45c.145 2.71-.127 6.295-1.25 9.213-1.138 3.252-2.376 6.494-2.315 9.86-1.81.617-3.674-3.915-5.416-1.25 1.308 3.685 4.33 6.6 6.403 9.92.35 1.03 3.33 3.716 1.605 4.34-4.353-1.49-5.407-7.003-8.107-10.352-3.134-5.634-8.98-9.617-15.49-9.892-2.447.064-10.4-.607-8.33 3.582 3.047 2.072 6.802 3.423 9.81 5.748 2.243.21 6.306 3.952 6.07 5.367-3.944-1.597-5.79-3.512-10.037-5.19-5.757-2.225-13.72-.887-16.905 4.825-.594 1.488-1.47 5.824.397 6.238 2.183-3.41 5.306-7.22 9.933-6.197 3.635.285-4.055 6.772-1.114 5.466.932-.413 3.085-1.826 4.578-1.974 1.493-.147 2.327.97 3.46 1.125 2.266.31 2.89 1.26 2.68 1.812-.248.65-.968.094-3.27.825-1.153.365-1.754 1.377-3.098 1.84-1.343.464-4.138.496-5.182.086-3.654-1.586-9.644-1.31-10.783 3.268-.002 2.014-1.794-.222-2.622.648-.62 2.197-.78 4.453-4.04 4.253-1.978 2.074-4.004 4.223-6.515 5.7 1.474 3.383 7.314-3.398 7.04-.54-2.552 3.482 1.314 4.215 3.007 1.535 2.863-3.025 6.408-6.706 10.68-3.658 2.035 1.915 3.217-1.013 4.69-.856.927 2.38 2.095.118 3.148-.555 1.723-.214 1.238 2.153 3.287.695 4.082-2.702 9.104-.432 13.092-3.06 4.244-1.934.596 1.557-.576 2.922-1.864 3.617-.247 8.366-4.292 10.612-1.625 4.31 1.92 9.994-1.696 13.183-.525 2 4.65 1.77 6.103 2.593 2.545.1-.11-5.826 2.416-6.62 3.388 2.096 3.23-3.75 2.53-5.553.328-4.098.56-8.58 2.596-12.292 2.165-4.55 4.17 1.853 1.746 3.655-1.377 4.183-3.38 9.42-.25 13.31.902.202 1.643 2.39 2.81 3.06 1.17.673 2.765-.17 3.056-2.16 1.498-5.99.743-12.434 2.883-18.26 1.512-1.806 3.595-.292 4.532 1.368 3 3.48 5.107 7.833 8.737 10.702 3.305 1.547 6.228 3.886 7.75 7.29-.02 2.625 7.46 3.027 5.224.11-2.144-2.842-.73-5.684 1.442-7.573 1.163.287.82-1.796-.092-.972-1.46-.345-1.554-3.017.476-1.747 3.418 1.104-.267-2.474-1.502-2.583-2.89-1.792-6.21-3.853-7.632-6.967 3.762.04 7.668 2.068 11.512.81 3.082-1.584 6.208.13 7.284 2.848 2.382-.38 1.367-2.77 0-3.565 1.743-.718 2.948-2.21.835-3.524-1.116-1.456 1.496-3.94-1.714-3.836.104-2.453-.86-4.697-3.534-5.544-2.68-2.268-10.538 3.34-10.31-1.77-.792-2.783 3.192-.373 4.306-1.76 1.15-2.933-5.482-2.647-3.294-4.92 1.43-.92 8.137-2.243 2.877-3.227-2.626.72-4.88.186-6.945-1.113-1.883 3.15-7.26-1.71-6.302 3.89-.736 2.108-5.54 7.59-6.842 3.39 1.107-3.29 6.8-4.368 5.035-8.806-.27-2.77-2.568.483-3.65.276-.548-1.724 1.658-3.757 3.195-4.166 3.05 2.346 3.142-2.96 6.043-2.528 2.118-.47-.684-1.38-1.275-1.778.58-1.55 3.832-2.342.644-3.688-2.813-2.087-4.898 2.077-7.218 2.3-2.227-2.515 2.022-3.723 3.194-5.047.063-.988-2.477-.3-1.713-1.158.664-1.187 5.162-1.275 3.056-3.056-3.17-1.09-7.265-.818-10.31.593-1.916.62-2.48 4.956-4.134 4.776-.777-1.93.253-5.738-2.407-6.296zm15 42.362c2.417-.41.05 3.67-1.11 3.61.102-1.465-3.497-1.324-1.264-2.6a7.277 7.277 0 0 1 2.374-1.01z" fill="green"/>
<g transform="translate(0 80) scale(.0635)" fill="#ffe000">
<use height="100%" width="100%" xlink:href="#a" x="7560" y="4200"/>
<use height="100%" width="100%" xlink:href="#a" x="6300" y="2205"/>
<use height="100%" width="100%" xlink:href="#a" x="7560" y="840"/>
<use height="100%" width="100%" xlink:href="#a" x="8680" y="1869"/>
<use height="100%" width="100%" xlink:href="#b" x="8064" y="2730"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

-5
View File
@@ -1,5 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<path fill="#007fff" d="M0 0h640v480H0z"/>
<path d="M28.8 96H96l20.8-67.2L137.6 96h67.2l-54.4 41.6 20.8 67.2-54.4-41.6-54.4 41.6 20.8-67.2L28.8 96zM600 0L0 360v120h40l600-360V0h-40" fill="#f7d618"/>
<path d="M640 0L0 384v96L640 96V0" fill="#ce1021"/>
</svg>

Before

Width:  |  Height:  |  Size: 330 B

-15
View File
@@ -1,15 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M-12.355 32h640v480h-640z"/>
</clipPath>
</defs>
<g clip-path="url(#a)" fill-rule="evenodd" transform="translate(12.355 -32)">
<path fill="#00f" d="M-52 32h719.29v118.94H-52z"/>
<path fill="#ff0" d="M-52 391.65h719.29V512H-52z"/>
<path fill="#009a00" d="M-52 271.3h719.29v120.35H-52z"/>
<path fill="#fff" d="M-52 150.94h719.29v120.35H-52z"/>
<path fill="red" d="M247.7 32.474h119.88v479.53H247.7z"/>
<path fill="#ff0" d="M99.253 137.653L67.837 115.93l-31.314 21.937 10.87-36.717-30.457-23.118 38.14-.968 12.49-36.22 12.702 36.113 38.173.732-30.284 23.288"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 735 B

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