feat: new logo, regenerate all favicons and OG image, switch partial to img
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@@ -625,35 +625,3 @@ footer nav a.label:hover svg {
|
|||||||
from { opacity: 0; transform: translateY(14px); }
|
from { opacity: 0; transform: translateY(14px); }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ── Logo bloom animation ──────────────────────────────────── */
|
|
||||||
.logo-r1, .logo-r2, .logo-r3 {
|
|
||||||
transform-box: fill-box;
|
|
||||||
transform-origin: 50% 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Inner two rings spin + breathe; outer ring blooms */
|
|
||||||
.logo-bloom:not(.logo-static) .logo-r3 {
|
|
||||||
animation: logo-cw 12s linear infinite, logo-breath-r3 5s ease-in-out 1.2s infinite;
|
|
||||||
}
|
|
||||||
.logo-bloom:not(.logo-static) .logo-r2 {
|
|
||||||
animation: logo-ccw 20s linear infinite, logo-breath-r2 5s ease-in-out 0.6s infinite;
|
|
||||||
}
|
|
||||||
.logo-bloom:not(.logo-static) .logo-r1 {
|
|
||||||
animation: logo-cw 40s linear infinite, logo-bloom-r1 5s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes logo-cw { to { rotate: 360deg; } }
|
|
||||||
@keyframes logo-ccw { to { rotate: -360deg; } }
|
|
||||||
|
|
||||||
@keyframes logo-breath-r3 {
|
|
||||||
0%, 100% { scale: 1; }
|
|
||||||
50% { scale: 0.97; }
|
|
||||||
}
|
|
||||||
@keyframes logo-breath-r2 {
|
|
||||||
0%, 100% { scale: 1; }
|
|
||||||
50% { scale: 0.92; }
|
|
||||||
}
|
|
||||||
@keyframes logo-bloom-r1 {
|
|
||||||
0%, 100% { scale: 1; }
|
|
||||||
50% { scale: 0.85; }
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
<!-- Brand -->
|
<!-- Brand -->
|
||||||
<div>
|
<div>
|
||||||
<a href="/" class="block mb-4 hover:opacity-90 transition-opacity w-fit" aria-label="{{ .Site.Title }} Home">
|
<a href="/" class="block mb-4 hover:opacity-90 transition-opacity w-fit" aria-label="{{ .Site.Title }} Home">
|
||||||
{{- partial "logo.html" (dict "id" "footer" "class" "h-10 w-auto logo-static") -}}
|
{{- partial "logo.html" (dict "id" "footer" "class" "h-10 w-auto") -}}
|
||||||
</a>
|
</a>
|
||||||
<p class="label text-fog max-w-xs leading-loose">{{ .Site.Params.description }}</p>
|
<p class="label text-fog max-w-xs leading-loose">{{ .Site.Params.description }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,79 +1,8 @@
|
|||||||
{{- /*
|
{{- /*
|
||||||
Inline SVG logo — faceted polygon peony, no background, no stroke.
|
Logo image.
|
||||||
Usage: {{ partial "logo.html" (dict "class" "h-8 w-auto") }}
|
Usage: {{ partial "logo.html" (dict "class" "h-8 w-auto") }}
|
||||||
Params:
|
Params:
|
||||||
class — CSS classes on the <svg> element (default: "h-9 w-auto")
|
class — CSS classes on the <img> element (default: "h-9 w-auto")
|
||||||
*/ -}}
|
*/ -}}
|
||||||
{{- $class := .class | default "h-9 w-auto" -}}
|
{{- $class := .class | default "h-9 w-auto" -}}
|
||||||
<svg class="{{ $class }} logo-bloom" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" aria-label="{{ site.Title }}" role="img" overflow="hidden">
|
<img src="/logo.svg" class="{{ $class }}" alt="{{ site.Title }}" width="512" height="512">
|
||||||
<!-- ring 1 — 8 outer petals -->
|
|
||||||
<g class="logo-r1">
|
|
||||||
<polygon points="65.12,49.96 80.71,12.09 93.17,65.67" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="80.71,12.09 119.29,12.09 106.83,65.67 93.17,65.67" fill="#FFB3D9" stroke="none"/>
|
|
||||||
<polygon points="119.29,12.09 134.88,49.96 106.83,65.67" fill="#FF80BC" stroke="none"/>
|
|
||||||
<polygon points="110.72,39.95 148.52,24.20 119.44,70.90" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="148.52,24.20 175.80,51.48 129.10,80.56 119.44,70.90" fill="#FFB3D9" stroke="none"/>
|
|
||||||
<polygon points="175.80,51.48 160.05,89.28 129.10,80.56" fill="#FF80BC" stroke="none"/>
|
|
||||||
<polygon points="150.04,65.12 187.91,80.71 134.33,93.17" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="187.91,80.71 187.91,119.29 134.33,106.83 134.33,93.17" fill="#FFB3D9" stroke="none"/>
|
|
||||||
<polygon points="187.91,119.29 150.04,134.88 134.33,106.83" fill="#FF80BC" stroke="none"/>
|
|
||||||
<polygon points="160.05,110.72 175.80,148.52 129.10,119.44" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="175.80,148.52 148.52,175.80 119.44,129.10 129.10,119.44" fill="#FFB3D9" stroke="none"/>
|
|
||||||
<polygon points="148.52,175.80 110.72,160.05 119.44,129.10" fill="#FF80BC" stroke="none"/>
|
|
||||||
<polygon points="134.88,150.04 119.29,187.91 106.83,134.33" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="119.29,187.91 80.71,187.91 93.17,134.33 106.83,134.33" fill="#FFB3D9" stroke="none"/>
|
|
||||||
<polygon points="80.71,187.91 65.12,150.04 93.17,134.33" fill="#FF80BC" stroke="none"/>
|
|
||||||
<polygon points="89.28,160.05 51.48,175.80 80.56,129.10" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="51.48,175.80 24.20,148.52 70.90,119.44 80.56,129.10" fill="#FFB3D9" stroke="none"/>
|
|
||||||
<polygon points="24.20,148.52 39.95,110.72 70.90,119.44" fill="#FF80BC" stroke="none"/>
|
|
||||||
<polygon points="49.96,134.88 12.09,119.29 65.67,106.83" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="12.09,119.29 12.09,80.71 65.67,93.17 65.67,106.83" fill="#FFB3D9" stroke="none"/>
|
|
||||||
<polygon points="12.09,80.71 49.96,65.12 65.67,93.17" fill="#FF80BC" stroke="none"/>
|
|
||||||
<polygon points="39.95,89.28 24.20,51.48 70.90,80.56" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="24.20,51.48 51.48,24.20 80.56,70.90 70.90,80.56" fill="#FFB3D9" stroke="none"/>
|
|
||||||
<polygon points="51.48,24.20 89.28,39.95 80.56,70.90" fill="#FF80BC" stroke="none"/>
|
|
||||||
</g>
|
|
||||||
<!-- ring 2 — 7 mid petals -->
|
|
||||||
<g class="logo-r2">
|
|
||||||
<polygon points="90.47,62.18 111.63,43.18 104.23,81.48" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="111.63,43.18 137.17,55.48 111.85,85.15 104.23,81.48" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="137.17,55.48 135.51,83.87 111.85,85.15" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="123.63,68.97 151.68,73.67 117.12,91.76" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="151.68,73.67 157.99,101.30 119.00,100.00 117.12,91.76" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="157.99,101.30 134.75,117.71 119.00,100.00" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="138.99,99.12 152.81,123.99 117.12,108.24" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="152.81,123.99 135.14,146.15 111.85,114.85 117.12,108.24" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="135.14,146.15 107.82,138.21 111.85,114.85" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="124.99,129.94 114.17,156.24 104.23,118.52" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="114.17,156.24 85.83,156.24 95.77,118.52 104.23,118.52" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="85.83,156.24 75.01,129.94 95.77,118.52" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="92.18,138.21 64.86,146.15 88.15,114.85" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="64.86,146.15 47.19,123.99 82.88,108.24 88.15,114.85" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="47.19,123.99 61.01,99.12 82.88,108.24" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="65.25,117.71 42.01,101.30 81.00,100.00" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="42.01,101.30 48.32,73.67 82.88,91.76 81.00,100.00" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="48.32,73.67 76.37,68.97 82.88,91.76" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="64.49,83.87 62.83,55.48 88.15,85.15" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="62.83,55.48 88.37,43.18 95.77,81.48 88.15,85.15" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="88.37,43.18 109.53,62.18 95.77,81.48" fill="#FF1A8C" stroke="none"/>
|
|
||||||
</g>
|
|
||||||
<!-- ring 3 — 5 inner petals + core -->
|
|
||||||
<g class="logo-r3">
|
|
||||||
<polygon points="82.63,88.20 89.16,69.89 97.53,92.39" fill="#990050" stroke="none"/>
|
|
||||||
<polygon points="89.16,69.89 110.84,69.89 102.47,92.39 97.53,92.39" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="110.84,69.89 117.37,88.20 102.47,92.39" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="105.86,79.83 125.28,80.39 106.47,95.30" fill="#990050" stroke="none"/>
|
|
||||||
<polygon points="125.28,80.39 131.98,101.01 108.00,100.00 106.47,95.30" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="131.98,101.01 116.59,112.87 108.00,100.00" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="120.99,99.34 126.47,117.99 106.47,104.70" fill="#990050" stroke="none"/>
|
|
||||||
<polygon points="126.47,117.99 108.93,130.73 102.47,107.61 106.47,104.70" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="108.93,130.73 92.89,119.76 102.47,107.61" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="107.11,119.76 91.07,130.73 97.53,107.61" fill="#990050" stroke="none"/>
|
|
||||||
<polygon points="91.07,130.73 73.53,117.99 93.53,104.70 97.53,107.61" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="73.53,117.99 79.01,99.34 93.53,104.70" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="83.41,112.87 68.02,101.01 92.00,100.00" fill="#990050" stroke="none"/>
|
|
||||||
<polygon points="68.02,101.01 74.72,80.39 93.53,95.30 92.00,100.00" fill="#FF1A8C" stroke="none"/>
|
|
||||||
<polygon points="74.72,80.39 94.14,79.83 93.53,95.30" fill="#CC1070" stroke="none"/>
|
|
||||||
<polygon points="100.00,95.00 104.76,98.45 102.94,104.05 97.06,104.05 95.24,98.45" fill="#880044" stroke="none"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 842 B After Width: | Height: | Size: 661 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,64 +1,418 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" role="img" overflow="hidden">
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
<polygon points="65.12,49.96 80.71,12.09 93.17,65.67" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="80.71,12.09 119.29,12.09 106.83,65.67 93.17,65.67" fill="#FFB3D9" stroke="none"/>
|
<svg
|
||||||
<polygon points="119.29,12.09 134.88,49.96 106.83,65.67" fill="#FF80BC" stroke="none"/>
|
width="1023.9999"
|
||||||
<polygon points="110.72,39.95 148.52,24.20 119.44,70.90" fill="#FF4DA0" stroke="none"/>
|
height="1023.9999"
|
||||||
<polygon points="148.52,24.20 175.80,51.48 129.10,80.56 119.44,70.90" fill="#FFB3D9" stroke="none"/>
|
viewBox="0 0 270.93331 270.93331"
|
||||||
<polygon points="175.80,51.48 160.05,89.28 129.10,80.56" fill="#FF80BC" stroke="none"/>
|
version="1.1"
|
||||||
<polygon points="150.04,65.12 187.91,80.71 134.33,93.17" fill="#FF4DA0" stroke="none"/>
|
id="svg1"
|
||||||
<polygon points="187.91,80.71 187.91,119.29 134.33,106.83 134.33,93.17" fill="#FFB3D9" stroke="none"/>
|
xml:space="preserve"
|
||||||
<polygon points="187.91,119.29 150.04,134.88 134.33,106.83" fill="#FF80BC" stroke="none"/>
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
<polygon points="160.05,110.72 175.80,148.52 129.10,119.44" fill="#FF4DA0" stroke="none"/>
|
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||||
<polygon points="175.80,148.52 148.52,175.80 119.44,129.10 129.10,119.44" fill="#FFB3D9" stroke="none"/>
|
id="defs1"><linearGradient
|
||||||
<polygon points="148.52,175.80 110.72,160.05 119.44,129.10" fill="#FF80BC" stroke="none"/>
|
id="Gradient1"
|
||||||
<polygon points="134.88,150.04 119.29,187.91 106.83,134.33" fill="#FF4DA0" stroke="none"/>
|
gradientUnits="userSpaceOnUse"
|
||||||
<polygon points="119.29,187.91 80.71,187.91 93.17,134.33 106.83,134.33" fill="#FFB3D9" stroke="none"/>
|
x1="894.22803"
|
||||||
<polygon points="80.71,187.91 65.12,150.04 93.17,134.33" fill="#FF80BC" stroke="none"/>
|
y1="631.01099"
|
||||||
<polygon points="89.28,160.05 51.48,175.80 80.56,129.10" fill="#FF4DA0" stroke="none"/>
|
x2="1010.66"
|
||||||
<polygon points="51.48,175.80 24.20,148.52 70.90,119.44 80.56,129.10" fill="#FFB3D9" stroke="none"/>
|
y2="438.11801"><stop
|
||||||
<polygon points="24.20,148.52 39.95,110.72 70.90,119.44" fill="#FF80BC" stroke="none"/>
|
class="stop0"
|
||||||
<polygon points="49.96,134.88 12.09,119.29 65.67,106.83" fill="#FF4DA0" stroke="none"/>
|
offset="0"
|
||||||
<polygon points="12.09,119.29 12.09,80.71 65.67,93.17 65.67,106.83" fill="#FFB3D9" stroke="none"/>
|
stop-opacity="1"
|
||||||
<polygon points="12.09,80.71 49.96,65.12 65.67,93.17" fill="#FF80BC" stroke="none"/>
|
stop-color="rgb(140,1,93)"
|
||||||
<polygon points="39.95,89.28 24.20,51.48 70.90,80.56" fill="#FF4DA0" stroke="none"/>
|
id="stop1" /><stop
|
||||||
<polygon points="24.20,51.48 51.48,24.20 80.56,70.90 70.90,80.56" fill="#FFB3D9" stroke="none"/>
|
class="stop1"
|
||||||
<polygon points="51.48,24.20 89.28,39.95 80.56,70.90" fill="#FF80BC" stroke="none"/>
|
offset="1"
|
||||||
<polygon points="90.47,62.18 111.63,43.18 104.23,81.48" fill="#CC1070" stroke="none"/>
|
stop-opacity="1"
|
||||||
<polygon points="111.63,43.18 137.17,55.48 111.85,85.15 104.23,81.48" fill="#FF4DA0" stroke="none"/>
|
stop-color="rgb(194,0,124)"
|
||||||
<polygon points="137.17,55.48 135.51,83.87 111.85,85.15" fill="#FF1A8C" stroke="none"/>
|
id="stop2" /></linearGradient></defs><g
|
||||||
<polygon points="123.63,68.97 151.68,73.67 117.12,91.76" fill="#CC1070" stroke="none"/>
|
id="layer1"><g
|
||||||
<polygon points="151.68,73.67 157.99,101.30 119.00,100.00 117.12,91.76" fill="#FF4DA0" stroke="none"/>
|
style="display:block"
|
||||||
<polygon points="157.99,101.30 134.75,117.71 119.00,100.00" fill="#FF1A8C" stroke="none"/>
|
id="g255"
|
||||||
<polygon points="138.99,99.12 152.81,123.99 117.12,108.24" fill="#CC1070" stroke="none"/>
|
transform="matrix(0.16293793,0,0,0.16293793,-31.311826,-0.15007564)"><path
|
||||||
<polygon points="152.81,123.99 135.14,146.15 111.85,114.85 117.12,108.24" fill="#FF4DA0" stroke="none"/>
|
fill="url(#Gradient1)"
|
||||||
<polygon points="135.14,146.15 107.82,138.21 111.85,114.85" fill="#FF1A8C" stroke="none"/>
|
d="m 1365.97,352.26 c 33.44,5.967 66.93,11.685 100.45,17.154 7.06,1.205 36.51,5.725 42.13,7.538 12.83,32.618 23.38,67.736 35.84,100.628 4.83,12.758 9.79,28.918 15.4,41.225 -5.95,16.059 -13.35,31.899 -19.75,47.778 -2.42,5.995 -7.15,16.083 -8.85,21.965 l 1.3,2.475 c 6.72,9.453 11.58,20.042 17.45,30.061 12.61,-3.767 116.54,-40.481 120.85,-39.213 3.62,14.985 36.79,182.752 35.32,187.364 l -0.54,0.551 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 13.38,5.544 29.44,10.792 41.45,18.873 13.88,9.337 35.29,50.507 45.18,66.427 -18.32,41.08 -37.86,90.21 -54.74,132.42 l -3.46,1.81 -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 -10.98,-5.85 -35.51,-15.21 -47.52,-20.19 -32.74,-13.44 -65.41,-27.07 -97.99,-40.9 l -9.85,-4.07 c -1.61,-18.56 -8.32,-30.82 -10.75,-46.59 l -0.81,-0.05 c -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 -5.84,-3.94 -37.13,-92.83 -44.59,-107.53 l 0.06,-1.39 -2.43,-0.37 c -1.58,5.55 -4.32,12.29 -6.61,17.7 -10.71,25.41 -17.66,53.75 -28.506,78.95 -9.135,0.26 -27.263,-1.78 -37.158,-2.22 -30.792,-1.37 -62.574,-4.39 -93.331,-4.88 -1.011,1.35 -4.477,5.83 -4.829,7.19 -16.283,18.06 -66.819,84.55 -81.343,92.99 -9.135,5.3 -20.103,8.7 -29.949,12.59 -19.846,7.84 -39.863,15.51 -59.412,24.06 -1.616,0.88 -4.343,2.6 -6.293,2.01 -16.907,-5.09 -33.722,-10.5 -50.597,-15.7 l -141.863,-43.64 -1.349,-0.48 c -1.578,-1.84 -37.901,-161.82 -40.523,-180.2 l 1.905,-1.64 c 9.348,-3.19 21.679,-10.04 30.963,-14.18 24.726,-11.04 51.755,-25.84 76.793,-35.632 L 401.605,916.54 C 385.408,859.501 372.125,801.088 356.551,743.836 351.705,726.02 346.794,707.569 342.947,689.53 l -1.637,-5.522 -0.326,-1.982 c 2.897,-5.081 105.919,-97.431 109.126,-98.684 20.966,6.087 69.886,18.942 87.336,26.713 -3.622,-10.027 -23.182,-64.819 -23.325,-73.144 1.824,-8.153 6.235,-20.431 8.957,-28.876 l 17.109,-53.238 15.328,-48.164 c 2.244,-7.056 6.385,-21.554 9.438,-27.311 15.511,-0.507 34.422,-2.528 50.088,-3.806 l 90.161,-7.37 -0.088,0.489 c 4.117,2.492 49.463,58.613 52.173,64.983 9.835,-4.681 41.58,-22.401 49.049,-24.471 l 2.165,0.344 c 6.065,8.521 11.805,23.879 17.589,33.342 5.23,-7.227 15.771,-22.985 21.476,-28.626 2.491,-2.502 29.411,-14.46 35.342,-17.311 10.66,-4.966 26.822,-11.887 36.567,-17.559 0.914,3.415 9.303,39.95 9.162,41.9 22.741,6.322 45.533,12.46 68.373,18.413 8.15,2.162 26.87,7.674 34.45,8.908 l 1.34,1.646 2.03,-0.852 0.37,0.571 2.8,0.169 c 31.8,-3.509 67.54,-6.688 98.96,-11.301 16.54,-3.203 44.69,-4.684 58.05,-8.727 l 18.53,13.351 c 3.91,9.183 8.58,21.098 12.76,29.828 3.9,-13.61 11.13,-45.151 17,-56.151 5.63,1.106 125.79,62.383 136.49,69.008 -17.13,-34.359 -36.69,-69.174 -54.37,-103.502 13.22,-9.993 27.08,-20.809 40.55,-30.338 z"
|
||||||
<polygon points="124.99,129.94 114.17,156.24 104.23,118.52" fill="#CC1070" stroke="none"/>
|
id="path3"
|
||||||
<polygon points="114.17,156.24 85.83,156.24 95.77,118.52 104.23,118.52" fill="#FF4DA0" stroke="none"/>
|
style="fill:url(#Gradient1)" /><path
|
||||||
<polygon points="85.83,156.24 75.01,129.94 95.77,118.52" fill="#FF1A8C" stroke="none"/>
|
fill="#d3105e"
|
||||||
<polygon points="92.18,138.21 64.86,146.15 88.15,114.85" fill="#CC1070" stroke="none"/>
|
d="m 1365.97,352.26 c 33.44,5.967 66.93,11.685 100.45,17.154 7.06,1.205 36.51,5.725 42.13,7.538 12.83,32.618 23.38,67.736 35.84,100.628 4.83,12.758 9.79,28.918 15.4,41.225 -5.95,16.059 -13.35,31.899 -19.75,47.778 -2.42,5.995 -7.15,16.083 -8.85,21.965 l 1.3,2.475 c 6.72,9.453 11.58,20.042 17.45,30.061 12.61,-3.767 116.54,-40.481 120.85,-39.213 3.62,14.985 36.79,182.752 35.32,187.364 l -0.54,0.551 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 13.38,5.544 29.44,10.792 41.45,18.873 13.88,9.337 35.29,50.507 45.18,66.427 -18.32,41.08 -37.86,90.21 -54.74,132.42 l -3.46,1.81 -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 -10.98,-5.85 -35.51,-15.21 -47.52,-20.19 -32.74,-13.44 -65.41,-27.07 -97.99,-40.9 l -9.85,-4.07 c -1.61,-18.56 -8.32,-30.82 -10.75,-46.59 l -0.81,-0.05 c -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 -5.84,-3.94 -37.13,-92.83 -44.59,-107.53 l 0.06,-1.39 c 6.78,-3.15 29.88,-7.41 37.78,-9.22 28.49,-6.51 58.96,-11.47 87.01,-19.18 l 1.71,0.14 c 12.85,-11.24 33.57,-26 47.63,-36.726 11.69,-8.923 39.91,-32.132 51.53,-37.849 l -0.07,-0.509 c -1.43,-4.062 6.02,-106.705 8.06,-111.728 21.32,-21.73 43.32,-42.702 64.86,-64.29 2.75,-2.16 13.83,-13.74 16.79,-16.748 l 35.26,-35.843 0.36,-0.873 c 0.34,-3.318 -25.69,-52.954 -28.77,-60.706 0.19,-6.718 -1.72,-21.065 -2.47,-28.343 -2,-18.661 -3.84,-37.339 -5.52,-56.032 -4.62,-17.869 -4.97,-56.705 -8.89,-77.602 -28.42,-27.922 -56.29,-57.628 -84.37,-86.069 5.63,1.106 125.79,62.383 136.49,69.008 -17.13,-34.359 -36.69,-69.174 -54.37,-103.502 13.22,-9.993 27.08,-20.809 40.55,-30.338 z"
|
||||||
<polygon points="64.86,146.15 47.19,123.99 82.88,108.24 88.15,114.85" fill="#FF4DA0" stroke="none"/>
|
id="path4" /><path
|
||||||
<polygon points="47.19,123.99 61.01,99.12 82.88,108.24" fill="#FF1A8C" stroke="none"/>
|
fill="#9d0067"
|
||||||
<polygon points="65.25,117.71 42.01,101.30 81.00,100.00" fill="#CC1070" stroke="none"/>
|
d="m 1248.06,955.835 c 10.27,7.731 50.26,14.782 65.07,20.423 -7.29,0.652 -52.85,-12.921 -63.05,-15.892 0.57,7.141 1.04,15.928 2.39,22.792 24.49,-1.374 47.62,-4.456 72.05,-2.965 38.92,-1.135 80.92,-4.094 119.68,-3.527 -1.28,6.788 -16.13,30.844 -20.46,40.144 7.12,5.04 16.09,7.44 21.09,12.28 l -0.93,1.08 c 2.37,0.65 93.81,-54.406 105.58,-58.64 13.38,5.544 29.44,10.792 41.45,18.873 13.88,9.337 35.29,50.507 45.18,66.427 -18.32,41.08 -37.86,90.21 -54.74,132.42 l -3.46,1.81 -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 -10.98,-5.85 -35.51,-15.21 -47.52,-20.19 -32.74,-13.44 -65.41,-27.07 -97.99,-40.9 l -9.85,-4.07 c -1.61,-18.56 -8.32,-30.82 -10.75,-46.59 l -0.81,-0.05 c -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 -5.84,-3.94 -37.13,-92.83 -44.59,-107.53 l 0.06,-1.39 c 6.78,-3.15 29.88,-7.41 37.78,-9.22 28.49,-6.51 58.96,-11.47 87.01,-19.18 l 1.71,0.14 c 12.85,-11.24 33.57,-26 47.63,-36.726 11.69,-8.923 39.91,-32.132 51.53,-37.849 z"
|
||||||
<polygon points="42.01,101.30 48.32,73.67 82.88,91.76 81.00,100.00" fill="#FF4DA0" stroke="none"/>
|
id="path5" /><path
|
||||||
<polygon points="48.32,73.67 76.37,68.97 82.88,91.76" fill="#FF1A8C" stroke="none"/>
|
fill="#d3105e"
|
||||||
<polygon points="64.49,83.87 62.83,55.48 88.15,85.15" fill="#CC1070" stroke="none"/>
|
d="m 1248.06,955.835 c 10.27,7.731 50.26,14.782 65.07,20.423 -7.29,0.652 -52.85,-12.921 -63.05,-15.892 0.57,7.141 1.04,15.928 2.39,22.792 24.49,-1.374 47.62,-4.456 72.05,-2.965 38.92,-1.135 80.92,-4.094 119.68,-3.527 -20.84,19.039 -53.14,45.624 -75.61,64.134 -22.12,-1.57 -44.99,-0.98 -67.23,-2.9 -5,-0.44 -16.47,-0.52 -20.57,-1.18 -18.57,17.1 -40.7,45.59 -59.28,64.58 l -0.43,0.46 -0.16,43.8 c -0.09,7.42 -0.68,19.41 -0.07,26.52 -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 -5.84,-3.94 -37.13,-92.83 -44.59,-107.53 l 0.06,-1.39 c 6.78,-3.15 29.88,-7.41 37.78,-9.22 28.49,-6.51 58.96,-11.47 87.01,-19.18 l 1.71,0.14 c 12.85,-11.24 33.57,-26 47.63,-36.726 11.69,-8.923 39.91,-32.132 51.53,-37.849 z"
|
||||||
<polygon points="62.83,55.48 88.37,43.18 95.77,81.48 88.15,85.15" fill="#FF4DA0" stroke="none"/>
|
id="path6" /><path
|
||||||
<polygon points="88.37,43.18 109.53,62.18 95.77,81.48" fill="#FF1A8C" stroke="none"/>
|
fill="#fea6cd"
|
||||||
<polygon points="82.63,88.20 89.16,69.89 97.53,92.39" fill="#990050" stroke="none"/>
|
d="m 1221.08,1101.76 -0.16,43.8 c -0.09,7.42 -0.68,19.41 -0.07,26.52 -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 8.16,-4.79 43.97,-19.18 54.62,-23.62 33.28,-13.84 66.46,-27.91 99.53,-42.21 z"
|
||||||
<polygon points="89.16,69.89 110.84,69.89 102.47,92.39 97.53,92.39" fill="#FF1A8C" stroke="none"/>
|
id="path7" /><path
|
||||||
<polygon points="110.84,69.89 117.37,88.20 102.47,92.39" fill="#CC1070" stroke="none"/>
|
fill="#b50852"
|
||||||
<polygon points="105.86,79.83 125.28,80.39 106.47,95.30" fill="#990050" stroke="none"/>
|
d="m 1248.06,955.835 c 10.27,7.731 50.26,14.782 65.07,20.423 -7.29,0.652 -52.85,-12.921 -63.05,-15.892 0.57,7.141 1.04,15.928 2.39,22.792 24.49,-1.374 47.62,-4.456 72.05,-2.965 -8.27,1.125 -19.48,1.369 -28.23,1.928 -15.08,0.964 -31.3,2.767 -46.3,3.18 -1.56,19.629 -4.25,38.169 -5.55,58.009 -31.57,-6.18 -63.47,-10.49 -95.54,-12.9 12.85,-11.24 33.57,-26 47.63,-36.726 11.69,-8.923 39.91,-32.132 51.53,-37.849 z"
|
||||||
<polygon points="125.28,80.39 131.98,101.01 108.00,100.00 106.47,95.30" fill="#FF1A8C" stroke="none"/>
|
id="path8" /><path
|
||||||
<polygon points="131.98,101.01 116.59,112.87 108.00,100.00" fill="#CC1070" stroke="none"/>
|
fill="#c6007c"
|
||||||
<polygon points="120.99,99.34 126.47,117.99 106.47,104.70" fill="#990050" stroke="none"/>
|
d="m 1444.83,1029.09 -0.93,1.08 c 2.37,0.65 93.81,-54.406 105.58,-58.64 13.38,5.544 29.44,10.792 41.45,18.873 13.88,9.337 35.29,50.507 45.18,66.427 -18.32,41.08 -37.86,90.21 -54.74,132.42 -40.78,-27.01 -80.64,-55.82 -121.42,-82.55 -16.89,-9.87 -48.84,-28.98 -62.37,-41.75 9.13,-15.82 17.85,-31.87 26.16,-48.14 7.12,5.04 16.09,7.44 21.09,12.28 z"
|
||||||
<polygon points="126.47,117.99 108.93,130.73 102.47,107.61 106.47,104.70" fill="#FF1A8C" stroke="none"/>
|
id="path9" /><path
|
||||||
<polygon points="108.93,130.73 92.89,119.76 102.47,107.61" fill="#CC1070" stroke="none"/>
|
fill="#f5119b"
|
||||||
<polygon points="107.11,119.76 91.07,130.73 97.53,107.61" fill="#990050" stroke="none"/>
|
d="m 1459.95,1106.7 c 2.71,-2.6 163.13,-47.27 176.16,-49.87 -18.32,41.08 -37.86,90.21 -54.74,132.42 -40.78,-27.01 -80.64,-55.82 -121.42,-82.55 z"
|
||||||
<polygon points="91.07,130.73 73.53,117.99 93.53,104.70 97.53,107.61" fill="#FF1A8C" stroke="none"/>
|
id="path10" /><path
|
||||||
<polygon points="73.53,117.99 79.01,99.34 93.53,104.70" fill="#CC1070" stroke="none"/>
|
fill="#c6007c"
|
||||||
<polygon points="83.41,112.87 68.02,101.01 92.00,100.00" fill="#990050" stroke="none"/>
|
d="m 1459.95,1106.7 c 40.78,26.73 80.64,55.54 121.42,82.55 l -3.46,1.81 -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 3.75,-5.57 3.82,-34.08 5.69,-43.59 2.73,-13.82 3,-22.45 8.75,-36.41 l 2.08,-0.66 36.28,-62.15 c 5.35,-9.18 15.53,-25.47 19.38,-34.37 z"
|
||||||
<polygon points="68.02,101.01 74.72,80.39 93.53,95.30 92.00,100.00" fill="#FF1A8C" stroke="none"/>
|
id="path11" /><path
|
||||||
<polygon points="74.72,80.39 94.14,79.83 93.53,95.30" fill="#CC1070" stroke="none"/>
|
fill="#f5119b"
|
||||||
<polygon points="100.00,95.00 104.76,98.45 102.94,104.05 97.06,104.05 95.24,98.45" fill="#880044" stroke="none"/>
|
d="m 1404.29,1203.22 c 11.42,-0.3 33.79,-3.18 46.05,-4.29 28.18,-2.5 56.38,-4.77 84.6,-6.8 10.19,-0.76 34.39,-3.32 42.97,-1.07 l -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 3.75,-5.57 3.82,-34.08 5.69,-43.59 2.73,-13.82 3,-22.45 8.75,-36.41 z"
|
||||||
</svg>
|
id="path12" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1444.2,976.666 c -1.28,6.788 -16.13,30.844 -20.46,40.144 -8.31,16.27 -17.03,32.32 -26.16,48.14 l -33.87,63.49 c -25.14,-30.14 -58.9,-61.72 -82.92,-91.72 4.1,0.66 15.57,0.74 20.57,1.18 22.24,1.92 45.11,1.33 67.23,2.9 22.47,-18.51 54.77,-45.095 75.61,-64.134 z"
|
||||||
|
id="path13" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1242.26,1222.79 c 2.3,-4.22 4.11,-4.94 8.75,-5.5 38.37,-4.63 77.07,-6.12 115.5,-10.55 11.56,-1.33 24.12,-2.43 35.7,-2.86 -5.75,13.96 -6.02,22.59 -8.75,36.41 -1.87,9.51 -1.94,38.02 -5.69,43.59 -10.98,-5.85 -35.51,-15.21 -47.52,-20.19 -32.74,-13.44 -65.41,-27.07 -97.99,-40.9 z"
|
||||||
|
id="path14" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1280.79,1036.72 c 24.02,30 57.78,61.58 82.92,91.72 -42.95,-11.77 -97.51,-17.87 -142.2,-27.14 18.58,-18.99 40.71,-47.48 59.28,-64.58 z"
|
||||||
|
id="path15" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1221.51,1101.3 c 44.69,9.27 99.25,15.37 142.2,27.14 -13.19,3.03 -28.99,8.69 -42.15,12.59 -33.18,9.85 -66.67,21.68 -99.9,31.1 l -0.81,-0.05 c -0.61,-7.11 -0.02,-19.1 0.07,-26.52 l 0.16,-43.8 z"
|
||||||
|
id="path16" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1549.94,621.084 c 12.61,-3.767 116.54,-40.481 120.85,-39.213 3.62,14.985 36.79,182.752 35.32,187.364 l -0.54,0.551 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 -11.77,4.234 -103.21,59.29 -105.58,58.64 l 0.93,-1.08 c -5,-4.84 -13.97,-7.24 -21.09,-12.28 4.33,-9.3 19.18,-33.356 20.46,-40.144 -38.76,-0.567 -80.76,2.392 -119.68,3.527 -24.43,-1.491 -47.56,1.591 -72.05,2.965 -1.35,-6.864 -1.82,-15.651 -2.39,-22.792 10.2,2.971 55.76,16.544 63.05,15.892 3.51,0.734 7.35,1.976 10.64,0.983 39.13,-12.615 78.08,-25.788 116.83,-39.514 9.57,-3.285 44.09,-14.407 50.59,-17.888 -2.09,-12.868 -3.04,-48.441 -3.93,-63.239 22.24,-24.043 37.69,-42.456 58.28,-67.978 2.58,-13.025 1.08,-36.839 2.04,-51.425 0.9,-13.694 3,-31.557 2.47,-44.967 -0.19,-4.675 -5.36,-22.059 -6.5,-28.405 -3,-16.633 -11.35,-57.742 -11.06,-72.802 6.72,9.453 11.58,20.042 17.45,30.061 z"
|
||||||
|
id="path17" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1700.81,771.736 4.76,-1.95 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 -11.77,4.234 -103.21,59.29 -105.58,58.64 l 0.93,-1.08 c -5,-4.84 -13.97,-7.24 -21.09,-12.28 4.33,-9.3 19.18,-33.356 20.46,-40.144 -38.76,-0.567 -80.76,2.392 -119.68,3.527 -24.43,-1.491 -47.56,1.591 -72.05,2.965 -1.35,-6.864 -1.82,-15.651 -2.39,-22.792 10.2,2.971 55.76,16.544 63.05,15.892 3.51,0.734 7.35,1.976 10.64,0.983 39.13,-12.615 78.08,-25.788 116.83,-39.514 9.57,-3.285 44.09,-14.407 50.59,-17.888 16.73,-23.319 33.31,-53.926 49.89,-78.097 4.43,-6.467 13.71,-22.706 18.44,-27.612 8.71,-3.514 22.04,-6.773 31.39,-9.347 26.11,-7.89 51.85,-17.364 78.14,-24.728 10.22,-2.864 21.34,-6.607 31.76,-8.319 z"
|
||||||
|
id="path18" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1700.81,771.736 4.76,-1.95 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 -11.77,4.234 -103.21,59.29 -105.58,58.64 l 0.93,-1.08 c 10.59,-11.15 24.62,-29.885 34.73,-42.286 l 64.43,-78.862 c 8.06,-9.967 22.46,-28.823 30.96,-37.573 11.6,-11.93 35.1,-28.602 49.05,-39.245 z"
|
||||||
|
id="path19" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1670.79,581.871 c 3.62,14.985 36.79,182.752 35.32,187.364 l -0.54,0.551 -4.76,1.95 c -10.42,1.712 -21.54,5.455 -31.76,8.319 -26.29,7.364 -52.03,16.838 -78.14,24.728 -1.84,-4.747 71.53,-212.147 79.88,-222.912 z"
|
||||||
|
id="path20" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1532.49,591.023 c 6.72,9.453 11.58,20.042 17.45,30.061 6.8,12.449 20.64,35.75 26.03,47.973 -6.11,48.284 -11.59,96.646 -16.45,145.073 -4.73,4.906 -14.01,21.145 -18.44,27.612 -16.58,24.171 -33.16,54.778 -49.89,78.097 -2.09,-12.868 -3.04,-48.441 -3.93,-63.239 22.24,-24.043 37.69,-42.456 58.28,-67.978 2.58,-13.025 1.08,-36.839 2.04,-51.425 0.9,-13.694 3,-31.557 2.47,-44.967 -0.19,-4.675 -5.36,-22.059 -6.5,-28.405 -3,-16.633 -11.35,-57.742 -11.06,-72.802 z"
|
||||||
|
id="path21" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1365.97,352.26 c 33.44,5.967 66.93,11.685 100.45,17.154 7.06,1.205 36.51,5.725 42.13,7.538 12.83,32.618 23.38,67.736 35.84,100.628 4.83,12.758 9.79,28.918 15.4,41.225 -49.15,21.153 -98.05,39.997 -146.91,60.813 -6.93,6.385 -5.4,13.129 -7.75,22.233 3.97,30.414 13.93,64.277 19.2,94.947 -5.13,-2.303 -73.8,-101.238 -87.77,-116.035 -4.62,-17.869 -4.97,-56.705 -8.89,-77.602 -28.42,-27.922 -56.29,-57.628 -84.37,-86.069 5.63,1.106 125.79,62.383 136.49,69.008 -17.13,-34.359 -36.69,-69.174 -54.37,-103.502 13.22,-9.993 27.08,-20.809 40.55,-30.338 z"
|
||||||
|
id="path22" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1455.62,488.361 c 18.55,-32.26 34.87,-79.277 52.93,-111.409 12.83,32.618 23.38,67.736 35.84,100.628 4.83,12.758 9.79,28.918 15.4,41.225 -49.15,21.153 -98.05,39.997 -146.91,60.813 14.03,-30.416 29.08,-60.896 42.74,-91.257 z"
|
||||||
|
id="path23" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1327.67,503.161 c 17.27,-5.814 34.51,-11.745 51.7,-17.794 7.37,25.096 11.68,58.667 18.19,84.616 2.55,10.122 4.18,21.905 7.57,31.868 3.97,30.414 13.93,64.277 19.2,94.947 -5.13,-2.303 -73.8,-101.238 -87.77,-116.035 -4.62,-17.869 -4.97,-56.705 -8.89,-77.602 z"
|
||||||
|
id="path24" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1365.97,352.26 c 33.44,5.967 66.93,11.685 100.45,17.154 7.06,1.205 36.51,5.725 42.13,7.538 -18.06,32.132 -34.38,79.149 -52.93,111.409 -19,-30.368 -40.59,-59.936 -60.32,-89.795 -7.74,-11.722 -24.23,-34.465 -29.33,-46.306 z"
|
||||||
|
id="path25" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1373.32,725.844 c 4.92,6.942 3.06,119.367 8.49,138.307 -12.06,15.173 -49.61,42.351 -65.17,57.78 -1.07,3.178 -1.9,3.782 -5.61,5.468 -20.9,9.509 -42.48,17.604 -63.04,27.927 -1.43,-4.062 6.02,-106.705 8.06,-111.728 21.32,-21.73 43.32,-42.702 64.86,-64.29 2.75,-2.16 13.83,-13.74 16.79,-16.748 l 35.26,-35.843 z"
|
||||||
|
id="path26" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 1373.32,725.844 c 4.92,6.942 3.06,119.367 8.49,138.307 -12.06,15.173 -49.61,42.351 -65.17,57.78 2.87,-13.592 10.57,-37.471 14.63,-51.32 l 27.59,-93.818 c 2.97,-9.879 14.4,-42.728 14.1,-50.076 z"
|
||||||
|
id="path27" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1531.19,588.548 1.3,2.475 c -0.29,15.06 8.06,56.169 11.06,72.802 1.14,6.346 6.31,23.73 6.5,28.405 0.53,13.41 -1.57,31.273 -2.47,44.967 -0.96,14.586 0.54,38.4 -2.04,51.425 -28.15,-8.741 -56.17,-17.889 -84.06,-27.439 22.84,-57.703 46.08,-115.249 69.71,-172.635 z"
|
||||||
|
id="path28" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1336.56,580.763 c 13.97,14.797 82.64,113.732 87.77,116.035 0,5.385 -7.53,30.685 -9.21,37.615 -6.32,26.099 -13.79,52.572 -19.8,78.715 -2.32,8.311 -12.12,43.962 -12.4,50.954 l -1.11,0.069 c -5.43,-18.94 -3.57,-131.365 -8.49,-138.307 0.34,-3.318 -25.69,-52.954 -28.77,-60.706 0.19,-6.718 -1.72,-21.065 -2.47,-28.343 -2,-18.661 -3.84,-37.339 -5.52,-56.032 z"
|
||||||
|
id="path29" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1487.26,856.6 c 0.89,14.798 1.84,50.371 3.93,63.239 -6.5,3.481 -41.02,14.603 -50.59,17.888 -38.75,13.726 -77.7,26.899 -116.83,39.514 10.17,-9.804 22.51,-23.311 31.32,-34.43 15.02,-18.967 30.1,-25.933 50.79,-37.896 l 54.36,-31.588 c 7.2,-4.223 20.94,-11.751 27.02,-16.727 z"
|
||||||
|
id="path30" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 1395.32,813.128 c 11.73,-3.844 59.85,-49.213 62.89,-48.673 -1.18,3.531 -5.8,7.536 -8.41,10.876 -16.27,20.787 -31.82,41.555 -46.96,63.19 -3.3,4.717 -16.07,23.495 -19.92,25.561 0.28,-6.992 10.08,-42.643 12.4,-50.954 z"
|
||||||
|
id="path31" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 341.31,684.008 -0.326,-1.982 c 2.897,-5.081 105.919,-97.431 109.126,-98.684 20.966,6.087 69.886,18.942 87.336,26.713 3.416,5.394 6.664,9.545 7.614,15.858 -0.837,2.251 -0.381,1.463 -2.139,3.18 l 0.06,1.037 -0.084,0.105 c 12.399,15.905 39.126,34.07 54.288,48.392 5.021,4.743 7.89,11.493 12.692,16.884 l -0.196,1.818 2.675,7.651 c 26.22,59.73 52.849,119.28 79.887,178.645 l 1.205,-2.261 c 0.22,1.151 0.506,2.654 0.859,4.509 9.219,10.931 22.966,20.404 33.823,29.878 0.817,0.714 2.836,1.703 3.534,2.061 l 3.734,3.014 c 21.344,12.263 56.801,31.645 76.572,45.689 3.709,2.313 8.483,4.902 11.348,8.028 17.839,9.453 35.713,23.279 52.739,34.337 7.883,5.11 20.536,14.99 29.014,17.71 l 1.018,0.98 1.244,2.21 c 32.481,9.6 75.17,17.02 104.877,26.94 2.95,0.38 4.97,0.46 7.76,1.58 -1.58,5.55 -4.32,12.29 -6.61,17.7 -10.71,25.41 -17.66,53.75 -28.506,78.95 -9.135,0.26 -27.263,-1.78 -37.158,-2.22 -30.792,-1.37 -62.574,-4.39 -93.331,-4.88 -1.011,1.35 -4.477,5.83 -4.829,7.19 -16.283,18.06 -66.819,84.55 -81.343,92.99 -9.135,5.3 -20.103,8.7 -29.949,12.59 -19.846,7.84 -39.863,15.51 -59.412,24.06 -1.616,0.88 -4.343,2.6 -6.293,2.01 -16.907,-5.09 -33.722,-10.5 -50.597,-15.7 l -141.863,-43.64 -1.349,-0.48 c -1.578,-1.84 -37.901,-161.82 -40.523,-180.2 l 1.905,-1.64 c 9.348,-3.19 21.679,-10.04 30.963,-14.18 24.726,-11.04 51.755,-25.84 76.793,-35.632 L 401.605,916.54 C 385.408,859.501 372.125,801.088 356.551,743.836 351.705,726.02 346.794,707.569 342.947,689.53 Z"
|
||||||
|
id="path32" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 547.868,995.218 c 32.146,12.532 63.386,25.582 95.305,38.312 0.688,2.21 1.931,6.22 3.436,7.87 16.167,17.73 39.431,33.95 56.579,50.27 19.027,16.07 37.72,33.37 56.619,49.14 1.759,1.32 1.015,1.01 3.1,1.55 30.507,1.46 60.995,3.29 91.458,5.49 -1.011,1.35 -4.477,5.83 -4.829,7.19 -16.283,18.06 -66.819,84.55 -81.343,92.99 -9.135,5.3 -20.103,8.7 -29.949,12.59 -19.846,7.84 -39.863,15.51 -59.412,24.06 -1.616,0.88 -4.343,2.6 -6.293,2.01 -16.907,-5.09 -33.722,-10.5 -50.597,-15.7 l -141.863,-43.64 -1.349,-0.48 c -1.578,-1.84 -37.901,-161.82 -40.523,-180.2 l 1.905,-1.64 c 9.348,-3.19 21.679,-10.04 30.963,-14.18 24.726,-11.04 51.755,-25.84 76.793,-35.632 z"
|
||||||
|
id="path33" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 480.079,1227.35 -1.349,-0.48 c -1.578,-1.84 -37.901,-161.82 -40.523,-180.2 l 1.905,-1.64 c 9.331,6.09 45.652,16.11 58.622,20.25 l 102.303,32.8 c 19.186,6.12 42.857,13.04 61.369,19.93 -21.103,11.86 -177.548,102.14 -182.327,109.34 z"
|
||||||
|
id="path34" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 703.188,1091.67 c 19.027,16.07 37.72,33.37 56.619,49.14 1.759,1.32 1.015,1.01 3.1,1.55 30.507,1.46 60.995,3.29 91.458,5.49 -1.011,1.35 -4.477,5.83 -4.829,7.19 -16.283,18.06 -66.819,84.55 -81.343,92.99 -9.135,5.3 -20.103,8.7 -29.949,12.59 -19.846,7.84 -39.863,15.51 -59.412,24.06 l -0.665,-3.13 c 3.04,-8.95 18.633,-30.52 24.666,-39.37 12.785,-18.88 25.695,-37.67 38.731,-56.38 -18.928,-18.71 -56.959,-50.93 -78.87,-67.73 11.544,-8.78 27.993,-17.79 40.494,-26.4 z"
|
||||||
|
id="path35" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 621.302,956.687 c 14.751,0.183 40.826,10.058 58.073,11.327 25.596,1.882 49.633,0.725 75.068,1.205 7.927,1.466 22.317,1.42 31.004,1.89 12.431,0.673 25.781,2.813 37.871,3.434 17.839,9.453 35.713,23.279 52.739,34.337 7.883,5.11 20.536,14.99 29.014,17.71 l 1.018,0.98 1.244,2.21 c 32.481,9.6 75.17,17.02 104.877,26.94 2.95,0.38 4.97,0.46 7.76,1.58 -1.58,5.55 -4.32,12.29 -6.61,17.7 -10.71,25.41 -17.66,53.75 -28.506,78.95 -9.135,0.26 -27.263,-1.78 -37.158,-2.22 -30.792,-1.37 -62.574,-4.39 -93.331,-4.88 -30.463,-2.2 -60.951,-4.03 -91.458,-5.49 -2.085,-0.54 -1.341,-0.23 -3.1,-1.55 -18.899,-15.77 -37.592,-33.07 -56.619,-49.14 -17.148,-16.32 -40.412,-32.54 -56.579,-50.27 -1.505,-1.65 -2.748,-5.66 -3.436,-7.87 -0.558,-3.56 -1.425,-5.38 -2.714,-8.69 -3.97,-12.42 -18.61,-57.563 -20.159,-67.295 z"
|
||||||
|
id="path36" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 621.302,956.687 c 6.214,5.816 19.797,14.832 27.376,20.252 17.82,12.693 35.553,25.511 53.195,38.451 10.861,-1 28.702,-3.6 38.758,-3.61 37.776,19.08 75.356,44.5 111.462,62.79 l -56.962,42.63 c -8.096,6.1 -25.407,18.7 -32.224,25.16 -2.085,-0.54 -1.341,-0.23 -3.1,-1.55 -18.899,-15.77 -37.592,-33.07 -56.619,-49.14 -17.148,-16.32 -40.412,-32.54 -56.579,-50.27 -1.505,-1.65 -2.748,-5.66 -3.436,-7.87 -0.558,-3.56 -1.425,-5.38 -2.714,-8.69 -3.97,-12.42 -18.61,-57.563 -20.159,-67.295 z"
|
||||||
|
id="path37" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 740.631,1011.78 c 37.776,19.08 75.356,44.5 111.462,62.79 l -56.962,42.63 c -8.096,6.1 -25.407,18.7 -32.224,25.16 -2.085,-0.54 -1.341,-0.23 -3.1,-1.55 0.643,-5.77 -6.117,-43.14 -7.629,-52.32 -4.257,-25.83 -8.543,-50.49 -11.547,-76.71 z"
|
||||||
|
id="path38" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="M 852.093,1074.57 877.11,1089 c 34.772,22.7 73.956,43.2 107.744,65.95 -9.135,0.26 -27.263,-1.78 -37.158,-2.22 -30.792,-1.37 -62.574,-4.39 -93.331,-4.88 -30.463,-2.2 -60.951,-4.03 -91.458,-5.49 6.817,-6.46 24.128,-19.06 32.224,-25.16 z"
|
||||||
|
id="path39" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 1012.21,1056.72 c 2.95,0.38 4.97,0.46 7.76,1.58 -1.58,5.55 -4.32,12.29 -6.61,17.7 -10.71,25.41 -17.66,53.75 -28.506,78.95 -33.788,-22.75 -72.972,-43.25 -107.744,-65.95 17.517,-0.99 39.996,1.46 54.623,1.09 18.048,-0.46 60.897,-24.69 80.477,-33.37 z"
|
||||||
|
id="path40" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 538.404,632.187 c 0.592,-0.908 1.269,-1.46 2.055,-2.25 l 2.438,0.298 c 12.399,15.905 39.126,34.07 54.288,48.392 5.021,4.743 7.89,11.493 12.692,16.884 l -0.196,1.818 2.675,7.651 c 26.22,59.73 52.849,119.28 79.887,178.645 l 1.205,-2.261 c 0.22,1.151 0.506,2.654 0.859,4.509 9.219,10.931 22.966,20.404 33.823,29.878 0.817,0.714 2.836,1.703 3.534,2.061 l 3.734,3.014 c 21.344,12.263 56.801,31.645 76.572,45.689 3.709,2.313 8.483,4.902 11.348,8.028 -12.09,-0.621 -25.44,-2.761 -37.871,-3.434 -8.687,-0.47 -23.077,-0.424 -31.004,-1.89 -25.435,-0.48 -49.472,0.677 -75.068,-1.205 -17.247,-1.269 -43.322,-11.144 -58.073,-11.327 l -1.002,0.858 c -3.389,-4.311 -16.58,-5.467 -22.914,-6.553 -4.302,-4.962 -14.915,-21.478 -18.743,-27.209 -12.1,-18.442 -24.453,-36.716 -37.057,-54.817 l -25.145,-37.088 c -5.501,-8.019 -12.192,-16.264 -16.163,-25.157 -5.072,-11.357 -15.119,-96.189 -17.195,-114.148 5.127,-6.664 17.667,-18.949 23.987,-25.23 12.217,-12.142 20.778,-21.605 31.334,-35.156 z"
|
||||||
|
id="path41" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 538.404,632.187 1.138,1.332 c -3.1,10.786 -5.709,22.246 -7.976,33.242 -8.168,39.619 -16.669,79.299 -24.26,119.031 22.033,17.451 44.625,35.268 66.416,52.986 10.575,8.597 22.628,37.73 28.63,51.494 -1.04,20.068 -3.291,40.585 -4.966,60.72 -4.302,-4.962 -14.915,-21.478 -18.743,-27.209 -12.1,-18.442 -24.453,-36.716 -37.057,-54.817 l -25.145,-37.088 c -5.501,-8.019 -12.192,-16.264 -16.163,-25.157 -5.072,-11.357 -15.119,-96.189 -17.195,-114.148 5.127,-6.664 17.667,-18.949 23.987,-25.23 12.217,-12.142 20.778,-21.605 31.334,-35.156 z"
|
||||||
|
id="path42" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 602.352,890.272 c 31.5,15.815 63.133,31.363 94.897,46.641 20.786,10.182 50.794,26.297 72.171,31.749 l -14.977,0.557 c -25.435,-0.48 -49.472,0.677 -75.068,-1.205 -17.247,-1.269 -43.322,-11.144 -58.073,-11.327 l -1.002,0.858 c -3.389,-4.311 -16.58,-5.467 -22.914,-6.553 1.675,-20.135 3.926,-40.652 4.966,-60.72 z"
|
||||||
|
id="path43" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 601.147,834.54 c 5.446,-14.094 15.418,-39.057 17.519,-53.778 1.711,-11.987 -11.758,-66.383 -6.31,-75.782 26.22,59.73 52.849,119.28 79.887,178.645 -1.751,0.147 -2.405,0.203 -4.049,-0.684 -29.593,-15.976 -56.811,-33.432 -87.047,-48.401 z"
|
||||||
|
id="path44" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 735.398,920.826 c 21.344,12.263 56.801,31.645 76.572,45.689 -19.875,-5.795 -61.672,-15.191 -75.7,-28.583 -1.016,-7.418 -1.342,-9.671 -0.872,-17.106 z"
|
||||||
|
id="path45" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 538.404,632.187 c 0.592,-0.908 1.269,-1.46 2.055,-2.25 l 2.438,0.298 c 12.399,15.905 39.126,34.07 54.288,48.392 5.021,4.743 7.89,11.493 12.692,16.884 l -0.196,1.818 c -7.109,-5.186 -25.917,-28.258 -35.034,-34.936 -5.76,-4.769 -12.573,-12.337 -18.55,-16.454 -3.086,-2.126 -14.158,-11.342 -16.555,-12.42 z"
|
||||||
|
id="path46" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 342.947,689.53 c 6.183,5.227 28.672,45.976 34.477,55.951 l 64.463,111.615 c 3.174,5.563 16.107,29.731 19.143,32.12 3.419,-3.364 70.643,-18.17 80.556,-20.25 12.604,18.101 24.957,36.375 37.057,54.817 3.828,5.731 14.441,22.247 18.743,27.209 6.334,1.086 19.525,2.242 22.914,6.553 1.549,9.732 16.189,54.875 20.159,67.295 1.289,3.31 2.156,5.13 2.714,8.69 -31.919,-12.73 -63.159,-25.78 -95.305,-38.312 L 401.605,916.54 C 385.408,859.501 372.125,801.088 356.551,743.836 351.705,726.02 346.794,707.569 342.947,689.53 Z"
|
||||||
|
id="path47" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 541.586,868.966 c 12.604,18.101 24.957,36.375 37.057,54.817 3.828,5.731 14.441,22.247 18.743,27.209 6.334,1.086 19.525,2.242 22.914,6.553 1.549,9.732 16.189,54.875 20.159,67.295 l -0.34,0.19 c -0.524,0.01 -1.048,0.01 -1.572,0.01 C 589.764,986.15 507.005,924.733 461.03,889.216 c 3.419,-3.364 70.643,-18.17 80.556,-20.25 z"
|
||||||
|
id="path48" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 341.31,684.008 -0.326,-1.982 c 2.897,-5.081 105.919,-97.431 109.126,-98.684 -0.182,7.913 7.372,44.313 9.303,54.445 7.896,42.541 16.284,84.989 25.16,127.337 -32.208,-19.301 -64.513,-38.44 -96.914,-57.416 -13.311,-7.762 -26.542,-15.775 -40.024,-23.202 -2.351,-1.295 -3.851,-1.182 -6.325,-0.498 z"
|
||||||
|
id="path49" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 705.202,368.146 -0.088,0.489 c 4.117,2.492 49.463,58.613 52.173,64.983 9.835,-4.681 41.58,-22.401 49.049,-24.471 l 2.165,0.344 c 6.065,8.521 11.805,23.879 17.589,33.342 5.23,-7.227 15.771,-22.985 21.476,-28.626 -4.182,28.943 -10.735,57.239 -15.646,85.897 -1.721,7.639 -6.193,19.649 -8.813,27.352 l -17.634,51.201 -21.803,64.058 c -3.599,10.434 -8.46,25.748 -12.843,35.543 l 0.314,0.505 -0.2,0.882 c -5.09,3.342 -53.562,68.793 -58.682,77.157 -11.103,-9.46 -22.079,-19.068 -32.926,-28.822 0.221,2.121 0.417,4.827 0.77,6.875 5.278,48.741 8.256,98.138 13.345,146.509 l -1.205,2.261 C 665.205,824.26 638.576,764.71 612.356,704.98 l -2.675,-7.651 0.196,-1.818 c -4.802,-5.391 -7.671,-12.141 -12.692,-16.884 -15.162,-14.322 -41.889,-32.487 -54.288,-48.392 l 0.084,-0.105 -0.06,-1.037 c 1.758,-1.717 1.302,-0.929 2.139,-3.18 -0.95,-6.313 -4.198,-10.464 -7.614,-15.858 -3.622,-10.027 -23.182,-64.819 -23.325,-73.144 1.824,-8.153 6.235,-20.431 8.957,-28.876 l 17.109,-53.238 15.328,-48.164 c 2.244,-7.056 6.385,-21.554 9.438,-27.311 15.511,-0.507 34.422,-2.528 50.088,-3.806 z"
|
||||||
|
id="path50" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 705.202,368.146 -0.088,0.489 c 4.117,2.492 49.463,58.613 52.173,64.983 l -65.404,32.215 c -9.217,4.512 -29.053,13.531 -36.583,18.549 l 0.054,1.044 c -15.615,69.496 -30.504,139.153 -44.665,208.959 l -0.812,1.126 c -4.802,-5.391 -7.671,-12.141 -12.692,-16.884 -15.162,-14.322 -41.889,-32.487 -54.288,-48.392 l 0.084,-0.105 -0.06,-1.037 c 1.758,-1.717 1.302,-0.929 2.139,-3.18 -0.95,-6.313 -4.198,-10.464 -7.614,-15.858 -3.622,-10.027 -23.182,-64.819 -23.325,-73.144 1.824,-8.153 6.235,-20.431 8.957,-28.876 l 17.109,-53.238 15.328,-48.164 c 2.244,-7.056 6.385,-21.554 9.438,-27.311 15.511,-0.507 34.422,-2.528 50.088,-3.806 z"
|
||||||
|
id="path51" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 705.202,368.146 -0.088,0.489 c -13.498,20.345 -25.94,42.098 -38.846,62.822 -5.27,8.464 -14.157,25.391 -19.843,32.274 -44.447,23.764 -88.552,48.159 -132.304,73.18 1.824,-8.153 6.235,-20.431 8.957,-28.876 l 17.109,-53.238 15.328,-48.164 c 2.244,-7.056 6.385,-21.554 9.438,-27.311 15.511,-0.507 34.422,-2.528 50.088,-3.806 z"
|
||||||
|
id="path52" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 705.202,368.146 -0.088,0.489 c -13.498,20.345 -25.94,42.098 -38.846,62.822 -5.27,8.464 -14.157,25.391 -19.843,32.274 -25.386,-26.841 -58.116,-57.993 -81.472,-84.409 15.511,-0.507 34.422,-2.528 50.088,-3.806 z"
|
||||||
|
id="path53" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 655.3,484.382 c 14.353,3.052 38.253,14.682 53.124,19.633 -10.37,59.326 -18.305,119.052 -23.785,179.027 -1.199,13.21 -3.466,28.934 -4.111,41.702 l -1.195,3.236 c 0.221,2.121 0.417,4.827 0.77,6.875 5.278,48.741 8.256,98.138 13.345,146.509 l -1.205,2.261 C 665.205,824.26 638.576,764.71 612.356,704.98 l -2.675,-7.651 0.196,-1.818 0.812,-1.126 c 14.161,-69.806 29.05,-139.463 44.665,-208.959 z"
|
||||||
|
id="path54" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 655.354,485.426 c 2.362,4.433 9.779,26.097 11.987,32.018 l 27.306,73.1 c -12.13,11.941 -35.422,44.064 -46.485,58.345 -9.117,11.77 -27.963,35.408 -35.753,47.291 l -1.074,0.069 -0.646,-1.864 c 14.161,-69.806 29.05,-139.463 44.665,-208.959 z"
|
||||||
|
id="path55" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 831.92,500.104 c -1.721,7.639 -6.193,19.649 -8.813,27.352 l -17.634,51.201 -21.803,64.058 c -3.599,10.434 -8.46,25.748 -12.843,35.543 -2.737,-5.231 -4.901,-14.118 -7.009,-19.862 -6.703,-18.259 -12.116,-43.107 -19.241,-60.624 0.758,-7.636 -4.526,-37.312 -0.13,-43.205 8.484,-2.281 73.642,-46.452 87.473,-54.463 z"
|
||||||
|
id="path56" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 744.577,597.772 c 7.125,17.517 12.538,42.365 19.241,60.624 2.108,5.744 4.272,14.631 7.009,19.862 l 0.314,0.505 -0.2,0.882 c -5.09,3.342 -53.562,68.793 -58.682,77.157 -11.103,-9.46 -22.079,-19.068 -32.926,-28.822 l 1.195,-3.236 c 20.473,-39.182 45.482,-87.16 64.049,-126.972 z"
|
||||||
|
id="path57" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 757.287,433.618 c 9.835,-4.681 41.58,-22.401 49.049,-24.471 -21.656,21.088 -43.448,42.034 -65.377,62.838 -7.71,7.338 -27.005,24.795 -32.535,32.03 -14.871,-4.951 -38.771,-16.581 -53.124,-19.633 7.53,-5.018 27.366,-14.037 36.583,-18.549 z"
|
||||||
|
id="path58" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 847.566,414.207 c -4.182,28.943 -10.735,57.239 -15.646,85.897 -13.831,8.011 -78.989,52.182 -87.473,54.463 4.112,-7.38 19.033,-26.965 24.704,-34.737 l 56.939,-76.997 c 5.23,-7.227 15.771,-22.985 21.476,-28.626 z"
|
||||||
|
id="path59" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1243.3,417.092 c 28.08,28.441 55.95,58.147 84.37,86.069 3.92,20.897 4.27,59.733 8.89,77.602 1.68,18.693 3.52,37.371 5.52,56.032 0.75,7.278 2.66,21.625 2.47,28.343 3.08,7.752 29.11,57.388 28.77,60.706 l -0.36,0.873 -35.26,35.843 c -2.96,3.008 -14.04,14.588 -16.79,16.748 -21.54,21.588 -43.54,42.56 -64.86,64.29 l -0.74,-2.454 -0.93,2.066 -1.18,-0.66 c -18.87,-16.421 -40.53,-31.417 -60.37,-46.881 l -22.71,-16.671 c -11.26,7.442 -22.63,14.702 -34.12,21.777 -11.16,7.148 -26.63,17.616 -37.98,23.921 0.09,-3.014 0.92,-7.706 1.36,-10.812 4.32,-10.848 5.12,-36.463 12.12,-51.181 2.33,-6.567 8.59,-19.142 11.71,-25.919 -7.39,-2.585 -22.03,-10.473 -28.82,-14.487 5.24,-12.86 11.49,-33.001 15.9,-46.652 l 2.92,-7.891 c 3.69,-9.067 7.29,-18.17 10.8,-27.31 -4.39,-19.272 12.35,-170.209 14.37,-201.407 l -1.42,-0.246 c 16.54,-3.203 44.69,-4.684 58.05,-8.727 l 18.53,13.351 c 3.91,9.183 8.58,21.098 12.76,29.828 3.9,-13.61 11.13,-45.151 17,-56.151 z"
|
||||||
|
id="path60" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1136.96,438.791 c 16.54,-3.203 44.69,-4.684 58.05,-8.727 l 18.53,13.351 c 3.91,9.183 8.58,21.098 12.76,29.828 6.49,15.811 18.26,41.694 23.3,56.497 -2.9,-0.723 -8.66,-5.84 -11.34,-7.971 -10.65,16.748 -75.79,109.254 -78.26,120.147 l 0.46,4.128 c -9.21,1.758 -37.32,16.514 -47.25,21.71 3.69,-9.067 7.29,-18.17 10.8,-27.31 -4.39,-19.272 12.35,-170.209 14.37,-201.407 z"
|
||||||
|
id="path61" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1136.96,438.791 c 16.54,-3.203 44.69,-4.684 58.05,-8.727 l 18.53,13.351 c 3.91,9.183 8.58,21.098 12.76,29.828 6.49,15.811 18.26,41.694 23.3,56.497 -2.9,-0.723 -8.66,-5.84 -11.34,-7.971 l -68.33,-57.17 c -5.07,-4.243 -27.04,-23.223 -31.55,-25.562 z"
|
||||||
|
id="path62" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1124.01,640.444 14.63,-38.228 c 5.2,9.125 17.13,33.716 21.36,39.7 l 0.46,4.128 c -9.21,1.758 -37.32,16.514 -47.25,21.71 3.69,-9.067 7.29,-18.17 10.8,-27.31 z"
|
||||||
|
id="path63" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1238.26,521.769 c 2.68,2.131 8.44,7.248 11.34,7.971 2.67,6.804 2.96,25.432 3.95,33.64 3.25,26.797 3.52,61.146 7.76,87.466 -5.25,3.818 -35.56,26.621 -40.18,27.425 -8.89,-4.823 -33.37,-5.63 -44.34,-8.442 -6.79,6.689 -32.11,36.085 -37.11,37.708 l -2.77,2.839 c -5.29,8.896 -9.21,17.137 -13.7,26.408 -7.39,-2.585 -22.03,-10.473 -28.82,-14.487 5.24,-12.86 11.49,-33.001 15.9,-46.652 l 2.92,-7.891 c 9.93,-5.196 38.04,-19.952 47.25,-21.71 l -0.46,-4.128 c 2.47,-10.893 67.61,-103.399 78.26,-120.147 z"
|
||||||
|
id="path64" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 1160.46,646.044 c -6.22,18.335 -14.05,44.181 -20.78,61.493 l -2.77,2.839 c -5.29,8.896 -9.21,17.137 -13.7,26.408 -7.39,-2.585 -22.03,-10.473 -28.82,-14.487 5.24,-12.86 11.49,-33.001 15.9,-46.652 l 2.92,-7.891 c 9.93,-5.196 38.04,-19.952 47.25,-21.71 z"
|
||||||
|
id="path65" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1310.35,597.521 c 11.43,22.379 22.56,45.45 34.2,67.617 3.08,7.752 29.11,57.388 28.77,60.706 l -0.36,0.873 -35.26,35.843 c -2.96,3.008 -14.04,14.588 -16.79,16.748 -18.13,-17.367 -40.05,-37.898 -56.6,-56.41 3.91,-12.439 10.24,-28.221 14.85,-40.652 10.62,-28.159 21.02,-56.401 31.19,-84.725 z"
|
||||||
|
id="path66" /><path
|
||||||
|
fill="#fe7c00"
|
||||||
|
d="m 1176.79,669.829 c 10.97,2.812 35.45,3.619 44.34,8.442 -13.27,12.04 -44.73,60.117 -58.98,75.817 -0.51,0.558 -0.57,1.82 -0.67,2.76 -3.51,3.571 -5.76,5.308 -9.76,8.378 24.71,-2.433 50.5,-5.314 75.22,-6.813 -11.22,12.56 -22.59,24.98 -34.11,37.256 l -22.71,-16.671 c -11.26,7.442 -22.63,14.702 -34.12,21.777 -11.16,7.148 -26.63,17.616 -37.98,23.921 0.09,-3.014 0.92,-7.706 1.36,-10.812 4.32,-10.848 5.12,-36.463 12.12,-51.181 2.33,-6.567 8.59,-19.142 11.71,-25.919 4.49,-9.271 8.41,-17.512 13.7,-26.408 l 2.77,-2.839 c 5,-1.623 30.32,-31.019 37.11,-37.708 z"
|
||||||
|
id="path67" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 1123.21,736.784 c 4.49,-9.271 8.41,-17.512 13.7,-26.408 3.34,3.478 21.05,19.595 22.37,22.083 l -0.06,0.718 c -3.53,10.872 -19.08,60.49 -23.22,67.598 -11.16,7.148 -26.63,17.616 -37.98,23.921 0.09,-3.014 0.92,-7.706 1.36,-10.812 4.32,-10.848 5.12,-36.463 12.12,-51.181 2.33,-6.567 8.59,-19.142 11.71,-25.919 z"
|
||||||
|
id="path68" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1123.21,736.784 c 4.49,-9.271 8.41,-17.512 13.7,-26.408 3.34,3.478 21.05,19.595 22.37,22.083 l -0.06,0.718 c -9.36,5.099 -41.38,27.442 -47.72,29.526 2.33,-6.567 8.59,-19.142 11.71,-25.919 z"
|
||||||
|
id="path69" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1264.31,722.898 c 16.55,18.512 38.47,39.043 56.6,56.41 -21.54,21.588 -43.54,42.56 -64.86,64.29 l -0.74,-2.454 c 5.1,-36.991 2.07,-82.355 9,-118.246 z"
|
||||||
|
id="path70" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1161.48,756.848 c 17.21,-12.503 35.06,-25.687 52.72,-37.423 2.22,6.028 13.01,34.006 13.21,38.349 l -0.47,0.639 c -24.72,1.499 -50.51,4.38 -75.22,6.813 4,-3.07 6.25,-4.807 9.76,-8.378 z"
|
||||||
|
id="path71" /><path
|
||||||
|
fill="#e2009b"
|
||||||
|
d="m 1170.12,778.998 22.71,16.671 c 19.84,15.464 41.5,30.46 60.37,46.881 l 1.18,0.66 0.93,-2.066 0.74,2.454 c -2.04,5.023 -9.49,107.666 -8.06,111.728 l 0.07,0.509 c -11.62,5.717 -39.84,28.926 -51.53,37.849 -14.06,10.726 -34.78,25.486 -47.63,36.726 l -1.71,-0.14 c -28.05,7.71 -58.52,12.67 -87.01,19.18 -7.9,1.81 -31,6.07 -37.78,9.22 l -2.43,-0.37 c -2.79,-1.12 -4.81,-1.2 -7.76,-1.58 -29.707,-9.92 -72.396,-17.34 -104.877,-26.94 l -1.244,-2.21 c 0.662,-2.53 -1.063,-26.62 -1.196,-30.536 -1.303,-8.17 -0.92,-25.093 -0.981,-34.158 -0.122,-17.213 -0.461,-34.424 -1.018,-51.629 -0.757,-20.771 -1.79,-41.531 -3.098,-62.275 -0.748,-12.674 -2.21,-31.115 -1.534,-43.534 25.691,11.704 49.535,24.328 74.692,36.299 5.029,5.202 21.511,29.522 26.365,36.847 6.821,10.289 19.251,25.837 25.311,35.629 l 1.12,-2.143 c 1.27,1.899 2.49,3.896 3.96,5.618 5.64,-16.914 13.3,-41.881 17.56,-59.164 3.86,-4.918 19.52,-14.121 26.03,-18.681 l 2.38,-8.316 3.52,-10.563 c 11.11,5.786 7.68,2.864 17.55,4.548 l 1.27,-0.816 c 11.35,-6.305 26.82,-16.773 37.98,-23.921 11.49,-7.075 22.86,-14.335 34.12,-21.777 z"
|
||||||
|
id="path72" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1170.12,778.998 22.71,16.671 c 19.84,15.464 41.5,30.46 60.37,46.881 l 1.18,0.66 0.93,-2.066 0.74,2.454 c -2.04,5.023 -9.49,107.666 -8.06,111.728 l 0.07,0.509 c -11.62,5.717 -39.84,28.926 -51.53,37.849 -14.06,10.726 -34.78,25.486 -47.63,36.726 l -1.71,-0.14 c 1.54,-8.32 19.3,-42.656 24.19,-50.783 -7.85,-3.873 -29.41,-11.473 -38.34,-14.952 -7.81,-4.129 -15.76,-7.063 -23.87,-10.712 -25.99,-11.687 -53.26,-20.988 -78.85,-33.439 -2.51,-1.219 -4.27,-3.854 -5.69,-6.171 l 1.12,-2.143 c 1.27,1.899 2.49,3.896 3.96,5.618 5.64,-16.914 13.3,-41.881 17.56,-59.164 3.86,-4.918 19.52,-14.121 26.03,-18.681 l 2.38,-8.316 3.52,-10.563 c 11.11,5.786 7.68,2.864 17.55,4.548 l 1.27,-0.816 c 11.35,-6.305 26.82,-16.773 37.98,-23.921 11.49,-7.075 22.86,-14.335 34.12,-21.777 z"
|
||||||
|
id="path73" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1170.12,778.998 22.71,16.671 c 19.84,15.464 41.5,30.46 60.37,46.881 -7.94,-0.296 -57.97,-18.948 -69.01,-21.751 -4.38,-1.113 -11.21,-4.264 -16.19,-4.432 -12.42,40.992 -18.53,86.631 -30.25,128.022 -1.84,6.481 -3.39,13.524 -4.71,20.146 -7.81,-4.129 -15.76,-7.063 -23.87,-10.712 -25.99,-11.687 -53.26,-20.988 -78.85,-33.439 -2.51,-1.219 -4.27,-3.854 -5.69,-6.171 l 1.12,-2.143 c 1.27,1.899 2.49,3.896 3.96,5.618 5.64,-16.914 13.3,-41.881 17.56,-59.164 3.86,-4.918 19.52,-14.121 26.03,-18.681 l 2.38,-8.316 3.52,-10.563 c 11.11,5.786 7.68,2.864 17.55,4.548 l 1.27,-0.816 c 11.35,-6.305 26.82,-16.773 37.98,-23.921 11.49,-7.075 22.86,-14.335 34.12,-21.777 z"
|
||||||
|
id="path74" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1170.12,778.998 22.71,16.671 c 19.84,15.464 41.5,30.46 60.37,46.881 -7.94,-0.296 -57.97,-18.948 -69.01,-21.751 -4.38,-1.113 -11.21,-4.264 -16.19,-4.432 l -69.66,34.902 c -8.86,4.434 -21.39,11.213 -30.07,15.045 -6.17,-1.571 -14.85,-5.324 -21,-7.79 3.86,-4.918 19.52,-14.121 26.03,-18.681 l 2.38,-8.316 3.52,-10.563 c 11.11,5.786 7.68,2.864 17.55,4.548 l 1.27,-0.816 c 11.35,-6.305 26.82,-16.773 37.98,-23.921 11.49,-7.075 22.86,-14.335 34.12,-21.777 z"
|
||||||
|
id="path75" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1079.2,820.964 c 11.11,5.786 7.68,2.864 17.55,4.548 -7.61,4.952 -15.44,10.082 -23.45,14.331 l 2.38,-8.316 z"
|
||||||
|
id="path76" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1047.27,858.524 c 6.15,2.466 14.83,6.219 21,7.79 -5.56,6.798 -35.02,50.235 -38.56,51.374 5.64,-16.914 13.3,-41.881 17.56,-59.164 z"
|
||||||
|
id="path77" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1254.38,843.21 0.93,-2.066 0.74,2.454 c -2.04,5.023 -9.49,107.666 -8.06,111.728 l 0.07,0.509 c -11.62,5.717 -39.84,28.926 -51.53,37.849 -14.06,10.726 -34.78,25.486 -47.63,36.726 l -1.71,-0.14 c 1.54,-8.32 19.3,-42.656 24.19,-50.783 8.62,-15.18 82.61,-131.321 83,-136.277 z"
|
||||||
|
id="path78" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 904.778,979.205 c 38.072,-17.065 77.259,-33.941 115.002,-51.352 -17.55,14.231 -33.918,30.978 -51.044,45.892 -20.832,18.144 -40.42,37.995 -61.403,56.035 l -1.244,-2.21 c 0.662,-2.53 -1.063,-26.62 -1.196,-30.536 0.074,-6.09 0.145,-11.735 -0.115,-17.829 z"
|
||||||
|
id="path79" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 771.141,678.763 c 7.364,-1.497 86.678,24.969 99.668,28.086 0.009,6.824 -0.281,17.485 0.61,23.891 2.433,4.96 7,13.029 7.1,18.23 5.582,7.62 11.01,13.528 14.053,22.47 3.808,-1.986 8.438,-4.603 12.333,-6.166 4.81,3.231 9.841,6.716 14.708,9.815 11.046,7.883 27.434,19.15 39.002,25.955 6.17,4.37 11.557,7.852 17.994,11.836 4.843,3.156 13.222,8.119 16.677,12.27 -5.708,5.844 -13.86,11.079 -20.332,16.587 -25.157,-11.971 -49.001,-24.595 -74.692,-36.299 -0.676,12.419 0.786,30.86 1.534,43.534 1.308,20.744 2.341,41.504 3.098,62.275 0.557,17.205 0.896,34.416 1.018,51.629 0.061,9.065 -0.322,25.988 0.981,34.158 0.133,3.916 1.858,28.006 1.196,30.536 l -1.018,-0.98 c -8.478,-2.72 -21.131,-12.6 -29.014,-17.71 -17.026,-11.058 -34.9,-24.884 -52.739,-34.337 -2.865,-3.126 -7.639,-5.715 -11.348,-8.028 -19.771,-14.044 -55.228,-33.426 -76.572,-45.689 l -3.734,-3.014 c -0.698,-0.358 -2.717,-1.347 -3.534,-2.061 -10.857,-9.474 -24.604,-18.947 -33.823,-29.878 -0.353,-1.855 -0.639,-3.358 -0.859,-4.509 -5.089,-48.371 -8.067,-97.768 -13.345,-146.509 -0.353,-2.048 -0.549,-4.754 -0.77,-6.875 10.847,9.754 21.823,19.362 32.926,28.822 5.12,-8.364 53.592,-73.815 58.682,-77.157 z"
|
||||||
|
id="path80" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 771.141,678.763 c 7.364,-1.497 86.678,24.969 99.668,28.086 0.009,6.824 -0.281,17.485 0.61,23.891 2.433,4.96 7,13.029 7.1,18.23 5.582,7.62 11.01,13.528 14.053,22.47 3.808,-1.986 8.438,-4.603 12.333,-6.166 4.81,3.231 9.841,6.716 14.708,9.815 11.046,7.883 27.434,19.15 39.002,25.955 6.17,4.37 11.557,7.852 17.994,11.836 4.843,3.156 13.222,8.119 16.677,12.27 -5.708,5.844 -13.86,11.079 -20.332,16.587 -25.157,-11.971 -49.001,-24.595 -74.692,-36.299 -17.164,5.079 -45.234,8.35 -63.65,12.75 -6.316,1.509 -37.007,7.602 -41.697,7.67 l -1.154,-0.409 -1.02,0.036 c -4.143,-2.256 -25.945,-22.051 -30.606,-26.276 -15.525,-14.075 -32.8,-28.052 -47.876,-42.407 5.12,-8.364 53.592,-73.815 58.682,-77.157 z"
|
||||||
|
id="path81" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 712.259,756.802 c 5.12,-8.364 53.592,-73.815 58.682,-77.157 11.853,32.572 24.35,64.23 36.237,96.405 -5.556,16.334 -10.696,32.805 -15.417,49.399 l -1.02,0.036 c -4.143,-2.256 -25.945,-22.051 -30.606,-26.276 -15.525,-14.075 -32.8,-28.052 -47.876,-42.407 z"
|
||||||
|
id="path82" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 892.572,771.44 c 3.808,-1.986 8.438,-4.603 12.333,-6.166 4.81,3.231 9.841,6.716 14.708,9.815 11.046,7.883 27.434,19.15 39.002,25.955 6.17,4.37 11.557,7.852 17.994,11.836 4.843,3.156 13.222,8.119 16.677,12.27 -5.708,5.844 -13.86,11.079 -20.332,16.587 -25.157,-11.971 -49.001,-24.595 -74.692,-36.299 -17.164,5.079 -45.234,8.35 -63.65,12.75 -6.316,1.509 -37.007,7.602 -41.697,7.67 2.811,-2.186 17.312,-9.521 21.444,-11.904 19.499,-11.247 41.558,-21.605 60.653,-33.219 3.784,-1.424 13.536,-7.079 17.56,-9.295 z"
|
||||||
|
id="path83" /><path
|
||||||
|
fill="#fec002"
|
||||||
|
d="m 835.311,700.651 c 13.473,15.822 29.243,32.74 43.208,48.319 5.582,7.62 11.01,13.528 14.053,22.47 -4.024,2.216 -13.776,7.871 -17.56,9.295 -12.574,-7.25 -32.178,-18.093 -45.03,-24.156 2.5,-17.79 3.584,-37.752 5.329,-55.928 z"
|
||||||
|
id="path84" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 811.97,966.515 c 2.96,-5.374 -16.312,-100.083 -16.886,-115.918 -0.123,-3.391 -2.749,-19.719 -3.433,-23.454 26.173,47.201 52.842,94.126 80.002,140.766 8.916,15.612 26.455,43.351 33.418,58.681 -8.478,-2.72 -21.131,-12.6 -29.014,-17.71 -17.026,-11.058 -34.9,-24.884 -52.739,-34.337 -2.865,-3.126 -7.639,-5.715 -11.348,-8.028 z"
|
||||||
|
id="path85" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 680.103,734.855 c 2.759,4.96 11.366,37.863 13.395,45.267 l 21.926,80.023 c 4.715,17.507 10.489,40.716 16.24,57.667 -0.698,-0.358 -2.717,-1.347 -3.534,-2.061 -10.857,-9.474 -24.604,-18.947 -33.823,-29.878 -0.353,-1.855 -0.639,-3.358 -0.859,-4.509 -5.089,-48.371 -8.067,-97.768 -13.345,-146.509 z"
|
||||||
|
id="path86" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1136.96,438.791 1.42,0.246 c -2.02,31.198 -18.76,182.135 -14.37,201.407 -3.51,9.14 -7.11,18.243 -10.8,27.31 l -2.92,7.891 c -4.41,13.651 -10.66,33.792 -15.9,46.652 l -1.25,-0.462 c -12.75,-10.371 -26.91,-19.857 -39.15,-30.611 l -2.27,6.202 c -12.71,-5.547 -25.87,-12.969 -39.41,-18.939 l -0.65,-2.784 c 0.15,-3.575 -0.28,-8.373 -0.49,-12.029 1.25,-25.15 0.3,-59.509 0.3,-85.264 4.98,3.667 10.35,8.128 15.24,12.017 4.47,-41.957 6.41,-97.17 8.49,-140.504 l 2.8,0.169 c 31.8,-3.509 67.54,-6.688 98.96,-11.301 z"
|
||||||
|
id="path87" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 1054.05,686.872 c 3.33,-5.332 5.75,-22.761 8.09,-30.854 14.94,-0.131 29.89,-0.169 44.83,-0.116 -0.78,3.807 -2.91,13.784 -2.84,17.386 1.23,3.584 1.86,9.066 -0.05,12.411 0.28,0.17 0.06,0.098 0.86,0.012 l -0.23,-1.176 c 1.78,-3.846 2.44,-6.264 5.58,-8.89 -4.41,13.651 -10.66,33.792 -15.9,46.652 l -1.25,-0.462 c -12.75,-10.371 -26.91,-19.857 -39.15,-30.611 z"
|
||||||
|
id="path88" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 1093.14,721.835 c 3.54,-16.074 6.99,-32.62 10.99,-48.547 1.23,3.584 1.86,9.066 -0.05,12.411 0.28,0.17 0.06,0.098 0.86,0.012 l -0.23,-1.176 c 1.78,-3.846 2.44,-6.264 5.58,-8.89 -4.41,13.651 -10.66,33.792 -15.9,46.652 z"
|
||||||
|
id="path89" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1011.47,578.41 c 4.98,3.667 10.35,8.128 15.24,12.017 7.4,6.402 22,15.224 22.7,23.337 0.06,0.807 0.11,1.615 0.14,2.424 -0.74,3.192 -33.25,54.162 -37.89,59.515 0.15,-3.575 -0.28,-8.373 -0.49,-12.029 1.25,-25.15 0.3,-59.509 0.3,-85.264 z"
|
||||||
|
id="path90" /><path
|
||||||
|
fill="#fec002"
|
||||||
|
d="m 1049.55,616.188 c 1.07,13.965 1.92,27.945 2.55,41.936 0.32,6.546 0.76,22.773 1.95,28.748 l -0.06,4.352 -2.27,6.202 c -12.71,-5.547 -25.87,-12.969 -39.41,-18.939 l -0.65,-2.784 c 4.64,-5.353 37.15,-56.323 37.89,-59.515 z"
|
||||||
|
id="path91" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1080.14,611.379 c 8.76,14.95 17.71,29.792 26.83,44.523 -14.94,-0.053 -29.89,-0.015 -44.83,0.116 5.75,-14.981 11.75,-29.863 18,-44.639 z"
|
||||||
|
id="path92" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1012.31,678.487 c 13.54,5.97 26.7,13.392 39.41,18.939 l 2.27,-6.202 c 12.24,10.754 26.4,20.24 39.15,30.611 l 1.25,0.462 c 6.79,4.014 21.43,11.902 28.82,14.487 -3.12,6.777 -9.38,19.352 -11.71,25.919 -7,14.718 -7.8,40.333 -12.12,51.181 -0.44,3.106 -1.27,7.798 -1.36,10.812 l -1.27,0.816 c -9.87,-1.684 -6.44,1.238 -17.55,-4.548 l -3.52,10.563 -2.38,8.316 c -6.51,4.56 -22.17,13.763 -26.03,18.681 -4.26,17.283 -11.92,42.25 -17.56,59.164 -1.47,-1.722 -2.69,-3.719 -3.96,-5.618 l -1.12,2.143 c -6.06,-9.792 -18.49,-25.34 -25.311,-35.629 -4.854,-7.325 -21.336,-31.645 -26.365,-36.847 6.472,-5.508 14.624,-10.743 20.332,-16.587 -3.455,-4.151 -11.834,-9.114 -16.677,-12.27 -6.437,-3.984 -11.824,-7.466 -17.994,-11.836 -11.568,-6.805 -27.956,-18.072 -39.002,-25.955 -0.696,-11.695 -1.588,-23.653 -1.651,-35.35 l 0.184,-6.201 -2.295,-1.976 c 8.282,-8.399 16.503,-16.857 24.662,-25.375 l 3.042,-3.543 c 3.537,4.956 6.768,19.952 8.313,26.285 9.957,-8.291 20.974,-17.168 30.341,-25.977 5.16,-4.127 8.302,-6.278 13.871,-9.815 3.55,-2.014 4.26,-2.429 7.31,-5.085 2.89,1.51 7.07,1.114 10.11,0.106 z"
|
||||||
|
id="path93" /><path
|
||||||
|
fill="#fe7c00"
|
||||||
|
d="m 1019.07,787.515 c 8.52,4.095 13.48,1.244 19.69,4.67 l -4.43,21.09 c 0.46,0.704 0.92,1.408 1.38,2.112 12.09,4.883 28.69,10.556 39.97,16.14 l -2.38,8.316 c -6.51,4.56 -22.17,13.763 -26.03,18.681 -4.26,17.283 -11.92,42.25 -17.56,59.164 -1.47,-1.722 -2.69,-3.719 -3.96,-5.618 l -1.12,2.143 c -6.06,-9.792 -18.49,-25.34 -25.311,-35.629 -4.854,-7.325 -21.336,-31.645 -26.365,-36.847 6.472,-5.508 14.624,-10.743 20.332,-16.587 l 0.464,0.21 c 9.22,-7.114 16.03,-11.664 26.43,-16.84 -0.48,-6.995 -0.86,-13.997 -1.11,-21.005 z"
|
||||||
|
id="path94" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 993.286,825.15 0.464,0.21 c 10.75,28.025 20.78,59.817 32,86.71 l -1.12,2.143 c -6.06,-9.792 -18.49,-25.34 -25.311,-35.629 -4.854,-7.325 -21.336,-31.645 -26.365,-36.847 6.472,-5.508 14.624,-10.743 20.332,-16.587 z"
|
||||||
|
id="path95" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 1019.07,787.515 c 8.52,4.095 13.48,1.244 19.69,4.67 l -4.43,21.09 c -2.82,13.241 -5.42,26.407 -9.32,39.374 l -4.83,-44.129 c -0.48,-6.995 -0.86,-13.997 -1.11,-21.005 z"
|
||||||
|
id="path96" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 943.555,702.644 c 3.537,4.956 6.768,19.952 8.313,26.285 3.348,11.001 5.639,21.72 8.727,32.549 0.645,9.59 -1.194,29.413 -1.98,39.566 -11.568,-6.805 -27.956,-18.072 -39.002,-25.955 -0.696,-11.695 -1.588,-23.653 -1.651,-35.35 l 0.184,-6.201 -2.295,-1.976 c 8.282,-8.399 16.503,-16.857 24.662,-25.375 z"
|
||||||
|
id="path97" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 943.555,702.644 c 3.537,4.956 6.768,19.952 8.313,26.285 3.348,11.001 5.639,21.72 8.727,32.549 -9.403,-4.666 -32.765,-21.316 -42.449,-27.94 l -2.295,-1.976 c 8.282,-8.399 16.503,-16.857 24.662,-25.375 z"
|
||||||
|
id="path98" /><path
|
||||||
|
fill="#fec002"
|
||||||
|
d="m 1041.25,781.666 c 17.94,-5.596 41.29,-18.609 58.56,-22.543 -4.08,15.079 -10.65,29.68 -14.44,44.17 l -6.17,17.671 -3.52,10.563 c -11.28,-5.584 -27.88,-11.257 -39.97,-16.14 -0.46,-0.704 -0.92,-1.408 -1.38,-2.112 l 4.43,-21.09 c 0.67,-4.124 0.86,-6.717 2.49,-10.519 z"
|
||||||
|
id="path99" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 963.936,764.088 c 15.793,4.29 38.374,16.025 54.504,22.006 l 0.63,1.421 c 0.25,7.008 0.63,14.01 1.11,21.005 -10.4,5.176 -17.21,9.726 -26.43,16.84 l -0.464,-0.21 c -3.455,-4.151 -11.834,-9.114 -16.677,-12.27 -4.524,-15.47 -8.633,-33.048 -12.673,-48.792 z"
|
||||||
|
id="path100" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1069.84,732.887 c 12.59,0.113 24.12,0.804 36.68,1.588 -2.07,8.609 -4.18,16.159 -6.71,24.648 -17.27,3.934 -40.62,16.947 -58.56,22.543 4.71,-11.093 21.52,-37.257 28.59,-48.779 z"
|
||||||
|
id="path101" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 963.936,764.088 c 7.003,-11.769 18.665,-29.948 26.803,-41.272 l 18.061,40.766 c 2.76,6.208 7.73,16.336 9.64,22.512 -16.13,-5.981 -38.711,-17.716 -54.504,-22.006 z"
|
||||||
|
id="path102" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 1012.31,678.487 c 13.54,5.97 26.7,13.392 39.41,18.939 -2.85,6.297 -18.24,41.654 -20.99,44.103 -1.98,-1.423 -1.9,-1.273 -3.08,-3.392 -0.17,-8.291 -11.04,-39.508 -14.15,-49.979 z"
|
||||||
|
id="path103" /><path
|
||||||
|
fill="#fe7c00"
|
||||||
|
d="m 996.08,693.137 c 3.55,-2.014 4.26,-2.429 7.31,-5.085 2.89,1.51 7.07,1.114 10.11,0.106 3.11,10.471 13.98,41.688 14.15,49.979 -14.98,-14.031 -22.09,-27.568 -31.57,-45 z"
|
||||||
|
id="path104" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 1085.37,803.293 c 1.45,3.166 0.78,4.929 1.41,8.49 l 3.38,1.104 -0.66,-0.002 c 5.57,1.431 4.63,1.338 9.88,0.999 -0.44,3.106 -1.27,7.798 -1.36,10.812 l -1.27,0.816 c -9.87,-1.684 -6.44,1.238 -17.55,-4.548 z"
|
||||||
|
id="path105" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 833.394,499.617 c 13.061,25.244 36.901,59.888 51.849,85.471 8.223,14.072 33.104,56.172 42.017,67.674 -1.613,4.242 -0.308,2.697 -3.553,5.175 l -0.427,2.29 c 3.205,4.761 9.832,21.494 12.36,23.419 l 0.483,0.052 c 3.123,6.193 -0.195,15.233 4.39,22.489 -8.159,8.518 -16.38,16.976 -24.662,25.375 l 2.295,1.976 -0.184,6.201 c 0.063,11.697 0.955,23.655 1.651,35.35 -4.867,-3.099 -9.898,-6.584 -14.708,-9.815 -3.895,1.563 -8.525,4.18 -12.333,6.166 -3.043,-8.942 -8.471,-14.85 -14.053,-22.47 -0.1,-5.201 -4.667,-13.27 -7.1,-18.23 -0.891,-6.406 -0.601,-17.067 -0.61,-23.891 -12.99,-3.117 -92.304,-29.583 -99.668,-28.086 l -0.314,-0.505 c 4.383,-9.795 9.244,-25.109 12.843,-35.543 l 21.803,-64.058 17.634,-51.201 c 2.62,-7.703 7.092,-19.713 8.813,-27.352 z"
|
||||||
|
id="path106" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 862.26,643.749 c 19.051,5.181 41.796,9.461 61.447,14.188 l -0.427,2.29 c 3.205,4.761 9.832,21.494 12.36,23.419 l 0.483,0.052 c 3.123,6.193 -0.195,15.233 4.39,22.489 -8.159,8.518 -16.38,16.976 -24.662,25.375 -2.479,-2.165 -1.618,-0.86 -2.551,-4.13 l -0.825,-1.885 c -3.667,-7.454 -12.607,-20.9 -17.27,-28.317 -11.299,-17.63 -22.282,-35.46 -32.945,-53.481 z"
|
||||||
|
id="path107" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 923.28,660.227 c 3.205,4.761 9.832,21.494 12.36,23.419 l 0.483,0.052 c 3.123,6.193 -0.195,15.233 4.39,22.489 -8.159,8.518 -16.38,16.976 -24.662,25.375 -2.479,-2.165 -1.618,-0.86 -2.551,-4.13 0.627,0.128 1.701,0.026 2.399,0.002 1.186,-4.506 1.825,-15.288 2.366,-20.293 1.7,-15.746 2.429,-31.263 5.215,-46.914 z"
|
||||||
|
id="path108" /><path
|
||||||
|
fill="#fe7c00"
|
||||||
|
d="m 871.419,730.74 c 8.211,0.75 41.468,2.133 45.372,5.213 l 1.171,3.786 c 0.063,11.697 0.955,23.655 1.651,35.35 -4.867,-3.099 -9.898,-6.584 -14.708,-9.815 -3.895,1.563 -8.525,4.18 -12.333,6.166 -3.043,-8.942 -8.471,-14.85 -14.053,-22.47 -0.1,-5.201 -4.667,-13.27 -7.1,-18.23 z"
|
||||||
|
id="path109" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 870.809,706.849 0.22,-15.311 c 6.069,5.196 36.834,33.584 41.446,34.009 l 0.825,1.885 c 0.933,3.27 0.072,1.965 2.551,4.13 l 2.295,1.976 -0.184,6.201 -1.171,-3.786 c -3.904,-3.08 -37.161,-4.463 -45.372,-5.213 -0.891,-6.406 -0.601,-17.067 -0.61,-23.891 z"
|
||||||
|
id="path110" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 882.908,396.896 c 10.66,-4.966 26.822,-11.887 36.567,-17.559 0.914,3.415 9.303,39.95 9.162,41.9 -7.81,5.029 -24.563,19.576 -32.326,25.988 -21.071,17.346 -42.044,34.81 -62.917,52.392 l -1.474,0.487 c 4.911,-28.658 11.464,-56.954 15.646,-85.897 2.491,-2.502 29.411,-14.46 35.342,-17.311 z"
|
||||||
|
id="path111" /><path
|
||||||
|
fill="#fec002"
|
||||||
|
d="m 931.652,621.962 c 7.792,-9.798 17.855,-20.192 26.59,-29.347 3.899,21.287 8.017,42.534 12.354,63.737 1.449,6.523 5.075,25.014 8.289,29.796 0.507,5.306 0.829,12.166 3.324,16.804 -9.367,8.809 -20.384,17.686 -30.341,25.977 -1.545,-6.333 -4.776,-21.329 -8.313,-26.285 l -3.042,3.543 c -4.585,-7.256 -1.267,-16.296 -4.39,-22.489 l -0.483,-0.052 c -2.528,-1.925 -9.155,-18.658 -12.36,-23.419 l 0.427,-2.29 c 3.245,-2.478 1.94,-0.933 3.553,-5.175 l 3.786,-0.406 c 2.694,-2.829 1.774,-3.587 2.109,-8.74 -0.407,-7.224 -0.908,-14.443 -1.503,-21.654 z"
|
||||||
|
id="path112" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 970.596,656.352 c 1.449,6.523 5.075,25.014 8.289,29.796 0.507,5.306 0.829,12.166 3.324,16.804 -9.367,8.809 -20.384,17.686 -30.341,25.977 -1.545,-6.333 -4.776,-21.329 -8.313,-26.285 l -0.566,-1.148 c 3.352,-6.504 23.238,-40.514 27.607,-45.144 z"
|
||||||
|
id="path113" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 933.155,643.616 c 1.639,13.304 2.629,26.681 2.968,40.082 l -0.483,-0.052 c -2.528,-1.925 -9.155,-18.658 -12.36,-23.419 l 0.427,-2.29 c 3.245,-2.478 1.94,-0.933 3.553,-5.175 l 3.786,-0.406 c 2.694,-2.829 1.774,-3.587 2.109,-8.74 z"
|
||||||
|
id="path114" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 976.518,630.42 c 7.191,-6.205 16.568,-13.023 24.222,-18.891 1.52,17.094 2.95,34.197 4.28,51.308 0.84,2.911 1.26,6.392 3.23,7.99 1.63,-2.779 1.95,-4.147 2.92,-7.153 0.21,3.656 0.64,8.454 0.49,12.029 l 0.65,2.784 1.19,9.671 c -3.04,1.008 -7.22,1.404 -10.11,-0.106 -3.05,2.656 -3.76,3.071 -7.31,5.085 -5.569,3.537 -8.711,5.688 -13.871,9.815 -2.495,-4.638 -2.817,-11.498 -3.324,-16.804 -0.155,-17.579 -1.588,-38 -2.367,-55.728 z"
|
||||||
|
id="path115" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1005.02,662.837 c 0.84,2.911 1.26,6.392 3.23,7.99 1.63,-2.779 1.95,-4.147 2.92,-7.153 0.21,3.656 0.64,8.454 0.49,12.029 l 0.65,2.784 1.19,9.671 c -3.04,1.008 -7.22,1.404 -10.11,-0.106 1.52,-9.643 1.52,-15.297 1.63,-25.215 z"
|
||||||
|
id="path116" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1019.97,1058.3 2.43,0.37 -0.06,1.39 c 7.46,14.7 38.75,103.59 44.59,107.53 31.17,0.74 71.34,0.78 101.98,3.34 13.75,0.32 39.4,1.95 51.94,1.15 l 0.81,0.05 c 2.43,15.77 9.14,28.03 10.75,46.59 -0.82,12.17 -4.18,39.5 -6.83,51.6 -4.39,8.53 -9.6,17.67 -14.74,25.77 -11.82,18.57 -22.33,39.15 -34.62,57.34 l -1.8,0.96 c -14.53,7.15 -45.75,17.44 -62.29,24.33 -9.24,3.86 -54.31,21.45 -61.12,22.76 -17.87,7.18 -35.84,14.13 -53.889,20.86 -5.245,1.97 -14.854,5.9 -19.902,7.29 -2.227,-0.43 -45.898,-31.85 -50.823,-35.34 L 812.125,1313.2 c -5.217,-3.75 -26.523,-16.99 -27.932,-21.22 l 1.059,-1.93 c 14.004,-31.27 31.351,-63.31 45.593,-94.71 4.277,-9.44 16.081,-31.4 18.691,-40.3 0.352,-1.36 3.818,-5.84 4.829,-7.19 30.757,0.49 62.539,3.51 93.331,4.88 9.895,0.44 28.023,2.48 37.158,2.22 10.846,-25.2 17.796,-53.54 28.506,-78.95 2.29,-5.41 5.03,-12.15 6.61,-17.7 z"
|
||||||
|
id="path125" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 785.252,1290.05 c 5.775,2.1 27.737,-7.43 34.586,-9.95 l 52.502,-19.29 160.32,-58 0.42,71.04 c 0.02,5.03 -0.06,28.97 0.67,32.24 -3.87,11.36 -10.2,22.57 -14.84,33.51 -12.09,28.48 -30.883,61.81 -41.691,90.03 -2.227,-0.43 -45.898,-31.85 -50.823,-35.34 L 812.125,1313.2 c -5.217,-3.75 -26.523,-16.99 -27.932,-21.22 z"
|
||||||
|
id="path126" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1022.34,1060.06 c 7.46,14.7 38.75,103.59 44.59,107.53 31.17,0.74 71.34,0.78 101.98,3.34 13.75,0.32 39.4,1.95 51.94,1.15 l 0.81,0.05 c 2.43,15.77 9.14,28.03 10.75,46.59 -0.82,12.17 -4.18,39.5 -6.83,51.6 l -2.63,-1.58 c -29.33,-13.16 -60.08,-24.56 -89.69,-37.2 -5.18,-2.21 -10.77,-4.07 -16.16,-5.71 -12.89,-5.82 -67.73,-18.26 -84.58,-22.64 l -5.57,-74.42 c -1.96,-23.78 -4.54,-44.73 -4.61,-68.71 z"
|
||||||
|
id="path127" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1168.91,1170.93 c 13.75,0.32 39.4,1.95 51.94,1.15 l 0.81,0.05 c 2.43,15.77 9.14,28.03 10.75,46.59 -0.82,12.17 -4.18,39.5 -6.83,51.6 l -2.63,-1.58 c 0.01,-8.97 -46.82,-82.53 -54.04,-97.81 z"
|
||||||
|
id="path128" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1033.75,1306.09 c 26.82,10.6 56.59,20.26 83.98,29.31 20.26,6.69 36.94,9.79 56.69,18.99 -14.53,7.15 -45.75,17.44 -62.29,24.33 -9.24,3.86 -54.31,21.45 -61.12,22.76 -17.87,7.18 -35.84,14.13 -53.889,20.86 -5.245,1.97 -14.854,5.9 -19.902,7.29 10.808,-28.22 29.601,-61.55 41.691,-90.03 4.64,-10.94 10.97,-22.15 14.84,-33.51 z"
|
||||||
|
id="path129" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1117.1,1225.83 c 5.39,1.64 10.98,3.5 16.16,5.71 29.61,12.64 60.36,24.04 89.69,37.2 l 2.63,1.58 c -4.39,8.53 -9.6,17.67 -14.74,25.77 -11.82,18.57 -22.33,39.15 -34.62,57.34 -12.51,-21.61 -24.48,-50.48 -35.07,-73.43 -6.04,-13.07 -19.89,-41.4 -24.05,-54.17 z"
|
||||||
|
id="path130" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 1002.85,296.966 c 23.39,-9.624 56.31,-19.5 80.98,-27.39 24.85,-7.943 54.62,-18.487 79.38,-25.156 39.39,18.555 80.47,37.376 119.29,56.821 13.78,21.815 29.65,57.547 42.92,81.357 17.68,34.328 37.24,69.143 54.37,103.502 -10.7,-6.625 -130.86,-67.902 -136.49,-69.008 -5.87,11 -13.1,42.541 -17,56.151 -4.18,-8.73 -8.85,-20.645 -12.76,-29.828 l -18.53,-13.351 c -13.36,4.043 -41.51,5.524 -58.05,8.727 -31.42,4.613 -67.16,7.792 -98.96,11.301 l -2.8,-0.169 -0.37,-0.571 c -9.1,-48.526 -25.36,-105.102 -32.8,-152.508 z"
|
||||||
|
id="path135" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1002.85,296.966 c 23.39,-9.624 56.31,-19.5 80.98,-27.39 24.85,-7.943 54.62,-18.487 79.38,-25.156 -2.13,11.651 -14.4,146.226 -13.3,151.759 l 0.13,0.555 c 14.84,11.305 29.83,22.416 44.97,33.33 -13.36,4.043 -41.51,5.524 -58.05,8.727 -31.42,4.613 -67.16,7.792 -98.96,11.301 l -2.8,-0.169 -0.37,-0.571 c -9.1,-48.526 -25.36,-105.102 -32.8,-152.508 z"
|
||||||
|
id="path136" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1002.85,296.966 c 23.39,-9.624 56.31,-19.5 80.98,-27.39 24.85,-7.943 54.62,-18.487 79.38,-25.156 -2.13,11.651 -14.4,146.226 -13.3,151.759 l 0.13,0.555 -1.45,-0.455 c -15.54,-12.118 -38.77,-26.948 -55.62,-38.335 z"
|
||||||
|
id="path137" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1148.59,396.279 1.45,0.455 c 14.84,11.305 29.83,22.416 44.97,33.33 -13.36,4.043 -41.51,5.524 -58.05,8.727 -31.42,4.613 -67.16,7.792 -98.96,11.301 8.9,-8.167 95.03,-46.489 110.59,-53.813 z"
|
||||||
|
id="path138" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1163.21,244.42 c 39.39,18.555 80.47,37.376 119.29,56.821 -36.63,28.812 -77.71,54.332 -115.13,82.31 -5.46,4.08 -11.83,8.854 -17.46,12.628 -1.1,-5.533 11.17,-140.108 13.3,-151.759 z"
|
||||||
|
id="path139" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="M 705.202,368.146 C 717.727,355.622 862.967,235.787 866.895,235.013 l 89.155,40.834 c 12.277,5.629 34.42,16.622 45.98,20.997 7.44,47.406 23.7,103.982 32.8,152.508 l -2.03,0.852 -1.34,-1.646 c -7.58,-1.234 -26.3,-6.746 -34.45,-8.908 -22.84,-5.953 -45.632,-12.091 -68.373,-18.413 0.141,-1.95 -8.248,-38.485 -9.162,-41.9 -9.745,5.672 -25.907,12.593 -36.567,17.559 -5.931,2.851 -32.851,14.809 -35.342,17.311 -5.705,5.641 -16.246,21.399 -21.476,28.626 -5.784,-9.463 -11.524,-24.821 -17.589,-33.342 l -2.165,-0.344 c -7.469,2.07 -39.214,19.79 -49.049,24.471 -2.71,-6.37 -48.056,-62.491 -52.173,-64.983 z"
|
||||||
|
id="path140" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 705.202,368.146 c 12.525,-12.524 157.765,-132.359 161.693,-133.133 -0.06,13.888 12.629,154.895 16.013,161.883 -5.931,2.851 -32.851,14.809 -35.342,17.311 -5.705,5.641 -16.246,21.399 -21.476,28.626 -5.784,-9.463 -11.524,-24.821 -17.589,-33.342 l -2.165,-0.344 c -7.469,2.07 -39.214,19.79 -49.049,24.471 -2.71,-6.37 -48.056,-62.491 -52.173,-64.983 z"
|
||||||
|
id="path141" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 919.475,379.337 c 6.256,2.263 105.615,63.165 111.985,69.221 -7.58,-1.234 -26.3,-6.746 -34.45,-8.908 -22.84,-5.953 -45.632,-12.091 -68.373,-18.413 0.141,-1.95 -8.248,-38.485 -9.162,-41.9 z"
|
||||||
|
id="path142" /></g></g></svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 77 KiB |
@@ -1,64 +1,418 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" role="img" overflow="hidden">
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
<polygon points="65.12,49.96 80.71,12.09 93.17,65.67" fill="#FF4DA0" stroke="none"/>
|
|
||||||
<polygon points="80.71,12.09 119.29,12.09 106.83,65.67 93.17,65.67" fill="#FFB3D9" stroke="none"/>
|
<svg
|
||||||
<polygon points="119.29,12.09 134.88,49.96 106.83,65.67" fill="#FF80BC" stroke="none"/>
|
width="1023.9999"
|
||||||
<polygon points="110.72,39.95 148.52,24.20 119.44,70.90" fill="#FF4DA0" stroke="none"/>
|
height="1023.9999"
|
||||||
<polygon points="148.52,24.20 175.80,51.48 129.10,80.56 119.44,70.90" fill="#FFB3D9" stroke="none"/>
|
viewBox="0 0 270.93331 270.93331"
|
||||||
<polygon points="175.80,51.48 160.05,89.28 129.10,80.56" fill="#FF80BC" stroke="none"/>
|
version="1.1"
|
||||||
<polygon points="150.04,65.12 187.91,80.71 134.33,93.17" fill="#FF4DA0" stroke="none"/>
|
id="svg1"
|
||||||
<polygon points="187.91,80.71 187.91,119.29 134.33,106.83 134.33,93.17" fill="#FFB3D9" stroke="none"/>
|
xml:space="preserve"
|
||||||
<polygon points="187.91,119.29 150.04,134.88 134.33,106.83" fill="#FF80BC" stroke="none"/>
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
<polygon points="160.05,110.72 175.80,148.52 129.10,119.44" fill="#FF4DA0" stroke="none"/>
|
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||||
<polygon points="175.80,148.52 148.52,175.80 119.44,129.10 129.10,119.44" fill="#FFB3D9" stroke="none"/>
|
id="defs1"><linearGradient
|
||||||
<polygon points="148.52,175.80 110.72,160.05 119.44,129.10" fill="#FF80BC" stroke="none"/>
|
id="Gradient1"
|
||||||
<polygon points="134.88,150.04 119.29,187.91 106.83,134.33" fill="#FF4DA0" stroke="none"/>
|
gradientUnits="userSpaceOnUse"
|
||||||
<polygon points="119.29,187.91 80.71,187.91 93.17,134.33 106.83,134.33" fill="#FFB3D9" stroke="none"/>
|
x1="894.22803"
|
||||||
<polygon points="80.71,187.91 65.12,150.04 93.17,134.33" fill="#FF80BC" stroke="none"/>
|
y1="631.01099"
|
||||||
<polygon points="89.28,160.05 51.48,175.80 80.56,129.10" fill="#FF4DA0" stroke="none"/>
|
x2="1010.66"
|
||||||
<polygon points="51.48,175.80 24.20,148.52 70.90,119.44 80.56,129.10" fill="#FFB3D9" stroke="none"/>
|
y2="438.11801"><stop
|
||||||
<polygon points="24.20,148.52 39.95,110.72 70.90,119.44" fill="#FF80BC" stroke="none"/>
|
class="stop0"
|
||||||
<polygon points="49.96,134.88 12.09,119.29 65.67,106.83" fill="#FF4DA0" stroke="none"/>
|
offset="0"
|
||||||
<polygon points="12.09,119.29 12.09,80.71 65.67,93.17 65.67,106.83" fill="#FFB3D9" stroke="none"/>
|
stop-opacity="1"
|
||||||
<polygon points="12.09,80.71 49.96,65.12 65.67,93.17" fill="#FF80BC" stroke="none"/>
|
stop-color="rgb(140,1,93)"
|
||||||
<polygon points="39.95,89.28 24.20,51.48 70.90,80.56" fill="#FF4DA0" stroke="none"/>
|
id="stop1" /><stop
|
||||||
<polygon points="24.20,51.48 51.48,24.20 80.56,70.90 70.90,80.56" fill="#FFB3D9" stroke="none"/>
|
class="stop1"
|
||||||
<polygon points="51.48,24.20 89.28,39.95 80.56,70.90" fill="#FF80BC" stroke="none"/>
|
offset="1"
|
||||||
<polygon points="90.47,62.18 111.63,43.18 104.23,81.48" fill="#CC1070" stroke="none"/>
|
stop-opacity="1"
|
||||||
<polygon points="111.63,43.18 137.17,55.48 111.85,85.15 104.23,81.48" fill="#FF4DA0" stroke="none"/>
|
stop-color="rgb(194,0,124)"
|
||||||
<polygon points="137.17,55.48 135.51,83.87 111.85,85.15" fill="#FF1A8C" stroke="none"/>
|
id="stop2" /></linearGradient></defs><g
|
||||||
<polygon points="123.63,68.97 151.68,73.67 117.12,91.76" fill="#CC1070" stroke="none"/>
|
id="layer1"><g
|
||||||
<polygon points="151.68,73.67 157.99,101.30 119.00,100.00 117.12,91.76" fill="#FF4DA0" stroke="none"/>
|
style="display:block"
|
||||||
<polygon points="157.99,101.30 134.75,117.71 119.00,100.00" fill="#FF1A8C" stroke="none"/>
|
id="g255"
|
||||||
<polygon points="138.99,99.12 152.81,123.99 117.12,108.24" fill="#CC1070" stroke="none"/>
|
transform="matrix(0.16293793,0,0,0.16293793,-31.311826,-0.15007564)"><path
|
||||||
<polygon points="152.81,123.99 135.14,146.15 111.85,114.85 117.12,108.24" fill="#FF4DA0" stroke="none"/>
|
fill="url(#Gradient1)"
|
||||||
<polygon points="135.14,146.15 107.82,138.21 111.85,114.85" fill="#FF1A8C" stroke="none"/>
|
d="m 1365.97,352.26 c 33.44,5.967 66.93,11.685 100.45,17.154 7.06,1.205 36.51,5.725 42.13,7.538 12.83,32.618 23.38,67.736 35.84,100.628 4.83,12.758 9.79,28.918 15.4,41.225 -5.95,16.059 -13.35,31.899 -19.75,47.778 -2.42,5.995 -7.15,16.083 -8.85,21.965 l 1.3,2.475 c 6.72,9.453 11.58,20.042 17.45,30.061 12.61,-3.767 116.54,-40.481 120.85,-39.213 3.62,14.985 36.79,182.752 35.32,187.364 l -0.54,0.551 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 13.38,5.544 29.44,10.792 41.45,18.873 13.88,9.337 35.29,50.507 45.18,66.427 -18.32,41.08 -37.86,90.21 -54.74,132.42 l -3.46,1.81 -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 -10.98,-5.85 -35.51,-15.21 -47.52,-20.19 -32.74,-13.44 -65.41,-27.07 -97.99,-40.9 l -9.85,-4.07 c -1.61,-18.56 -8.32,-30.82 -10.75,-46.59 l -0.81,-0.05 c -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 -5.84,-3.94 -37.13,-92.83 -44.59,-107.53 l 0.06,-1.39 -2.43,-0.37 c -1.58,5.55 -4.32,12.29 -6.61,17.7 -10.71,25.41 -17.66,53.75 -28.506,78.95 -9.135,0.26 -27.263,-1.78 -37.158,-2.22 -30.792,-1.37 -62.574,-4.39 -93.331,-4.88 -1.011,1.35 -4.477,5.83 -4.829,7.19 -16.283,18.06 -66.819,84.55 -81.343,92.99 -9.135,5.3 -20.103,8.7 -29.949,12.59 -19.846,7.84 -39.863,15.51 -59.412,24.06 -1.616,0.88 -4.343,2.6 -6.293,2.01 -16.907,-5.09 -33.722,-10.5 -50.597,-15.7 l -141.863,-43.64 -1.349,-0.48 c -1.578,-1.84 -37.901,-161.82 -40.523,-180.2 l 1.905,-1.64 c 9.348,-3.19 21.679,-10.04 30.963,-14.18 24.726,-11.04 51.755,-25.84 76.793,-35.632 L 401.605,916.54 C 385.408,859.501 372.125,801.088 356.551,743.836 351.705,726.02 346.794,707.569 342.947,689.53 l -1.637,-5.522 -0.326,-1.982 c 2.897,-5.081 105.919,-97.431 109.126,-98.684 20.966,6.087 69.886,18.942 87.336,26.713 -3.622,-10.027 -23.182,-64.819 -23.325,-73.144 1.824,-8.153 6.235,-20.431 8.957,-28.876 l 17.109,-53.238 15.328,-48.164 c 2.244,-7.056 6.385,-21.554 9.438,-27.311 15.511,-0.507 34.422,-2.528 50.088,-3.806 l 90.161,-7.37 -0.088,0.489 c 4.117,2.492 49.463,58.613 52.173,64.983 9.835,-4.681 41.58,-22.401 49.049,-24.471 l 2.165,0.344 c 6.065,8.521 11.805,23.879 17.589,33.342 5.23,-7.227 15.771,-22.985 21.476,-28.626 2.491,-2.502 29.411,-14.46 35.342,-17.311 10.66,-4.966 26.822,-11.887 36.567,-17.559 0.914,3.415 9.303,39.95 9.162,41.9 22.741,6.322 45.533,12.46 68.373,18.413 8.15,2.162 26.87,7.674 34.45,8.908 l 1.34,1.646 2.03,-0.852 0.37,0.571 2.8,0.169 c 31.8,-3.509 67.54,-6.688 98.96,-11.301 16.54,-3.203 44.69,-4.684 58.05,-8.727 l 18.53,13.351 c 3.91,9.183 8.58,21.098 12.76,29.828 3.9,-13.61 11.13,-45.151 17,-56.151 5.63,1.106 125.79,62.383 136.49,69.008 -17.13,-34.359 -36.69,-69.174 -54.37,-103.502 13.22,-9.993 27.08,-20.809 40.55,-30.338 z"
|
||||||
<polygon points="124.99,129.94 114.17,156.24 104.23,118.52" fill="#CC1070" stroke="none"/>
|
id="path3"
|
||||||
<polygon points="114.17,156.24 85.83,156.24 95.77,118.52 104.23,118.52" fill="#FF4DA0" stroke="none"/>
|
style="fill:url(#Gradient1)" /><path
|
||||||
<polygon points="85.83,156.24 75.01,129.94 95.77,118.52" fill="#FF1A8C" stroke="none"/>
|
fill="#d3105e"
|
||||||
<polygon points="92.18,138.21 64.86,146.15 88.15,114.85" fill="#CC1070" stroke="none"/>
|
d="m 1365.97,352.26 c 33.44,5.967 66.93,11.685 100.45,17.154 7.06,1.205 36.51,5.725 42.13,7.538 12.83,32.618 23.38,67.736 35.84,100.628 4.83,12.758 9.79,28.918 15.4,41.225 -5.95,16.059 -13.35,31.899 -19.75,47.778 -2.42,5.995 -7.15,16.083 -8.85,21.965 l 1.3,2.475 c 6.72,9.453 11.58,20.042 17.45,30.061 12.61,-3.767 116.54,-40.481 120.85,-39.213 3.62,14.985 36.79,182.752 35.32,187.364 l -0.54,0.551 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 13.38,5.544 29.44,10.792 41.45,18.873 13.88,9.337 35.29,50.507 45.18,66.427 -18.32,41.08 -37.86,90.21 -54.74,132.42 l -3.46,1.81 -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 -10.98,-5.85 -35.51,-15.21 -47.52,-20.19 -32.74,-13.44 -65.41,-27.07 -97.99,-40.9 l -9.85,-4.07 c -1.61,-18.56 -8.32,-30.82 -10.75,-46.59 l -0.81,-0.05 c -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 -5.84,-3.94 -37.13,-92.83 -44.59,-107.53 l 0.06,-1.39 c 6.78,-3.15 29.88,-7.41 37.78,-9.22 28.49,-6.51 58.96,-11.47 87.01,-19.18 l 1.71,0.14 c 12.85,-11.24 33.57,-26 47.63,-36.726 11.69,-8.923 39.91,-32.132 51.53,-37.849 l -0.07,-0.509 c -1.43,-4.062 6.02,-106.705 8.06,-111.728 21.32,-21.73 43.32,-42.702 64.86,-64.29 2.75,-2.16 13.83,-13.74 16.79,-16.748 l 35.26,-35.843 0.36,-0.873 c 0.34,-3.318 -25.69,-52.954 -28.77,-60.706 0.19,-6.718 -1.72,-21.065 -2.47,-28.343 -2,-18.661 -3.84,-37.339 -5.52,-56.032 -4.62,-17.869 -4.97,-56.705 -8.89,-77.602 -28.42,-27.922 -56.29,-57.628 -84.37,-86.069 5.63,1.106 125.79,62.383 136.49,69.008 -17.13,-34.359 -36.69,-69.174 -54.37,-103.502 13.22,-9.993 27.08,-20.809 40.55,-30.338 z"
|
||||||
<polygon points="64.86,146.15 47.19,123.99 82.88,108.24 88.15,114.85" fill="#FF4DA0" stroke="none"/>
|
id="path4" /><path
|
||||||
<polygon points="47.19,123.99 61.01,99.12 82.88,108.24" fill="#FF1A8C" stroke="none"/>
|
fill="#9d0067"
|
||||||
<polygon points="65.25,117.71 42.01,101.30 81.00,100.00" fill="#CC1070" stroke="none"/>
|
d="m 1248.06,955.835 c 10.27,7.731 50.26,14.782 65.07,20.423 -7.29,0.652 -52.85,-12.921 -63.05,-15.892 0.57,7.141 1.04,15.928 2.39,22.792 24.49,-1.374 47.62,-4.456 72.05,-2.965 38.92,-1.135 80.92,-4.094 119.68,-3.527 -1.28,6.788 -16.13,30.844 -20.46,40.144 7.12,5.04 16.09,7.44 21.09,12.28 l -0.93,1.08 c 2.37,0.65 93.81,-54.406 105.58,-58.64 13.38,5.544 29.44,10.792 41.45,18.873 13.88,9.337 35.29,50.507 45.18,66.427 -18.32,41.08 -37.86,90.21 -54.74,132.42 l -3.46,1.81 -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 -10.98,-5.85 -35.51,-15.21 -47.52,-20.19 -32.74,-13.44 -65.41,-27.07 -97.99,-40.9 l -9.85,-4.07 c -1.61,-18.56 -8.32,-30.82 -10.75,-46.59 l -0.81,-0.05 c -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 -5.84,-3.94 -37.13,-92.83 -44.59,-107.53 l 0.06,-1.39 c 6.78,-3.15 29.88,-7.41 37.78,-9.22 28.49,-6.51 58.96,-11.47 87.01,-19.18 l 1.71,0.14 c 12.85,-11.24 33.57,-26 47.63,-36.726 11.69,-8.923 39.91,-32.132 51.53,-37.849 z"
|
||||||
<polygon points="42.01,101.30 48.32,73.67 82.88,91.76 81.00,100.00" fill="#FF4DA0" stroke="none"/>
|
id="path5" /><path
|
||||||
<polygon points="48.32,73.67 76.37,68.97 82.88,91.76" fill="#FF1A8C" stroke="none"/>
|
fill="#d3105e"
|
||||||
<polygon points="64.49,83.87 62.83,55.48 88.15,85.15" fill="#CC1070" stroke="none"/>
|
d="m 1248.06,955.835 c 10.27,7.731 50.26,14.782 65.07,20.423 -7.29,0.652 -52.85,-12.921 -63.05,-15.892 0.57,7.141 1.04,15.928 2.39,22.792 24.49,-1.374 47.62,-4.456 72.05,-2.965 38.92,-1.135 80.92,-4.094 119.68,-3.527 -20.84,19.039 -53.14,45.624 -75.61,64.134 -22.12,-1.57 -44.99,-0.98 -67.23,-2.9 -5,-0.44 -16.47,-0.52 -20.57,-1.18 -18.57,17.1 -40.7,45.59 -59.28,64.58 l -0.43,0.46 -0.16,43.8 c -0.09,7.42 -0.68,19.41 -0.07,26.52 -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 -5.84,-3.94 -37.13,-92.83 -44.59,-107.53 l 0.06,-1.39 c 6.78,-3.15 29.88,-7.41 37.78,-9.22 28.49,-6.51 58.96,-11.47 87.01,-19.18 l 1.71,0.14 c 12.85,-11.24 33.57,-26 47.63,-36.726 11.69,-8.923 39.91,-32.132 51.53,-37.849 z"
|
||||||
<polygon points="62.83,55.48 88.37,43.18 95.77,81.48 88.15,85.15" fill="#FF4DA0" stroke="none"/>
|
id="path6" /><path
|
||||||
<polygon points="88.37,43.18 109.53,62.18 95.77,81.48" fill="#FF1A8C" stroke="none"/>
|
fill="#fea6cd"
|
||||||
<polygon points="82.63,88.20 89.16,69.89 97.53,92.39" fill="#990050" stroke="none"/>
|
d="m 1221.08,1101.76 -0.16,43.8 c -0.09,7.42 -0.68,19.41 -0.07,26.52 -12.54,0.8 -38.19,-0.83 -51.94,-1.15 -30.64,-2.56 -70.81,-2.6 -101.98,-3.34 8.16,-4.79 43.97,-19.18 54.62,-23.62 33.28,-13.84 66.46,-27.91 99.53,-42.21 z"
|
||||||
<polygon points="89.16,69.89 110.84,69.89 102.47,92.39 97.53,92.39" fill="#FF1A8C" stroke="none"/>
|
id="path7" /><path
|
||||||
<polygon points="110.84,69.89 117.37,88.20 102.47,92.39" fill="#CC1070" stroke="none"/>
|
fill="#b50852"
|
||||||
<polygon points="105.86,79.83 125.28,80.39 106.47,95.30" fill="#990050" stroke="none"/>
|
d="m 1248.06,955.835 c 10.27,7.731 50.26,14.782 65.07,20.423 -7.29,0.652 -52.85,-12.921 -63.05,-15.892 0.57,7.141 1.04,15.928 2.39,22.792 24.49,-1.374 47.62,-4.456 72.05,-2.965 -8.27,1.125 -19.48,1.369 -28.23,1.928 -15.08,0.964 -31.3,2.767 -46.3,3.18 -1.56,19.629 -4.25,38.169 -5.55,58.009 -31.57,-6.18 -63.47,-10.49 -95.54,-12.9 12.85,-11.24 33.57,-26 47.63,-36.726 11.69,-8.923 39.91,-32.132 51.53,-37.849 z"
|
||||||
<polygon points="125.28,80.39 131.98,101.01 108.00,100.00 106.47,95.30" fill="#FF1A8C" stroke="none"/>
|
id="path8" /><path
|
||||||
<polygon points="131.98,101.01 116.59,112.87 108.00,100.00" fill="#CC1070" stroke="none"/>
|
fill="#c6007c"
|
||||||
<polygon points="120.99,99.34 126.47,117.99 106.47,104.70" fill="#990050" stroke="none"/>
|
d="m 1444.83,1029.09 -0.93,1.08 c 2.37,0.65 93.81,-54.406 105.58,-58.64 13.38,5.544 29.44,10.792 41.45,18.873 13.88,9.337 35.29,50.507 45.18,66.427 -18.32,41.08 -37.86,90.21 -54.74,132.42 -40.78,-27.01 -80.64,-55.82 -121.42,-82.55 -16.89,-9.87 -48.84,-28.98 -62.37,-41.75 9.13,-15.82 17.85,-31.87 26.16,-48.14 7.12,5.04 16.09,7.44 21.09,12.28 z"
|
||||||
<polygon points="126.47,117.99 108.93,130.73 102.47,107.61 106.47,104.70" fill="#FF1A8C" stroke="none"/>
|
id="path9" /><path
|
||||||
<polygon points="108.93,130.73 92.89,119.76 102.47,107.61" fill="#CC1070" stroke="none"/>
|
fill="#f5119b"
|
||||||
<polygon points="107.11,119.76 91.07,130.73 97.53,107.61" fill="#990050" stroke="none"/>
|
d="m 1459.95,1106.7 c 2.71,-2.6 163.13,-47.27 176.16,-49.87 -18.32,41.08 -37.86,90.21 -54.74,132.42 -40.78,-27.01 -80.64,-55.82 -121.42,-82.55 z"
|
||||||
<polygon points="91.07,130.73 73.53,117.99 93.53,104.70 97.53,107.61" fill="#FF1A8C" stroke="none"/>
|
id="path10" /><path
|
||||||
<polygon points="73.53,117.99 79.01,99.34 93.53,104.70" fill="#CC1070" stroke="none"/>
|
fill="#c6007c"
|
||||||
<polygon points="83.41,112.87 68.02,101.01 92.00,100.00" fill="#990050" stroke="none"/>
|
d="m 1459.95,1106.7 c 40.78,26.73 80.64,55.54 121.42,82.55 l -3.46,1.81 -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 3.75,-5.57 3.82,-34.08 5.69,-43.59 2.73,-13.82 3,-22.45 8.75,-36.41 l 2.08,-0.66 36.28,-62.15 c 5.35,-9.18 15.53,-25.47 19.38,-34.37 z"
|
||||||
<polygon points="68.02,101.01 74.72,80.39 93.53,95.30 92.00,100.00" fill="#FF1A8C" stroke="none"/>
|
id="path11" /><path
|
||||||
<polygon points="74.72,80.39 94.14,79.83 93.53,95.30" fill="#CC1070" stroke="none"/>
|
fill="#f5119b"
|
||||||
<polygon points="100.00,95.00 104.76,98.45 102.94,104.05 97.06,104.05 95.24,98.45" fill="#880044" stroke="none"/>
|
d="m 1404.29,1203.22 c 11.42,-0.3 33.79,-3.18 46.05,-4.29 28.18,-2.5 56.38,-4.77 84.6,-6.8 10.19,-0.76 34.39,-3.32 42.97,-1.07 l -121.77,61.05 c -8.48,4.24 -63.15,33.29 -68.37,31.77 3.75,-5.57 3.82,-34.08 5.69,-43.59 2.73,-13.82 3,-22.45 8.75,-36.41 z"
|
||||||
</svg>
|
id="path12" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1444.2,976.666 c -1.28,6.788 -16.13,30.844 -20.46,40.144 -8.31,16.27 -17.03,32.32 -26.16,48.14 l -33.87,63.49 c -25.14,-30.14 -58.9,-61.72 -82.92,-91.72 4.1,0.66 15.57,0.74 20.57,1.18 22.24,1.92 45.11,1.33 67.23,2.9 22.47,-18.51 54.77,-45.095 75.61,-64.134 z"
|
||||||
|
id="path13" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1242.26,1222.79 c 2.3,-4.22 4.11,-4.94 8.75,-5.5 38.37,-4.63 77.07,-6.12 115.5,-10.55 11.56,-1.33 24.12,-2.43 35.7,-2.86 -5.75,13.96 -6.02,22.59 -8.75,36.41 -1.87,9.51 -1.94,38.02 -5.69,43.59 -10.98,-5.85 -35.51,-15.21 -47.52,-20.19 -32.74,-13.44 -65.41,-27.07 -97.99,-40.9 z"
|
||||||
|
id="path14" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1280.79,1036.72 c 24.02,30 57.78,61.58 82.92,91.72 -42.95,-11.77 -97.51,-17.87 -142.2,-27.14 18.58,-18.99 40.71,-47.48 59.28,-64.58 z"
|
||||||
|
id="path15" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1221.51,1101.3 c 44.69,9.27 99.25,15.37 142.2,27.14 -13.19,3.03 -28.99,8.69 -42.15,12.59 -33.18,9.85 -66.67,21.68 -99.9,31.1 l -0.81,-0.05 c -0.61,-7.11 -0.02,-19.1 0.07,-26.52 l 0.16,-43.8 z"
|
||||||
|
id="path16" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1549.94,621.084 c 12.61,-3.767 116.54,-40.481 120.85,-39.213 3.62,14.985 36.79,182.752 35.32,187.364 l -0.54,0.551 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 -11.77,4.234 -103.21,59.29 -105.58,58.64 l 0.93,-1.08 c -5,-4.84 -13.97,-7.24 -21.09,-12.28 4.33,-9.3 19.18,-33.356 20.46,-40.144 -38.76,-0.567 -80.76,2.392 -119.68,3.527 -24.43,-1.491 -47.56,1.591 -72.05,2.965 -1.35,-6.864 -1.82,-15.651 -2.39,-22.792 10.2,2.971 55.76,16.544 63.05,15.892 3.51,0.734 7.35,1.976 10.64,0.983 39.13,-12.615 78.08,-25.788 116.83,-39.514 9.57,-3.285 44.09,-14.407 50.59,-17.888 -2.09,-12.868 -3.04,-48.441 -3.93,-63.239 22.24,-24.043 37.69,-42.456 58.28,-67.978 2.58,-13.025 1.08,-36.839 2.04,-51.425 0.9,-13.694 3,-31.557 2.47,-44.967 -0.19,-4.675 -5.36,-22.059 -6.5,-28.405 -3,-16.633 -11.35,-57.742 -11.06,-72.802 6.72,9.453 11.58,20.042 17.45,30.061 z"
|
||||||
|
id="path17" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1700.81,771.736 4.76,-1.95 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 -11.77,4.234 -103.21,59.29 -105.58,58.64 l 0.93,-1.08 c -5,-4.84 -13.97,-7.24 -21.09,-12.28 4.33,-9.3 19.18,-33.356 20.46,-40.144 -38.76,-0.567 -80.76,2.392 -119.68,3.527 -24.43,-1.491 -47.56,1.591 -72.05,2.965 -1.35,-6.864 -1.82,-15.651 -2.39,-22.792 10.2,2.971 55.76,16.544 63.05,15.892 3.51,0.734 7.35,1.976 10.64,0.983 39.13,-12.615 78.08,-25.788 116.83,-39.514 9.57,-3.285 44.09,-14.407 50.59,-17.888 16.73,-23.319 33.31,-53.926 49.89,-78.097 4.43,-6.467 13.71,-22.706 18.44,-27.612 8.71,-3.514 22.04,-6.773 31.39,-9.347 26.11,-7.89 51.85,-17.364 78.14,-24.728 10.22,-2.864 21.34,-6.607 31.76,-8.319 z"
|
||||||
|
id="path18" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1700.81,771.736 4.76,-1.95 c -5.89,13.485 -89.78,161.722 -94.19,165.75 -11.97,10.911 -45.96,25.413 -61.9,35.994 -11.77,4.234 -103.21,59.29 -105.58,58.64 l 0.93,-1.08 c 10.59,-11.15 24.62,-29.885 34.73,-42.286 l 64.43,-78.862 c 8.06,-9.967 22.46,-28.823 30.96,-37.573 11.6,-11.93 35.1,-28.602 49.05,-39.245 z"
|
||||||
|
id="path19" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1670.79,581.871 c 3.62,14.985 36.79,182.752 35.32,187.364 l -0.54,0.551 -4.76,1.95 c -10.42,1.712 -21.54,5.455 -31.76,8.319 -26.29,7.364 -52.03,16.838 -78.14,24.728 -1.84,-4.747 71.53,-212.147 79.88,-222.912 z"
|
||||||
|
id="path20" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1532.49,591.023 c 6.72,9.453 11.58,20.042 17.45,30.061 6.8,12.449 20.64,35.75 26.03,47.973 -6.11,48.284 -11.59,96.646 -16.45,145.073 -4.73,4.906 -14.01,21.145 -18.44,27.612 -16.58,24.171 -33.16,54.778 -49.89,78.097 -2.09,-12.868 -3.04,-48.441 -3.93,-63.239 22.24,-24.043 37.69,-42.456 58.28,-67.978 2.58,-13.025 1.08,-36.839 2.04,-51.425 0.9,-13.694 3,-31.557 2.47,-44.967 -0.19,-4.675 -5.36,-22.059 -6.5,-28.405 -3,-16.633 -11.35,-57.742 -11.06,-72.802 z"
|
||||||
|
id="path21" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1365.97,352.26 c 33.44,5.967 66.93,11.685 100.45,17.154 7.06,1.205 36.51,5.725 42.13,7.538 12.83,32.618 23.38,67.736 35.84,100.628 4.83,12.758 9.79,28.918 15.4,41.225 -49.15,21.153 -98.05,39.997 -146.91,60.813 -6.93,6.385 -5.4,13.129 -7.75,22.233 3.97,30.414 13.93,64.277 19.2,94.947 -5.13,-2.303 -73.8,-101.238 -87.77,-116.035 -4.62,-17.869 -4.97,-56.705 -8.89,-77.602 -28.42,-27.922 -56.29,-57.628 -84.37,-86.069 5.63,1.106 125.79,62.383 136.49,69.008 -17.13,-34.359 -36.69,-69.174 -54.37,-103.502 13.22,-9.993 27.08,-20.809 40.55,-30.338 z"
|
||||||
|
id="path22" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1455.62,488.361 c 18.55,-32.26 34.87,-79.277 52.93,-111.409 12.83,32.618 23.38,67.736 35.84,100.628 4.83,12.758 9.79,28.918 15.4,41.225 -49.15,21.153 -98.05,39.997 -146.91,60.813 14.03,-30.416 29.08,-60.896 42.74,-91.257 z"
|
||||||
|
id="path23" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1327.67,503.161 c 17.27,-5.814 34.51,-11.745 51.7,-17.794 7.37,25.096 11.68,58.667 18.19,84.616 2.55,10.122 4.18,21.905 7.57,31.868 3.97,30.414 13.93,64.277 19.2,94.947 -5.13,-2.303 -73.8,-101.238 -87.77,-116.035 -4.62,-17.869 -4.97,-56.705 -8.89,-77.602 z"
|
||||||
|
id="path24" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1365.97,352.26 c 33.44,5.967 66.93,11.685 100.45,17.154 7.06,1.205 36.51,5.725 42.13,7.538 -18.06,32.132 -34.38,79.149 -52.93,111.409 -19,-30.368 -40.59,-59.936 -60.32,-89.795 -7.74,-11.722 -24.23,-34.465 -29.33,-46.306 z"
|
||||||
|
id="path25" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1373.32,725.844 c 4.92,6.942 3.06,119.367 8.49,138.307 -12.06,15.173 -49.61,42.351 -65.17,57.78 -1.07,3.178 -1.9,3.782 -5.61,5.468 -20.9,9.509 -42.48,17.604 -63.04,27.927 -1.43,-4.062 6.02,-106.705 8.06,-111.728 21.32,-21.73 43.32,-42.702 64.86,-64.29 2.75,-2.16 13.83,-13.74 16.79,-16.748 l 35.26,-35.843 z"
|
||||||
|
id="path26" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 1373.32,725.844 c 4.92,6.942 3.06,119.367 8.49,138.307 -12.06,15.173 -49.61,42.351 -65.17,57.78 2.87,-13.592 10.57,-37.471 14.63,-51.32 l 27.59,-93.818 c 2.97,-9.879 14.4,-42.728 14.1,-50.076 z"
|
||||||
|
id="path27" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1531.19,588.548 1.3,2.475 c -0.29,15.06 8.06,56.169 11.06,72.802 1.14,6.346 6.31,23.73 6.5,28.405 0.53,13.41 -1.57,31.273 -2.47,44.967 -0.96,14.586 0.54,38.4 -2.04,51.425 -28.15,-8.741 -56.17,-17.889 -84.06,-27.439 22.84,-57.703 46.08,-115.249 69.71,-172.635 z"
|
||||||
|
id="path28" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1336.56,580.763 c 13.97,14.797 82.64,113.732 87.77,116.035 0,5.385 -7.53,30.685 -9.21,37.615 -6.32,26.099 -13.79,52.572 -19.8,78.715 -2.32,8.311 -12.12,43.962 -12.4,50.954 l -1.11,0.069 c -5.43,-18.94 -3.57,-131.365 -8.49,-138.307 0.34,-3.318 -25.69,-52.954 -28.77,-60.706 0.19,-6.718 -1.72,-21.065 -2.47,-28.343 -2,-18.661 -3.84,-37.339 -5.52,-56.032 z"
|
||||||
|
id="path29" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1487.26,856.6 c 0.89,14.798 1.84,50.371 3.93,63.239 -6.5,3.481 -41.02,14.603 -50.59,17.888 -38.75,13.726 -77.7,26.899 -116.83,39.514 10.17,-9.804 22.51,-23.311 31.32,-34.43 15.02,-18.967 30.1,-25.933 50.79,-37.896 l 54.36,-31.588 c 7.2,-4.223 20.94,-11.751 27.02,-16.727 z"
|
||||||
|
id="path30" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 1395.32,813.128 c 11.73,-3.844 59.85,-49.213 62.89,-48.673 -1.18,3.531 -5.8,7.536 -8.41,10.876 -16.27,20.787 -31.82,41.555 -46.96,63.19 -3.3,4.717 -16.07,23.495 -19.92,25.561 0.28,-6.992 10.08,-42.643 12.4,-50.954 z"
|
||||||
|
id="path31" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 341.31,684.008 -0.326,-1.982 c 2.897,-5.081 105.919,-97.431 109.126,-98.684 20.966,6.087 69.886,18.942 87.336,26.713 3.416,5.394 6.664,9.545 7.614,15.858 -0.837,2.251 -0.381,1.463 -2.139,3.18 l 0.06,1.037 -0.084,0.105 c 12.399,15.905 39.126,34.07 54.288,48.392 5.021,4.743 7.89,11.493 12.692,16.884 l -0.196,1.818 2.675,7.651 c 26.22,59.73 52.849,119.28 79.887,178.645 l 1.205,-2.261 c 0.22,1.151 0.506,2.654 0.859,4.509 9.219,10.931 22.966,20.404 33.823,29.878 0.817,0.714 2.836,1.703 3.534,2.061 l 3.734,3.014 c 21.344,12.263 56.801,31.645 76.572,45.689 3.709,2.313 8.483,4.902 11.348,8.028 17.839,9.453 35.713,23.279 52.739,34.337 7.883,5.11 20.536,14.99 29.014,17.71 l 1.018,0.98 1.244,2.21 c 32.481,9.6 75.17,17.02 104.877,26.94 2.95,0.38 4.97,0.46 7.76,1.58 -1.58,5.55 -4.32,12.29 -6.61,17.7 -10.71,25.41 -17.66,53.75 -28.506,78.95 -9.135,0.26 -27.263,-1.78 -37.158,-2.22 -30.792,-1.37 -62.574,-4.39 -93.331,-4.88 -1.011,1.35 -4.477,5.83 -4.829,7.19 -16.283,18.06 -66.819,84.55 -81.343,92.99 -9.135,5.3 -20.103,8.7 -29.949,12.59 -19.846,7.84 -39.863,15.51 -59.412,24.06 -1.616,0.88 -4.343,2.6 -6.293,2.01 -16.907,-5.09 -33.722,-10.5 -50.597,-15.7 l -141.863,-43.64 -1.349,-0.48 c -1.578,-1.84 -37.901,-161.82 -40.523,-180.2 l 1.905,-1.64 c 9.348,-3.19 21.679,-10.04 30.963,-14.18 24.726,-11.04 51.755,-25.84 76.793,-35.632 L 401.605,916.54 C 385.408,859.501 372.125,801.088 356.551,743.836 351.705,726.02 346.794,707.569 342.947,689.53 Z"
|
||||||
|
id="path32" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 547.868,995.218 c 32.146,12.532 63.386,25.582 95.305,38.312 0.688,2.21 1.931,6.22 3.436,7.87 16.167,17.73 39.431,33.95 56.579,50.27 19.027,16.07 37.72,33.37 56.619,49.14 1.759,1.32 1.015,1.01 3.1,1.55 30.507,1.46 60.995,3.29 91.458,5.49 -1.011,1.35 -4.477,5.83 -4.829,7.19 -16.283,18.06 -66.819,84.55 -81.343,92.99 -9.135,5.3 -20.103,8.7 -29.949,12.59 -19.846,7.84 -39.863,15.51 -59.412,24.06 -1.616,0.88 -4.343,2.6 -6.293,2.01 -16.907,-5.09 -33.722,-10.5 -50.597,-15.7 l -141.863,-43.64 -1.349,-0.48 c -1.578,-1.84 -37.901,-161.82 -40.523,-180.2 l 1.905,-1.64 c 9.348,-3.19 21.679,-10.04 30.963,-14.18 24.726,-11.04 51.755,-25.84 76.793,-35.632 z"
|
||||||
|
id="path33" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 480.079,1227.35 -1.349,-0.48 c -1.578,-1.84 -37.901,-161.82 -40.523,-180.2 l 1.905,-1.64 c 9.331,6.09 45.652,16.11 58.622,20.25 l 102.303,32.8 c 19.186,6.12 42.857,13.04 61.369,19.93 -21.103,11.86 -177.548,102.14 -182.327,109.34 z"
|
||||||
|
id="path34" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 703.188,1091.67 c 19.027,16.07 37.72,33.37 56.619,49.14 1.759,1.32 1.015,1.01 3.1,1.55 30.507,1.46 60.995,3.29 91.458,5.49 -1.011,1.35 -4.477,5.83 -4.829,7.19 -16.283,18.06 -66.819,84.55 -81.343,92.99 -9.135,5.3 -20.103,8.7 -29.949,12.59 -19.846,7.84 -39.863,15.51 -59.412,24.06 l -0.665,-3.13 c 3.04,-8.95 18.633,-30.52 24.666,-39.37 12.785,-18.88 25.695,-37.67 38.731,-56.38 -18.928,-18.71 -56.959,-50.93 -78.87,-67.73 11.544,-8.78 27.993,-17.79 40.494,-26.4 z"
|
||||||
|
id="path35" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 621.302,956.687 c 14.751,0.183 40.826,10.058 58.073,11.327 25.596,1.882 49.633,0.725 75.068,1.205 7.927,1.466 22.317,1.42 31.004,1.89 12.431,0.673 25.781,2.813 37.871,3.434 17.839,9.453 35.713,23.279 52.739,34.337 7.883,5.11 20.536,14.99 29.014,17.71 l 1.018,0.98 1.244,2.21 c 32.481,9.6 75.17,17.02 104.877,26.94 2.95,0.38 4.97,0.46 7.76,1.58 -1.58,5.55 -4.32,12.29 -6.61,17.7 -10.71,25.41 -17.66,53.75 -28.506,78.95 -9.135,0.26 -27.263,-1.78 -37.158,-2.22 -30.792,-1.37 -62.574,-4.39 -93.331,-4.88 -30.463,-2.2 -60.951,-4.03 -91.458,-5.49 -2.085,-0.54 -1.341,-0.23 -3.1,-1.55 -18.899,-15.77 -37.592,-33.07 -56.619,-49.14 -17.148,-16.32 -40.412,-32.54 -56.579,-50.27 -1.505,-1.65 -2.748,-5.66 -3.436,-7.87 -0.558,-3.56 -1.425,-5.38 -2.714,-8.69 -3.97,-12.42 -18.61,-57.563 -20.159,-67.295 z"
|
||||||
|
id="path36" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 621.302,956.687 c 6.214,5.816 19.797,14.832 27.376,20.252 17.82,12.693 35.553,25.511 53.195,38.451 10.861,-1 28.702,-3.6 38.758,-3.61 37.776,19.08 75.356,44.5 111.462,62.79 l -56.962,42.63 c -8.096,6.1 -25.407,18.7 -32.224,25.16 -2.085,-0.54 -1.341,-0.23 -3.1,-1.55 -18.899,-15.77 -37.592,-33.07 -56.619,-49.14 -17.148,-16.32 -40.412,-32.54 -56.579,-50.27 -1.505,-1.65 -2.748,-5.66 -3.436,-7.87 -0.558,-3.56 -1.425,-5.38 -2.714,-8.69 -3.97,-12.42 -18.61,-57.563 -20.159,-67.295 z"
|
||||||
|
id="path37" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 740.631,1011.78 c 37.776,19.08 75.356,44.5 111.462,62.79 l -56.962,42.63 c -8.096,6.1 -25.407,18.7 -32.224,25.16 -2.085,-0.54 -1.341,-0.23 -3.1,-1.55 0.643,-5.77 -6.117,-43.14 -7.629,-52.32 -4.257,-25.83 -8.543,-50.49 -11.547,-76.71 z"
|
||||||
|
id="path38" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="M 852.093,1074.57 877.11,1089 c 34.772,22.7 73.956,43.2 107.744,65.95 -9.135,0.26 -27.263,-1.78 -37.158,-2.22 -30.792,-1.37 -62.574,-4.39 -93.331,-4.88 -30.463,-2.2 -60.951,-4.03 -91.458,-5.49 6.817,-6.46 24.128,-19.06 32.224,-25.16 z"
|
||||||
|
id="path39" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 1012.21,1056.72 c 2.95,0.38 4.97,0.46 7.76,1.58 -1.58,5.55 -4.32,12.29 -6.61,17.7 -10.71,25.41 -17.66,53.75 -28.506,78.95 -33.788,-22.75 -72.972,-43.25 -107.744,-65.95 17.517,-0.99 39.996,1.46 54.623,1.09 18.048,-0.46 60.897,-24.69 80.477,-33.37 z"
|
||||||
|
id="path40" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 538.404,632.187 c 0.592,-0.908 1.269,-1.46 2.055,-2.25 l 2.438,0.298 c 12.399,15.905 39.126,34.07 54.288,48.392 5.021,4.743 7.89,11.493 12.692,16.884 l -0.196,1.818 2.675,7.651 c 26.22,59.73 52.849,119.28 79.887,178.645 l 1.205,-2.261 c 0.22,1.151 0.506,2.654 0.859,4.509 9.219,10.931 22.966,20.404 33.823,29.878 0.817,0.714 2.836,1.703 3.534,2.061 l 3.734,3.014 c 21.344,12.263 56.801,31.645 76.572,45.689 3.709,2.313 8.483,4.902 11.348,8.028 -12.09,-0.621 -25.44,-2.761 -37.871,-3.434 -8.687,-0.47 -23.077,-0.424 -31.004,-1.89 -25.435,-0.48 -49.472,0.677 -75.068,-1.205 -17.247,-1.269 -43.322,-11.144 -58.073,-11.327 l -1.002,0.858 c -3.389,-4.311 -16.58,-5.467 -22.914,-6.553 -4.302,-4.962 -14.915,-21.478 -18.743,-27.209 -12.1,-18.442 -24.453,-36.716 -37.057,-54.817 l -25.145,-37.088 c -5.501,-8.019 -12.192,-16.264 -16.163,-25.157 -5.072,-11.357 -15.119,-96.189 -17.195,-114.148 5.127,-6.664 17.667,-18.949 23.987,-25.23 12.217,-12.142 20.778,-21.605 31.334,-35.156 z"
|
||||||
|
id="path41" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 538.404,632.187 1.138,1.332 c -3.1,10.786 -5.709,22.246 -7.976,33.242 -8.168,39.619 -16.669,79.299 -24.26,119.031 22.033,17.451 44.625,35.268 66.416,52.986 10.575,8.597 22.628,37.73 28.63,51.494 -1.04,20.068 -3.291,40.585 -4.966,60.72 -4.302,-4.962 -14.915,-21.478 -18.743,-27.209 -12.1,-18.442 -24.453,-36.716 -37.057,-54.817 l -25.145,-37.088 c -5.501,-8.019 -12.192,-16.264 -16.163,-25.157 -5.072,-11.357 -15.119,-96.189 -17.195,-114.148 5.127,-6.664 17.667,-18.949 23.987,-25.23 12.217,-12.142 20.778,-21.605 31.334,-35.156 z"
|
||||||
|
id="path42" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 602.352,890.272 c 31.5,15.815 63.133,31.363 94.897,46.641 20.786,10.182 50.794,26.297 72.171,31.749 l -14.977,0.557 c -25.435,-0.48 -49.472,0.677 -75.068,-1.205 -17.247,-1.269 -43.322,-11.144 -58.073,-11.327 l -1.002,0.858 c -3.389,-4.311 -16.58,-5.467 -22.914,-6.553 1.675,-20.135 3.926,-40.652 4.966,-60.72 z"
|
||||||
|
id="path43" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 601.147,834.54 c 5.446,-14.094 15.418,-39.057 17.519,-53.778 1.711,-11.987 -11.758,-66.383 -6.31,-75.782 26.22,59.73 52.849,119.28 79.887,178.645 -1.751,0.147 -2.405,0.203 -4.049,-0.684 -29.593,-15.976 -56.811,-33.432 -87.047,-48.401 z"
|
||||||
|
id="path44" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 735.398,920.826 c 21.344,12.263 56.801,31.645 76.572,45.689 -19.875,-5.795 -61.672,-15.191 -75.7,-28.583 -1.016,-7.418 -1.342,-9.671 -0.872,-17.106 z"
|
||||||
|
id="path45" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 538.404,632.187 c 0.592,-0.908 1.269,-1.46 2.055,-2.25 l 2.438,0.298 c 12.399,15.905 39.126,34.07 54.288,48.392 5.021,4.743 7.89,11.493 12.692,16.884 l -0.196,1.818 c -7.109,-5.186 -25.917,-28.258 -35.034,-34.936 -5.76,-4.769 -12.573,-12.337 -18.55,-16.454 -3.086,-2.126 -14.158,-11.342 -16.555,-12.42 z"
|
||||||
|
id="path46" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 342.947,689.53 c 6.183,5.227 28.672,45.976 34.477,55.951 l 64.463,111.615 c 3.174,5.563 16.107,29.731 19.143,32.12 3.419,-3.364 70.643,-18.17 80.556,-20.25 12.604,18.101 24.957,36.375 37.057,54.817 3.828,5.731 14.441,22.247 18.743,27.209 6.334,1.086 19.525,2.242 22.914,6.553 1.549,9.732 16.189,54.875 20.159,67.295 1.289,3.31 2.156,5.13 2.714,8.69 -31.919,-12.73 -63.159,-25.78 -95.305,-38.312 L 401.605,916.54 C 385.408,859.501 372.125,801.088 356.551,743.836 351.705,726.02 346.794,707.569 342.947,689.53 Z"
|
||||||
|
id="path47" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 541.586,868.966 c 12.604,18.101 24.957,36.375 37.057,54.817 3.828,5.731 14.441,22.247 18.743,27.209 6.334,1.086 19.525,2.242 22.914,6.553 1.549,9.732 16.189,54.875 20.159,67.295 l -0.34,0.19 c -0.524,0.01 -1.048,0.01 -1.572,0.01 C 589.764,986.15 507.005,924.733 461.03,889.216 c 3.419,-3.364 70.643,-18.17 80.556,-20.25 z"
|
||||||
|
id="path48" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 341.31,684.008 -0.326,-1.982 c 2.897,-5.081 105.919,-97.431 109.126,-98.684 -0.182,7.913 7.372,44.313 9.303,54.445 7.896,42.541 16.284,84.989 25.16,127.337 -32.208,-19.301 -64.513,-38.44 -96.914,-57.416 -13.311,-7.762 -26.542,-15.775 -40.024,-23.202 -2.351,-1.295 -3.851,-1.182 -6.325,-0.498 z"
|
||||||
|
id="path49" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 705.202,368.146 -0.088,0.489 c 4.117,2.492 49.463,58.613 52.173,64.983 9.835,-4.681 41.58,-22.401 49.049,-24.471 l 2.165,0.344 c 6.065,8.521 11.805,23.879 17.589,33.342 5.23,-7.227 15.771,-22.985 21.476,-28.626 -4.182,28.943 -10.735,57.239 -15.646,85.897 -1.721,7.639 -6.193,19.649 -8.813,27.352 l -17.634,51.201 -21.803,64.058 c -3.599,10.434 -8.46,25.748 -12.843,35.543 l 0.314,0.505 -0.2,0.882 c -5.09,3.342 -53.562,68.793 -58.682,77.157 -11.103,-9.46 -22.079,-19.068 -32.926,-28.822 0.221,2.121 0.417,4.827 0.77,6.875 5.278,48.741 8.256,98.138 13.345,146.509 l -1.205,2.261 C 665.205,824.26 638.576,764.71 612.356,704.98 l -2.675,-7.651 0.196,-1.818 c -4.802,-5.391 -7.671,-12.141 -12.692,-16.884 -15.162,-14.322 -41.889,-32.487 -54.288,-48.392 l 0.084,-0.105 -0.06,-1.037 c 1.758,-1.717 1.302,-0.929 2.139,-3.18 -0.95,-6.313 -4.198,-10.464 -7.614,-15.858 -3.622,-10.027 -23.182,-64.819 -23.325,-73.144 1.824,-8.153 6.235,-20.431 8.957,-28.876 l 17.109,-53.238 15.328,-48.164 c 2.244,-7.056 6.385,-21.554 9.438,-27.311 15.511,-0.507 34.422,-2.528 50.088,-3.806 z"
|
||||||
|
id="path50" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 705.202,368.146 -0.088,0.489 c 4.117,2.492 49.463,58.613 52.173,64.983 l -65.404,32.215 c -9.217,4.512 -29.053,13.531 -36.583,18.549 l 0.054,1.044 c -15.615,69.496 -30.504,139.153 -44.665,208.959 l -0.812,1.126 c -4.802,-5.391 -7.671,-12.141 -12.692,-16.884 -15.162,-14.322 -41.889,-32.487 -54.288,-48.392 l 0.084,-0.105 -0.06,-1.037 c 1.758,-1.717 1.302,-0.929 2.139,-3.18 -0.95,-6.313 -4.198,-10.464 -7.614,-15.858 -3.622,-10.027 -23.182,-64.819 -23.325,-73.144 1.824,-8.153 6.235,-20.431 8.957,-28.876 l 17.109,-53.238 15.328,-48.164 c 2.244,-7.056 6.385,-21.554 9.438,-27.311 15.511,-0.507 34.422,-2.528 50.088,-3.806 z"
|
||||||
|
id="path51" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 705.202,368.146 -0.088,0.489 c -13.498,20.345 -25.94,42.098 -38.846,62.822 -5.27,8.464 -14.157,25.391 -19.843,32.274 -44.447,23.764 -88.552,48.159 -132.304,73.18 1.824,-8.153 6.235,-20.431 8.957,-28.876 l 17.109,-53.238 15.328,-48.164 c 2.244,-7.056 6.385,-21.554 9.438,-27.311 15.511,-0.507 34.422,-2.528 50.088,-3.806 z"
|
||||||
|
id="path52" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 705.202,368.146 -0.088,0.489 c -13.498,20.345 -25.94,42.098 -38.846,62.822 -5.27,8.464 -14.157,25.391 -19.843,32.274 -25.386,-26.841 -58.116,-57.993 -81.472,-84.409 15.511,-0.507 34.422,-2.528 50.088,-3.806 z"
|
||||||
|
id="path53" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 655.3,484.382 c 14.353,3.052 38.253,14.682 53.124,19.633 -10.37,59.326 -18.305,119.052 -23.785,179.027 -1.199,13.21 -3.466,28.934 -4.111,41.702 l -1.195,3.236 c 0.221,2.121 0.417,4.827 0.77,6.875 5.278,48.741 8.256,98.138 13.345,146.509 l -1.205,2.261 C 665.205,824.26 638.576,764.71 612.356,704.98 l -2.675,-7.651 0.196,-1.818 0.812,-1.126 c 14.161,-69.806 29.05,-139.463 44.665,-208.959 z"
|
||||||
|
id="path54" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 655.354,485.426 c 2.362,4.433 9.779,26.097 11.987,32.018 l 27.306,73.1 c -12.13,11.941 -35.422,44.064 -46.485,58.345 -9.117,11.77 -27.963,35.408 -35.753,47.291 l -1.074,0.069 -0.646,-1.864 c 14.161,-69.806 29.05,-139.463 44.665,-208.959 z"
|
||||||
|
id="path55" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 831.92,500.104 c -1.721,7.639 -6.193,19.649 -8.813,27.352 l -17.634,51.201 -21.803,64.058 c -3.599,10.434 -8.46,25.748 -12.843,35.543 -2.737,-5.231 -4.901,-14.118 -7.009,-19.862 -6.703,-18.259 -12.116,-43.107 -19.241,-60.624 0.758,-7.636 -4.526,-37.312 -0.13,-43.205 8.484,-2.281 73.642,-46.452 87.473,-54.463 z"
|
||||||
|
id="path56" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 744.577,597.772 c 7.125,17.517 12.538,42.365 19.241,60.624 2.108,5.744 4.272,14.631 7.009,19.862 l 0.314,0.505 -0.2,0.882 c -5.09,3.342 -53.562,68.793 -58.682,77.157 -11.103,-9.46 -22.079,-19.068 -32.926,-28.822 l 1.195,-3.236 c 20.473,-39.182 45.482,-87.16 64.049,-126.972 z"
|
||||||
|
id="path57" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 757.287,433.618 c 9.835,-4.681 41.58,-22.401 49.049,-24.471 -21.656,21.088 -43.448,42.034 -65.377,62.838 -7.71,7.338 -27.005,24.795 -32.535,32.03 -14.871,-4.951 -38.771,-16.581 -53.124,-19.633 7.53,-5.018 27.366,-14.037 36.583,-18.549 z"
|
||||||
|
id="path58" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 847.566,414.207 c -4.182,28.943 -10.735,57.239 -15.646,85.897 -13.831,8.011 -78.989,52.182 -87.473,54.463 4.112,-7.38 19.033,-26.965 24.704,-34.737 l 56.939,-76.997 c 5.23,-7.227 15.771,-22.985 21.476,-28.626 z"
|
||||||
|
id="path59" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1243.3,417.092 c 28.08,28.441 55.95,58.147 84.37,86.069 3.92,20.897 4.27,59.733 8.89,77.602 1.68,18.693 3.52,37.371 5.52,56.032 0.75,7.278 2.66,21.625 2.47,28.343 3.08,7.752 29.11,57.388 28.77,60.706 l -0.36,0.873 -35.26,35.843 c -2.96,3.008 -14.04,14.588 -16.79,16.748 -21.54,21.588 -43.54,42.56 -64.86,64.29 l -0.74,-2.454 -0.93,2.066 -1.18,-0.66 c -18.87,-16.421 -40.53,-31.417 -60.37,-46.881 l -22.71,-16.671 c -11.26,7.442 -22.63,14.702 -34.12,21.777 -11.16,7.148 -26.63,17.616 -37.98,23.921 0.09,-3.014 0.92,-7.706 1.36,-10.812 4.32,-10.848 5.12,-36.463 12.12,-51.181 2.33,-6.567 8.59,-19.142 11.71,-25.919 -7.39,-2.585 -22.03,-10.473 -28.82,-14.487 5.24,-12.86 11.49,-33.001 15.9,-46.652 l 2.92,-7.891 c 3.69,-9.067 7.29,-18.17 10.8,-27.31 -4.39,-19.272 12.35,-170.209 14.37,-201.407 l -1.42,-0.246 c 16.54,-3.203 44.69,-4.684 58.05,-8.727 l 18.53,13.351 c 3.91,9.183 8.58,21.098 12.76,29.828 3.9,-13.61 11.13,-45.151 17,-56.151 z"
|
||||||
|
id="path60" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1136.96,438.791 c 16.54,-3.203 44.69,-4.684 58.05,-8.727 l 18.53,13.351 c 3.91,9.183 8.58,21.098 12.76,29.828 6.49,15.811 18.26,41.694 23.3,56.497 -2.9,-0.723 -8.66,-5.84 -11.34,-7.971 -10.65,16.748 -75.79,109.254 -78.26,120.147 l 0.46,4.128 c -9.21,1.758 -37.32,16.514 -47.25,21.71 3.69,-9.067 7.29,-18.17 10.8,-27.31 -4.39,-19.272 12.35,-170.209 14.37,-201.407 z"
|
||||||
|
id="path61" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1136.96,438.791 c 16.54,-3.203 44.69,-4.684 58.05,-8.727 l 18.53,13.351 c 3.91,9.183 8.58,21.098 12.76,29.828 6.49,15.811 18.26,41.694 23.3,56.497 -2.9,-0.723 -8.66,-5.84 -11.34,-7.971 l -68.33,-57.17 c -5.07,-4.243 -27.04,-23.223 -31.55,-25.562 z"
|
||||||
|
id="path62" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1124.01,640.444 14.63,-38.228 c 5.2,9.125 17.13,33.716 21.36,39.7 l 0.46,4.128 c -9.21,1.758 -37.32,16.514 -47.25,21.71 3.69,-9.067 7.29,-18.17 10.8,-27.31 z"
|
||||||
|
id="path63" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1238.26,521.769 c 2.68,2.131 8.44,7.248 11.34,7.971 2.67,6.804 2.96,25.432 3.95,33.64 3.25,26.797 3.52,61.146 7.76,87.466 -5.25,3.818 -35.56,26.621 -40.18,27.425 -8.89,-4.823 -33.37,-5.63 -44.34,-8.442 -6.79,6.689 -32.11,36.085 -37.11,37.708 l -2.77,2.839 c -5.29,8.896 -9.21,17.137 -13.7,26.408 -7.39,-2.585 -22.03,-10.473 -28.82,-14.487 5.24,-12.86 11.49,-33.001 15.9,-46.652 l 2.92,-7.891 c 9.93,-5.196 38.04,-19.952 47.25,-21.71 l -0.46,-4.128 c 2.47,-10.893 67.61,-103.399 78.26,-120.147 z"
|
||||||
|
id="path64" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 1160.46,646.044 c -6.22,18.335 -14.05,44.181 -20.78,61.493 l -2.77,2.839 c -5.29,8.896 -9.21,17.137 -13.7,26.408 -7.39,-2.585 -22.03,-10.473 -28.82,-14.487 5.24,-12.86 11.49,-33.001 15.9,-46.652 l 2.92,-7.891 c 9.93,-5.196 38.04,-19.952 47.25,-21.71 z"
|
||||||
|
id="path65" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1310.35,597.521 c 11.43,22.379 22.56,45.45 34.2,67.617 3.08,7.752 29.11,57.388 28.77,60.706 l -0.36,0.873 -35.26,35.843 c -2.96,3.008 -14.04,14.588 -16.79,16.748 -18.13,-17.367 -40.05,-37.898 -56.6,-56.41 3.91,-12.439 10.24,-28.221 14.85,-40.652 10.62,-28.159 21.02,-56.401 31.19,-84.725 z"
|
||||||
|
id="path66" /><path
|
||||||
|
fill="#fe7c00"
|
||||||
|
d="m 1176.79,669.829 c 10.97,2.812 35.45,3.619 44.34,8.442 -13.27,12.04 -44.73,60.117 -58.98,75.817 -0.51,0.558 -0.57,1.82 -0.67,2.76 -3.51,3.571 -5.76,5.308 -9.76,8.378 24.71,-2.433 50.5,-5.314 75.22,-6.813 -11.22,12.56 -22.59,24.98 -34.11,37.256 l -22.71,-16.671 c -11.26,7.442 -22.63,14.702 -34.12,21.777 -11.16,7.148 -26.63,17.616 -37.98,23.921 0.09,-3.014 0.92,-7.706 1.36,-10.812 4.32,-10.848 5.12,-36.463 12.12,-51.181 2.33,-6.567 8.59,-19.142 11.71,-25.919 4.49,-9.271 8.41,-17.512 13.7,-26.408 l 2.77,-2.839 c 5,-1.623 30.32,-31.019 37.11,-37.708 z"
|
||||||
|
id="path67" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 1123.21,736.784 c 4.49,-9.271 8.41,-17.512 13.7,-26.408 3.34,3.478 21.05,19.595 22.37,22.083 l -0.06,0.718 c -3.53,10.872 -19.08,60.49 -23.22,67.598 -11.16,7.148 -26.63,17.616 -37.98,23.921 0.09,-3.014 0.92,-7.706 1.36,-10.812 4.32,-10.848 5.12,-36.463 12.12,-51.181 2.33,-6.567 8.59,-19.142 11.71,-25.919 z"
|
||||||
|
id="path68" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1123.21,736.784 c 4.49,-9.271 8.41,-17.512 13.7,-26.408 3.34,3.478 21.05,19.595 22.37,22.083 l -0.06,0.718 c -9.36,5.099 -41.38,27.442 -47.72,29.526 2.33,-6.567 8.59,-19.142 11.71,-25.919 z"
|
||||||
|
id="path69" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1264.31,722.898 c 16.55,18.512 38.47,39.043 56.6,56.41 -21.54,21.588 -43.54,42.56 -64.86,64.29 l -0.74,-2.454 c 5.1,-36.991 2.07,-82.355 9,-118.246 z"
|
||||||
|
id="path70" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1161.48,756.848 c 17.21,-12.503 35.06,-25.687 52.72,-37.423 2.22,6.028 13.01,34.006 13.21,38.349 l -0.47,0.639 c -24.72,1.499 -50.51,4.38 -75.22,6.813 4,-3.07 6.25,-4.807 9.76,-8.378 z"
|
||||||
|
id="path71" /><path
|
||||||
|
fill="#e2009b"
|
||||||
|
d="m 1170.12,778.998 22.71,16.671 c 19.84,15.464 41.5,30.46 60.37,46.881 l 1.18,0.66 0.93,-2.066 0.74,2.454 c -2.04,5.023 -9.49,107.666 -8.06,111.728 l 0.07,0.509 c -11.62,5.717 -39.84,28.926 -51.53,37.849 -14.06,10.726 -34.78,25.486 -47.63,36.726 l -1.71,-0.14 c -28.05,7.71 -58.52,12.67 -87.01,19.18 -7.9,1.81 -31,6.07 -37.78,9.22 l -2.43,-0.37 c -2.79,-1.12 -4.81,-1.2 -7.76,-1.58 -29.707,-9.92 -72.396,-17.34 -104.877,-26.94 l -1.244,-2.21 c 0.662,-2.53 -1.063,-26.62 -1.196,-30.536 -1.303,-8.17 -0.92,-25.093 -0.981,-34.158 -0.122,-17.213 -0.461,-34.424 -1.018,-51.629 -0.757,-20.771 -1.79,-41.531 -3.098,-62.275 -0.748,-12.674 -2.21,-31.115 -1.534,-43.534 25.691,11.704 49.535,24.328 74.692,36.299 5.029,5.202 21.511,29.522 26.365,36.847 6.821,10.289 19.251,25.837 25.311,35.629 l 1.12,-2.143 c 1.27,1.899 2.49,3.896 3.96,5.618 5.64,-16.914 13.3,-41.881 17.56,-59.164 3.86,-4.918 19.52,-14.121 26.03,-18.681 l 2.38,-8.316 3.52,-10.563 c 11.11,5.786 7.68,2.864 17.55,4.548 l 1.27,-0.816 c 11.35,-6.305 26.82,-16.773 37.98,-23.921 11.49,-7.075 22.86,-14.335 34.12,-21.777 z"
|
||||||
|
id="path72" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1170.12,778.998 22.71,16.671 c 19.84,15.464 41.5,30.46 60.37,46.881 l 1.18,0.66 0.93,-2.066 0.74,2.454 c -2.04,5.023 -9.49,107.666 -8.06,111.728 l 0.07,0.509 c -11.62,5.717 -39.84,28.926 -51.53,37.849 -14.06,10.726 -34.78,25.486 -47.63,36.726 l -1.71,-0.14 c 1.54,-8.32 19.3,-42.656 24.19,-50.783 -7.85,-3.873 -29.41,-11.473 -38.34,-14.952 -7.81,-4.129 -15.76,-7.063 -23.87,-10.712 -25.99,-11.687 -53.26,-20.988 -78.85,-33.439 -2.51,-1.219 -4.27,-3.854 -5.69,-6.171 l 1.12,-2.143 c 1.27,1.899 2.49,3.896 3.96,5.618 5.64,-16.914 13.3,-41.881 17.56,-59.164 3.86,-4.918 19.52,-14.121 26.03,-18.681 l 2.38,-8.316 3.52,-10.563 c 11.11,5.786 7.68,2.864 17.55,4.548 l 1.27,-0.816 c 11.35,-6.305 26.82,-16.773 37.98,-23.921 11.49,-7.075 22.86,-14.335 34.12,-21.777 z"
|
||||||
|
id="path73" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1170.12,778.998 22.71,16.671 c 19.84,15.464 41.5,30.46 60.37,46.881 -7.94,-0.296 -57.97,-18.948 -69.01,-21.751 -4.38,-1.113 -11.21,-4.264 -16.19,-4.432 -12.42,40.992 -18.53,86.631 -30.25,128.022 -1.84,6.481 -3.39,13.524 -4.71,20.146 -7.81,-4.129 -15.76,-7.063 -23.87,-10.712 -25.99,-11.687 -53.26,-20.988 -78.85,-33.439 -2.51,-1.219 -4.27,-3.854 -5.69,-6.171 l 1.12,-2.143 c 1.27,1.899 2.49,3.896 3.96,5.618 5.64,-16.914 13.3,-41.881 17.56,-59.164 3.86,-4.918 19.52,-14.121 26.03,-18.681 l 2.38,-8.316 3.52,-10.563 c 11.11,5.786 7.68,2.864 17.55,4.548 l 1.27,-0.816 c 11.35,-6.305 26.82,-16.773 37.98,-23.921 11.49,-7.075 22.86,-14.335 34.12,-21.777 z"
|
||||||
|
id="path74" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1170.12,778.998 22.71,16.671 c 19.84,15.464 41.5,30.46 60.37,46.881 -7.94,-0.296 -57.97,-18.948 -69.01,-21.751 -4.38,-1.113 -11.21,-4.264 -16.19,-4.432 l -69.66,34.902 c -8.86,4.434 -21.39,11.213 -30.07,15.045 -6.17,-1.571 -14.85,-5.324 -21,-7.79 3.86,-4.918 19.52,-14.121 26.03,-18.681 l 2.38,-8.316 3.52,-10.563 c 11.11,5.786 7.68,2.864 17.55,4.548 l 1.27,-0.816 c 11.35,-6.305 26.82,-16.773 37.98,-23.921 11.49,-7.075 22.86,-14.335 34.12,-21.777 z"
|
||||||
|
id="path75" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1079.2,820.964 c 11.11,5.786 7.68,2.864 17.55,4.548 -7.61,4.952 -15.44,10.082 -23.45,14.331 l 2.38,-8.316 z"
|
||||||
|
id="path76" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1047.27,858.524 c 6.15,2.466 14.83,6.219 21,7.79 -5.56,6.798 -35.02,50.235 -38.56,51.374 5.64,-16.914 13.3,-41.881 17.56,-59.164 z"
|
||||||
|
id="path77" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1254.38,843.21 0.93,-2.066 0.74,2.454 c -2.04,5.023 -9.49,107.666 -8.06,111.728 l 0.07,0.509 c -11.62,5.717 -39.84,28.926 -51.53,37.849 -14.06,10.726 -34.78,25.486 -47.63,36.726 l -1.71,-0.14 c 1.54,-8.32 19.3,-42.656 24.19,-50.783 8.62,-15.18 82.61,-131.321 83,-136.277 z"
|
||||||
|
id="path78" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 904.778,979.205 c 38.072,-17.065 77.259,-33.941 115.002,-51.352 -17.55,14.231 -33.918,30.978 -51.044,45.892 -20.832,18.144 -40.42,37.995 -61.403,56.035 l -1.244,-2.21 c 0.662,-2.53 -1.063,-26.62 -1.196,-30.536 0.074,-6.09 0.145,-11.735 -0.115,-17.829 z"
|
||||||
|
id="path79" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 771.141,678.763 c 7.364,-1.497 86.678,24.969 99.668,28.086 0.009,6.824 -0.281,17.485 0.61,23.891 2.433,4.96 7,13.029 7.1,18.23 5.582,7.62 11.01,13.528 14.053,22.47 3.808,-1.986 8.438,-4.603 12.333,-6.166 4.81,3.231 9.841,6.716 14.708,9.815 11.046,7.883 27.434,19.15 39.002,25.955 6.17,4.37 11.557,7.852 17.994,11.836 4.843,3.156 13.222,8.119 16.677,12.27 -5.708,5.844 -13.86,11.079 -20.332,16.587 -25.157,-11.971 -49.001,-24.595 -74.692,-36.299 -0.676,12.419 0.786,30.86 1.534,43.534 1.308,20.744 2.341,41.504 3.098,62.275 0.557,17.205 0.896,34.416 1.018,51.629 0.061,9.065 -0.322,25.988 0.981,34.158 0.133,3.916 1.858,28.006 1.196,30.536 l -1.018,-0.98 c -8.478,-2.72 -21.131,-12.6 -29.014,-17.71 -17.026,-11.058 -34.9,-24.884 -52.739,-34.337 -2.865,-3.126 -7.639,-5.715 -11.348,-8.028 -19.771,-14.044 -55.228,-33.426 -76.572,-45.689 l -3.734,-3.014 c -0.698,-0.358 -2.717,-1.347 -3.534,-2.061 -10.857,-9.474 -24.604,-18.947 -33.823,-29.878 -0.353,-1.855 -0.639,-3.358 -0.859,-4.509 -5.089,-48.371 -8.067,-97.768 -13.345,-146.509 -0.353,-2.048 -0.549,-4.754 -0.77,-6.875 10.847,9.754 21.823,19.362 32.926,28.822 5.12,-8.364 53.592,-73.815 58.682,-77.157 z"
|
||||||
|
id="path80" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 771.141,678.763 c 7.364,-1.497 86.678,24.969 99.668,28.086 0.009,6.824 -0.281,17.485 0.61,23.891 2.433,4.96 7,13.029 7.1,18.23 5.582,7.62 11.01,13.528 14.053,22.47 3.808,-1.986 8.438,-4.603 12.333,-6.166 4.81,3.231 9.841,6.716 14.708,9.815 11.046,7.883 27.434,19.15 39.002,25.955 6.17,4.37 11.557,7.852 17.994,11.836 4.843,3.156 13.222,8.119 16.677,12.27 -5.708,5.844 -13.86,11.079 -20.332,16.587 -25.157,-11.971 -49.001,-24.595 -74.692,-36.299 -17.164,5.079 -45.234,8.35 -63.65,12.75 -6.316,1.509 -37.007,7.602 -41.697,7.67 l -1.154,-0.409 -1.02,0.036 c -4.143,-2.256 -25.945,-22.051 -30.606,-26.276 -15.525,-14.075 -32.8,-28.052 -47.876,-42.407 5.12,-8.364 53.592,-73.815 58.682,-77.157 z"
|
||||||
|
id="path81" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 712.259,756.802 c 5.12,-8.364 53.592,-73.815 58.682,-77.157 11.853,32.572 24.35,64.23 36.237,96.405 -5.556,16.334 -10.696,32.805 -15.417,49.399 l -1.02,0.036 c -4.143,-2.256 -25.945,-22.051 -30.606,-26.276 -15.525,-14.075 -32.8,-28.052 -47.876,-42.407 z"
|
||||||
|
id="path82" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 892.572,771.44 c 3.808,-1.986 8.438,-4.603 12.333,-6.166 4.81,3.231 9.841,6.716 14.708,9.815 11.046,7.883 27.434,19.15 39.002,25.955 6.17,4.37 11.557,7.852 17.994,11.836 4.843,3.156 13.222,8.119 16.677,12.27 -5.708,5.844 -13.86,11.079 -20.332,16.587 -25.157,-11.971 -49.001,-24.595 -74.692,-36.299 -17.164,5.079 -45.234,8.35 -63.65,12.75 -6.316,1.509 -37.007,7.602 -41.697,7.67 2.811,-2.186 17.312,-9.521 21.444,-11.904 19.499,-11.247 41.558,-21.605 60.653,-33.219 3.784,-1.424 13.536,-7.079 17.56,-9.295 z"
|
||||||
|
id="path83" /><path
|
||||||
|
fill="#fec002"
|
||||||
|
d="m 835.311,700.651 c 13.473,15.822 29.243,32.74 43.208,48.319 5.582,7.62 11.01,13.528 14.053,22.47 -4.024,2.216 -13.776,7.871 -17.56,9.295 -12.574,-7.25 -32.178,-18.093 -45.03,-24.156 2.5,-17.79 3.584,-37.752 5.329,-55.928 z"
|
||||||
|
id="path84" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 811.97,966.515 c 2.96,-5.374 -16.312,-100.083 -16.886,-115.918 -0.123,-3.391 -2.749,-19.719 -3.433,-23.454 26.173,47.201 52.842,94.126 80.002,140.766 8.916,15.612 26.455,43.351 33.418,58.681 -8.478,-2.72 -21.131,-12.6 -29.014,-17.71 -17.026,-11.058 -34.9,-24.884 -52.739,-34.337 -2.865,-3.126 -7.639,-5.715 -11.348,-8.028 z"
|
||||||
|
id="path85" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 680.103,734.855 c 2.759,4.96 11.366,37.863 13.395,45.267 l 21.926,80.023 c 4.715,17.507 10.489,40.716 16.24,57.667 -0.698,-0.358 -2.717,-1.347 -3.534,-2.061 -10.857,-9.474 -24.604,-18.947 -33.823,-29.878 -0.353,-1.855 -0.639,-3.358 -0.859,-4.509 -5.089,-48.371 -8.067,-97.768 -13.345,-146.509 z"
|
||||||
|
id="path86" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1136.96,438.791 1.42,0.246 c -2.02,31.198 -18.76,182.135 -14.37,201.407 -3.51,9.14 -7.11,18.243 -10.8,27.31 l -2.92,7.891 c -4.41,13.651 -10.66,33.792 -15.9,46.652 l -1.25,-0.462 c -12.75,-10.371 -26.91,-19.857 -39.15,-30.611 l -2.27,6.202 c -12.71,-5.547 -25.87,-12.969 -39.41,-18.939 l -0.65,-2.784 c 0.15,-3.575 -0.28,-8.373 -0.49,-12.029 1.25,-25.15 0.3,-59.509 0.3,-85.264 4.98,3.667 10.35,8.128 15.24,12.017 4.47,-41.957 6.41,-97.17 8.49,-140.504 l 2.8,0.169 c 31.8,-3.509 67.54,-6.688 98.96,-11.301 z"
|
||||||
|
id="path87" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 1054.05,686.872 c 3.33,-5.332 5.75,-22.761 8.09,-30.854 14.94,-0.131 29.89,-0.169 44.83,-0.116 -0.78,3.807 -2.91,13.784 -2.84,17.386 1.23,3.584 1.86,9.066 -0.05,12.411 0.28,0.17 0.06,0.098 0.86,0.012 l -0.23,-1.176 c 1.78,-3.846 2.44,-6.264 5.58,-8.89 -4.41,13.651 -10.66,33.792 -15.9,46.652 l -1.25,-0.462 c -12.75,-10.371 -26.91,-19.857 -39.15,-30.611 z"
|
||||||
|
id="path88" /><path
|
||||||
|
fill="#b50852"
|
||||||
|
d="m 1093.14,721.835 c 3.54,-16.074 6.99,-32.62 10.99,-48.547 1.23,3.584 1.86,9.066 -0.05,12.411 0.28,0.17 0.06,0.098 0.86,0.012 l -0.23,-1.176 c 1.78,-3.846 2.44,-6.264 5.58,-8.89 -4.41,13.651 -10.66,33.792 -15.9,46.652 z"
|
||||||
|
id="path89" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1011.47,578.41 c 4.98,3.667 10.35,8.128 15.24,12.017 7.4,6.402 22,15.224 22.7,23.337 0.06,0.807 0.11,1.615 0.14,2.424 -0.74,3.192 -33.25,54.162 -37.89,59.515 0.15,-3.575 -0.28,-8.373 -0.49,-12.029 1.25,-25.15 0.3,-59.509 0.3,-85.264 z"
|
||||||
|
id="path90" /><path
|
||||||
|
fill="#fec002"
|
||||||
|
d="m 1049.55,616.188 c 1.07,13.965 1.92,27.945 2.55,41.936 0.32,6.546 0.76,22.773 1.95,28.748 l -0.06,4.352 -2.27,6.202 c -12.71,-5.547 -25.87,-12.969 -39.41,-18.939 l -0.65,-2.784 c 4.64,-5.353 37.15,-56.323 37.89,-59.515 z"
|
||||||
|
id="path91" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1080.14,611.379 c 8.76,14.95 17.71,29.792 26.83,44.523 -14.94,-0.053 -29.89,-0.015 -44.83,0.116 5.75,-14.981 11.75,-29.863 18,-44.639 z"
|
||||||
|
id="path92" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1012.31,678.487 c 13.54,5.97 26.7,13.392 39.41,18.939 l 2.27,-6.202 c 12.24,10.754 26.4,20.24 39.15,30.611 l 1.25,0.462 c 6.79,4.014 21.43,11.902 28.82,14.487 -3.12,6.777 -9.38,19.352 -11.71,25.919 -7,14.718 -7.8,40.333 -12.12,51.181 -0.44,3.106 -1.27,7.798 -1.36,10.812 l -1.27,0.816 c -9.87,-1.684 -6.44,1.238 -17.55,-4.548 l -3.52,10.563 -2.38,8.316 c -6.51,4.56 -22.17,13.763 -26.03,18.681 -4.26,17.283 -11.92,42.25 -17.56,59.164 -1.47,-1.722 -2.69,-3.719 -3.96,-5.618 l -1.12,2.143 c -6.06,-9.792 -18.49,-25.34 -25.311,-35.629 -4.854,-7.325 -21.336,-31.645 -26.365,-36.847 6.472,-5.508 14.624,-10.743 20.332,-16.587 -3.455,-4.151 -11.834,-9.114 -16.677,-12.27 -6.437,-3.984 -11.824,-7.466 -17.994,-11.836 -11.568,-6.805 -27.956,-18.072 -39.002,-25.955 -0.696,-11.695 -1.588,-23.653 -1.651,-35.35 l 0.184,-6.201 -2.295,-1.976 c 8.282,-8.399 16.503,-16.857 24.662,-25.375 l 3.042,-3.543 c 3.537,4.956 6.768,19.952 8.313,26.285 9.957,-8.291 20.974,-17.168 30.341,-25.977 5.16,-4.127 8.302,-6.278 13.871,-9.815 3.55,-2.014 4.26,-2.429 7.31,-5.085 2.89,1.51 7.07,1.114 10.11,0.106 z"
|
||||||
|
id="path93" /><path
|
||||||
|
fill="#fe7c00"
|
||||||
|
d="m 1019.07,787.515 c 8.52,4.095 13.48,1.244 19.69,4.67 l -4.43,21.09 c 0.46,0.704 0.92,1.408 1.38,2.112 12.09,4.883 28.69,10.556 39.97,16.14 l -2.38,8.316 c -6.51,4.56 -22.17,13.763 -26.03,18.681 -4.26,17.283 -11.92,42.25 -17.56,59.164 -1.47,-1.722 -2.69,-3.719 -3.96,-5.618 l -1.12,2.143 c -6.06,-9.792 -18.49,-25.34 -25.311,-35.629 -4.854,-7.325 -21.336,-31.645 -26.365,-36.847 6.472,-5.508 14.624,-10.743 20.332,-16.587 l 0.464,0.21 c 9.22,-7.114 16.03,-11.664 26.43,-16.84 -0.48,-6.995 -0.86,-13.997 -1.11,-21.005 z"
|
||||||
|
id="path94" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 993.286,825.15 0.464,0.21 c 10.75,28.025 20.78,59.817 32,86.71 l -1.12,2.143 c -6.06,-9.792 -18.49,-25.34 -25.311,-35.629 -4.854,-7.325 -21.336,-31.645 -26.365,-36.847 6.472,-5.508 14.624,-10.743 20.332,-16.587 z"
|
||||||
|
id="path95" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 1019.07,787.515 c 8.52,4.095 13.48,1.244 19.69,4.67 l -4.43,21.09 c -2.82,13.241 -5.42,26.407 -9.32,39.374 l -4.83,-44.129 c -0.48,-6.995 -0.86,-13.997 -1.11,-21.005 z"
|
||||||
|
id="path96" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 943.555,702.644 c 3.537,4.956 6.768,19.952 8.313,26.285 3.348,11.001 5.639,21.72 8.727,32.549 0.645,9.59 -1.194,29.413 -1.98,39.566 -11.568,-6.805 -27.956,-18.072 -39.002,-25.955 -0.696,-11.695 -1.588,-23.653 -1.651,-35.35 l 0.184,-6.201 -2.295,-1.976 c 8.282,-8.399 16.503,-16.857 24.662,-25.375 z"
|
||||||
|
id="path97" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 943.555,702.644 c 3.537,4.956 6.768,19.952 8.313,26.285 3.348,11.001 5.639,21.72 8.727,32.549 -9.403,-4.666 -32.765,-21.316 -42.449,-27.94 l -2.295,-1.976 c 8.282,-8.399 16.503,-16.857 24.662,-25.375 z"
|
||||||
|
id="path98" /><path
|
||||||
|
fill="#fec002"
|
||||||
|
d="m 1041.25,781.666 c 17.94,-5.596 41.29,-18.609 58.56,-22.543 -4.08,15.079 -10.65,29.68 -14.44,44.17 l -6.17,17.671 -3.52,10.563 c -11.28,-5.584 -27.88,-11.257 -39.97,-16.14 -0.46,-0.704 -0.92,-1.408 -1.38,-2.112 l 4.43,-21.09 c 0.67,-4.124 0.86,-6.717 2.49,-10.519 z"
|
||||||
|
id="path99" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 963.936,764.088 c 15.793,4.29 38.374,16.025 54.504,22.006 l 0.63,1.421 c 0.25,7.008 0.63,14.01 1.11,21.005 -10.4,5.176 -17.21,9.726 -26.43,16.84 l -0.464,-0.21 c -3.455,-4.151 -11.834,-9.114 -16.677,-12.27 -4.524,-15.47 -8.633,-33.048 -12.673,-48.792 z"
|
||||||
|
id="path100" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 1069.84,732.887 c 12.59,0.113 24.12,0.804 36.68,1.588 -2.07,8.609 -4.18,16.159 -6.71,24.648 -17.27,3.934 -40.62,16.947 -58.56,22.543 4.71,-11.093 21.52,-37.257 28.59,-48.779 z"
|
||||||
|
id="path101" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 963.936,764.088 c 7.003,-11.769 18.665,-29.948 26.803,-41.272 l 18.061,40.766 c 2.76,6.208 7.73,16.336 9.64,22.512 -16.13,-5.981 -38.711,-17.716 -54.504,-22.006 z"
|
||||||
|
id="path102" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 1012.31,678.487 c 13.54,5.97 26.7,13.392 39.41,18.939 -2.85,6.297 -18.24,41.654 -20.99,44.103 -1.98,-1.423 -1.9,-1.273 -3.08,-3.392 -0.17,-8.291 -11.04,-39.508 -14.15,-49.979 z"
|
||||||
|
id="path103" /><path
|
||||||
|
fill="#fe7c00"
|
||||||
|
d="m 996.08,693.137 c 3.55,-2.014 4.26,-2.429 7.31,-5.085 2.89,1.51 7.07,1.114 10.11,0.106 3.11,10.471 13.98,41.688 14.15,49.979 -14.98,-14.031 -22.09,-27.568 -31.57,-45 z"
|
||||||
|
id="path104" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 1085.37,803.293 c 1.45,3.166 0.78,4.929 1.41,8.49 l 3.38,1.104 -0.66,-0.002 c 5.57,1.431 4.63,1.338 9.88,0.999 -0.44,3.106 -1.27,7.798 -1.36,10.812 l -1.27,0.816 c -9.87,-1.684 -6.44,1.238 -17.55,-4.548 z"
|
||||||
|
id="path105" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 833.394,499.617 c 13.061,25.244 36.901,59.888 51.849,85.471 8.223,14.072 33.104,56.172 42.017,67.674 -1.613,4.242 -0.308,2.697 -3.553,5.175 l -0.427,2.29 c 3.205,4.761 9.832,21.494 12.36,23.419 l 0.483,0.052 c 3.123,6.193 -0.195,15.233 4.39,22.489 -8.159,8.518 -16.38,16.976 -24.662,25.375 l 2.295,1.976 -0.184,6.201 c 0.063,11.697 0.955,23.655 1.651,35.35 -4.867,-3.099 -9.898,-6.584 -14.708,-9.815 -3.895,1.563 -8.525,4.18 -12.333,6.166 -3.043,-8.942 -8.471,-14.85 -14.053,-22.47 -0.1,-5.201 -4.667,-13.27 -7.1,-18.23 -0.891,-6.406 -0.601,-17.067 -0.61,-23.891 -12.99,-3.117 -92.304,-29.583 -99.668,-28.086 l -0.314,-0.505 c 4.383,-9.795 9.244,-25.109 12.843,-35.543 l 21.803,-64.058 17.634,-51.201 c 2.62,-7.703 7.092,-19.713 8.813,-27.352 z"
|
||||||
|
id="path106" /><path
|
||||||
|
fill="#feee0f"
|
||||||
|
d="m 862.26,643.749 c 19.051,5.181 41.796,9.461 61.447,14.188 l -0.427,2.29 c 3.205,4.761 9.832,21.494 12.36,23.419 l 0.483,0.052 c 3.123,6.193 -0.195,15.233 4.39,22.489 -8.159,8.518 -16.38,16.976 -24.662,25.375 -2.479,-2.165 -1.618,-0.86 -2.551,-4.13 l -0.825,-1.885 c -3.667,-7.454 -12.607,-20.9 -17.27,-28.317 -11.299,-17.63 -22.282,-35.46 -32.945,-53.481 z"
|
||||||
|
id="path107" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 923.28,660.227 c 3.205,4.761 9.832,21.494 12.36,23.419 l 0.483,0.052 c 3.123,6.193 -0.195,15.233 4.39,22.489 -8.159,8.518 -16.38,16.976 -24.662,25.375 -2.479,-2.165 -1.618,-0.86 -2.551,-4.13 0.627,0.128 1.701,0.026 2.399,0.002 1.186,-4.506 1.825,-15.288 2.366,-20.293 1.7,-15.746 2.429,-31.263 5.215,-46.914 z"
|
||||||
|
id="path108" /><path
|
||||||
|
fill="#fe7c00"
|
||||||
|
d="m 871.419,730.74 c 8.211,0.75 41.468,2.133 45.372,5.213 l 1.171,3.786 c 0.063,11.697 0.955,23.655 1.651,35.35 -4.867,-3.099 -9.898,-6.584 -14.708,-9.815 -3.895,1.563 -8.525,4.18 -12.333,6.166 -3.043,-8.942 -8.471,-14.85 -14.053,-22.47 -0.1,-5.201 -4.667,-13.27 -7.1,-18.23 z"
|
||||||
|
id="path109" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 870.809,706.849 0.22,-15.311 c 6.069,5.196 36.834,33.584 41.446,34.009 l 0.825,1.885 c 0.933,3.27 0.072,1.965 2.551,4.13 l 2.295,1.976 -0.184,6.201 -1.171,-3.786 c -3.904,-3.08 -37.161,-4.463 -45.372,-5.213 -0.891,-6.406 -0.601,-17.067 -0.61,-23.891 z"
|
||||||
|
id="path110" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 882.908,396.896 c 10.66,-4.966 26.822,-11.887 36.567,-17.559 0.914,3.415 9.303,39.95 9.162,41.9 -7.81,5.029 -24.563,19.576 -32.326,25.988 -21.071,17.346 -42.044,34.81 -62.917,52.392 l -1.474,0.487 c 4.911,-28.658 11.464,-56.954 15.646,-85.897 2.491,-2.502 29.411,-14.46 35.342,-17.311 z"
|
||||||
|
id="path111" /><path
|
||||||
|
fill="#fec002"
|
||||||
|
d="m 931.652,621.962 c 7.792,-9.798 17.855,-20.192 26.59,-29.347 3.899,21.287 8.017,42.534 12.354,63.737 1.449,6.523 5.075,25.014 8.289,29.796 0.507,5.306 0.829,12.166 3.324,16.804 -9.367,8.809 -20.384,17.686 -30.341,25.977 -1.545,-6.333 -4.776,-21.329 -8.313,-26.285 l -3.042,3.543 c -4.585,-7.256 -1.267,-16.296 -4.39,-22.489 l -0.483,-0.052 c -2.528,-1.925 -9.155,-18.658 -12.36,-23.419 l 0.427,-2.29 c 3.245,-2.478 1.94,-0.933 3.553,-5.175 l 3.786,-0.406 c 2.694,-2.829 1.774,-3.587 2.109,-8.74 -0.407,-7.224 -0.908,-14.443 -1.503,-21.654 z"
|
||||||
|
id="path112" /><path
|
||||||
|
fill="#fe9c00"
|
||||||
|
d="m 970.596,656.352 c 1.449,6.523 5.075,25.014 8.289,29.796 0.507,5.306 0.829,12.166 3.324,16.804 -9.367,8.809 -20.384,17.686 -30.341,25.977 -1.545,-6.333 -4.776,-21.329 -8.313,-26.285 l -0.566,-1.148 c 3.352,-6.504 23.238,-40.514 27.607,-45.144 z"
|
||||||
|
id="path113" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 933.155,643.616 c 1.639,13.304 2.629,26.681 2.968,40.082 l -0.483,-0.052 c -2.528,-1.925 -9.155,-18.658 -12.36,-23.419 l 0.427,-2.29 c 3.245,-2.478 1.94,-0.933 3.553,-5.175 l 3.786,-0.406 c 2.694,-2.829 1.774,-3.587 2.109,-8.74 z"
|
||||||
|
id="path114" /><path
|
||||||
|
fill="#fdae01"
|
||||||
|
d="m 976.518,630.42 c 7.191,-6.205 16.568,-13.023 24.222,-18.891 1.52,17.094 2.95,34.197 4.28,51.308 0.84,2.911 1.26,6.392 3.23,7.99 1.63,-2.779 1.95,-4.147 2.92,-7.153 0.21,3.656 0.64,8.454 0.49,12.029 l 0.65,2.784 1.19,9.671 c -3.04,1.008 -7.22,1.404 -10.11,-0.106 -3.05,2.656 -3.76,3.071 -7.31,5.085 -5.569,3.537 -8.711,5.688 -13.871,9.815 -2.495,-4.638 -2.817,-11.498 -3.324,-16.804 -0.155,-17.579 -1.588,-38 -2.367,-55.728 z"
|
||||||
|
id="path115" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1005.02,662.837 c 0.84,2.911 1.26,6.392 3.23,7.99 1.63,-2.779 1.95,-4.147 2.92,-7.153 0.21,3.656 0.64,8.454 0.49,12.029 l 0.65,2.784 1.19,9.671 c -3.04,1.008 -7.22,1.404 -10.11,-0.106 1.52,-9.643 1.52,-15.297 1.63,-25.215 z"
|
||||||
|
id="path116" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1019.97,1058.3 2.43,0.37 -0.06,1.39 c 7.46,14.7 38.75,103.59 44.59,107.53 31.17,0.74 71.34,0.78 101.98,3.34 13.75,0.32 39.4,1.95 51.94,1.15 l 0.81,0.05 c 2.43,15.77 9.14,28.03 10.75,46.59 -0.82,12.17 -4.18,39.5 -6.83,51.6 -4.39,8.53 -9.6,17.67 -14.74,25.77 -11.82,18.57 -22.33,39.15 -34.62,57.34 l -1.8,0.96 c -14.53,7.15 -45.75,17.44 -62.29,24.33 -9.24,3.86 -54.31,21.45 -61.12,22.76 -17.87,7.18 -35.84,14.13 -53.889,20.86 -5.245,1.97 -14.854,5.9 -19.902,7.29 -2.227,-0.43 -45.898,-31.85 -50.823,-35.34 L 812.125,1313.2 c -5.217,-3.75 -26.523,-16.99 -27.932,-21.22 l 1.059,-1.93 c 14.004,-31.27 31.351,-63.31 45.593,-94.71 4.277,-9.44 16.081,-31.4 18.691,-40.3 0.352,-1.36 3.818,-5.84 4.829,-7.19 30.757,0.49 62.539,3.51 93.331,4.88 9.895,0.44 28.023,2.48 37.158,2.22 10.846,-25.2 17.796,-53.54 28.506,-78.95 2.29,-5.41 5.03,-12.15 6.61,-17.7 z"
|
||||||
|
id="path125" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 785.252,1290.05 c 5.775,2.1 27.737,-7.43 34.586,-9.95 l 52.502,-19.29 160.32,-58 0.42,71.04 c 0.02,5.03 -0.06,28.97 0.67,32.24 -3.87,11.36 -10.2,22.57 -14.84,33.51 -12.09,28.48 -30.883,61.81 -41.691,90.03 -2.227,-0.43 -45.898,-31.85 -50.823,-35.34 L 812.125,1313.2 c -5.217,-3.75 -26.523,-16.99 -27.932,-21.22 z"
|
||||||
|
id="path126" /><path
|
||||||
|
fill="#9d0067"
|
||||||
|
d="m 1022.34,1060.06 c 7.46,14.7 38.75,103.59 44.59,107.53 31.17,0.74 71.34,0.78 101.98,3.34 13.75,0.32 39.4,1.95 51.94,1.15 l 0.81,0.05 c 2.43,15.77 9.14,28.03 10.75,46.59 -0.82,12.17 -4.18,39.5 -6.83,51.6 l -2.63,-1.58 c -29.33,-13.16 -60.08,-24.56 -89.69,-37.2 -5.18,-2.21 -10.77,-4.07 -16.16,-5.71 -12.89,-5.82 -67.73,-18.26 -84.58,-22.64 l -5.57,-74.42 c -1.96,-23.78 -4.54,-44.73 -4.61,-68.71 z"
|
||||||
|
id="path127" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="m 1168.91,1170.93 c 13.75,0.32 39.4,1.95 51.94,1.15 l 0.81,0.05 c 2.43,15.77 9.14,28.03 10.75,46.59 -0.82,12.17 -4.18,39.5 -6.83,51.6 l -2.63,-1.58 c 0.01,-8.97 -46.82,-82.53 -54.04,-97.81 z"
|
||||||
|
id="path128" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1033.75,1306.09 c 26.82,10.6 56.59,20.26 83.98,29.31 20.26,6.69 36.94,9.79 56.69,18.99 -14.53,7.15 -45.75,17.44 -62.29,24.33 -9.24,3.86 -54.31,21.45 -61.12,22.76 -17.87,7.18 -35.84,14.13 -53.889,20.86 -5.245,1.97 -14.854,5.9 -19.902,7.29 10.808,-28.22 29.601,-61.55 41.691,-90.03 4.64,-10.94 10.97,-22.15 14.84,-33.51 z"
|
||||||
|
id="path129" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1117.1,1225.83 c 5.39,1.64 10.98,3.5 16.16,5.71 29.61,12.64 60.36,24.04 89.69,37.2 l 2.63,1.58 c -4.39,8.53 -9.6,17.67 -14.74,25.77 -11.82,18.57 -22.33,39.15 -34.62,57.34 -12.51,-21.61 -24.48,-50.48 -35.07,-73.43 -6.04,-13.07 -19.89,-41.4 -24.05,-54.17 z"
|
||||||
|
id="path130" /><path
|
||||||
|
fill="#d3105e"
|
||||||
|
d="m 1002.85,296.966 c 23.39,-9.624 56.31,-19.5 80.98,-27.39 24.85,-7.943 54.62,-18.487 79.38,-25.156 39.39,18.555 80.47,37.376 119.29,56.821 13.78,21.815 29.65,57.547 42.92,81.357 17.68,34.328 37.24,69.143 54.37,103.502 -10.7,-6.625 -130.86,-67.902 -136.49,-69.008 -5.87,11 -13.1,42.541 -17,56.151 -4.18,-8.73 -8.85,-20.645 -12.76,-29.828 l -18.53,-13.351 c -13.36,4.043 -41.51,5.524 -58.05,8.727 -31.42,4.613 -67.16,7.792 -98.96,11.301 l -2.8,-0.169 -0.37,-0.571 c -9.1,-48.526 -25.36,-105.102 -32.8,-152.508 z"
|
||||||
|
id="path135" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 1002.85,296.966 c 23.39,-9.624 56.31,-19.5 80.98,-27.39 24.85,-7.943 54.62,-18.487 79.38,-25.156 -2.13,11.651 -14.4,146.226 -13.3,151.759 l 0.13,0.555 c 14.84,11.305 29.83,22.416 44.97,33.33 -13.36,4.043 -41.51,5.524 -58.05,8.727 -31.42,4.613 -67.16,7.792 -98.96,11.301 l -2.8,-0.169 -0.37,-0.571 c -9.1,-48.526 -25.36,-105.102 -32.8,-152.508 z"
|
||||||
|
id="path136" /><path
|
||||||
|
fill="#fe81a8"
|
||||||
|
d="m 1002.85,296.966 c 23.39,-9.624 56.31,-19.5 80.98,-27.39 24.85,-7.943 54.62,-18.487 79.38,-25.156 -2.13,11.651 -14.4,146.226 -13.3,151.759 l 0.13,0.555 -1.45,-0.455 c -15.54,-12.118 -38.77,-26.948 -55.62,-38.335 z"
|
||||||
|
id="path137" /><path
|
||||||
|
fill="#fea6cd"
|
||||||
|
d="m 1148.59,396.279 1.45,0.455 c 14.84,11.305 29.83,22.416 44.97,33.33 -13.36,4.043 -41.51,5.524 -58.05,8.727 -31.42,4.613 -67.16,7.792 -98.96,11.301 8.9,-8.167 95.03,-46.489 110.59,-53.813 z"
|
||||||
|
id="path138" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 1163.21,244.42 c 39.39,18.555 80.47,37.376 119.29,56.821 -36.63,28.812 -77.71,54.332 -115.13,82.31 -5.46,4.08 -11.83,8.854 -17.46,12.628 -1.1,-5.533 11.17,-140.108 13.3,-151.759 z"
|
||||||
|
id="path139" /><path
|
||||||
|
fill="#c6007c"
|
||||||
|
d="M 705.202,368.146 C 717.727,355.622 862.967,235.787 866.895,235.013 l 89.155,40.834 c 12.277,5.629 34.42,16.622 45.98,20.997 7.44,47.406 23.7,103.982 32.8,152.508 l -2.03,0.852 -1.34,-1.646 c -7.58,-1.234 -26.3,-6.746 -34.45,-8.908 -22.84,-5.953 -45.632,-12.091 -68.373,-18.413 0.141,-1.95 -8.248,-38.485 -9.162,-41.9 -9.745,5.672 -25.907,12.593 -36.567,17.559 -5.931,2.851 -32.851,14.809 -35.342,17.311 -5.705,5.641 -16.246,21.399 -21.476,28.626 -5.784,-9.463 -11.524,-24.821 -17.589,-33.342 l -2.165,-0.344 c -7.469,2.07 -39.214,19.79 -49.049,24.471 -2.71,-6.37 -48.056,-62.491 -52.173,-64.983 z"
|
||||||
|
id="path140" /><path
|
||||||
|
fill="#f5119b"
|
||||||
|
d="m 705.202,368.146 c 12.525,-12.524 157.765,-132.359 161.693,-133.133 -0.06,13.888 12.629,154.895 16.013,161.883 -5.931,2.851 -32.851,14.809 -35.342,17.311 -5.705,5.641 -16.246,21.399 -21.476,28.626 -5.784,-9.463 -11.524,-24.821 -17.589,-33.342 l -2.165,-0.344 c -7.469,2.07 -39.214,19.79 -49.049,24.471 -2.71,-6.37 -48.056,-62.491 -52.173,-64.983 z"
|
||||||
|
id="path141" /><path
|
||||||
|
fill="#fe5c88"
|
||||||
|
d="m 919.475,379.337 c 6.256,2.263 105.615,63.165 111.985,69.221 -7.58,-1.234 -26.3,-6.746 -34.45,-8.908 -22.84,-5.953 -45.632,-12.091 -68.373,-18.413 0.141,-1.95 -8.248,-38.485 -9.162,-41.9 z"
|
||||||
|
id="path142" /></g></g></svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 60 KiB |