-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
107 lines (94 loc) · 223 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="dist/js/d3.min.js" ></script>
<style>
.icon {width:32px;height:24px;margin:1px}
#display svg {width:640px;height:480px;display:block;border:1px solid black;}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 4s;
}
@keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
70% {
transform: scale3d(0.05, 0.05, 0.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}
</style>
</head>
<body>
<h3>List of icon flags</h3>
<div id="short">
<svg class="icon flag-be"><use href="#flag-be"></use><title>Belgium</title></svg>
<svg class="icon flag-bg"><use href="#flag-bg"></use><title>Bulgaria</title></svg>
<svg class="icon flag-cz"><use href="#flag-cz"></use><title>Czech Republic</title></svg>
<svg class="icon flag-dk"><use href="#flag-dk"></use><title>Denmark</title></svg>
<svg class="icon flag-de"><use href="#flag-de"></use><title>Germany</title></svg>
<svg class="icon flag-ee"><use href="#flag-ee"></use><title>Estonia</title></svg>
<svg class="icon flag-ie"><use href="#flag-ie"></use><title>Ireland</title></svg>
<svg class="icon flag-gr"><use href="#flag-gr"></use><title>Greece</title></svg>
<svg class="icon flag-es"><use href="#flag-es"></use><title>Spain</title></svg>
<svg class="icon flag-fr"><use href="#flag-fr"></use><title>France</title></svg>
<svg class="icon flag-hr"><use href="#flag-hr"></use><title>Croatia</title></svg>
<svg class="icon flag-it"><use href="#flag-it"></use><title>Italy</title></svg>
<svg class="icon flag-cy"><use href="#flag-cy"></use><title>Cyprus</title></svg>
<svg class="icon flag-lv"><use href="#flag-lv"></use><title>Latvia</title></svg>
<svg class="icon flag-lt"><use href="#flag-lt"></use><title>Lithuania</title></svg>
<svg class="icon flag-lu"><use href="#flag-lu"></use><title>Luxembourg</title></svg>
<svg class="icon flag-hu"><use href="#flag-hu"></use><title>Hungary</title></svg>
<svg class="icon flag-mt"><use href="#flag-mt"></use><title>Malta</title></svg>
<svg class="icon flag-nl"><use href="#flag-nl"></use><title>Netherlands</title></svg>
<svg class="icon flag-at"><use href="#flag-at"></use><title>Austria</title></svg>
<svg class="icon flag-pl"><use href="#flag-pl"></use><title>Poland</title></svg>
<svg class="icon flag-pt"><use href="#flag-pt"></use><title>Portugal</title></svg>
<svg class="icon flag-ro"><use href="#flag-ro"></use><title>Romania</title></svg>
<svg class="icon flag-si"><use href="#flag-si"></use><title>Slovenia</title></svg>
<svg class="icon flag-sk"><use href="#flag-sk"></use><title>Slovakia</title></svg>
<svg class="icon flag-fi"><use href="#flag-fi"></use><title>Finland</title></svg>
<svg class="icon flag-se"><use href="#flag-se"></use><title>Sweden</title></svg>
<svg class="icon flag-gb"><use href="#flag-gb"></use><title>United Kingdom</title></svg>
<svg class="icon flag-eu"><use href="#flag-eu"></use><title>Europe</title></svg>
</div>
<h3>and in big <i>(mouse over the icons)</i></h3>
<div id="display"></div>
<script>
var countries = { "Belgium": "be", "Bulgaria": "bg", "Czech Republic": "cz", "Denmark": "dk", "Germany": "de", "Estonia": "ee", "Ireland": "ie", "Greece": "gr", "Spain": "es", "France": "fr", "Croatia": "hr", "Italy": "it", "Cyprus": "cy", "Latvia": "lv", "Lithuania": "lt", "Luxembourg": "lu", "Hungary": "hu", "Malta": "mt", "Netherlands": "nl", "Austria": "at", "Poland": "pl", "Portugal": "pt", "Romania": "ro", "Slovenia": "si", "Slovakia": "sk", "Finland": "fi", "Sweden": "se", "United Kingdom": "gb","Europe": "eu"};
generateFlags("#short","icon"); //generated statically too, for demo purpose
d3.selectAll(".icon").on("mouseover", function(d){drawFlag(d.value)})
function drawFlag (iso) {
d3.selectAll("#display svg").remove();
d3.select("#display")
.append("svg")
.attr("class","animated pulse")
.append("use").attr("href",function (d) { return "#flag-" + iso});
}
function generateFlags(dom,svgclass) {
svgclass = svgclass || "";
var svg=d3.select(dom).selectAll("svg")
.data(d3.entries(countries))
.enter()
.append("svg")
.attr("class",function(d) {return svgclass + " flag-" + d.value});
svg
.append("use").attr("href",function (d) { return "#flag-" + d.value});
svg
.append("title").text(function(d) {return d.key});
}
</script>
<div id="svg-flags">
<!-- inject:../svg/eu-flags.svg -->
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><clipPath id="flag-cz-a"><path fill-opacity=".7" d="M-74 0h682.67v512H-74z"/></clipPath><clipPath id="flag-gr-a"><path fill-opacity=".7" d="M0 0h120v90H0z"/></clipPath><clipPath id="flag-si-a"><path fill-opacity=".7" d="M-15.07 0H667.6v512H-15.07z"/></clipPath><clipPath id="flag-se-a"><path fill-opacity=".7" d="M-53.42 0h682.67v512H-53.42z"/></clipPath><clipPath id="flag-gb-a"><path fill-opacity=".7" d="M-85.33 0h682.67v512H-85.33z"/></clipPath><g id="flag-eu-d"><g id="flag-eu-b"><path id="flag-eu-a" d="M0-1l-.31.95.48.16z"/><use transform="scale(-1 1)" xlink:href="#flag-eu-a"/></g><g id="flag-eu-c"><use transform="rotate(72)" xlink:href="#flag-eu-b"/><use transform="rotate(144)" xlink:href="#flag-eu-b"/></g><use transform="scale(-1 1)" xlink:href="#flag-eu-c"/></g></defs><symbol viewBox="0 0 640 480" id="flag-be"><g fill-rule="evenodd" stroke-width="1pt"><path d="M0 0h213.34v480H0z"/><path fill="#ffd90c" d="M213.34 0h213.33v480H213.33z"/><path fill="#f31830" d="M426.67 0h213.34v480H426.66z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-bg"><g fill-rule="evenodd" stroke-width="1pt"><path fill="#d62612" d="M0 320h640v160H0z"/><path fill="#fff" d="M0 0h640v160H0z"/><path fill="#00966e" d="M0 160h640v160H0z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-cz"><g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#flag-cz-a)" transform="translate(69.38) scale(.94)"><path fill="#e80000" d="M-74 0h768v512H-74z"/><path fill="#fff" d="M-74 0h768v256H-74z"/><path fill="#00006f" d="M-74 0l382.73 255.67L-74 511.01V0z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-dk"><path fill="#c60c30" d="M0 0h640.1v480H0z"/><path fill="#fff" d="M205.71 0h68.57v480h-68.57z"/><path fill="#fff" d="M0 205.71h640.1v68.57H0z"/></symbol><symbol viewBox="0 0 640 480" id="flag-de"><path fill="#ffce00" d="M0 320h640v160H0z"/><path d="M0 0h640v160H0z"/><path fill="#d00" d="M0 160h640v160H0z"/></symbol><symbol viewBox="0 0 640 480" id="flag-ee"><g fill-rule="evenodd" stroke-width="1pt"><rect width="640" height="477.9" rx="0" ry="0"/><rect width="640" height="159.3" y="320.7" fill="#fff" rx="0" ry="0"/><path fill="#1291ff" d="M0 0h640v159.3H0z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-ie"><g fill-rule="evenodd" stroke-width="1pt"><path fill="#fff" d="M0 0h640v480H0z"/><path fill="#009A49" d="M0 0h213.33v480H0z"/><path fill="#FF7900" d="M426.67 0H640v480H426.67z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-gr"><g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#flag-gr-a)" transform="scale(5.33)"><path fill="#0d5eaf" d="M0 0h135v10H0z"/><path fill="#fff" d="M0 10h135v10H0z"/><path fill="#0d5eaf" d="M0 20h135v10H0z"/><path fill="#fff" d="M0 30h135v10H0z"/><path fill="#0d5eaf" d="M0 40h135v10H0z"/><path fill="#fff" d="M0 50h135v10H0z"/><path fill="#0d5eaf" d="M0 60h135v10H0z"/><path fill="#fff" d="M0 70h135v10H0z"/><path fill="#0d5eaf" d="M0 80h135v10H0zM0 0h50v50H0z"/><g fill="#fff"><path d="M20 0h10v50H20z"/><path d="M0 20h50v10H0z"/></g></g></symbol><symbol viewBox="0 0 640 480" id="flag-es"><path fill="#c60b1e" d="M0 0h640v480H0z"/><path fill="#ffc400" d="M0 120h640v240H0z"/><path fill="#ad1519" d="M127.27 213.35s-.49 0-.76-.15c-.27-.16-1.08-.93-1.08-.93l-.66-.46-.59-.82s-.7-1.13-.38-2c.32-.88.87-1.19 1.36-1.44a12 12 0 0 1 1.51-.57s.82-.36 1.09-.41c.27-.05 1.25-.3 1.25-.3s.27-.16.54-.26.65-.1.87-.16c.22-.05.76-.22 1.08-.24.5-.02 1.3.09 1.58.09.27 0 1.2.05 1.57.05.38 0 1.73-.1 2.12-.1.37 0 .65-.05 1.08 0 .44.05 1.2.3 1.41.4a35 35 0 0 0 2.01.73c.49.15 1.68.35 2.23.61.54.26.87.7 1.14 1.05.27.36.32.75.43 1.01.1.26.1.81 0 1.07-.1.25-.49.78-.49.78l-.6.98-.76.6s-.54.53-.97.47c-.44-.04-4.83-.82-7.66-.82s-7.32.82-7.32.82"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".3" d="M127.27 213.35s-.49 0-.76-.15c-.27-.16-1.08-.93-1.08-.93l-.66-.46-.59-.82s-.7-1.13-.38-2c.32-.88.87-1.19 1.36-1.44a12 12 0 0 1 1.51-.57s.82-.36 1.09-.41c.27-.05 1.25-.3 1.25-.3s.27-.16.54-.26.65-.1.87-.16c.22-.05.76-.22 1.08-.24.5-.02 1.3.09 1.58.09.27 0 1.2.05 1.57.05.38 0 1.73-.1 2.12-.1.37 0 .65-.05 1.08 0 .44.05 1.2.3 1.41.4a35 35 0 0 0 2.01.73c.49.15 1.68.35 2.23.61.54.26.87.7 1.14 1.05.27.36.32.75.43 1.01.1.26.1.81 0 1.07-.1.25-.49.78-.49.78l-.6.98-.76.6s-.54.53-.97.47c-.44-.04-4.83-.82-7.66-.82s-7.32.82-7.32.82z"/><path fill="#c8b100" d="M133.3 207.06c0-1.33.6-2.4 1.33-2.4.73 0 1.33 1.07 1.33 2.4 0 1.31-.6 2.39-1.33 2.39s-1.32-1.08-1.32-2.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M133.3 207.06c0-1.33.6-2.4 1.33-2.4.73 0 1.33 1.07 1.33 2.4 0 1.31-.6 2.39-1.33 2.39s-1.32-1.08-1.32-2.4z"/><path fill="#c8b100" d="M134.05 207.06c0-1.22.27-2.21.6-2.21.34 0 .61.99.61 2.2 0 1.21-.27 2.2-.6 2.2-.34 0-.61-.99-.61-2.2"/><path fill="none" stroke="#000" stroke-width=".3" d="M134.05 207.06c0-1.22.27-2.21.6-2.21.34 0 .61.99.61 2.2 0 1.21-.27 2.2-.6 2.2-.34 0-.61-.99-.61-2.2z"/><path fill="#c8b100" d="M133.76 204.52c0-.46.4-.84.89-.84s.88.38.88.84c0 .47-.4.84-.88.84s-.89-.37-.89-.84"/><path fill="#c8b100" d="M135.27 204.23v.55h-1.37v-.55h.45v-1.26h-.6v-.56h.6v-.54h.58v.54h.6v.56h-.6v1.26h.34"/><path fill="none" stroke="#000" stroke-width=".3" d="M135.27 204.23v.55h-1.37v-.55h.45v-1.26h-.6v-.56h.6v-.54h.58v.54h.6v.56h-.6v1.26h.34"/><path fill="#c8b100" d="M135.89 204.23v.55h-2.44v-.55h.9v-1.26h-.6v-.56h.6v-.54h.58v.54h.6v.56h-.6v1.26h.95"/><path fill="none" stroke="#000" stroke-width=".3" d="M135.89 204.23v.55h-2.44v-.55h.9v-1.26h-.6v-.56h.6v-.54h.58v.54h.6v.56h-.6v1.26h.95"/><path fill="none" stroke="#000" stroke-width=".3" d="M134.9 203.72c.37.1.63.42.63.8 0 .47-.4.84-.88.84s-.89-.37-.89-.84c0-.39.28-.72.66-.8"/><path fill="#c8b100" d="M134.65 213.2h-4.61l-.11-1.13-.22-1.18-.23-1.48c-1.27-1.67-2.44-2.78-2.83-2.54.1-.3.2-.54.45-.68 1.13-.68 3.46.94 5.22 3.59l.44.72h3.8l.45-.72c1.75-2.65 4.09-4.26 5.22-3.6.24.15.35.38.45.7-.4-.24-1.56.86-2.84 2.54l-.23 1.47-.21 1.18-.1 1.13h-4.65"/><path fill="none" stroke="#000" stroke-width=".3" d="M134.65 213.2h-4.61l-.11-1.13-.22-1.18-.23-1.48c-1.27-1.67-2.44-2.78-2.83-2.54.1-.3.2-.54.45-.68 1.13-.68 3.46.94 5.22 3.59l.44.72h3.8l.45-.72c1.75-2.65 4.09-4.26 5.22-3.6.24.15.35.38.45.7-.4-.24-1.56.86-2.84 2.54l-.23 1.47-.21 1.18-.1 1.13h-4.65z"/><path fill="none" stroke="#000" stroke-width=".3" d="M126.85 206.83c.87-.51 2.9 1.1 4.54 3.59m11.09-3.6c-.87-.5-2.9 1.1-4.54 3.6"/><path fill="#c8b100" d="M127.83 215.28c-.19-.55-.55-1.04-.55-1.04 1.87-.55 4.47-.9 7.36-.9 2.9 0 5.52.35 7.38.9l-.5.88a5.7 5.7 0 0 0-.35.78 22.87 22.87 0 0 0-6.54-.79c-2.67 0-5.24.33-6.58.82l-.23-.65h.01"/><path fill="none" stroke="#000" stroke-width=".3" d="M127.83 215.28c-.19-.55-.55-1.04-.55-1.04 1.87-.55 4.47-.9 7.36-.9 2.9 0 5.52.35 7.38.9l-.5.88a5.7 5.7 0 0 0-.35.78 22.87 22.87 0 0 0-6.54-.79c-2.67 0-5.24.33-6.58.82l-.23-.65h.01"/><path fill="#c8b100" d="M134.64 217.66c2.34 0 4.91-.36 5.86-.6.64-.2 1-.48.94-.8-.03-.16-.17-.3-.36-.38-1.4-.44-3.9-.76-6.44-.77-2.53 0-5.05.32-6.45.77-.18.08-.32.22-.35.37-.07.33.3.62.94.8.95.25 3.53.6 5.86.6"/><path fill="none" stroke="#000" stroke-width=".3" d="M134.64 217.66c2.34 0 4.91-.36 5.86-.6.64-.2 1-.48.94-.8-.03-.16-.17-.3-.36-.38-1.4-.44-3.9-.76-6.44-.77-2.53 0-5.05.32-6.45.77-.18.08-.32.22-.35.37-.07.33.3.62.94.8.95.25 3.53.6 5.86.6z"/><path fill="#c8b100" d="M142.14 213.2l-.57-.52s-.54.34-1.22.23c-.68-.1-.9-.92-.9-.92s-.75.64-1.38.6c-.62-.06-1.03-.6-1.03-.6s-.67.48-1.27.44c-.6-.06-1.17-.8-1.17-.8s-.6.77-1.19.82c-.6.05-1.09-.52-1.09-.52s-.27.57-1.03.7-1.4-.6-1.4-.6-.44.7-.96.88c-.51.18-1.2-.26-1.2-.26l-.18.42c-.08.15-.3.18-.3.18l.17.46a27 27 0 0 1 7.23-.88c2.86 0 5.45.34 7.31.88l.2-.51"/><path fill="none" stroke="#000" stroke-width=".3" d="M142.14 213.2l-.57-.52s-.54.34-1.22.23c-.68-.1-.9-.92-.9-.92s-.75.64-1.38.6c-.62-.06-1.03-.6-1.03-.6s-.67.48-1.27.44c-.6-.06-1.17-.8-1.17-.8s-.6.77-1.19.82c-.6.05-1.09-.52-1.09-.52s-.27.57-1.03.7-1.4-.6-1.4-.6-.44.7-.96.88c-.51.18-1.2-.26-1.2-.26l-.18.42c-.08.15-.3.18-.3.18l.17.46a27 27 0 0 1 7.23-.88c2.86 0 5.45.34 7.31.88l.2-.51h-.02z"/><path fill="#c8b100" d="M134.66 210.71l.27.05a.98.98 0 0 0-.06.36c0 .56.48 1.01 1.08 1.01.47 0 .87-.3 1.01-.7.02.01.1-.37.15-.36.03 0 .03.4.05.39.06.5.53.85 1.06.85.59 0 1.06-.45 1.06-1v-.13l.33-.34.18.43a.89.89 0 0 0-.1.44 1 1 0 0 0 1.02.97c.35 0 .66-.18.85-.44l.21-.27v.34c0 .33.15.63.47.69 0 0 .37.03.88-.37.5-.4.77-.72.77-.72l.03.4s-.49.8-.93 1.06c-.25.15-.62.3-.91.24-.31-.04-.54-.3-.65-.58-.22.13-.48.2-.77.2-.6 0-1.14-.33-1.36-.82-.28.3-.66.48-1.12.48a1.56 1.56 0 0 1-1.2-.55 1.55 1.55 0 0 1-1.05.4 1.56 1.56 0 0 1-1.28-.66 1.55 1.55 0 0 1-2.33.26 1.56 1.56 0 0 1-1.2.55 1.49 1.49 0 0 1-1.12-.48c-.22.49-.76.83-1.36.83-.28 0-.55-.08-.77-.21-.11.28-.34.54-.65.58-.29.06-.66-.1-.9-.24-.45-.25-.98-1.06-.98-1.06l.07-.4s.28.33.77.72c.5.4.88.37.88.37.32-.06.47-.36.47-.7v-.33l.2.27c.2.26.5.44.86.44a1 1 0 0 0 1.02-.97.9.9 0 0 0-.1-.44l.18-.43.33.34a.71.71 0 0 0 0 .12c0 .56.47 1.01 1.06 1.01.53 0 1-.35 1.06-.86.02.01.01-.38.05-.38s.13.37.15.36c.14.4.54.7 1.01.7.6 0 1.07-.46 1.07-1.01a.91.91 0 0 0-.05-.36l.28-.05"/><path fill="none" stroke="#000" stroke-width=".3" d="M134.66 210.71l.27.05a.98.98 0 0 0-.06.36c0 .56.48 1.01 1.08 1.01.47 0 .87-.3 1.01-.7.02.01.1-.37.15-.36.03 0 .03.4.05.39.06.5.53.85 1.06.85.59 0 1.06-.45 1.06-1v-.13l.33-.34.18.43a.89.89 0 0 0-.1.44 1 1 0 0 0 1.02.97c.35 0 .66-.18.85-.44l.21-.27v.34c0 .33.15.63.47.69 0 0 .37.03.88-.37.5-.4.77-.72.77-.72l.03.4s-.49.8-.93 1.06c-.25.15-.62.3-.91.24-.31-.04-.54-.3-.65-.58-.22.13-.48.2-.77.2-.6 0-1.14-.33-1.36-.82-.28.3-.66.48-1.12.48a1.56 1.56 0 0 1-1.2-.55 1.55 1.55 0 0 1-1.05.4 1.56 1.56 0 0 1-1.28-.66 1.55 1.55 0 0 1-2.33.26 1.56 1.56 0 0 1-1.2.55 1.49 1.49 0 0 1-1.12-.48c-.22.49-.76.83-1.36.83-.28 0-.55-.08-.77-.21-.11.28-.34.54-.65.58-.29.06-.66-.1-.9-.24-.45-.25-.98-1.06-.98-1.06l.07-.4s.28.33.77.72c.5.4.88.37.88.37.32-.06.47-.36.47-.7v-.33l.2.27c.2.26.5.44.86.44a1 1 0 0 0 1.02-.97.9.9 0 0 0-.1-.44l.18-.43.33.34a.71.71 0 0 0 0 .12c0 .56.47 1.01 1.06 1.01.53 0 1-.35 1.06-.86.02.01.01-.38.05-.38s.13.37.15.36c.14.4.54.7 1.01.7.6 0 1.07-.46 1.07-1.01a.91.91 0 0 0-.05-.36l.28-.05z"/><path fill="#c8b100" d="M134.64 213.34c-2.89 0-5.5.35-7.36.9-.12.04-.28-.05-.32-.16-.04-.12.05-.27.18-.3 1.87-.58 4.54-.94 7.5-.95 2.97 0 5.64.37 7.52.94.12.04.21.2.17.3-.03.12-.2.22-.31.18a27.3 27.3 0 0 0-7.38-.9"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".3" d="M134.64 213.34c-2.89 0-5.5.35-7.36.9-.12.04-.28-.05-.32-.16-.04-.12.05-.27.18-.3 1.87-.58 4.54-.94 7.5-.95 2.97 0 5.64.37 7.52.94.12.04.21.2.17.3-.03.12-.2.22-.31.18a27.3 27.3 0 0 0-7.38-.9z"/><path fill="#fff" d="M131.84 214.37c0-.22.2-.4.42-.4a.4.4 0 0 1 .42.4c0 .22-.18.4-.42.4-.23 0-.42-.18-.42-.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M131.84 214.37c0-.22.2-.4.42-.4a.4.4 0 0 1 .42.4c0 .22-.18.4-.42.4-.23 0-.42-.18-.42-.4z"/><path fill="#ad1519" d="M134.68 214.54h-.93c-.17 0-.32-.13-.32-.3 0-.16.14-.3.31-.3h1.89a.3.3 0 0 1 .3.3.3.3 0 0 1-.3.3h-.95"/><path fill="none" stroke="#000" stroke-width=".3" d="M134.68 214.54h-.93c-.17 0-.32-.13-.32-.3 0-.16.14-.3.31-.3h1.89a.3.3 0 0 1 .3.3.3.3 0 0 1-.3.3h-.95"/><path fill="#058e6e" d="M130.01 214.86l-.66.1c-.17.02-.34-.09-.36-.25a.3.3 0 0 1 .26-.33l.67-.1.68-.1c.17-.03.33.08.36.24a.3.3 0 0 1-.27.34l-.68.1"/><path fill="none" stroke="#000" stroke-width=".3" d="M130.01 214.86l-.66.1c-.17.02-.34-.09-.36-.25a.3.3 0 0 1 .26-.33l.67-.1.68-.1c.17-.03.33.08.36.24a.3.3 0 0 1-.27.34l-.68.1"/><path fill="#ad1519" d="M127.33 215.33l.3-.48.62.12-.37.54-.55-.18"/><path fill="none" stroke="#000" stroke-width=".3" d="M127.33 215.33l.3-.48.62.12-.37.54-.55-.18"/><path fill="#fff" d="M136.61 214.37c0-.22.19-.4.42-.4a.4.4 0 0 1 .42.4.4.4 0 0 1-.42.4c-.23 0-.42-.18-.42-.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M136.61 214.37c0-.22.19-.4.42-.4a.4.4 0 0 1 .42.4.4.4 0 0 1-.42.4c-.23 0-.42-.18-.42-.4z"/><path fill="#058e6e" d="M139.28 214.86l.67.1a.31.31 0 0 0 .35-.25.3.3 0 0 0-.25-.33l-.68-.1-.68-.1c-.17-.03-.33.08-.35.24-.03.16.09.31.26.34l.68.1"/><path fill="none" stroke="#000" stroke-width=".3" d="M139.28 214.86l.67.1a.31.31 0 0 0 .35-.25.3.3 0 0 0-.25-.33l-.68-.1-.68-.1c-.17-.03-.33.08-.35.24-.03.16.09.31.26.34l.68.1"/><path fill="#ad1519" d="M141.91 215.36l-.24-.51-.64.05.3.57.58-.11"/><path fill="none" stroke="#000" stroke-width=".3" d="M141.91 215.36l-.24-.51-.64.05.3.57.58-.11"/><path fill="#ad1519" d="M134.64 217.12c-2.34 0-4.45-.21-6.06-.63 1.6-.41 3.72-.67 6.06-.67 2.33 0 4.46.26 6.07.67-1.61.42-3.74.62-6.07.63"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".3" d="M134.64 217.12c-2.34 0-4.45-.21-6.06-.63 1.6-.41 3.72-.67 6.06-.67 2.33 0 4.46.26 6.07.67-1.61.42-3.74.62-6.07.63z"/><path fill="#c8b100" d="M142 212.05c.06-.18 0-.36-.12-.4-.13-.04-.29.08-.35.25-.06.18 0 .36.13.4.13.04.28-.07.35-.25"/><path fill="none" stroke="#000" stroke-width=".3" d="M142 212.05c.06-.18 0-.36-.12-.4-.13-.04-.29.08-.35.25-.06.18 0 .36.13.4.13.04.28-.07.35-.25z"/><path fill="#c8b100" d="M137.35 211.15c.02-.19-.07-.35-.2-.37-.14-.02-.27.12-.29.31-.02.19.07.36.2.37.14.02.27-.13.3-.31"/><path fill="none" stroke="#000" stroke-width=".3" d="M137.35 211.15c.02-.19-.07-.35-.2-.37-.14-.02-.27.12-.29.31-.02.19.07.36.2.37.14.02.27-.13.3-.31z"/><path fill="#c8b100" d="M131.95 211.15c-.02-.19.07-.35.2-.37.14-.02.27.12.3.31.02.19-.07.36-.2.37-.14.02-.27-.13-.3-.31"/><path fill="none" stroke="#000" stroke-width=".3" d="M131.95 211.15c-.02-.19.07-.35.2-.37.14-.02.27.12.3.31.02.19-.07.36-.2.37-.14.02-.27-.13-.3-.31z"/><path fill="#c8b100" d="M127.3 212.05c-.06-.18 0-.36.13-.4.13-.04.28.08.35.25.06.18 0 .36-.13.4-.13.04-.29-.07-.35-.25"/><path fill="none" stroke="#000" stroke-width=".3" d="M127.3 212.05c-.06-.18 0-.36.13-.4.13-.04.28.08.35.25.06.18 0 .36-.13.4-.13.04-.29-.07-.35-.25z"/><path fill="#c8b100" d="M134.64 208.46l-.83.5.61 1.33.21.14.21-.14.62-1.33-.82-.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M134.64 208.46l-.83.5.61 1.33.21.14.21-.14.62-1.33-.82-.5"/><path fill="#c8b100" d="M132.83 210.47l.38.54 1.29-.4.13-.17-.14-.19-1.28-.37-.38.59"/><path fill="none" stroke="#000" stroke-width=".3" d="M132.83 210.47l.38.54 1.29-.4.13-.17-.14-.19-1.28-.37-.38.59"/><path fill="#c8b100" d="M136.45 210.47l-.37.54-1.3-.4-.13-.17.14-.19 1.29-.37.37.59"/><path fill="none" stroke="#000" stroke-width=".3" d="M136.45 210.47l-.37.54-1.3-.4-.13-.17.14-.19 1.29-.37.37.59"/><path fill="#c8b100" d="M129.28 209.05l-.65.61.83 1.1.22.08.16-.16.29-1.32-.85-.3"/><path fill="none" stroke="#000" stroke-width=".3" d="M129.28 209.05l-.65.61.83 1.1.22.08.16-.16.29-1.32-.85-.3"/><path fill="#c8b100" d="M127.92 211.24l.49.46 1.17-.64.1-.2-.18-.15-1.34-.12-.24.65"/><path fill="none" stroke="#000" stroke-width=".3" d="M127.92 211.24l.49.46 1.17-.64.1-.2-.18-.15-1.34-.12-.24.65"/><path fill="#c8b100" d="M131.47 210.53l-.25.6-1.35-.12-.17-.15.1-.21 1.17-.62.5.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M131.47 210.53l-.25.6-1.35-.12-.17-.15.1-.21 1.17-.62.5.5"/><path fill="#c8b100" d="M126.63 211.41l-.11.64-1.34.14-.2-.12.04-.21 1-.84.6.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M126.63 211.41l-.11.64-1.34.14-.2-.12.04-.21 1-.84.6.4"/><path fill="#c8b100" d="M129.22 210.86c0-.25.21-.45.47-.45s.47.2.47.45a.46.46 0 0 1-.47.45.46.46 0 0 1-.47-.45"/><path fill="none" stroke="#000" stroke-width=".3" d="M129.22 210.86c0-.25.21-.45.47-.45s.47.2.47.45a.46.46 0 0 1-.47.45.46.46 0 0 1-.47-.45z"/><path fill="#c8b100" d="M140.02 209.05l.65.61-.83 1.1-.23.08-.15-.16-.3-1.32.86-.3"/><path fill="none" stroke="#000" stroke-width=".3" d="M140.02 209.05l.65.61-.83 1.1-.23.08-.15-.16-.3-1.32.86-.3"/><path fill="#c8b100" d="M141.37 211.24l-.48.46-1.18-.64-.1-.2.19-.15 1.34-.12.23.65"/><path fill="none" stroke="#000" stroke-width=".3" d="M141.37 211.24l-.48.46-1.18-.64-.1-.2.19-.15 1.34-.12.23.65"/><path fill="#c8b100" d="M137.83 210.53l.25.6 1.34-.12.18-.15-.1-.21-1.17-.62-.5.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M137.83 210.53l.25.6 1.34-.12.18-.15-.1-.21-1.17-.62-.5.5"/><path fill="#c8b100" d="M142.48 211.41l.12.64 1.34.14.2-.12-.05-.21-1-.84-.6.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M142.48 211.41l.12.64 1.34.14.2-.12-.05-.21-1-.84-.6.4"/><path fill="#c8b100" d="M134.17 210.44a.46.46 0 0 1 .47-.45c.27 0 .48.2.48.45a.46.46 0 0 1-.48.45.46.46 0 0 1-.47-.45"/><path fill="none" stroke="#000" stroke-width=".3" d="M134.17 210.44a.46.46 0 0 1 .47-.45c.27 0 .48.2.48.45a.46.46 0 0 1-.48.45.46.46 0 0 1-.47-.45z"/><path fill="#c8b100" d="M139.14 210.86c0-.25.22-.45.47-.45a.46.46 0 0 1 .48.45.46.46 0 0 1-.47.45.46.46 0 0 1-.48-.45"/><path fill="none" stroke="#000" stroke-width=".3" d="M139.14 210.86c0-.25.22-.45.47-.45a.46.46 0 0 1 .48.45.46.46 0 0 1-.47.45.46.46 0 0 1-.48-.45z"/><path fill="#c8b100" d="M124.81 212.16c-.01 0-.36-.47-.63-.7-.19-.17-.64-.31-.64-.31 0-.09.26-.28.55-.28a.54.54 0 0 1 .43.19l.04-.18s.24.04.34.3c.11.28.04.69.04.69s-.04.19-.13.29"/><path fill="none" stroke="#000" stroke-width=".3" d="M124.81 212.16c-.01 0-.36-.47-.63-.7-.19-.17-.64-.31-.64-.31 0-.09.26-.28.55-.28a.54.54 0 0 1 .43.19l.04-.18s.24.04.34.3c.11.28.04.69.04.69s-.04.19-.13.29z"/><path fill="#c8b100" d="M124.83 211.92c.11-.11.34-.09.51.06.18.14.23.36.11.48-.1.12-.34.1-.5-.06-.18-.14-.23-.36-.12-.48"/><path fill="none" stroke="#000" stroke-width=".3" d="M124.83 211.92c.11-.11.34-.09.51.06.18.14.23.36.11.48-.1.12-.34.1-.5-.06-.18-.14-.23-.36-.12-.48z"/><path fill="#c8b100" d="M144.3 212.16c.01 0 .37-.47.63-.7.18-.17.65-.31.65-.31 0-.09-.27-.28-.56-.28a.55.55 0 0 0-.43.19l-.04-.18s-.23.04-.34.3c-.1.28-.04.69-.04.69s.04.19.13.29"/><path fill="none" stroke="#000" stroke-width=".3" d="M144.3 212.16c.01 0 .37-.47.63-.7.18-.17.65-.31.65-.31 0-.09-.27-.28-.56-.28a.55.55 0 0 0-.43.19l-.04-.18s-.23.04-.34.3c-.1.28-.04.69-.04.69s.04.19.13.29z"/><path fill="#c8b100" d="M144.31 211.92c-.1-.11-.34-.09-.51.06-.18.14-.23.36-.12.48.12.12.35.1.52-.06.17-.14.22-.36.11-.48"/><path fill="none" stroke="#000" stroke-width=".3" d="M144.31 211.92c-.1-.11-.34-.09-.51.06-.18.14-.23.36-.12.48.12.12.35.1.52-.06.17-.14.22-.36.11-.48z"/><path fill="#c8b100" d="M124 223.07h21.4v-5.6H124v5.6z"/><path fill="none" stroke="#000" stroke-width=".4" d="M124 223.07h21.4v-5.6H124v5.6z"/><path fill="#c8b100" d="M126.24 226.8a.93.93 0 0 1 .4-.05h16.02c.16 0 .3.02.44.07a1.35 1.35 0 0 1-.95-1.26c0-.6.43-1.1.98-1.29a1.7 1.7 0 0 1-.46.08h-16.03a1.43 1.43 0 0 1-.45-.05l.09.01c.57.18.9.69.9 1.25a1.33 1.33 0 0 1-.94 1.25"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M126.24 226.8a.93.93 0 0 1 .4-.05h16.02c.16 0 .3.02.44.07a1.35 1.35 0 0 1-.95-1.26c0-.6.43-1.1.98-1.29a1.7 1.7 0 0 1-.46.08h-16.03a1.43 1.43 0 0 1-.45-.05l.09.01c.57.18.9.69.9 1.25a1.33 1.33 0 0 1-.94 1.25z"/><path fill="#c8b100" d="M126.64 226.75h16.02c.54 0 .98.33.98.75 0 .41-.44.75-.98.75h-16.02c-.54 0-.98-.34-.98-.76 0-.4.44-.75.98-.75"/><path fill="none" stroke="#000" stroke-width=".4" d="M126.64 226.75h16.02c.54 0 .98.33.98.75 0 .41-.44.75-.98.75h-16.02c-.54 0-.98-.34-.98-.76 0-.4.44-.75.98-.75z"/><path fill="#c8b100" d="M126.64 223.07h16.03c.54 0 .99.29.99.64 0 .35-.45.64-.99.64h-16.03c-.55 0-.98-.29-.98-.64 0-.35.44-.64.98-.64"/><path fill="none" stroke="#000" stroke-width=".4" d="M126.64 223.07h16.03c.54 0 .99.29.99.64 0 .35-.45.64-.99.64h-16.03c-.55 0-.98-.29-.98-.64 0-.35.44-.64.98-.64z"/><path fill="#005bbf" d="M149.63 317.45c-1.48 0-2.8-.31-3.77-.83a8.36 8.36 0 0 0-3.71-.79c-1.45 0-2.79.3-3.75.8a8.3 8.3 0 0 1-3.77.82c-1.48 0-2.8-.35-3.77-.86a8.42 8.42 0 0 0-3.64-.76c-1.45 0-2.74.27-3.7.78a8.3 8.3 0 0 1-3.8.84v2.31c1.48 0 2.82-.33 3.8-.85a8.2 8.2 0 0 1 3.7-.78c1.4 0 2.68.3 3.64.77.97.51 2.29.86 3.77.86a8.4 8.4 0 0 0 3.77-.82c.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8.97.51 2.27.82 3.75.82l.02-2.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M149.63 317.45c-1.48 0-2.8-.31-3.77-.83a8.36 8.36 0 0 0-3.71-.79c-1.45 0-2.79.3-3.75.8a8.3 8.3 0 0 1-3.77.82c-1.48 0-2.8-.35-3.77-.86a8.42 8.42 0 0 0-3.64-.76c-1.45 0-2.74.27-3.7.78a8.3 8.3 0 0 1-3.8.84v2.31c1.48 0 2.82-.33 3.8-.85a8.2 8.2 0 0 1 3.7-.78c1.4 0 2.68.3 3.64.77.97.51 2.29.86 3.77.86a8.4 8.4 0 0 0 3.77-.82c.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8.97.51 2.27.82 3.75.82l.02-2.31z"/><path fill="#ccc" d="M149.63 319.77c-1.48 0-2.8-.32-3.77-.83a8.3 8.3 0 0 0-3.71-.8c-1.45 0-2.79.3-3.75.8-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.87a8.38 8.38 0 0 0-3.64-.76 8.2 8.2 0 0 0-3.7.78c-.98.5-2.33.85-3.8.85v2.3c1.48 0 2.82-.32 3.8-.83a8.1 8.1 0 0 1 3.7-.79c1.4 0 2.68.3 3.64.77.97.51 2.29.86 3.77.86 1.46 0 2.8-.32 3.77-.83.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8a8.1 8.1 0 0 0 3.75.83l.02-2.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M149.63 319.77c-1.48 0-2.8-.32-3.77-.83a8.3 8.3 0 0 0-3.71-.8c-1.45 0-2.79.3-3.75.8-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.87a8.38 8.38 0 0 0-3.64-.76 8.2 8.2 0 0 0-3.7.78c-.98.5-2.33.85-3.8.85v2.3c1.48 0 2.82-.32 3.8-.83a8.1 8.1 0 0 1 3.7-.79c1.4 0 2.68.3 3.64.77.97.51 2.29.86 3.77.86 1.46 0 2.8-.32 3.77-.83.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8a8.1 8.1 0 0 0 3.75.83l.02-2.31"/><path fill="#005bbf" d="M149.63 322.08c-1.48 0-2.8-.32-3.77-.83a8.3 8.3 0 0 0-3.71-.8c-1.45 0-2.79.3-3.75.8-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.86a8.36 8.36 0 0 0-3.64-.77c-1.45 0-2.74.28-3.7.79-.98.5-2.33.84-3.8.84v2.3c1.48 0 2.82-.32 3.8-.84.96-.5 2.25-.77 3.7-.77 1.4 0 2.68.29 3.64.76.97.52 2.29.86 3.77.86a8.4 8.4 0 0 0 3.77-.82c.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8.97.51 2.27.82 3.75.82l.02-2.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M149.63 322.08c-1.48 0-2.8-.32-3.77-.83a8.3 8.3 0 0 0-3.71-.8c-1.45 0-2.79.3-3.75.8-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.86a8.36 8.36 0 0 0-3.64-.77c-1.45 0-2.74.28-3.7.79-.98.5-2.33.84-3.8.84v2.3c1.48 0 2.82-.32 3.8-.84.96-.5 2.25-.77 3.7-.77 1.4 0 2.68.29 3.64.76.97.52 2.29.86 3.77.86a8.4 8.4 0 0 0 3.77-.82c.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8.97.51 2.27.82 3.75.82l.02-2.31"/><path fill="#ccc" d="M149.61 326.7a8.07 8.07 0 0 1-3.75-.83c-.97-.49-2.27-.79-3.71-.79a8.4 8.4 0 0 0-3.75.8c-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.87a8.42 8.42 0 0 0-3.64-.76c-1.45 0-2.74.28-3.7.78-.98.52-2.33.85-3.8.85v-2.3a8.3 8.3 0 0 0 3.8-.86c.96-.5 2.25-.78 3.7-.78 1.4 0 2.68.29 3.64.76.97.52 2.29.86 3.77.86a8.4 8.4 0 0 0 3.77-.82c.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8.97.51 2.29.82 3.77.82l-.02 2.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M149.61 326.7a8.07 8.07 0 0 1-3.75-.83c-.97-.49-2.27-.79-3.71-.79a8.4 8.4 0 0 0-3.75.8c-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.87a8.42 8.42 0 0 0-3.64-.76c-1.45 0-2.74.28-3.7.78-.98.52-2.33.85-3.8.85v-2.3a8.3 8.3 0 0 0 3.8-.86c.96-.5 2.25-.78 3.7-.78 1.4 0 2.68.29 3.64.76.97.52 2.29.86 3.77.86a8.4 8.4 0 0 0 3.77-.82c.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8.97.51 2.29.82 3.77.82l-.02 2.31"/><path fill="#005bbf" d="M149.61 329.02a8.1 8.1 0 0 1-3.75-.83c-.97-.5-2.27-.8-3.71-.8a8.4 8.4 0 0 0-3.75.8c-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.87a8.38 8.38 0 0 0-3.64-.76c-1.45 0-2.74.28-3.7.78-.98.51-2.33.85-3.8.85v-2.3a8.3 8.3 0 0 0 3.8-.86c.96-.5 2.25-.78 3.7-.78 1.4 0 2.68.29 3.64.76.97.51 2.29.86 3.77.86 1.46 0 2.8-.32 3.77-.82.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8.97.5 2.28.82 3.76.82v2.32"/><path fill="none" stroke="#000" stroke-width=".4" d="M149.61 329.02a8.1 8.1 0 0 1-3.75-.83c-.97-.5-2.27-.8-3.71-.8a8.4 8.4 0 0 0-3.75.8c-.97.5-2.3.83-3.77.83-1.48 0-2.8-.35-3.77-.87a8.38 8.38 0 0 0-3.64-.76c-1.45 0-2.74.28-3.7.78-.98.51-2.33.85-3.8.85v-2.3a8.3 8.3 0 0 0 3.8-.86c.96-.5 2.25-.78 3.7-.78 1.4 0 2.68.29 3.64.76.97.51 2.29.86 3.77.86 1.46 0 2.8-.32 3.77-.82.96-.5 2.3-.8 3.75-.8 1.44 0 2.74.3 3.71.8.97.5 2.28.82 3.76.82v2.32z"/><path fill="#c8b100" d="M126.24 307.95c.05.2.13.39.13.6 0 1.4-1.22 2.52-2.7 2.52h22.02c-1.49 0-2.7-1.12-2.7-2.52 0-.21.04-.4.1-.6a1.29 1.29 0 0 1-.43.05h-16.02a1.4 1.4 0 0 1-.4-.05"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M126.24 307.95c.05.2.13.39.13.6 0 1.4-1.22 2.52-2.7 2.52h22.02c-1.49 0-2.7-1.12-2.7-2.52 0-.21.04-.4.1-.6a1.29 1.29 0 0 1-.43.05h-16.02a1.4 1.4 0 0 1-.4-.05z"/><path fill="#c8b100" d="M126.64 306.5h16.02c.54 0 .98.34.98.75 0 .42-.44.75-.98.75h-16.02c-.54 0-.98-.33-.98-.75 0-.41.44-.75.98-.75"/><path fill="none" stroke="#000" stroke-width=".4" d="M126.64 306.5h16.02c.54 0 .98.34.98.75 0 .42-.44.75-.98.75h-16.02c-.54 0-.98-.33-.98-.75 0-.41.44-.75.98-.75z"/><path fill="#c8b100" d="M123.7 316.67h21.96v-5.6H123.7v5.6z"/><path fill="none" stroke="#000" stroke-width=".4" d="M123.7 316.67h21.96v-5.6H123.7v5.6z"/><path fill="#ad1519" d="M121.98 286.67c-2.17 1.26-3.65 2.54-3.4 3.18.11.6.8 1.03 1.79 1.69 1.55 1.08 2.5 3 1.76 3.9a5.53 5.53 0 0 0-.15-8.77"/><path fill="none" stroke="#000" stroke-width=".4" d="M121.98 286.67c-2.17 1.26-3.65 2.54-3.4 3.18.11.6.8 1.03 1.79 1.69 1.55 1.08 2.5 3 1.76 3.9a5.53 5.53 0 0 0-.15-8.77z"/><path fill="#ccc" d="M126.84 305.59h15.6v-76.45h-15.6v76.45z"/><path fill="none" stroke="#000" stroke-width=".4" d="M137.97 229.24v76.29m1.75-76.29v76.29m-12.88.06h15.6v-76.45h-15.6v76.45z"/><path fill="#ad1519" d="M158.39 257.74c-3.4-1.41-9.2-2.45-15.84-2.67-2.29.02-4.84.23-7.47.67-9.34 1.56-16.45 5.28-15.88 8.32l.04.25s-3.5-7.88-3.55-8.18c-.62-3.37 7.26-7.5 17.62-9.24 3.25-.54 6.42-.75 9.18-.72 6.62 0 12.38.85 15.85 2.13l.05 9.44"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M158.39 257.74c-3.4-1.41-9.2-2.45-15.84-2.67-2.29.02-4.84.23-7.47.67-9.34 1.56-16.45 5.28-15.88 8.32l.04.25s-3.5-7.88-3.55-8.18c-.62-3.37 7.26-7.5 17.62-9.24 3.25-.54 6.42-.75 9.18-.72 6.62 0 12.38.85 15.85 2.13l.05 9.44"/><path fill="#ad1519" d="M126.82 267.33c-4.33-.31-7.28-1.47-7.62-3.27-.27-1.45 1.2-3.04 3.8-4.49 1.17.13 2.49.29 3.84.29l-.02 7.47"/><path fill="none" stroke="#000" stroke-width=".4" d="M126.82 267.33c-4.33-.31-7.28-1.47-7.62-3.27-.27-1.45 1.2-3.04 3.8-4.49 1.17.13 2.49.29 3.84.29l-.02 7.47"/><path fill="#ad1519" d="M142.48 261.49c2.7.4 4.73 1.08 5.74 1.9l.1.17c.48.99-1.9 3.1-5.87 5.44l.03-7.51"/><path fill="none" stroke="#000" stroke-width=".4" d="M142.48 261.49c2.7.4 4.73 1.08 5.74 1.9l.1.17c.48.99-1.9 3.1-5.87 5.44l.03-7.51"/><path fill="#ad1519" d="M117.13 282.08c-.41-1.24 3.8-3.7 9.77-5.9 2.72-.97 4.97-1.99 7.76-3.22 8.29-3.66 14.4-7.86 13.65-9.4l-.08-.15c.44.36 1.13 7.9 1.13 7.9.75 1.41-4.85 5.55-12.48 9.2-2.44 1.17-7.6 3.08-10.03 3.93-4.35 1.51-8.68 4.36-8.28 5.41l-1.45-7.77"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M117.13 282.08c-.41-1.24 3.8-3.7 9.77-5.9 2.72-.97 4.97-1.99 7.76-3.22 8.29-3.66 14.4-7.86 13.65-9.4l-.08-.15c.44.36 1.13 7.9 1.13 7.9.75 1.41-4.85 5.55-12.48 9.2-2.44 1.17-7.6 3.08-10.03 3.93-4.35 1.51-8.68 4.36-8.28 5.41l-1.45-7.77z"/><path fill="#c8b100" d="M125.77 254.07c1.9-.7 3.16-1.52 2.54-3.02-.38-.96-1.37-1.14-2.84-.6l-2.61.95 2.35 5.79c.25-.12.5-.24.78-.34.26-.1.54-.17.8-.24l-1.02-2.54zm-1.14-2.8l.66-.24c.55-.2 1.17.1 1.44.77.2.51.15 1.08-.48 1.49a4.4 4.4 0 0 1-.67.31l-.95-2.33m7.24-2.42c-.28.07-.55.16-.83.21-.27.05-.56.09-.84.12l1.35 6.03 4.21-.85c-.05-.12-.11-.24-.14-.37-.03-.12-.02-.26-.03-.39-.74.21-1.55.44-2.51.64l-1.2-5.39m8.41 5.2c.8-2.2 1.76-4.29 2.7-6.4a5.29 5.29 0 0 1-1.04.06 54.81 54.81 0 0 1-1.78 4.6c-.8-1.44-1.67-2.86-2.34-4.33-.32.05-.66.1-.99.12-.33.02-.67.01-1 .02a131.44 131.44 0 0 1 3.5 5.98c.15-.02.3-.06.48-.07h.47m8.8-4.62l.46-.86a3.44 3.44 0 0 0-1.74-.6c-1.71-.18-2.7.59-2.81 1.62-.24 2.17 3.18 1.98 3.02 3.42-.07.62-.73.87-1.42.8-.78-.07-1.35-.5-1.45-1.14l-.22-.02a7.26 7.26 0 0 1-.45 1.1c.5.33 1.15.52 1.77.58 1.75.17 3.09-.53 3.22-1.68.22-2.06-3.23-2.18-3.1-3.4.06-.5.45-.84 1.34-.75.64.06 1.04.41 1.21.91l.17.02"/><path fill="#ad1519" d="M277.85 211.6s-.7.75-1.22.86c-.51.1-1.16-.47-1.16-.47s-.47.48-1.04.61c-.57.13-1.36-.64-1.36-.64s-.54.77-1.03.95c-.49.18-1.08-.23-1.08-.23s-.21.38-.62.6c-.18.08-.46-.06-.46-.06l-.58-.36-.65-.7-.6-.22s-.26-.88-.3-1.03l-.07-.54c-.12-.62.84-1.35 2.2-1.66a3.89 3.89 0 0 1 1.99-.01c.54-.47 1.7-.8 3.07-.8 1.23 0 2.32.27 2.91.68a5.5 5.5 0 0 1 2.92-.67c1.35 0 2.51.32 3.06.79.5-.16 1.19-.17 1.98.01 1.37.31 2.33 1.04 2.21 1.66l-.08.54c-.03.15-.3 1.02-.3 1.02l-.6.24-.65.7-.56.35s-.3.14-.46.05c-.41-.2-.63-.59-.63-.59s-.6.41-1.08.23c-.5-.18-1.04-.95-1.04-.95s-.78.77-1.35.64c-.57-.13-1.03-.61-1.03-.61s-.66.56-1.17.46c-.52-.1-1.22-.85-1.22-.85"/><path fill="none" stroke="#000" stroke-width=".3" d="M277.85 211.6s-.7.75-1.22.86c-.51.1-1.16-.47-1.16-.47s-.47.48-1.04.61c-.57.13-1.36-.64-1.36-.64s-.54.77-1.03.95c-.49.18-1.08-.23-1.08-.23s-.21.38-.62.6c-.18.08-.46-.06-.46-.06l-.58-.36-.65-.7-.6-.22s-.26-.88-.3-1.03l-.07-.54c-.12-.62.84-1.35 2.2-1.66a3.89 3.89 0 0 1 1.99-.01c.54-.47 1.7-.8 3.07-.8 1.23 0 2.32.27 2.91.68a5.5 5.5 0 0 1 2.92-.67c1.35 0 2.51.32 3.06.79.5-.16 1.19-.17 1.98.01 1.37.31 2.33 1.04 2.21 1.66l-.08.54c-.03.15-.3 1.02-.3 1.02l-.6.24-.65.7-.56.35s-.3.14-.46.05c-.41-.2-.63-.59-.63-.59s-.6.41-1.08.23c-.5-.18-1.04-.95-1.04-.95s-.78.77-1.35.64c-.57-.13-1.03-.61-1.03-.61s-.66.56-1.17.46c-.52-.1-1.22-.85-1.22-.85z"/><path fill="#c8b100" d="M276.51 207.55c0-1.04.59-1.88 1.32-1.88.73 0 1.32.84 1.32 1.88s-.59 1.89-1.32 1.89c-.73 0-1.32-.85-1.32-1.9"/><path fill="none" stroke="#000" stroke-width=".3" d="M276.51 207.55c0-1.04.59-1.88 1.32-1.88.73 0 1.32.84 1.32 1.88s-.59 1.89-1.32 1.89c-.73 0-1.32-.85-1.32-1.9z"/><path fill="#c8b100" d="M277.25 207.55c0-.95.27-1.73.6-1.73.34 0 .61.78.61 1.73 0 .96-.27 1.73-.6 1.73-.34 0-.61-.77-.61-1.73"/><path fill="none" stroke="#000" stroke-width=".3" d="M277.25 207.55c0-.95.27-1.73.6-1.73.34 0 .61.78.61 1.73 0 .96-.27 1.73-.6 1.73-.34 0-.61-.77-.61-1.73z"/><path fill="#c8b100" d="M271.04 215.28a4.54 4.54 0 0 0-.56-1.04c1.87-.55 4.47-.9 7.36-.9 2.9 0 5.52.35 7.39.9l-.5.88a5.2 5.2 0 0 0-.36.78 22.88 22.88 0 0 0-6.54-.79c-2.67 0-5.24.33-6.58.82.02 0-.1-.3-.23-.65h.02"/><path fill="none" stroke="#000" stroke-width=".3" d="M271.04 215.28a4.54 4.54 0 0 0-.56-1.04c1.87-.55 4.47-.9 7.36-.9 2.9 0 5.52.35 7.39.9l-.5.88a5.2 5.2 0 0 0-.36.78 22.88 22.88 0 0 0-6.54-.79c-2.67 0-5.24.33-6.58.82.02 0-.1-.3-.23-.65h.02"/><path fill="#c8b100" d="M277.84 217.66c2.34 0 4.91-.36 5.86-.6.64-.2 1-.48.94-.8-.03-.16-.17-.3-.36-.38a24.1 24.1 0 0 0-6.44-.77c-2.52 0-5.05.32-6.45.77-.17.08-.32.22-.35.37-.07.33.3.62.94.8.95.25 3.53.6 5.87.6"/><path fill="none" stroke="#000" stroke-width=".3" d="M277.84 217.66c2.34 0 4.91-.36 5.86-.6.64-.2 1-.48.94-.8-.03-.16-.17-.3-.36-.38a24.1 24.1 0 0 0-6.44-.77c-2.52 0-5.05.32-6.45.77-.17.08-.32.22-.35.37-.07.33.3.62.94.8.95.25 3.53.6 5.87.6z"/><path fill="#fff" d="M283.5 208.4c0-.24.2-.42.44-.42s.43.18.43.41c0 .23-.19.41-.43.41a.42.42 0 0 1-.43-.4"/><path fill="none" stroke="#000" stroke-width=".2" d="M283.5 208.4c0-.24.2-.42.44-.42s.43.18.43.41c0 .23-.19.41-.43.41a.42.42 0 0 1-.43-.4zm-.24-1.45a.42.42 0 0 1 .43-.4c.24 0 .44.17.44.4s-.2.41-.43.41a.42.42 0 0 1-.44-.4zm-1.09-.9c0-.23.2-.4.44-.4s.43.18.43.4c0 .23-.2.42-.43.42a.42.42 0 0 1-.43-.42zm-1.35-.43c0-.23.2-.42.43-.42.24 0 .43.19.43.42 0 .22-.19.41-.43.41s-.43-.19-.43-.41zm-1.39.05c0-.23.2-.41.44-.41s.43.18.43.4c0 .24-.2.42-.43.42a.42.42 0 0 1-.44-.41z"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-width=".3" d="M287.8 211.19c.13-.32.2-.67.2-1.04a2.74 2.74 0 0 0-2.7-2.76c-.48 0-.93.13-1.32.35"/><path fill="none" stroke="#000" stroke-width=".3" d="M282.97 209.24c.14-.25.24-.55.24-.84 0-1.1-1.14-1.99-2.54-1.99-.6 0-1.14.17-1.58.43"/><path fill="none" stroke="#000" stroke-width=".2" d="M288.17 209.93c0-.22.2-.41.44-.41s.43.19.43.41c0 .23-.2.41-.43.41-.24 0-.44-.18-.44-.4zm-.16-1.51c0-.23.2-.41.44-.41a.42.42 0 0 1 .43.4c0 .23-.2.42-.43.42-.24 0-.44-.19-.44-.41zm-.97-1.16a.42.42 0 0 1 .43-.41c.24 0 .43.18.43.4a.42.42 0 0 1-.43.42.42.42 0 0 1-.43-.41zm-1.3-.62c0-.22.19-.4.43-.4s.43.18.43.4c0 .23-.2.42-.43.42a.43.43 0 0 1-.44-.42zm-1.4.06c0-.23.2-.42.44-.42s.44.19.44.42c0 .22-.2.4-.44.4s-.43-.18-.43-.4z"/><path fill="#c8b100" d="M285.34 213.2l-.57-.52s-.54.34-1.22.23c-.68-.1-.9-.92-.9-.92s-.75.64-1.37.6c-.63-.06-1.03-.6-1.03-.6s-.68.48-1.28.44c-.6-.06-1.17-.8-1.17-.8s-.6.77-1.2.82c-.59.05-1.08-.52-1.08-.52s-.27.57-1.03.7-1.4-.6-1.4-.6-.44.7-.96.88c-.51.18-1.19-.26-1.19-.26l-.19.42c-.08.15-.3.18-.3.18l.17.46a27 27 0 0 1 7.23-.88c2.86 0 5.45.34 7.3.88l.2-.51"/><path fill="none" stroke="#000" stroke-width=".3" d="M285.34 213.2l-.57-.52s-.54.34-1.22.23c-.68-.1-.9-.92-.9-.92s-.75.64-1.37.6c-.63-.06-1.03-.6-1.03-.6s-.68.48-1.28.44c-.6-.06-1.17-.8-1.17-.8s-.6.77-1.2.82c-.59.05-1.08-.52-1.08-.52s-.27.57-1.03.7-1.4-.6-1.4-.6-.44.7-.96.88c-.51.18-1.19-.26-1.19-.26l-.19.42c-.08.15-.3.18-.3.18l.17.46a27 27 0 0 1 7.23-.88c2.86 0 5.45.34 7.3.88l.2-.51z"/><path fill="#fff" d="M271.26 208.4c0-.24.2-.42.43-.42.24 0 .43.18.43.41a.42.42 0 0 1-.43.41c-.24 0-.43-.18-.43-.4"/><path fill="none" stroke="#000" stroke-width=".2" d="M271.26 208.4c0-.24.2-.42.43-.42.24 0 .43.18.43.41a.42.42 0 0 1-.43.41c-.24 0-.43-.18-.43-.4zm.24-1.45c0-.23.2-.4.44-.4s.43.17.43.4-.2.41-.43.41c-.24 0-.44-.18-.44-.4zm1.09-.9c0-.23.19-.4.43-.4s.44.18.44.4c0 .23-.2.42-.44.42a.42.42 0 0 1-.43-.42zm1.35-.43c0-.23.2-.42.44-.42s.43.19.43.42c0 .22-.19.41-.43.41s-.44-.19-.44-.41zm1.39.05c0-.23.2-.41.43-.41.24 0 .44.18.44.4 0 .24-.2.42-.44.42a.42.42 0 0 1-.43-.41z"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-width=".3" d="M267.83 211.19a2.8 2.8 0 0 1-.2-1.04 2.74 2.74 0 0 1 2.7-2.76c.48 0 .93.13 1.33.35"/><path fill="none" stroke="#000" stroke-width=".3" d="M272.7 209.21a1.68 1.68 0 0 1-.28-.8c0-1.1 1.14-2 2.54-2a3 3 0 0 1 1.58.43"/><path fill="none" stroke="#000" stroke-width=".2" d="M266.59 209.93c0-.22.2-.41.43-.41.24 0 .43.19.43.41a.42.42 0 0 1-.43.41c-.24 0-.43-.18-.43-.4zm.16-1.51c0-.23.2-.41.44-.41s.43.18.43.4c0 .23-.2.42-.43.42-.24 0-.44-.19-.44-.41zm.98-1.16c0-.23.2-.41.44-.41a.42.42 0 0 1 .43.4.42.42 0 0 1-.43.42.42.42 0 0 1-.44-.41zm1.3-.62c0-.22.2-.4.43-.4.25 0 .44.18.44.4 0 .23-.2.42-.44.42a.42.42 0 0 1-.43-.42zm1.39.06c0-.23.19-.42.43-.42a.42.42 0 0 1 .43.42.42.42 0 0 1-.43.4c-.24 0-.43-.18-.43-.4z"/><path fill="#c8b100" d="M277.86 210.71l.27.05a1 1 0 0 0-.05.36c0 .56.48 1.01 1.07 1.01.47 0 .88-.3 1.01-.7.02.01.1-.37.15-.36.04 0 .03.4.04.39.07.5.54.85 1.06.85.6 0 1.07-.45 1.07-1a.71.71 0 0 0 0-.13l.33-.34.18.43a.92.92 0 0 0-.1.44 1 1 0 0 0 1.02.97c.36 0 .67-.18.85-.44l.22-.27v.34c0 .33.14.63.46.69 0 0 .38.03.88-.37s.77-.72.77-.72l.03.4s-.49.8-.93 1.06c-.24.15-.62.3-.91.24-.31-.04-.53-.3-.65-.58a1.49 1.49 0 0 1-.77.2c-.6 0-1.14-.33-1.36-.82a1.5 1.5 0 0 1-1.12.48c-.48 0-.92-.22-1.2-.55a1.54 1.54 0 0 1-1.05.4c-.53 0-1.01-.26-1.28-.66-.27.4-.74.66-1.28.66-.4 0-.78-.15-1.05-.4a1.56 1.56 0 0 1-1.2.55c-.45 0-.84-.18-1.12-.48-.21.49-.76.83-1.36.83-.28 0-.54-.08-.76-.21-.11.28-.34.54-.65.58-.3.06-.66-.1-.9-.24a4.16 4.16 0 0 1-.98-1.06l.07-.4s.27.33.77.72c.5.4.87.37.87.37.33-.06.47-.36.47-.7v-.33l.21.27c.19.26.5.44.85.44a1 1 0 0 0 1.02-.97.92.92 0 0 0-.1-.44l.18-.43.34.34v.12c0 .56.47 1.01 1.05 1.01.53 0 1-.35 1.07-.86 0 .01 0-.38.04-.38.05 0 .13.37.15.36.14.4.54.7 1.02.7.59 0 1.07-.46 1.07-1.01a.98.98 0 0 0-.05-.36l.27-.05"/><path fill="none" stroke="#000" stroke-width=".3" d="M277.86 210.71l.27.05a1 1 0 0 0-.05.36c0 .56.48 1.01 1.07 1.01.47 0 .88-.3 1.01-.7.02.01.1-.37.15-.36.04 0 .03.4.04.39.07.5.54.85 1.06.85.6 0 1.07-.45 1.07-1a.71.71 0 0 0 0-.13l.33-.34.18.43a.92.92 0 0 0-.1.44 1 1 0 0 0 1.02.97c.36 0 .67-.18.85-.44l.22-.27v.34c0 .33.14.63.46.69 0 0 .38.03.88-.37s.77-.72.77-.72l.03.4s-.49.8-.93 1.06c-.24.15-.62.3-.91.24-.31-.04-.53-.3-.65-.58a1.49 1.49 0 0 1-.77.2c-.6 0-1.14-.33-1.36-.82a1.5 1.5 0 0 1-1.12.48c-.48 0-.92-.22-1.2-.55a1.54 1.54 0 0 1-1.05.4c-.53 0-1.01-.26-1.28-.66-.27.4-.74.66-1.28.66-.4 0-.78-.15-1.05-.4a1.56 1.56 0 0 1-1.2.55c-.45 0-.84-.18-1.12-.48-.21.49-.76.83-1.36.83-.28 0-.54-.08-.76-.21-.11.28-.34.54-.65.58-.3.06-.66-.1-.9-.24a4.16 4.16 0 0 1-.98-1.06l.07-.4s.27.33.77.72c.5.4.87.37.87.37.33-.06.47-.36.47-.7v-.33l.21.27c.19.26.5.44.85.44a1 1 0 0 0 1.02-.97.92.92 0 0 0-.1-.44l.18-.43.34.34v.12c0 .56.47 1.01 1.05 1.01.53 0 1-.35 1.07-.86 0 .01 0-.38.04-.38.05 0 .13.37.15.36.14.4.54.7 1.02.7.59 0 1.07-.46 1.07-1.01a.98.98 0 0 0-.05-.36l.27-.05h.01z"/><path fill="#c8b100" d="M277.84 213.34c-2.89 0-5.49.35-7.36.9-.12.04-.28-.05-.32-.16-.04-.12.05-.27.17-.3 1.88-.58 4.55-.94 7.51-.95 2.97 0 5.64.37 7.52.94.13.04.22.2.18.3-.04.12-.2.22-.32.18-1.87-.56-4.48-.9-7.38-.9"/><path fill="none" stroke="#000" stroke-width=".3" d="M277.84 213.34c-2.89 0-5.49.35-7.36.9-.12.04-.28-.05-.32-.16-.04-.12.05-.27.17-.3 1.88-.58 4.55-.94 7.51-.95 2.97 0 5.64.37 7.52.94.13.04.22.2.18.3-.04.12-.2.22-.32.18-1.87-.56-4.48-.9-7.38-.9z"/><path fill="#fff" d="M275.04 214.37c0-.22.2-.4.43-.4a.4.4 0 0 1 .41.4.4.4 0 0 1-.41.4c-.24 0-.43-.18-.43-.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M275.04 214.37c0-.22.2-.4.43-.4a.4.4 0 0 1 .41.4.4.4 0 0 1-.41.4c-.24 0-.43-.18-.43-.4z"/><path fill="#ad1519" d="M277.88 214.54h-.93c-.17 0-.32-.13-.32-.3 0-.16.14-.3.32-.3h1.88a.3.3 0 0 1 .3.3.3.3 0 0 1-.3.3h-.95"/><path fill="none" stroke="#000" stroke-width=".3" d="M277.88 214.54h-.93c-.17 0-.32-.13-.32-.3 0-.16.14-.3.32-.3h1.88a.3.3 0 0 1 .3.3.3.3 0 0 1-.3.3h-.95"/><path fill="#058e6e" d="M273.22 214.86l-.67.1a.32.32 0 0 1-.36-.25.3.3 0 0 1 .26-.33l.67-.1.68-.1c.17-.03.33.08.36.24a.3.3 0 0 1-.26.34l-.68.1"/><path fill="none" stroke="#000" stroke-width=".3" d="M273.22 214.86l-.67.1a.32.32 0 0 1-.36-.25.3.3 0 0 1 .26-.33l.67-.1.68-.1c.17-.03.33.08.36.24a.3.3 0 0 1-.26.34l-.68.1"/><path fill="#ad1519" d="M270.53 215.33l.3-.48.63.12-.37.54-.56-.18"/><path fill="none" stroke="#000" stroke-width=".3" d="M270.53 215.33l.3-.48.63.12-.37.54-.56-.18"/><path fill="#fff" d="M279.81 214.37c0-.22.19-.4.42-.4.23 0 .42.18.42.4 0 .22-.19.4-.42.4-.23 0-.42-.18-.42-.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M279.81 214.37c0-.22.19-.4.42-.4.23 0 .42.18.42.4 0 .22-.19.4-.42.4-.23 0-.42-.18-.42-.4z"/><path fill="#058e6e" d="M282.48 214.86l.67.1a.31.31 0 0 0 .35-.25.3.3 0 0 0-.25-.33l-.67-.1-.69-.1c-.17-.03-.33.08-.35.24-.03.16.1.31.26.34l.68.1"/><path fill="none" stroke="#000" stroke-width=".3" d="M282.48 214.86l.67.1a.31.31 0 0 0 .35-.25.3.3 0 0 0-.25-.33l-.67-.1-.69-.1c-.17-.03-.33.08-.35.24-.03.16.1.31.26.34l.68.1"/><path fill="#ad1519" d="M285.11 215.36l-.24-.51-.65.05.32.57.57-.11"/><path fill="none" stroke="#000" stroke-width=".3" d="M285.11 215.36l-.24-.51-.65.05.32.57.57-.11"/><path fill="#ad1519" d="M277.84 217.12c-2.33 0-4.45-.21-6.06-.63a25.4 25.4 0 0 1 6.06-.67c2.34 0 4.46.26 6.07.67-1.6.42-3.73.62-6.07.63"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".3" d="M277.84 217.12c-2.33 0-4.45-.21-6.06-.63a25.4 25.4 0 0 1 6.06-.67c2.34 0 4.46.26 6.07.67-1.6.42-3.73.62-6.07.63z"/><path fill="#c8b100" d="M285.2 212.05c.07-.18.01-.36-.12-.4-.13-.04-.28.08-.35.25-.06.18 0 .36.12.4.13.04.3-.07.35-.25"/><path fill="none" stroke="#000" stroke-width=".3" d="M285.2 212.05c.07-.18.01-.36-.12-.4-.13-.04-.28.08-.35.25-.06.18 0 .36.12.4.13.04.3-.07.35-.25z"/><path fill="#c8b100" d="M280.56 211.15c.02-.19-.07-.35-.21-.37-.13-.02-.27.12-.29.31-.02.19.07.36.2.37.14.02.27-.13.3-.31"/><path fill="none" stroke="#000" stroke-width=".3" d="M280.56 211.15c.02-.19-.07-.35-.21-.37-.13-.02-.27.12-.29.31-.02.19.07.36.2.37.14.02.27-.13.3-.31z"/><path fill="#c8b100" d="M275.16 211.15c-.03-.19.06-.35.2-.37.13-.02.26.12.29.31.02.19-.07.36-.2.37-.14.02-.27-.13-.3-.31"/><path fill="none" stroke="#000" stroke-width=".3" d="M275.16 211.15c-.03-.19.06-.35.2-.37.13-.02.26.12.29.31.02.19-.07.36-.2.37-.14.02-.27-.13-.3-.31z"/><path fill="#c8b100" d="M270.5 212.05c-.06-.18 0-.36.13-.4.13-.04.29.08.35.25.06.18 0 .36-.12.4-.14.04-.3-.07-.35-.25"/><path fill="none" stroke="#000" stroke-width=".3" d="M270.5 212.05c-.06-.18 0-.36.13-.4.13-.04.29.08.35.25.06.18 0 .36-.12.4-.14.04-.3-.07-.35-.25z"/><path fill="#c8b100" d="M277.84 208.46l-.82.5.6 1.33.22.14.21-.14.62-1.33-.83-.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M277.84 208.46l-.82.5.6 1.33.22.14.21-.14.62-1.33-.83-.5"/><path fill="#c8b100" d="M276.03 210.47l.38.54 1.28-.4.14-.17-.14-.19-1.28-.37-.38.59"/><path fill="none" stroke="#000" stroke-width=".3" d="M276.03 210.47l.38.54 1.28-.4.14-.17-.14-.19-1.28-.37-.38.59"/><path fill="#c8b100" d="M279.65 210.47l-.37.54-1.29-.4-.13-.17.13-.19 1.29-.37.38.59"/><path fill="none" stroke="#000" stroke-width=".3" d="M279.65 210.47l-.37.54-1.29-.4-.13-.17.13-.19 1.29-.37.38.59"/><path fill="#c8b100" d="M272.48 209.05l-.65.61.83 1.1.22.08.17-.16.29-1.32-.86-.3"/><path fill="none" stroke="#000" stroke-width=".3" d="M272.48 209.05l-.65.61.83 1.1.22.08.17-.16.29-1.32-.86-.3"/><path fill="#c8b100" d="M271.12 211.24l.49.46 1.17-.64.1-.2-.18-.15-1.34-.12-.24.65"/><path fill="none" stroke="#000" stroke-width=".3" d="M271.12 211.24l.49.46 1.17-.64.1-.2-.18-.15-1.34-.12-.24.65"/><path fill="#c8b100" d="M274.67 210.53l-.25.6-1.35-.12-.17-.15.1-.21 1.17-.62.5.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M274.67 210.53l-.25.6-1.35-.12-.17-.15.1-.21 1.17-.62.5.5"/><path fill="#c8b100" d="M269.83 211.41l-.1.64-1.35.14-.2-.12.04-.21 1.01-.84.6.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M269.83 211.41l-.1.64-1.35.14-.2-.12.04-.21 1.01-.84.6.4"/><path fill="#c8b100" d="M272.42 210.86c0-.25.21-.45.47-.45a.46.46 0 0 1 .47.45.46.46 0 0 1-.47.45.46.46 0 0 1-.47-.45"/><path fill="none" stroke="#000" stroke-width=".3" d="M272.42 210.86c0-.25.21-.45.47-.45a.46.46 0 0 1 .47.45.46.46 0 0 1-.47.45.46.46 0 0 1-.47-.45z"/><path fill="#c8b100" d="M283.22 209.05l.65.61-.83 1.1-.22.08-.16-.16-.3-1.32.86-.3"/><path fill="none" stroke="#000" stroke-width=".3" d="M283.22 209.05l.65.61-.83 1.1-.22.08-.16-.16-.3-1.32.86-.3"/><path fill="#c8b100" d="M284.58 211.24l-.49.46-1.17-.64-.1-.2.18-.15 1.34-.12.24.65"/><path fill="none" stroke="#000" stroke-width=".3" d="M284.58 211.24l-.49.46-1.17-.64-.1-.2.18-.15 1.34-.12.24.65"/><path fill="#c8b100" d="M281.03 210.53l.25.6 1.35-.12.17-.15-.1-.21-1.17-.62-.5.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M281.03 210.53l.25.6 1.35-.12.17-.15-.1-.21-1.17-.62-.5.5"/><path fill="#c8b100" d="M285.69 211.41l.1.64 1.35.14.2-.12-.05-.21-1-.84-.6.4"/><path fill="none" stroke="#000" stroke-width=".3" d="M285.69 211.41l.1.64 1.35.14.2-.12-.05-.21-1-.84-.6.4"/><path fill="#c8b100" d="M277.38 210.44c0-.25.2-.45.47-.45.25 0 .47.2.47.45 0 .24-.21.45-.47.45a.46.46 0 0 1-.47-.45"/><path fill="none" stroke="#000" stroke-width=".3" d="M277.38 210.44c0-.25.2-.45.47-.45.25 0 .47.2.47.45 0 .24-.21.45-.47.45a.46.46 0 0 1-.47-.45z"/><path fill="#c8b100" d="M282.34 210.86c0-.25.22-.45.47-.45.27 0 .48.2.48.45s-.21.45-.47.45a.46.46 0 0 1-.47-.45"/><path fill="none" stroke="#000" stroke-width=".3" d="M282.34 210.86c0-.25.22-.45.47-.45.27 0 .48.2.48.45s-.21.45-.47.45a.46.46 0 0 1-.47-.45z"/><path fill="#c8b100" d="M276.96 205.4c0-.47.4-.84.89-.84s.89.37.89.84c0 .46-.4.83-.9.83a.86.86 0 0 1-.88-.83"/><path fill="#c8b100" d="M278.47 205.1v.55h-1.36v-.55h.44v-1.26h-.6v-.56h.6v-.54h.59v.55h.58v.56h-.58v1.25h.33"/><path fill="none" stroke="#000" stroke-width=".3" d="M278.47 205.1v.55h-1.36v-.55h.44v-1.26h-.6v-.56h.6v-.54h.59v.55h.58v.56h-.58v1.25h.33z"/><path fill="#c8b100" d="M279.09 205.1v.55h-2.44v-.55h.9v-1.26h-.6v-.56h.6v-.54h.59v.55h.58v.56h-.58v1.25h.95"/><path fill="none" stroke="#000" stroke-width=".3" d="M278.1 204.59c.37.1.64.42.64.8 0 .47-.4.84-.9.84a.86.86 0 0 1-.88-.83c0-.4.28-.72.66-.82"/><path fill="#c8b100" d="M268.01 212.16s-.36-.47-.63-.7a2.32 2.32 0 0 0-.64-.31c0-.09.27-.28.56-.28.17 0 .33.07.42.19l.04-.18s.24.04.34.3c.1.28.04.69.04.69s-.04.19-.13.29"/><path fill="none" stroke="#000" stroke-width=".3" d="M268.01 212.16s-.36-.47-.63-.7a2.32 2.32 0 0 0-.64-.31c0-.09.27-.28.56-.28.17 0 .33.07.42.19l.04-.18s.24.04.34.3c.1.28.04.69.04.69s-.04.19-.13.29z"/><path fill="#c8b100" d="M268.03 211.92c.12-.11.34-.09.51.06.18.14.23.36.11.48-.1.12-.33.1-.5-.06-.18-.14-.23-.36-.12-.48"/><path fill="none" stroke="#000" stroke-width=".3" d="M268.03 211.92c.12-.11.34-.09.51.06.18.14.23.36.11.48-.1.12-.33.1-.5-.06-.18-.14-.23-.36-.12-.48z"/><path fill="#c8b100" d="M287.5 212.16c.02 0 .36-.47.63-.7.19-.17.65-.31.65-.31 0-.09-.27-.28-.56-.28a.55.55 0 0 0-.43.19l-.04-.18s-.24.04-.34.3c-.1.28-.04.69-.04.69s.04.19.13.29"/><path fill="none" stroke="#000" stroke-width=".3" d="M287.5 212.16c.02 0 .36-.47.63-.7.19-.17.65-.31.65-.31 0-.09-.27-.28-.56-.28a.55.55 0 0 0-.43.19l-.04-.18s-.24.04-.34.3c-.1.28-.04.69-.04.69s.04.19.13.29z"/><path fill="#c8b100" d="M287.51 211.92c-.11-.11-.34-.09-.51.06-.18.14-.22.36-.11.48.1.12.34.1.51-.06.17-.14.23-.36.11-.48"/><path fill="none" stroke="#000" stroke-width=".3" d="M287.51 211.92c-.11-.11-.34-.09-.51.06-.18.14-.22.36-.11.48.1.12.34.1.51-.06.17-.14.23-.36.11-.48z"/><path fill="#c8b100" d="M267.17 223.07h21.39v-5.6h-21.4v5.6z"/><path fill="none" stroke="#000" stroke-width=".4" d="M267.17 223.07h21.39v-5.6h-21.4v5.6z"/><path fill="#c8b100" d="M286.31 226.8a.94.94 0 0 0-.4-.05H269.9c-.16 0-.31.02-.45.07.55-.18.95-.68.95-1.26 0-.6-.43-1.1-.98-1.29.13.04.3.08.46.08h16.04c.16 0 .31 0 .45-.05l-.1.01c-.56.18-.9.69-.9 1.25 0 .53.37 1.07.94 1.25"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M286.31 226.8a.94.94 0 0 0-.4-.05H269.9c-.16 0-.31.02-.45.07.55-.18.95-.68.95-1.26 0-.6-.43-1.1-.98-1.29.13.04.3.08.46.08h16.04c.16 0 .31 0 .45-.05l-.1.01c-.56.18-.9.69-.9 1.25 0 .53.37 1.07.94 1.25z"/><path fill="#c8b100" d="M269.9 226.75h16.02c.54 0 .98.33.98.75 0 .41-.44.75-.98.75H269.9c-.55 0-.98-.34-.98-.76 0-.4.44-.75.98-.75"/><path fill="none" stroke="#000" stroke-width=".4" d="M269.9 226.75h16.02c.54 0 .98.33.98.75 0 .41-.44.75-.98.75H269.9c-.55 0-.98-.34-.98-.76 0-.4.44-.75.98-.75z"/><path fill="#c8b100" d="M269.88 223.07h16.04c.54 0 .98.29.98.64 0 .35-.44.64-.98.64h-16.04c-.54 0-.98-.29-.98-.64 0-.35.44-.64.98-.64"/><path fill="none" stroke="#000" stroke-width=".4" d="M269.88 223.07h16.04c.54 0 .98.29.98.64 0 .35-.44.64-.98.64h-16.04c-.54 0-.98-.29-.98-.64 0-.35.44-.64.98-.64z"/><path fill="#005bbf" d="M262.93 317.45c1.48 0 2.8-.31 3.77-.83a8.38 8.38 0 0 1 3.7-.79c1.45 0 2.8.3 3.76.8s2.3.82 3.76.82c1.48 0 2.8-.35 3.77-.86a8.42 8.42 0 0 1 3.65-.76c1.45 0 2.73.27 3.7.78.97.51 2.32.84 3.8.84v2.31a8.33 8.33 0 0 1-3.8-.85 8.21 8.21 0 0 0-3.7-.78c-1.41 0-2.69.3-3.64.77-.97.51-2.3.86-3.78.86-1.46 0-2.8-.32-3.76-.82a8.4 8.4 0 0 0-3.76-.8 8.3 8.3 0 0 0-3.7.8c-.98.51-2.27.82-3.75.82l-.03-2.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M262.93 317.45c1.48 0 2.8-.31 3.77-.83a8.38 8.38 0 0 1 3.7-.79c1.45 0 2.8.3 3.76.8s2.3.82 3.76.82c1.48 0 2.8-.35 3.77-.86a8.42 8.42 0 0 1 3.65-.76c1.45 0 2.73.27 3.7.78.97.51 2.32.84 3.8.84v2.31a8.33 8.33 0 0 1-3.8-.85 8.21 8.21 0 0 0-3.7-.78c-1.41 0-2.69.3-3.64.77-.97.51-2.3.86-3.78.86-1.46 0-2.8-.32-3.76-.82a8.4 8.4 0 0 0-3.76-.8 8.3 8.3 0 0 0-3.7.8c-.98.51-2.27.82-3.75.82l-.03-2.31z"/><path fill="#ccc" d="M262.93 319.77c1.48 0 2.8-.32 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83a8.2 8.2 0 0 0 3.77-.87 8.38 8.38 0 0 1 3.65-.76c1.45 0 2.73.28 3.7.78.97.5 2.32.85 3.8.85v2.3a8.32 8.32 0 0 1-3.8-.83 8.12 8.12 0 0 0-3.7-.79c-1.41 0-2.69.3-3.64.77-.97.51-2.3.86-3.78.86-1.46 0-2.8-.32-3.76-.83-.97-.5-2.3-.8-3.76-.8a8.3 8.3 0 0 0-3.7.8 8.1 8.1 0 0 1-3.75.83l-.03-2.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M262.93 319.77c1.48 0 2.8-.32 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83a8.2 8.2 0 0 0 3.77-.87 8.38 8.38 0 0 1 3.65-.76c1.45 0 2.73.28 3.7.78.97.5 2.32.85 3.8.85v2.3a8.32 8.32 0 0 1-3.8-.83 8.12 8.12 0 0 0-3.7-.79c-1.41 0-2.69.3-3.64.77-.97.51-2.3.86-3.78.86-1.46 0-2.8-.32-3.76-.83-.97-.5-2.3-.8-3.76-.8a8.3 8.3 0 0 0-3.7.8 8.1 8.1 0 0 1-3.75.83l-.03-2.31"/><path fill="#005bbf" d="M262.93 322.08c1.48 0 2.8-.32 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83a8.2 8.2 0 0 0 3.77-.86 8.36 8.36 0 0 1 3.65-.77c1.45 0 2.73.28 3.7.79.97.5 2.32.84 3.8.84v2.3a8.3 8.3 0 0 1-3.8-.84 8.23 8.23 0 0 0-3.7-.77c-1.41 0-2.69.29-3.64.76-.97.52-2.3.86-3.78.86-1.46 0-2.8-.32-3.76-.82a8.4 8.4 0 0 0-3.76-.8 8.3 8.3 0 0 0-3.7.8c-.98.51-2.27.82-3.75.82l-.03-2.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M262.93 322.08c1.48 0 2.8-.32 3.77-.83.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83a8.2 8.2 0 0 0 3.77-.86 8.36 8.36 0 0 1 3.65-.77c1.45 0 2.73.28 3.7.79.97.5 2.32.84 3.8.84v2.3a8.3 8.3 0 0 1-3.8-.84 8.23 8.23 0 0 0-3.7-.77c-1.41 0-2.69.29-3.64.76-.97.52-2.3.86-3.78.86-1.46 0-2.8-.32-3.76-.82a8.4 8.4 0 0 0-3.76-.8 8.3 8.3 0 0 0-3.7.8c-.98.51-2.27.82-3.75.82l-.03-2.31"/><path fill="#ccc" d="M262.95 326.7c1.48 0 2.77-.3 3.75-.83.96-.49 2.27-.79 3.7-.79 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83c1.48 0 2.8-.35 3.77-.87a8.42 8.42 0 0 1 3.65-.76c1.45 0 2.73.28 3.7.78a8.3 8.3 0 0 0 3.8.85v-2.3a8.28 8.28 0 0 1-3.8-.86 8.23 8.23 0 0 0-3.7-.78c-1.41 0-2.69.29-3.64.76-.97.52-2.3.86-3.78.86-1.46 0-2.8-.32-3.76-.82a8.4 8.4 0 0 0-3.76-.8 8.3 8.3 0 0 0-3.7.8c-.98.51-2.3.82-3.78.82l.02 2.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M262.95 326.7c1.48 0 2.77-.3 3.75-.83.96-.49 2.27-.79 3.7-.79 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83c1.48 0 2.8-.35 3.77-.87a8.42 8.42 0 0 1 3.65-.76c1.45 0 2.73.28 3.7.78a8.3 8.3 0 0 0 3.8.85v-2.3a8.28 8.28 0 0 1-3.8-.86 8.23 8.23 0 0 0-3.7-.78c-1.41 0-2.69.29-3.64.76-.97.52-2.3.86-3.78.86-1.46 0-2.8-.32-3.76-.82a8.4 8.4 0 0 0-3.76-.8 8.3 8.3 0 0 0-3.7.8c-.98.51-2.3.82-3.78.82l.02 2.31"/><path fill="#005bbf" d="M262.95 329.02a8.1 8.1 0 0 0 3.75-.83c.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83a8.2 8.2 0 0 0 3.77-.87 8.38 8.38 0 0 1 3.65-.76c1.45 0 2.73.28 3.7.78.97.51 2.32.85 3.8.85v-2.3a8.27 8.27 0 0 1-3.8-.86 8.19 8.19 0 0 0-3.7-.78 8.4 8.4 0 0 0-3.64.76 8.2 8.2 0 0 1-3.78.86c-1.46 0-2.8-.32-3.76-.82-.97-.5-2.3-.8-3.76-.8-1.43 0-2.74.3-3.7.8-.98.5-2.3.82-3.77.82l.01 2.32"/><path fill="none" stroke="#000" stroke-width=".4" d="M262.95 329.02a8.1 8.1 0 0 0 3.75-.83c.96-.5 2.27-.8 3.7-.8 1.45 0 2.8.3 3.76.8s2.3.83 3.76.83a8.2 8.2 0 0 0 3.77-.87 8.38 8.38 0 0 1 3.65-.76c1.45 0 2.73.28 3.7.78.97.51 2.32.85 3.8.85v-2.3a8.27 8.27 0 0 1-3.8-.86 8.19 8.19 0 0 0-3.7-.78 8.4 8.4 0 0 0-3.64.76 8.2 8.2 0 0 1-3.78.86c-1.46 0-2.8-.32-3.76-.82-.97-.5-2.3-.8-3.76-.8-1.43 0-2.74.3-3.7.8-.98.5-2.3.82-3.77.82l.01 2.32z"/><path fill="#c8b100" d="M286.31 307.95c-.05.2-.12.39-.12.6 0 1.4 1.21 2.52 2.7 2.52h-22.02c1.48 0 2.69-1.12 2.69-2.52 0-.21-.04-.4-.09-.6.12.05.27.05.42.05h16.03c.13 0 .28-.01.39-.05"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M286.31 307.95c-.05.2-.12.39-.12.6 0 1.4 1.21 2.52 2.7 2.52h-22.02c1.48 0 2.69-1.12 2.69-2.52 0-.21-.04-.4-.09-.6.12.05.27.05.42.05h16.03c.13 0 .28-.01.39-.05z"/><path fill="#c8b100" d="M269.9 306.5h16.02c.54 0 .98.34.98.75 0 .42-.44.75-.98.75H269.9c-.55 0-.98-.33-.98-.75 0-.41.44-.75.98-.75"/><path fill="none" stroke="#000" stroke-width=".4" d="M269.9 306.5h16.02c.54 0 .98.34.98.75 0 .42-.44.75-.98.75H269.9c-.55 0-.98-.33-.98-.75 0-.41.44-.75.98-.75z"/><path fill="#c8b100" d="M266.9 316.67h21.96v-5.6h-21.97v5.6z"/><path fill="none" stroke="#000" stroke-width=".4" d="M266.9 316.67h21.96v-5.6h-21.97v5.6z"/><path fill="#ad1519" d="M290.57 286.67c2.18 1.26 3.65 2.54 3.42 3.18-.12.6-.81 1.03-1.8 1.69-1.55 1.08-2.5 3-1.76 3.9a5.53 5.53 0 0 1 .14-8.77"/><path fill="none" stroke="#000" stroke-width=".4" d="M290.57 286.67c2.18 1.26 3.65 2.54 3.42 3.18-.12.6-.81 1.03-1.8 1.69-1.55 1.08-2.5 3-1.76 3.9a5.53 5.53 0 0 1 .14-8.77z"/><path fill="#ccc" d="M270.1 305.59h15.61v-76.45h-15.6v76.45z"/><path fill="none" stroke="#000" stroke-width=".4" d="M281.43 229.11v76.29m1.75-76.29v76.29m-13.07.19h15.6v-76.45h-15.6v76.45z"/><path fill="#ad1519" d="M254.17 257.74c3.4-1.41 9.2-2.45 15.84-2.67 2.28.02 4.84.23 7.47.67 9.33 1.56 16.44 5.28 15.88 8.32l-.05.25s3.5-7.88 3.55-8.18c.63-3.37-7.25-7.5-17.61-9.24a53.48 53.48 0 0 0-9.18-.72c-6.63 0-12.39.85-15.86 2.13l-.04 9.44"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M254.17 257.74c3.4-1.41 9.2-2.45 15.84-2.67 2.28.02 4.84.23 7.47.67 9.33 1.56 16.44 5.28 15.88 8.32l-.05.25s3.5-7.88 3.55-8.18c.63-3.37-7.25-7.5-17.61-9.24a53.48 53.48 0 0 0-9.18-.72c-6.63 0-12.39.85-15.86 2.13l-.04 9.44"/><path fill="#ad1519" d="M285.74 267.33c4.32-.31 7.28-1.47 7.61-3.27.27-1.45-1.19-3.04-3.8-4.49-1.17.13-2.48.29-3.84.29l.03 7.47"/><path fill="none" stroke="#000" stroke-width=".4" d="M285.74 267.33c4.32-.31 7.28-1.47 7.61-3.27.27-1.45-1.19-3.04-3.8-4.49-1.17.13-2.48.29-3.84.29l.03 7.47"/><path fill="#ad1519" d="M270.08 261.49c-2.7.4-4.73 1.08-5.75 1.9l-.09.17c-.48.99 1.9 3.1 5.86 5.44l-.02-7.51"/><path fill="none" stroke="#000" stroke-width=".4" d="M270.08 261.49c-2.7.4-4.73 1.08-5.75 1.9l-.09.17c-.48.99 1.9 3.1 5.86 5.44l-.02-7.51"/><path fill="#ad1519" d="M295.43 282.08c.4-1.24-3.81-3.7-9.77-5.9-2.73-.97-4.98-1.99-7.77-3.22-8.28-3.66-14.4-7.86-13.64-9.4l.08-.15c-.44.36-1.12 7.9-1.12 7.9-.76 1.41 4.84 5.55 12.46 9.2 2.44 1.17 7.6 3.08 10.03 3.93 4.35 1.51 8.68 4.36 8.28 5.41l1.45-7.77"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M295.43 282.08c.4-1.24-3.81-3.7-9.77-5.9-2.73-.97-4.98-1.99-7.77-3.22-8.28-3.66-14.4-7.86-13.64-9.4l.08-.15c-.44.36-1.12 7.9-1.12 7.9-.76 1.41 4.84 5.55 12.46 9.2 2.44 1.17 7.6 3.08 10.03 3.93 4.35 1.51 8.68 4.36 8.28 5.41l1.45-7.77z"/><path fill="#c8b100" d="M263.9 254.38c.58-2.24 1.35-4.4 2.1-6.6-.17.05-.35.09-.52.11a5.2 5.2 0 0 1-.52.05 52.75 52.75 0 0 1-1.35 4.74c-.93-1.38-1.93-2.73-2.73-4.12-.32.06-.65.14-.98.19l-1 .1a131.25 131.25 0 0 1 4.04 5.67c.15-.04.3-.09.47-.11l.48-.03m5.94-6.55c-.29.02-.57.04-.86.03-.28 0-.57-.03-.85-.06l-.11 6.16 4.3.08c-.02-.13-.05-.27-.05-.4 0-.12.04-.26.06-.38-.77.05-1.6.1-2.6.08l.1-5.5m6.76 1c.7.06 1.35.18 2.02.3-.02-.13-.04-.26-.03-.4.01-.12.06-.24.1-.37l-5.83-.48c.01.13.04.26.02.38 0 .14-.06.26-.09.39a19.3 19.3 0 0 1 2.11.05l-.5 5.54c.28 0 .56 0 .85.02.28.02.56.07.84.12l.51-5.54m2.39 6.06c.28.05.56.08.84.14.28.06.55.15.82.23l.69-2.83.07.02.48 1.13.87 2.14c.34.05.67.1 1 .17.35.07.67.17 1 .26l-.3-.64c-.46-.96-.95-1.92-1.35-2.9 1.07.05 1.9-.34 2.11-1.2.15-.6-.09-1.07-.66-1.48-.41-.3-1.22-.45-1.74-.57l-2.35-.51-1.48 6.04m3.01-5.2c.68.15 1.53.26 1.53 1.03 0 .19-.02.33-.06.45-.22.9-.9 1.22-2.04.87l.57-2.35m8.09 7.05c-.06.67-.17 1.31-.3 2.02.3.14.58.26.87.42l.82.5.57-6.94a3.41 3.41 0 0 1-.75-.41l-6.12 3.89.5.23.44.27c.52-.43 1.06-.78 1.68-1.24l2.29 1.25zm-1.74-1.59l2.04-1.32-.24 2.3-1.8-.98"/><path fill="none" d="M182.19 192.43c0-1.09.93-1.97 2.08-1.97s2.08.88 2.08 1.97c0 1.1-.93 1.97-2.08 1.97a2.03 2.03 0 0 1-2.08-1.97z"/><path fill="#ad1519" stroke="#000" stroke-width=".3" d="M205.66 175.41c6.38 0 12.06.95 15.76 2.41 2.11.96 4.95 1.66 8.06 2.08 2.37.32 4.62.38 6.58.23 2.62-.05 6.4.72 10.19 2.38a27.33 27.33 0 0 1 7.49 4.72l-1.5 1.34-.44 3.8-4.13 4.73-2.06 1.75-4.88 3.91-2.5.2-.76 2.16-31.6-3.7-31.7 3.7-.75-2.16-2.5-.2-4.89-3.9-2.06-1.76-4.12-4.72-.43-3.8-1.51-1.35a27.62 27.62 0 0 1 7.49-4.72c3.78-1.66 7.57-2.43 10.19-2.38 1.95.15 4.2.09 6.57-.23a29.93 29.93 0 0 0 8.07-2.08c3.7-1.46 9.06-2.4 15.44-2.4z"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M206.15 217.13c-11.78-.01-22.32-1.4-29.85-3.68a1.14 1.14 0 0 1-.8-1.19c-.01-.5.27-.97.8-1.13 7.53-2.26 18.07-3.66 29.85-3.67 11.77.01 22.3 1.4 29.84 3.67.53.16.8.62.8 1.13.03.52-.26 1.03-.8 1.2-7.53 2.26-18.07 3.65-29.84 3.67"/><path fill="#ad1519" d="M206.12 215.59c-10.63-.02-20.23-1.24-27.54-3.13 7.31-1.9 16.91-3.05 27.54-3.07 10.62.02 20.28 1.18 27.59 3.07-7.31 1.89-16.97 3.11-27.6 3.13"/><path fill="none" stroke="#000" stroke-width=".1" d="M206.9 215.65v-6.3M205.2 215.65v-6.3"/><path fill="none" stroke="#000" stroke-width=".2" d="M203.58 215.65v-6.3M201.98 215.65v-6.3"/><path fill="none" stroke="#000" stroke-width=".3" d="M200.55 215.65v-6.3M197.82 215.31l-.03-5.74m1.33 5.82v-6"/><path fill="none" stroke="#000" stroke-width=".4" d="M195.31 215.05v-5.28m1.27 5.43l-.03-5.62M191.94 214.75v-4.64m1.1 4.72v-4.87m1.14 5.02v-5.06M190.75 214.71v-4.49"/><path fill="none" stroke="#000" stroke-width=".5" d="M189.65 214.49v-4.2M188.47 214.37v-3.89"/><path fill="none" stroke="#000" stroke-width=".6" d="M186.05 214.03l-.04-3.1m1.28 3.26v-3.48M184.81 213.77v-2.72"/><path fill="none" stroke="#000" stroke-width=".7" d="M183.67 213.55v-2.27M182.43 213.25v-1.78M181.16 213.1v-1.32"/><path fill="none" stroke="#000" stroke-width=".9" d="M179.81 212.8v-.65"/><path fill="none" d="M213.72 215.31v-5.77m-2.9 5.96l.04-6.11m-2.16 6.19v-6.23"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M206.07 207.45c-11.92.02-22.61 1.51-30.14 3.83.63-.3.57-1.06-.2-3.07-.95-2.42-2.41-2.32-2.41-2.32 8.32-2.45 19.9-4 32.8-4.01 12.9.02 24.57 1.56 32.9 4.01 0 0-1.47-.1-2.41 2.32-.78 2-.84 2.78-.21 3.07-7.53-2.32-18.42-3.81-30.33-3.83"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M206.12 201.88c-12.9.02-24.48 1.56-32.8 4.02-.56.17-1.14-.05-1.32-.58-.18-.52.12-1.13.67-1.3 8.36-2.56 20.24-4.17 33.45-4.2 13.21.03 25.14 1.64 33.5 4.2.55.17.85.78.67 1.3-.18.53-.76.75-1.32.58-8.32-2.46-19.95-4-32.85-4.02"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".4" d="M206.12 215.59c-10.63-.02-20.23-1.24-27.54-3.13 7.31-1.9 16.91-3.05 27.54-3.07 10.62.02 20.28 1.18 27.59 3.07-7.31 1.89-16.97 3.11-27.6 3.13z"/><path fill="#fff" stroke="#000" stroke-width=".4" d="M196.92 204.81c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="#ad1519" stroke="#000" stroke-width=".4" d="M206.14 205.6H203c-.58 0-1.07-.45-1.07-1s.48-1 1.06-1h6.37c.58 0 1.06.45 1.06 1s-.49 1-1.07 1h-3.2"/><path fill="#058e6e" stroke="#000" stroke-width=".4" d="M190.3 206.47l-2.28.26c-.58.07-1.11-.32-1.18-.86a1 1 0 0 1 .92-1.11l2.28-.27 2.32-.27c.57-.07 1.1.32 1.17.86.07.55-.35 1.05-.93 1.11l-2.3.27"/><path fill="#fff" stroke="#000" stroke-width=".4" d="M181.07 206.66c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1 0 .56-.47 1-1.06 1-.58 0-1.05-.44-1.05-1"/><path fill="#ad1519" stroke="#000" stroke-width=".4" d="M174.06 208.48l1.17-1.53 3.23.4-2.59 1.9-1.81-.77"/><path fill="#058e6e" stroke="#000" stroke-width=".4" d="M222 206.47l2.26.26c.58.07 1.12-.32 1.19-.86a1.01 1.01 0 0 0-.92-1.11l-2.28-.27-2.32-.27c-.58-.07-1.1.32-1.18.86-.07.55.36 1.05.93 1.11l2.31.27"/><path fill="#fff" stroke="#000" stroke-width=".4" d="M213.26 204.81c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1m15.85 1.85c0-.55.47-1 1.05-1 .58 0 1.06.46 1.06 1 0 .56-.47 1-1.06 1-.58 0-1.05-.44-1.05-1"/><path fill="#ad1519" stroke="#000" stroke-width=".4" d="M238.23 208.48l-1.17-1.53-3.23.4 2.58 1.9 1.82-.77"/><path fill="none" stroke="#000" stroke-width=".4" d="M177.31 212.8c7.44-2.1 17.57-3.39 28.81-3.41 11.24.02 21.41 1.32 28.86 3.4"/><path fill="#c8b100" d="M182.32 183.76l1.34 1.07 2-3.26a7.4 7.4 0 0 1-3.6-7.13c.2-4.16 5.28-7.6 11.71-7.6 3.34 0 6.36.91 8.49 2.38.05-.65.11-1.2.2-1.79a17.38 17.38 0 0 0-8.69-2.18c-7.4 0-13.2 4.2-13.47 9.19a8.88 8.88 0 0 0 3.09 7.59l-1.07 1.73"/><path fill="none" stroke="#000" stroke-width=".4" d="M182.32 183.76l1.34 1.07 2-3.26a7.4 7.4 0 0 1-3.6-7.13c.2-4.16 5.28-7.6 11.71-7.6 3.34 0 6.36.91 8.49 2.38.05-.65.11-1.2.2-1.79a17.38 17.38 0 0 0-8.69-2.18c-7.4 0-13.2 4.2-13.47 9.19a8.88 8.88 0 0 0 3.09 7.59l-1.07 1.73"/><path fill="#c8b100" d="M182.41 183.8c-2.53-1.89-4.1-4.45-4.1-7.27 0-3.25 2.13-6.15 5.36-8.08a8.48 8.48 0 0 0-3.42 6.86 8.88 8.88 0 0 0 3.13 6.72l-.97 1.77"/><path fill="none" stroke="#000" stroke-width=".4" d="M182.41 183.8c-2.53-1.89-4.1-4.45-4.1-7.27 0-3.25 2.13-6.15 5.36-8.08a8.48 8.48 0 0 0-3.42 6.86 8.88 8.88 0 0 0 3.13 6.72l-.97 1.77"/><path fill="#c8b100" d="M160.12 187.1a8.79 8.79 0 0 1-2.28-5.88c0-1.35.3-2.64.87-3.8 2.05-4.2 8.46-7.26 16.09-7.26 2.08 0 4.06.22 5.9.64-.41.45-.73.93-1.04 1.42a25.51 25.51 0 0 0-4.86-.45c-6.98 0-12.82 2.71-14.51 6.38a7.07 7.07 0 0 0-.7 3.07 7.28 7.28 0 0 0 2.67 5.59l-2.52 4.13-1.36-1.08 1.74-2.76"/><path fill="none" stroke="#000" stroke-width=".4" d="M160.12 187.1a8.79 8.79 0 0 1-2.28-5.88c0-1.35.3-2.64.87-3.8 2.05-4.2 8.46-7.26 16.09-7.26 2.08 0 4.06.22 5.9.64-.41.45-.73.93-1.04 1.42a25.51 25.51 0 0 0-4.86-.45c-6.98 0-12.82 2.71-14.51 6.38a7.07 7.07 0 0 0-.7 3.07 7.28 7.28 0 0 0 2.67 5.59l-2.52 4.13-1.36-1.08 1.74-2.76z"/><path fill="#c8b100" d="M162.7 173.26a10.54 10.54 0 0 0-3.99 4.17 8.6 8.6 0 0 0-.87 3.79c0 2.24.86 4.29 2.28 5.87l-1.54 2.5a10.43 10.43 0 0 1-2.32-6.44c0-4.03 2.57-7.56 6.45-9.89"/><path fill="none" stroke="#000" stroke-width=".4" d="M162.7 173.26a10.54 10.54 0 0 0-3.99 4.17 8.6 8.6 0 0 0-.87 3.79c0 2.24.86 4.29 2.28 5.87l-1.54 2.5a10.43 10.43 0 0 1-2.32-6.44c0-4.03 2.57-7.56 6.45-9.89z"/><path fill="#c8b100" d="M206.04 164.42c1.69 0 3.14 1.12 3.49 2.62.23 1.32.37 2.83.4 4.44l-.01.5c0 .18.04.39.04.58.06 3.38.54 6.36 1.23 8.18l-5.15 4.93-5.21-4.93c.69-1.82 1.17-4.8 1.23-8.18 0-.19.04-.4.04-.59v-.49c.02-1.61.16-3.12.39-4.45.34-1.5 1.86-2.62 3.54-2.62"/><path fill="none" stroke="#000" stroke-width=".4" d="M206.04 164.42c1.69 0 3.14 1.12 3.49 2.62.23 1.32.37 2.83.4 4.44l-.01.5c0 .18.04.39.04.58.06 3.38.54 6.36 1.23 8.18l-5.15 4.93-5.21-4.93c.69-1.82 1.17-4.8 1.23-8.18 0-.19.04-.4.04-.59v-.49c.02-1.61.16-3.12.39-4.45.34-1.5 1.86-2.62 3.54-2.62z"/><path fill="#c8b100" d="M206.04 166.02c.88 0 1.62.56 1.8 1.34.21 1.25.35 2.68.38 4.2l-.01.46c0 .2.03.38.03.57.06 3.19.51 6 1.17 7.73l-3.4 3.22-3.4-3.22c.65-1.73 1.1-4.54 1.16-7.73 0-.19.04-.38.04-.56v-.47a28.14 28.14 0 0 1 .37-4.2c.18-.78.98-1.34 1.86-1.34"/><path fill="none" stroke="#000" stroke-width=".4" d="M206.04 166.02c.88 0 1.62.56 1.8 1.34.21 1.25.35 2.68.38 4.2l-.01.46c0 .2.03.38.03.57.06 3.19.51 6 1.17 7.73l-3.4 3.22-3.4-3.22c.65-1.73 1.1-4.54 1.16-7.73 0-.19.04-.38.04-.56v-.47a28.14 28.14 0 0 1 .37-4.2c.18-.78.98-1.34 1.86-1.34z"/><path fill="#c8b100" d="M229.71 183.76l-1.33 1.07-2-3.26a7.4 7.4 0 0 0 3.66-6.26 7.08 7.08 0 0 0-.06-.87c-.2-4.16-5.28-7.6-11.72-7.6-3.34 0-6.36.91-8.48 2.38a23 23 0 0 0-.2-1.79 17.39 17.39 0 0 1 8.68-2.18c7.4 0 13.2 4.2 13.48 9.19a8.87 8.87 0 0 1-3.09 7.59l1.06 1.73"/><path fill="none" stroke="#000" stroke-width=".4" d="M229.71 183.76l-1.33 1.07-2-3.26a7.4 7.4 0 0 0 3.66-6.26 7.08 7.08 0 0 0-.06-.87c-.2-4.16-5.28-7.6-11.72-7.6-3.34 0-6.36.91-8.48 2.38a23 23 0 0 0-.2-1.79 17.39 17.39 0 0 1 8.68-2.18c7.4 0 13.2 4.2 13.48 9.19a8.87 8.87 0 0 1-3.09 7.59l1.06 1.73"/><path fill="#c8b100" d="M229.63 183.8c2.52-1.89 4.1-4.45 4.1-7.27 0-3.25-2.14-6.15-5.36-8.08a8.5 8.5 0 0 1 3.41 6.86 8.87 8.87 0 0 1-3.13 6.72l.98 1.77"/><path fill="none" stroke="#000" stroke-width=".4" d="M229.63 183.8c2.52-1.89 4.1-4.45 4.1-7.27 0-3.25-2.14-6.15-5.36-8.08a8.5 8.5 0 0 1 3.41 6.86 8.87 8.87 0 0 1-3.13 6.72l.98 1.77"/><path fill="#c8b100" d="M251.92 187.1a8.8 8.8 0 0 0 2.28-5.88 8.65 8.65 0 0 0-.88-3.8c-2.05-4.2-8.46-7.26-16.08-7.26-2.08 0-4.07.22-5.9.64.4.45.73.93 1.04 1.42a25.45 25.45 0 0 1 4.85-.45c6.98 0 12.83 2.71 14.51 6.38.46.93.7 1.98.7 3.07a7.28 7.28 0 0 1-2.67 5.59l2.52 4.13 1.36-1.08-1.73-2.76"/><path fill="none" stroke="#000" stroke-width=".4" d="M251.92 187.1a8.8 8.8 0 0 0 2.28-5.88 8.65 8.65 0 0 0-.88-3.8c-2.05-4.2-8.46-7.26-16.08-7.26-2.08 0-4.07.22-5.9.64.4.45.73.93 1.04 1.42a25.45 25.45 0 0 1 4.85-.45c6.98 0 12.83 2.71 14.51 6.38.46.93.7 1.98.7 3.07a7.28 7.28 0 0 1-2.67 5.59l2.52 4.13 1.36-1.08-1.73-2.76z"/><path fill="#c8b100" d="M249.33 173.26a10.58 10.58 0 0 1 4 4.17 8.7 8.7 0 0 1 .87 3.79 8.8 8.8 0 0 1-2.28 5.87l1.53 2.5a10.42 10.42 0 0 0 2.32-6.44c0-4.03-2.56-7.56-6.44-9.89"/><path fill="none" stroke="#000" stroke-width=".4" d="M249.33 173.26a10.58 10.58 0 0 1 4 4.17 8.7 8.7 0 0 1 .87 3.79 8.8 8.8 0 0 1-2.28 5.87l1.53 2.5a10.42 10.42 0 0 0 2.32-6.44c0-4.03-2.56-7.56-6.44-9.89z"/><path fill="#fff" d="M204.2 181.38c0-.96.83-1.73 1.84-1.73 1 0 1.82.77 1.82 1.73 0 .95-.82 1.73-1.83 1.73a1.78 1.78 0 0 1-1.83-1.73"/><path fill="none" stroke="#000" stroke-width=".4" d="M204.2 181.38c0-.96.83-1.73 1.84-1.73 1 0 1.82.77 1.82 1.73 0 .95-.82 1.73-1.83 1.73a1.78 1.78 0 0 1-1.83-1.73z"/><path fill="#fff" stroke="#000" stroke-width=".4" d="M204.2 177.98c0-.95.83-1.73 1.84-1.73 1 0 1.82.78 1.82 1.73 0 .96-.82 1.73-1.83 1.73a1.78 1.78 0 0 1-1.83-1.73m.37-3.64c0-.77.66-1.38 1.46-1.38.8 0 1.46.61 1.46 1.38 0 .76-.65 1.38-1.46 1.38-.8 0-1.46-.62-1.46-1.38m.41-3.3c0-.54.47-.99 1.05-.99.59 0 1.05.45 1.05 1s-.46 1-1.05 1c-.58 0-1.05-.45-1.05-1m.21-2.88c0-.44.38-.8.84-.8.47 0 .84.36.84.8 0 .44-.37.8-.84.8a.82.82 0 0 1-.84-.8"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M206.19 191.79l1.19.22a4.6 4.6 0 0 0 4.49 6.03 4.7 4.7 0 0 0 4.48-3.1c.07.05.45-1.6.65-1.59.17.02.15 1.73.21 1.7.3 2.25 2.36 3.78 4.68 3.78a4.6 4.6 0 0 0 4.68-5.01l1.48-1.47.79 1.87a4.05 4.05 0 0 0-.44 1.95 4.39 4.39 0 0 0 4.5 4.26c1.57 0 2.94-.75 3.75-1.9l.94-1.2v1.48c0 1.48.62 2.81 2.07 3.04 0 0 1.66.1 3.86-1.62 2.2-1.73 3.42-3.16 3.42-3.16l.19 1.73s-1.83 2.83-3.82 3.98c-1.09.63-2.74 1.3-4.05 1.08-1.4-.22-2.38-1.34-2.9-2.62a6.72 6.72 0 0 1-3.4.92c-2.7 0-5.12-1.47-6.08-3.7a6.99 6.99 0 0 1-10.34-.3 6.93 6.93 0 0 1-4.67 1.8 6.9 6.9 0 0 1-5.7-2.93 6.9 6.9 0 0 1-5.7 2.92 6.94 6.94 0 0 1-4.69-1.78 6.98 6.98 0 0 1-10.34.3c-.95 2.21-3.37 3.7-6.06 3.7a6.7 6.7 0 0 1-3.41-.93c-.52 1.28-1.5 2.4-2.9 2.62-1.3.22-2.96-.45-4.05-1.08-1.99-1.15-3.82-3.98-3.82-3.98l.2-1.73s1.21 1.43 3.4 3.16c2.21 1.73 3.87 1.62 3.87 1.62 1.45-.23 2.07-1.56 2.07-3.04v-1.48l.94 1.2a4.57 4.57 0 0 0 3.75 1.9c2.49 0 4.5-1.9 4.5-4.26 0-.7-.12-1.37-.44-1.95l.8-1.87 1.48 1.47a4.44 4.44 0 0 0-.04.54c0 2.47 2.1 4.46 4.71 4.46 2.32 0 4.38-1.52 4.68-3.77.06.03.05-1.68.21-1.7.2-.02.58 1.64.65 1.6a4.7 4.7 0 0 0 4.49 3.08 4.6 4.6 0 0 0 4.49-6.03l1.23-.22"/><path fill="#fff" stroke="#000" stroke-width=".4" d="M238.6 197.68c.27-.8.03-1.6-.55-1.77-.57-.18-1.27.33-1.54 1.12-.27.8-.03 1.59.55 1.77.57.17 1.26-.33 1.54-1.13m-20.52-3.97c.1-.83-.3-1.56-.9-1.63-.6-.07-1.17.54-1.28 1.38-.1.83.29 1.56.9 1.63.6.07 1.17-.55 1.28-1.38m-23.83 0c-.1-.83.3-1.56.9-1.63.6-.07 1.17.54 1.28 1.38.1.83-.29 1.56-.9 1.63-.6.07-1.17-.55-1.28-1.38m-20.52 3.98c-.27-.8-.02-1.6.55-1.77.58-.18 1.27.33 1.54 1.12.27.8.03 1.59-.55 1.77-.57.17-1.26-.33-1.54-1.13"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M182.65 183.98a5.12 5.12 0 0 1 2.21 2.92s.12-.25.68-.57c.57-.32 1.05-.31 1.05-.31s-.16.93-.24 1.26c-.08.33-.1 1.33-.3 2.23a7.4 7.4 0 0 1-.62 1.62 1.9 1.9 0 0 0-1.5-.4 1.83 1.83 0 0 0-1.28.86s-.63-.55-1.16-1.32c-.53-.78-.89-1.71-1.09-2-.2-.28-.68-1.1-.68-1.1s.44-.17 1.09-.05c.64.12.84.31.84.31a4.9 4.9 0 0 1 1-3.45"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M183.08 193.78a1.75 1.75 0 0 1-.65-1.03c-.08-.42.01-.84.23-1.18 0 0-.85-.43-1.77-.67-.69-.18-1.9-.18-2.27-.19l-1.1-.03s.06.17.27.53c.25.44.47.72.47.72a5.05 5.05 0 0 0-2.9 2 5.3 5.3 0 0 0 3.45.94s-.1.33-.19.83c-.06.41-.06.58-.06.58l1.03-.38c.34-.12 1.48-.52 2.07-.91.76-.53 1.42-1.2 1.42-1.2m2.73-.46a1.65 1.65 0 0 0 .23-1.18 1.72 1.72 0 0 0-.63-1.04s.64-.68 1.4-1.2c.59-.4 1.73-.8 2.08-.91l1.02-.39s0 .18-.06.59a5.74 5.74 0 0 1-.19.83c1.25-.13 2.51.28 3.46.95a5.06 5.06 0 0 1-2.91 1.99 6.44 6.44 0 0 0 .74 1.24l-1.1-.02c-.36 0-1.58 0-2.27-.2-.91-.24-1.77-.66-1.77-.66"/><path fill="#ad1519" stroke="#000" stroke-width=".4" d="M182.19 192.43c0-1.09.93-1.97 2.08-1.97s2.08.88 2.08 1.97c0 1.1-.93 1.97-2.08 1.97a2.03 2.03 0 0 1-2.08-1.97"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M206.11 180.83a5.7 5.7 0 0 1 1.87 3.66s.18-.25.87-.5c.7-.26 1.23-.16 1.23-.16s-.37 1.01-.53 1.37c-.16.35-.37 1.46-.8 2.42a8.23 8.23 0 0 1-1.01 1.7 2.13 2.13 0 0 0-1.6-.73c-.65 0-1.23.29-1.6.72 0 0-.6-.72-1.02-1.69-.43-.96-.64-2.07-.8-2.42-.16-.36-.54-1.37-.54-1.37s.54-.1 1.23.16c.7.25.88.5.88.5.1-1.4.82-2.75 1.82-3.66"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M204.56 191.84a1.92 1.92 0 0 1-.5-1.28c0-.48.18-.93.48-1.27 0 0-.85-.64-1.82-1.07-.73-.34-2.09-.57-2.5-.64l-1.22-.23s.04.19.2.64c.19.54.38.89.38.89a5.87 5.87 0 0 0-3.66 1.7c.92.9 2.24 1.58 3.66 1.67 0 0-.2.35-.38.9-.16.43-.2.63-.2.63l1.23-.22c.4-.09 1.76-.31 2.5-.65.96-.44 1.83-1.07 1.83-1.07m3.13 0a1.88 1.88 0 0 0 .02-2.54s.86-.65 1.82-1.08c.73-.34 2.09-.57 2.5-.64l1.21-.23s-.02.19-.19.64c-.19.54-.37.89-.37.89 1.4.08 2.74.78 3.65 1.7a5.9 5.9 0 0 1-3.65 1.67 6.87 6.87 0 0 0 .56 1.53l-1.21-.22c-.41-.09-1.77-.31-2.5-.65-.96-.44-1.84-1.07-1.84-1.07m22-7.86a5.15 5.15 0 0 0-2.22 2.92s-.12-.25-.68-.57c-.57-.32-1.05-.31-1.05-.31s.16.93.25 1.26c.08.33.08 1.33.3 2.23.21.9.6 1.62.6 1.62a1.91 1.91 0 0 1 1.52-.4c.56.1 1.01.43 1.28.86 0 0 .62-.55 1.15-1.32.53-.78.89-1.71 1.08-2 .2-.28.7-1.1.7-1.1s-.46-.17-1.1-.05c-.65.12-.85.31-.85.31a4.86 4.86 0 0 0-.99-3.45"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M229.25 193.78c.33-.25.57-.61.65-1.03a1.64 1.64 0 0 0-.22-1.18s.84-.43 1.75-.67c.7-.18 1.92-.18 2.28-.19l1.1-.03s-.06.17-.27.53a6.2 6.2 0 0 1-.47.72 5.04 5.04 0 0 1 2.9 2 5.27 5.27 0 0 1-3.45.94s.11.33.19.83c.06.41.05.58.05.58l-1.02-.38c-.34-.12-1.48-.52-2.07-.91-.76-.53-1.42-1.2-1.42-1.2m-2.73-.46a1.67 1.67 0 0 1-.23-1.18c.08-.42.31-.78.63-1.04 0 0-.64-.68-1.4-1.2-.59-.4-1.74-.8-2.08-.91a171.41 171.41 0 0 1-1.02-.39s0 .18.06.59c.08.5.19.83.19.83a5.24 5.24 0 0 0-3.46.95c.66.92 1.7 1.7 2.91 1.99 0 0-.22.27-.47.71-.21.37-.27.53-.27.53l1.1-.02c.36 0 1.58 0 2.27-.2a11.12 11.12 0 0 0 1.77-.66"/><path fill="#ad1519" stroke="#000" stroke-width=".4" d="M225.98 192.43c0-1.09.93-1.97 2.08-1.97s2.08.88 2.08 1.97c0 1.1-.93 1.97-2.08 1.97a2.03 2.03 0 0 1-2.08-1.97m23.27 4.38c-.49-.52-1.5-.41-2.26.24-.76.64-.98 1.59-.5 2.1.5.52 1.51.4 2.27-.24.76-.65.98-1.6.49-2.1"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M246.3 198.06c.1-.35.34-.71.68-1.01.76-.65 1.78-.76 2.27-.24.06.07.13.16.17.24 0 0 1.05-2 2.3-2.67 1.25-.67 3.37-.5 3.37-.5a2.8 2.8 0 0 0-2.88-2.77c-.95 0-1.85.4-2.38 1.06l-.22-1.03s-1.3.26-1.9 1.75c-.6 1.5.05 3.65.05 3.65s-.32-.93-.81-1.54a7.98 7.98 0 0 0-2.39-1.6c-.65-.3-1.31-.75-1.31-.75s-.03.16-.06.58a4.91 4.91 0 0 0 .02.8 7.88 7.88 0 0 0-3.68.45 4.72 4.72 0 0 0 2.51 2.21s-.42.35-.8.73a3.94 3.94 0 0 0-.42.47l1.23.17c.4.06 1.76.27 2.57.22a14.51 14.51 0 0 0 1.67-.22m-80.25 0c-.1-.35-.34-.71-.7-1.01-.75-.65-1.77-.76-2.26-.24-.06.07-.13.16-.17.24 0 0-1.06-2-2.3-2.66-1.25-.68-3.36-.5-3.36-.5a2.8 2.8 0 0 1 2.87-2.78c.96 0 1.85.4 2.38 1.06l.22-1.03s1.3.26 1.9 1.75c.6 1.5-.05 3.65-.05 3.65s.32-.93.81-1.54a8.06 8.06 0 0 1 2.4-1.6c.64-.3 1.31-.75 1.31-.75s.02.16.05.58c.03.49-.01.8-.01.8a7.9 7.9 0 0 1 3.67.45 4.71 4.71 0 0 1-2.5 2.21s.41.35.8.73c.3.32.41.47.41.47l-1.22.17c-.42.06-1.77.27-2.58.22a14.66 14.66 0 0 1-1.67-.22"/><path fill="#ad1519" stroke="#000" stroke-width=".4" d="M163.08 196.8c.5-.51 1.5-.4 2.27.25.76.64.97 1.59.49 2.1-.5.52-1.51.4-2.27-.24-.76-.65-.98-1.6-.49-2.1m40.97-6.25c0-1.09.93-1.97 2.08-1.97s2.08.88 2.08 1.97c0 1.1-.93 1.98-2.08 1.98a2.03 2.03 0 0 1-2.08-1.98"/><path fill="#005bbf" stroke="#000" stroke-width=".3" d="M201.8 160.61c0-2.23 1.9-4.03 4.25-4.03s4.25 1.8 4.25 4.03c0 2.22-1.9 4.02-4.25 4.02a4.14 4.14 0 0 1-4.25-4.02"/><path fill="#c8b100" stroke="#000" stroke-width=".3" d="M204.94 149.32v2.17h-2.33v2.2h2.33v6.35H202c-.04.2-.21.36-.21.57 0 .56.11 1.1.33 1.57 0 .02.02.02.03.03h7.8s.02-.01.02-.03c.22-.48.34-1.01.34-1.57 0-.21-.18-.36-.21-.57h-2.85v-6.34h2.33v-2.21h-2.33v-2.17h-2.32z"/><path fill="#ccc" d="M206.47 330.56c-12.55 0-25-3.08-35.47-8.2a22.7 22.7 0 0 1-12.82-20.34v-31.97h96.4v31.97a22.7 22.7 0 0 1-12.83 20.34 81.04 81.04 0 0 1-35.28 8.2"/><path fill="none" stroke="#000" stroke-width=".5" d="M206.47 330.56c-12.55 0-25-3.08-35.47-8.2a22.7 22.7 0 0 1-12.82-20.34v-31.97h96.4v31.97a22.7 22.7 0 0 1-12.83 20.34 81.04 81.04 0 0 1-35.28 8.2z"/><path fill="#ccc" d="M206.27 270h48.3V216.5h-48.3V270z"/><path fill="none" stroke="#000" stroke-width=".5" d="M206.27 270h48.3V216.5h-48.3V270z"/><path fill="#ad1519" d="M206.3 301.98c0 12.64-10.7 22.88-24.04 22.88s-24.15-10.24-24.15-22.88v-32.01h48.2v32.01"/><path fill="#c8b100" stroke="#000" stroke-width=".5" d="M168.64 320.86c1.5.8 3.57 2.13 5.78 2.66l-.14-54.68h-5.64v52.02z"/><path fill="#c8b100" stroke="#000" stroke-linejoin="round" stroke-width=".5" d="M158.03 301.55a24.39 24.39 0 0 0 5.5 15.05v-47.5h-5.43l-.07 32.45z"/><path fill="#c7b500" stroke="#000" stroke-width=".5" d="M179.38 324.72a26.58 26.58 0 0 0 5.65 0v-55.88h-5.65v55.88z"/><path fill="#c8b100" stroke="#000" stroke-width=".5" d="M189.99 323.52c2.21-.44 4.7-1.82 5.79-2.53v-52.15h-5.65l-.14 54.68z"/><path fill="#ad1519" d="M158.11 270h48.17V216.5h-48.17V270z"/><path fill="none" stroke="#000" stroke-width=".5" d="M158.11 270h48.17V216.5h-48.17V270z"/><path fill="#c8b100" stroke="#000" stroke-width=".5" d="M201.02 316.07c2.35-2.09 4.56-6.84 5.36-12.25l.14-34.98h-5.64l.14 47.23z"/><path fill="none" stroke="#000" stroke-width=".5" d="M206.3 301.98c0 12.64-10.7 22.88-24.04 22.88s-24.15-10.24-24.15-22.88v-32.01h48.2v32.01"/><path fill="#ad1519" d="M254.62 269.97v32.01c0 12.64-10.82 22.88-24.16 22.88s-24.16-10.24-24.16-22.88v-32.01h48.32"/><path fill="none" stroke="#000" stroke-width=".5" d="M254.62 269.97v32.01c0 12.64-10.82 22.88-24.16 22.88s-24.16-10.24-24.16-22.88v-32.01h48.32"/><path fill="#c8b100" d="M215.1 294.13c.07.17.11.33.11.5 0 .6-.5 1.06-1.12 1.06-.62 0-1.12-.47-1.12-1.06 0-.17.04-.33.12-.48l-1.57-.02a2.5 2.5 0 0 0 1.78 2.87v3.85l1.64.01V297a2.56 2.56 0 0 0 1.63-1.55h4.42v-1.3h-5.9m21.68 0v1.3h-3.98a2.55 2.55 0 0 1-.25.5l4.61 5.24-1.23 1-4.6-5.25c-.08.03-.12.06-.21.08l-.02 8.68h-1.62v-8.71l-.2-.08-4.78 5.28-1.23-1 4.77-5.3a2.13 2.13 0 0 1-.2-.44h-4.1v-1.3h13.04zm2.64 0v1.3h4.43c.26.73.85 1.3 1.62 1.55v3.88l1.65-.01V297a2.5 2.5 0 0 0 1.83-2.37 2 2 0 0 0-.06-.5h-1.56c.07.17.11.33.11.5 0 .6-.5 1.06-1.12 1.06-.61 0-1.12-.47-1.12-1.06a.98.98 0 0 1 .12-.48l-5.9-.02m-6.67 22.12a15.6 15.6 0 0 0 3.65-1.05l.8 1.37a17.6 17.6 0 0 1-4.32 1.23 2.59 2.59 0 0 1-2.56 1.96 2.6 2.6 0 0 1-2.56-1.94 17.52 17.52 0 0 1-4.54-1.25l.8-1.37c1.24.52 2.56.87 3.93 1.06a2.5 2.5 0 0 1 1.51-1.34l.02-6.72h1.62l.01 6.7c.72.21 1.33.7 1.63 1.35zM221.7 314l-.8 1.38a16.65 16.65 0 0 1-3.64-3.09c-.84.25-1.78.1-2.5-.48a2.39 2.39 0 0 1-.29-3.5l.14-.14a15.27 15.27 0 0 1-1.27-4.8h1.64a13.13 13.13 0 0 0 1.05 4.1c.46-.06.96 0 1.4.16l4.1-4.55 1.25 1-4.08 4.54c.55.84.52 1.92-.1 2.74a15.17 15.17 0 0 0 3.1 2.64zm-6.09-4.77c.4-.45 1.12-.5 1.59-.12s.53 1.06.12 1.5a1.17 1.17 0 0 1-1.58.12 1.03 1.03 0 0 1-.13-1.5zm-2.07-4.5l-1.68-.37-.24-4.28 1.67-.55v2.45c0 .95.09 1.85.25 2.76zm1.4-5.3l1.68.4s.1 2.75.05 2.13c-.04-.72.19 2.15.19 2.15l-1.7.56c-.17-.87-.22-1.77-.22-2.69v-2.54zm5.55 13.68a15.67 15.67 0 0 0 4.84 2.57l.37-1.62a13.7 13.7 0 0 1-4-2.01l-1.21 1.06m-.82 1.4a17.4 17.4 0 0 0 4.84 2.55l-1.26 1.18a18.7 18.7 0 0 1-3.95-2.03l.37-1.7m2.2-9.41l1.6.68 2.94-3.26-.97-1.39-3.57 3.97m-1.25-1l-.96-1.4 2.94-3.26 1.6.68-3.58 3.97m18.08 9.9l.8 1.39a16.7 16.7 0 0 0 3.65-3.09c.83.25 1.78.1 2.49-.48a2.4 2.4 0 0 0 .29-3.5l-.14-.14a15.04 15.04 0 0 0 1.26-4.8h-1.63a13.27 13.27 0 0 1-1.05 4.1 2.92 2.92 0 0 0-1.4.16l-4.1-4.55-1.24 1 4.08 4.54a2.36 2.36 0 0 0 .1 2.75 15.09 15.09 0 0 1-3.11 2.63zm6.09-4.76a1.16 1.16 0 0 0-1.58-.12 1.02 1.02 0 0 0-.13 1.5 1.17 1.17 0 0 0 1.59.12 1.02 1.02 0 0 0 .12-1.5zm2.07-4.5l1.69-.37.23-4.27-1.67-.56V302c0 .95-.08 1.85-.25 2.75zm-1.4-5.3l-1.68.4s-.1 2.75-.05 2.13c.04-.72-.19 2.15-.19 2.15l1.7.56c.17-.87.22-1.77.22-2.69v-2.54m-5.54 13.67a15.72 15.72 0 0 1-4.84 2.57l-.38-1.62a13.67 13.67 0 0 0 4-2.01l1.22 1.06m.81 1.4a17.45 17.45 0 0 1-4.84 2.56l1.26 1.17a18.6 18.6 0 0 0 3.96-2.03l-.38-1.7m-2.2-9.41l-1.6.68-2.93-3.26.96-1.39 3.58 3.97m1.24-1l.97-1.4-2.94-3.26-1.6.68 3.57 3.97m-20.1-8.65l.5 1.6h4.52l.48-1.6h-5.5m21.13 0l-.5 1.6h-4.51l-.5-1.6h5.51m-11.62 21.84c0-.6.5-1.07 1.13-1.07.61 0 1.11.48 1.11 1.07 0 .58-.5 1.06-1.11 1.06a1.1 1.1 0 0 1-1.13-1.06zm1.9-7.75l1.7-.48v-4.28l-1.7-.46v5.22m-1.63 0l-1.69-.48v-4.28l1.69-.46v5.22"/><path fill="#c8b100" d="M211.52 294.17c.2-.9.89-1.62 1.79-1.89l-.01-5.28h1.63v5.31c.8.26 1.42.85 1.67 1.61l4.39.01v.24h-5.9a1.16 1.16 0 0 0-1-.56c-.44 0-.82.24-1 .58l-1.57-.02m12.2 0v-.24h4.08a2.37 2.37 0 0 1 .18-.38l-5.03-5.61 1.23-1 4.97 5.51c.09-.04.18-.08.27-.1v-7.36h1.63v7.3l.26.07 4.85-5.53 1.25 1-4.88 5.5c.13.18.21.39.28.6h3.96v.24h-13.05zm21.6 0a1.15 1.15 0 0 1 1-.56c.44 0 .81.24 1 .58l1.56-.02c-.2-.9-.88-1.61-1.78-1.88V287h-1.62v5.3c-.8.26-1.42.85-1.67 1.62h-4.4v.24h5.9m-30.12-14.92l6.05 6.79 1.24-1-6.09-6.76c.12-.18.21-.38.28-.6h4.43v-1.54h-4.43a2.61 2.61 0 0 0-2.5-1.72 2.56 2.56 0 0 0-2.63 2.5 2.5 2.5 0 0 0 1.77 2.35v5.23h1.62v-5.2c.07-.02.2-.02.26-.05zm31.94.04l-.02 5.2h-1.63v-5.22a2.45 2.45 0 0 1-.36-.15l-6.02 6.8-1.25-1L244 278l-.14-.31h-4.45v-1.55h4.44a2.6 2.6 0 0 1 2.49-1.72 2.56 2.56 0 0 1 2.62 2.5 2.5 2.5 0 0 1-1.82 2.37zm-16.06-.02l-.02 3.2h-1.62v-3.17a2.57 2.57 0 0 1-1.71-1.61h-3.97v-1.55h3.97a2.6 2.6 0 0 1 2.48-1.72c1.17 0 2.16.72 2.5 1.72h4.05v1.55h-4.06a2.53 2.53 0 0 1-1.62 1.58zm-17.75 3.9l-1.7.47v4.29l1.7.46v-5.23m1.63 0l1.69.48v4.29l-1.69.46v-5.23m30.52 0l-1.69.48v4.29l1.69.46v-5.23m1.64 0l1.69.48v4.29l-1.7.46v-5.23m-25.54.85l1.6-.68 2.94 3.26-.96 1.4-3.58-3.98m-1.24 1.01l-.96 1.4 2.93 3.26 1.6-.69-3.57-3.97m18.44-1.14l-1.6-.67-2.92 3.3.98 1.38 3.54-4m1.25 1l.98 1.38-2.91 3.3-1.6-.68 3.54-4m-20.34 9.04l.5-1.6h4.52l.49 1.6h-5.51m-6.63-17.02c0-.58.5-1.06 1.12-1.06.62 0 1.12.48 1.12 1.06 0 .6-.5 1.07-1.12 1.07a1.1 1.1 0 0 1-1.12-1.07zm12.1.78l-.5 1.6h-4.52l-.49-1.6h5.5m0-1.56l-.49-1.6h-4.52l-.49 1.6h5.5m15.68 17.8l-.5-1.6h-4.52l-.49 1.6h5.5m4.4-17.02c0-.58.5-1.06 1.12-1.06.62 0 1.12.48 1.12 1.06 0 .6-.5 1.07-1.12 1.07a1.1 1.1 0 0 1-1.13-1.07zm-16.13 0c0-.58.5-1.06 1.12-1.06.62 0 1.12.48 1.12 1.06 0 .6-.5 1.07-1.12 1.07a1.1 1.1 0 0 1-1.12-1.07zm6.27.78l.5 1.6h4.52l.49-1.6h-5.51m0-1.56l.5-1.6h4.52l.49 1.6h-5.51m-5.9 5.02l-1.7.47v4.29l1.7.47v-5.23m1.61 0l1.69.47v4.29l-1.69.47v-5.23"/><path fill="none" stroke="#c8b100" stroke-width=".3" d="M232.74 316.25a15.6 15.6 0 0 0 3.65-1.05l.8 1.37a17.6 17.6 0 0 1-4.32 1.23 2.59 2.59 0 0 1-2.55 1.96 2.6 2.6 0 0 1-2.57-1.95 17.52 17.52 0 0 1-4.54-1.24l.81-1.37c1.24.52 2.55.87 3.92 1.06a2.5 2.5 0 0 1 1.51-1.34l.02-6.72h1.62l.02 6.7c.72.21 1.32.7 1.63 1.35zm-4.7-20.38a2.28 2.28 0 0 1-.2-.44h-4.11v-1.54h4.08a2.6 2.6 0 0 1 .17-.38l-5.03-5.6 1.24-1 4.97 5.5a2.16 2.16 0 0 1 .27-.1v-7.34h1.62v7.29c.07.02.19.04.26.07l4.85-5.52 1.25.99-4.87 5.49c.12.18.2.39.28.6h3.95v1.54l-3.98.02c-.05.17-.16.33-.25.48l4.62 5.25-1.24 1-4.6-5.25-.21.09-.01 8.67h-1.63v-8.71c-.07-.02-.13-.06-.2-.09l-4.78 5.29-1.23-1 4.77-5.3m-12.84-16.64l6.05 6.78 1.24-1-6.08-6.75c.12-.18.2-.38.28-.6h4.43v-1.53h-4.43a2.61 2.61 0 0 0-2.5-1.72 2.56 2.56 0 0 0-2.63 2.48 2.5 2.5 0 0 0 1.77 2.35l-.01 5.23h1.62v-5.2c.07-.01.2-.01.26-.04zm6.52 34.76l-.8 1.38a16.65 16.65 0 0 1-3.65-3.09c-.83.25-1.78.1-2.49-.48a2.39 2.39 0 0 1-.3-3.5l.15-.15a15.27 15.27 0 0 1-1.27-4.8h1.64a13.13 13.13 0 0 0 1.05 4.11c.46-.06.95 0 1.4.16l4.1-4.55 1.24 1-4.08 4.54c.55.84.53 1.92-.1 2.74a15.17 15.17 0 0 0 3.1 2.64zm-8.41-13.14V297a2.5 2.5 0 0 1-1.83-2.37c0-1.1.78-2.06 1.84-2.38l-.01-5.27h1.63v5.3c.8.25 1.42.84 1.67 1.6l4.4.01v1.54h-4.43a2.56 2.56 0 0 1-1.62 1.56v3.88l-1.65-.01m2.32 8.37c.4-.45 1.11-.5 1.58-.12s.53 1.06.13 1.5a1.17 1.17 0 0 1-1.59.12 1.03 1.03 0 0 1-.12-1.5zm-2.07-4.5l-1.69-.37-.24-4.28 1.68-.55v2.45c0 .95.08 1.85.25 2.76zm1.4-5.3l1.68.4s.09 2.75.05 2.13c-.04-.72.18 2.15.18 2.15l-1.7.56c-.16-.87-.22-1.77-.22-2.69v-2.55zm5.54 13.68a15.67 15.67 0 0 0 4.84 2.57l.37-1.62a13.7 13.7 0 0 1-4-2.01l-1.21 1.06m-.81 1.4a17.4 17.4 0 0 0 4.84 2.55l-1.26 1.18a18.7 18.7 0 0 1-3.96-2.03l.38-1.7"/><path fill="none" stroke="#c8b100" stroke-width=".3" d="M221.87 305.1l1.6.68 2.94-3.26-.96-1.39-3.58 3.97m-1.25-1l-.96-1.4 2.94-3.26 1.6.68-3.57 3.97m-7.66-9.45c0-.6.5-1.07 1.12-1.07.62 0 1.12.48 1.12 1.07 0 .59-.5 1.06-1.12 1.06-.62 0-1.12-.47-1.12-1.06zM238.7 314l.8 1.38a16.7 16.7 0 0 0 3.65-3.09c.83.25 1.78.1 2.5-.48a2.4 2.4 0 0 0 .28-3.5l-.14-.14a15.04 15.04 0 0 0 1.27-4.8h-1.64a13.27 13.27 0 0 1-1.05 4.1 2.92 2.92 0 0 0-1.4.16l-4.1-4.55-1.24 1 4.08 4.54a2.36 2.36 0 0 0 .1 2.75 15.09 15.09 0 0 1-3.1 2.63zm8.42-13.14V297a2.5 2.5 0 0 0 1.83-2.37c0-1.11-.78-2.07-1.85-2.39l.01-5.27h-1.62l-.01 5.3c-.8.26-1.42.85-1.67 1.6l-4.4.02v1.54h4.43c.26.73.86 1.3 1.63 1.55v3.88l1.64-.01zm-2.33 8.37a1.16 1.16 0 0 0-1.58-.12 1.02 1.02 0 0 0-.12 1.5 1.17 1.17 0 0 0 1.58.12 1.02 1.02 0 0 0 .12-1.5zm2.07-4.5l1.69-.37.24-4.27-1.67-.56v2.45c0 .96-.1 1.86-.26 2.76zm-1.4-5.3l-1.67.4s-.1 2.75-.06 2.13c.05-.72-.18 2.15-.18 2.15l1.69.56c.17-.87.23-1.77.23-2.69v-2.54m1.66-20.16l-.02 5.2h-1.63v-5.22a2.25 2.25 0 0 1-.36-.15l-6.02 6.78-1.24-.99 6.13-6.91-.14-.31h-4.45v-1.54h4.44a2.6 2.6 0 0 1 2.49-1.72 2.56 2.56 0 0 1 2.62 2.48 2.5 2.5 0 0 1-1.82 2.38zm-16.06-.02l-.02 3.2h-1.62v-3.18a2.57 2.57 0 0 1-1.71-1.6h-3.97v-1.54h3.97c.34-1 1.32-1.72 2.48-1.72s2.16.72 2.5 1.72h4.05v1.54h-4.06a2.52 2.52 0 0 1-1.62 1.58zm8.85 33.85a15.72 15.72 0 0 1-4.84 2.57l-.37-1.62a13.67 13.67 0 0 0 4-2.01l1.21 1.06m.82 1.4a17.45 17.45 0 0 1-4.84 2.56l1.25 1.17a18.7 18.7 0 0 0 3.96-2.03l-.37-1.7m-27.42-31.36l-1.7.47v4.28l1.7.47v-5.22m1.64 0l1.68.47v4.28l-1.68.46v-5.22m30.51 0l-1.68.48v4.28l1.68.46v-5.22"/><path fill="none" stroke="#c8b100" stroke-width=".3" d="M247.1 283.14l1.7.48v4.28l-1.7.46v-5.22m-8.56 21.96l-1.6.68-2.94-3.26.96-1.39 3.58 3.97m1.25-1l.96-1.4-2.94-3.26-1.6.68 3.58 3.97M221.56 284l1.61-.68 2.94 3.26-.97 1.39-3.58-3.97m-1.24 1.01l-.96 1.4 2.94 3.25 1.6-.68-3.58-3.97m18.45-1.14l-1.61-.66-2.91 3.28.97 1.38 3.54-4m1.26 1l.97 1.39-2.9 3.28-1.61-.67 3.54-4m-20.34 9.03l.5-1.6h4.52l.49 1.6h-5.5m0 1.55l.49 1.6h4.52l.49-1.6h-5.5m-6.64-18.53c0-.59.5-1.07 1.12-1.07.62 0 1.12.48 1.12 1.07 0 .58-.5 1.06-1.12 1.06-.62 0-1.12-.48-1.12-1.06zm12.1.77l-.5 1.6h-4.52l-.49-1.6h5.51m0-1.55l-.5-1.6h-4.51l-.5 1.6h5.51m20.05 18.5c0-.58.5-1.06 1.12-1.06.62 0 1.12.48 1.12 1.07 0 .59-.5 1.06-1.12 1.06-.62 0-1.12-.47-1.12-1.06zm-4.38-.74l-.5-1.6h-4.52l-.49 1.6h5.51m0 1.55l-.5 1.6h-4.52l-.49-1.6h5.5m-11.61 21.84c0-.6.5-1.07 1.12-1.07.62 0 1.12.48 1.12 1.07 0 .58-.5 1.06-1.12 1.06a1.1 1.1 0 0 1-1.12-1.06zm1.9-7.75l1.7-.48v-4.28l-1.7-.46v5.22m-1.64 0l-1.68-.48v-4.28l1.68-.46v5.22m15.75-32.62c0-.58.5-1.06 1.12-1.06.62 0 1.12.48 1.12 1.06 0 .59-.5 1.06-1.12 1.06a1.1 1.1 0 0 1-1.12-1.06zm-16.12 0c0-.58.5-1.06 1.12-1.06.62 0 1.12.48 1.12 1.06 0 .59-.5 1.06-1.12 1.06a1.1 1.1 0 0 1-1.12-1.06zm6.26.77l.5 1.6h4.52l.49-1.6h-5.5m0-1.54l.49-1.6h4.52l.49 1.6h-5.5m-5.92 4.99l-1.68.47v4.29l1.68.46v-5.22m1.62 0l1.69.47v4.29l-1.69.46v-5.22"/><path fill="#058e6e" d="M227.69 294.66a2.56 2.56 0 0 1 2.63-2.49 2.56 2.56 0 0 1 2.62 2.49 2.56 2.56 0 0 1-2.62 2.48c-1.45 0-2.63-1.1-2.63-2.48"/><path fill="#db4446" d="M230.9 229.69l.05-.6.08-.32s-1.55.12-2.36-.1a5.88 5.88 0 0 1-2.31-1.21c-.76-.65-1.06-1.05-1.6-1.13-1.3-.21-2.3.38-2.3.38s.97.36 1.7 1.26 1.53 1.36 1.87 1.47c.57.17 2.55.05 3.1.07.54.03 1.76.18 1.76.18"/><path fill="none" stroke="#000" stroke-width=".4" d="M230.9 229.69l.05-.6.08-.32s-1.55.12-2.36-.1a5.88 5.88 0 0 1-2.31-1.21c-.76-.65-1.06-1.05-1.6-1.13-1.3-.21-2.3.38-2.3.38s.97.36 1.7 1.26 1.53 1.36 1.87 1.47c.57.17 2.55.05 3.1.07.54.03 1.76.18 1.76.18z"/><path fill="#ed72aa" stroke="#000" stroke-width=".4" d="M238.12 227.51s0 .7.07 1.36c.07.63-.2 1.19-.1 1.54.1.35.15.63.3.89.12.25.2.9.2.9l-.72-.52c-.34-.26-.58-.42-.58-.42l.1 1c.04.29.21.85.5 1.18.27.32.83.85 1 1.28.17.43.14 1.38.14 1.38s-.45-.72-.84-.85c-.38-.13-1.21-.6-1.21-.6s.76.76.76 1.49c0 .72-.3 1.54-.3 1.54s-.35-.65-.8-1.08c-.46-.43-1.08-.86-1.08-.86s.49 1.12.49 1.87c0 .76-.14 2.38-.14 2.38s-.38-.63-.76-.93c-.39-.3-.84-.56-.98-.75-.14-.2.45.62.52 1.11.07.5.3 2.26 1.84 4.51.9 1.31 2.3 3.62 5.28 2.86 2.99-.75 1.88-4.77 1.25-6.64a16.84 16.84 0 0 1-.9-4.68c.03-.72.55-2.85.48-3.25a8.02 8.02 0 0 1 .14-3.15c.38-1.28.7-1.78.9-2.31.21-.53.38-.82.45-1.28.07-.46.07-1.32.07-1.32s.56 1.02.7 1.38c.13.37.13 1.45.13 1.45s.1-1.08.94-1.6c.84-.54 1.81-1.1 2.05-1.4.25-.3.32-.49.32-.49s-.07 1.85-.6 2.57c-.34.47-1.7 2-1.7 2s.7-.26 1.18-.28c.5-.04.84 0 .84 0s-.6.46-1.36 1.57c-.76 1.12-.45 1.22-1 2.14-.56.92-1.01.95-1.7 1.51-1.05.84-.49 4.17-.35 4.67.14.49 1.94 4.57 1.98 5.56.03.99.2 3.19-1.53 4.6-1.12.92-2.95.93-3.37 1.2-.42.25-1.25 1.07-1.25 2.78 0 1.72.62 1.98 1.11 2.4.49.44 1.11.2 1.25.54.14.32.21.52.42.72.21.19.35.42.28.78-.07.36-.87 1.19-1.15 1.78-.28.59-.83 2.14-.83 2.37 0 .23-.07.95.17 1.32 0 0 .87 1.01.28 1.2-.39.14-.76-.23-.94-.19-.52.14-.79.46-.94.43-.35-.07-.35-.24-.38-.72-.03-.5-.02-.7-.17-.7-.21 0-.31.17-.35.43-.04.27-.04.85-.28.85-.24 0-.59-.42-.8-.51-.2-.1-.8-.2-.83-.46-.03-.27.35-.83.73-.93.38-.1.73-.29.49-.49s-.49-.2-.73 0-.76.03-.73-.26c.03-.3.1-.66.07-.82-.04-.16-.45-.5.1-.8.56-.29.8.27 1.35.17.56-.1.84-.3 1.05-.62.2-.33.17-1.02-.21-1.45-.39-.43-.77-.5-.9-.76-.15-.26-.35-.88-.35-.88s.1 1.15.03 1.31c-.07.17-.03.86-.03.86l-.7-.76c-.3-.33-.62-1.31-.62-1.31l-.03 1.28c0 .36.41.7.27.82-.14.13-.8-.69-.97-.82a3.66 3.66 0 0 1-.97-1.02c-.24-.46-.42-1.11-.49-1.35a4.15 4.15 0 0 1-.07-1.51l.45-1.09h-1.35c-.73 0-1.25-.23-1.53.26-.27.5-.14 1.49.2 2.77.36 1.28.56 1.9.46 2.14a3 3 0 0 1-.73.85c-.17.1-.66.07-.87-.03a2.5 2.5 0 0 0-1.21-.27c-.66 0-1.08.03-1.32-.02-.24-.07-.83-.37-1.11-.3-.28.07-.76.31-.63.69.21.59-.2.72-.49.69-.27-.03-.51-.13-.86-.23s-.87 0-.8-.4c.07-.4.2-.42.38-.72.17-.3.24-.49.04-.5-.24-.03-.49-.06-.68.1-.18.15-.48.48-.72.36-.25-.13-.44-.41-.44-1.03 0-.62-.65-1.16-.05-1.13.6.03 1.36.46 1.5.13.13-.34.04-.49-.28-.75s-.73-.41-.3-.74c.44-.34.55-.34.71-.52.16-.18.4-.76.7-.61.6.28.03.7.63 1.36.6.66.97.9 1.98.8 1-.1 1.27-.24 1.27-.52s-.08-.8-.1-1c-.03-.2.13-.95.13-.95s-.46.28-.6.56c-.13.28-.4.77-.4.77s-.11-.58-.08-1.05c.02-.27.12-.75.1-.85a8 8 0 0 0-.21-.9s-.16.7-.27.9c-.11.2-.16 1.03-.16 1.03s-.64-.56-.46-1.49c.13-.72-.11-1.67.1-1.98.22-.31.73-1.57 1.98-1.62 1.25-.05 2.22.05 2.66.03.44-.03 1.98-.31 1.98-.31s-2.85-1.46-3.5-1.9a9.5 9.5 0 0 1-1.98-2.08c-.33-.52-.62-1.52-.62-1.52s-.52.03-.98.28a4.92 4.92 0 0 0-1.2.95c-.27.3-.7 1-.7 1s.08-.9.08-1.18c0-.27-.05-.82-.05-.82s-.33 1.23-.98 1.69c-.65.47-1.4 1.11-1.4 1.11s.07-.69.07-.85c0-.15.16-.95.16-.95s-.46.7-1.16.83c-.7.12-1.74.1-1.82.54-.08.43.19 1.02.03 1.33-.17.3-.52.51-.52.51s-.4-.33-.76-.36c-.35-.02-.68.16-.68.16s-.3-.4-.19-.65c.11-.25.65-.64.52-.8-.14-.15-.57.06-.84.19s-.84.25-.79-.18c.05-.44.19-.7.05-1-.13-.3-.05-.52.17-.6.21-.07 1.08.03 1.16-.17.08-.2-.21-.46-.78-.6-.57-.12-.85-.46-.55-.74.3-.28.38-.36.52-.61.13-.26.19-.72.7-.5.52.24.41.8.96.98.53.19 1.81-.07 2.08-.23.28-.15 1.14-.8 1.44-.95.3-.15 1.55-1.08 1.55-1.08s-.73-.5-1-.77c-.28-.25-.76-.87-1-1a8.35 8.35 0 0 0-1.85-.61c-.4-.03-1.66-.46-1.66-.46s.57-.19.76-.34c.2-.16.62-.54.84-.52l.27.03s-1.16-.05-1.4-.13c-.25-.08-.96-.52-1.23-.52s-.81.11-.81.11.73-.46 1.33-.56c.6-.1 1.06-.08 1.06-.08s-.93-.26-1.15-.57c-.21-.3-.43-.76-.6-.97-.16-.2-.26-.54-.56-.57-.3-.02-.82.36-1.11.34-.3-.03-.52-.21-.55-.64-.02-.44 0-.3-.1-.52-.11-.23-.55-.77-.14-.9.41-.13 1.28.08 1.36-.08.08-.15-.46-.61-.81-.8-.36-.17-.93-.48-.63-.74.3-.25.6-.35.76-.59.16-.23.35-.87.7-.67.36.2.85 1.21 1.12 1.14.27-.08.3-.8.24-1.1-.05-.32 0-.86.27-.8.27.04.5.4.93.43.43.03 1.08-.1 1.03.2-.06.31-.3.7-.6 1.03-.3.34-.43 1-.24 1.44.19.44.68 1.14 1.11 1.42.43.28 1.24.49 1.76.82.52.34 1.71 1.28 2.12 1.38.4.1.81.31.81.31s.46-.2 1.09-.2c.62 0 2.06.1 2.6-.13.55-.23 1.25-.62 1.03-1.1-.21-.5-1.4-.93-1.3-1.31.11-.39.54-.41 1.27-.44.74-.03 1.74.13 1.93-.9.19-1.03.24-1.62-.78-1.85-1.04-.23-1.8-.26-1.98-1-.2-.75-.38-.93-.17-1.13.22-.2.6-.31 1.36-.36.76-.05 1.63-.05 1.87-.24.25-.17.3-.66.6-.87.3-.2 1.46-.39 1.46-.39s1.4.69 2.7 1.65c1.15.86 2.2 2.14 2.2 2.14"/><path d="M228.12 226.8s-.16-.47-.19-.6c-.02-.13-.1-.28-.1-.28s.84 0 .81.25c-.03.26-.27.26-.33.36-.05.1-.19.26-.19.26"/><path fill="none" stroke="#000" stroke-width=".3" d="M228.12 226.8s-.16-.47-.19-.6c-.02-.13-.1-.28-.1-.28s.84 0 .81.25c-.03.26-.27.26-.33.36-.05.1-.19.26-.19.26z"/><path d="M231.98 225.45l-.06-.4s.74 0 1.09.25c.54.38.89.97.86 1-.09.09-.5-.26-.8-.36 0 0-.22.05-.44.05s-.33-.1-.36-.2c-.02-.1.03-.29.03-.29l-.32-.04"/><path fill="none" d="M231.98 225.45l-.06-.4s.74 0 1.09.25c.54.38.89.97.86 1-.09.09-.5-.26-.8-.36 0 0-.22.05-.44.05s-.33-.1-.36-.2c-.02-.1.03-.29.03-.29l-.32-.04z"/><path fill="none" stroke="#000" stroke-width=".3" d="M237.27 231.26s-.33-.46-.4-.62a8 8 0 0 1-.23-.46"/><path fill="#db4446" d="M217.4 226.64s.46.33.82.38c.35.05.73.05.79.05.05 0 .16-.52.1-.87-.19-1.16-1.25-1.42-1.25-1.42s.32.7.17 1.03c-.22.47-.63.83-.63.83"/><path fill="none" stroke="#000" stroke-width=".4" d="M217.4 226.64s.46.33.82.38c.35.05.73.05.79.05.05 0 .16-.52.1-.87-.19-1.16-1.25-1.42-1.25-1.42s.32.7.17 1.03c-.22.47-.63.83-.63.83z"/><path fill="#db4446" d="M215.2 227.64s-.4-.75-1.27-.65c-.87.1-1.44.78-1.44.78s.96-.03 1.2.12c.35.24.46.83.46.83s.52-.31.68-.52a7.23 7.23 0 0 0 .37-.56"/><path fill="none" stroke="#000" stroke-width=".4" d="M215.2 227.64s-.4-.75-1.27-.65c-.87.1-1.44.78-1.44.78s.96-.03 1.2.12c.35.24.46.83.46.83s.52-.31.68-.52a7.23 7.23 0 0 0 .37-.56z"/><path fill="#db4446" d="M214.15 230.64s-.73.1-1.14.57c-.41.46-.35 1.34-.35 1.34s.48-.51.92-.51c.43 0 1.11.15 1.11.15s-.21-.55-.21-.78c0-.23-.33-.77-.33-.77"/><path fill="none" stroke="#000" stroke-width=".4" d="M214.15 230.64s-.73.1-1.14.57c-.41.46-.35 1.34-.35 1.34s.48-.51.92-.51c.43 0 1.11.15 1.11.15s-.21-.55-.21-.78c0-.23-.33-.77-.33-.77z"/><path d="M228.15 230.54l.33-.51.32.46-.65.05"/><path fill="none" stroke="#000" stroke-width=".3" d="M228.15 230.54l.33-.51.32.46-.65.05"/><path d="M228.94 230.51l.38-.5.4.45-.78.05"/><path fill="none" stroke="#000" stroke-width=".3" d="M228.94 230.51l.38-.5.4.45-.78.05"/><path d="M228.59 227.35l.78.29-.7.36-.08-.64"/><path fill="none" stroke="#000" stroke-width=".3" d="M228.59 227.35l.78.29-.7.36-.08-.64"/><path d="M229.53 227.61l.71.18-.57.44-.14-.62"/><path fill="none" stroke="#000" stroke-width=".3" d="M229.53 227.61l.71.18-.57.44-.14-.62"/><path fill="none" stroke="#000" stroke-width=".4" d="M224.24 233.65s-.77.23-1.06.64c-.35.52-.32 1.03-.32 1.03s.65-.54 1.49-.3c.84.22.92.3 1.28.28.35-.03 1.22-.34 1.22-.34s-.7.82-.63 1.39c.09.56.19.82.17 1.1-.06.7-.57 1.55-.57 1.55s.3-.18 1-.34a4.58 4.58 0 0 0 1.68-.77c.38-.28.87-.98.87-.98s-.16.95 0 1.37c.16.41.21 1.6.21 1.6s.46-.4.82-.6c.19-.1.68-.36.87-.67.13-.22.3-1.02.3-1.02s.1.86.38 1.28c.27.4.67 1.67.67 1.67s.28-.82.58-1.16c.3-.33.65-.77.67-1.03a4.3 4.3 0 0 0-.08-.81l.38.81m-10.96.6s.46-.8.9-1.06c.43-.26 1.03-.72 1.2-.77.15-.05.86-.44.86-.44m.95 4.96s1.05-.53 1.36-.72a3.98 3.98 0 0 0 1.11-1.08"/><path fill="#db4446" d="M216.62 240.36s-.41-.44-1.12-.31c-.7.13-1.16.93-1.16.93s.6-.16.95-.08.6.43.6.43.32-.28.43-.43c.1-.16.3-.55.3-.55"/><path fill="none" stroke="#000" stroke-width=".4" d="M216.62 240.36s-.41-.44-1.12-.31c-.7.13-1.16.93-1.16.93s.6-.16.95-.08.6.43.6.43.32-.28.43-.43c.1-.16.3-.55.3-.55z"/><path fill="#db4446" d="M215.8 243.21s-.6-.1-1.1.31c-.52.41-.55 1.2-.55 1.2s.49-.4.87-.35c.38.05.84.25.84.25l.1-.61c.09-.36-.16-.8-.16-.8"/><path fill="none" stroke="#000" stroke-width=".4" d="M215.8 243.21s-.6-.1-1.1.31c-.52.41-.55 1.2-.55 1.2s.49-.4.87-.35c.38.05.84.25.84.25l.1-.61c.09-.36-.16-.8-.16-.8z"/><path fill="#db4446" d="M217.19 245.84s-.04.76.32 1.23c.38.49 1.09.56 1.09.56s-.24-.51-.27-.77c-.06-.38.32-.72.32-.72s-.35-.36-.7-.36-.76.05-.76.05"/><path fill="none" stroke="#000" stroke-width=".4" d="M217.19 245.84s-.04.76.32 1.23c.38.49 1.09.56 1.09.56s-.24-.51-.27-.77c-.06-.38.32-.72.32-.72s-.35-.36-.7-.36-.76.05-.76.05zm16.01 1.28s1.95 1.2 1.9 2.2c-.06 1.01-1.09 2.32-1.09 2.32"/><path fill="#db4446" d="M224.24 252.6s-.49-.62-1.16-.6c-.68.03-1.39.67-1.39.67s.84-.08 1.06.2c.22.3.43.64.43.64s.38-.2.55-.33c.16-.12.51-.59.51-.59"/><path fill="none" stroke="#000" stroke-width=".4" d="M224.24 252.6s-.49-.62-1.16-.6c-.68.03-1.39.67-1.39.67s.84-.08 1.06.2c.22.3.43.64.43.64s.38-.2.55-.33c.16-.12.51-.59.51-.59z"/><path fill="#db4446" d="M222.15 255.29s-.89-.13-1.33.34c-.43.46-.4 1.3-.4 1.3s.54-.59 1.03-.54c.49.06 1.03.31 1.03.31s-.08-.5-.14-.74c-.05-.23-.19-.67-.19-.67"/><path fill="none" stroke="#000" stroke-width=".4" d="M222.15 255.29s-.89-.13-1.33.34c-.43.46-.4 1.3-.4 1.3s.54-.59 1.03-.54c.49.06 1.03.31 1.03.31s-.08-.5-.14-.74c-.05-.23-.19-.67-.19-.67z"/><path fill="#db4446" d="M224.08 258.14s-.43.62-.1 1.1c.32.5 1 .73 1 .73s-.25-.36-.14-.77c.09-.33.65-.77.65-.77l-1.4-.28"/><path fill="none" stroke="#000" stroke-width=".4" d="M224.08 258.14s-.43.62-.1 1.1c.32.5 1 .73 1 .73s-.25-.36-.14-.77c.09-.33.65-.77.65-.77l-1.4-.28z"/><path fill="#db4446" d="M236 259.3s-.8-.18-1.23.08c-.43.25-.78 1.33-.78 1.33s.7-.59 1.22-.51c.51.08.9.28.9.28s.07-.44.02-.74c-.03-.19-.14-.44-.14-.44"/><path fill="none" stroke="#000" stroke-width=".4" d="M236 259.3s-.8-.18-1.23.08c-.43.25-.78 1.33-.78 1.33s.7-.59 1.22-.51c.51.08.9.28.9.28s.07-.44.02-.74c-.03-.19-.14-.44-.14-.44z"/><path fill="#db4446" d="M236.37 262.18s-.6.61-.38 1.13c.22.51.6 1.05.6 1.05s-.02-.76.22-.97c.35-.31 1-.36 1-.36s-.51-.46-.68-.52a15.84 15.84 0 0 1-.76-.33"/><path fill="none" stroke="#000" stroke-width=".4" d="M236.37 262.18s-.6.61-.38 1.13c.22.51.6 1.05.6 1.05s-.02-.76.22-.97c.35-.31 1-.36 1-.36s-.51-.46-.68-.52a15.84 15.84 0 0 1-.76-.33z"/><path fill="#db4446" d="M239.36 263.08s-.3.74.27 1.23c.57.5 1.06.54 1.06.54s-.43-.77-.3-1.18c.14-.43.52-.7.52-.7s-.71-.23-.82-.2c-.1.02-.73.31-.73.31"/><path fill="none" stroke="#000" stroke-width=".4" d="M239.36 263.08s-.3.74.27 1.23c.57.5 1.06.54 1.06.54s-.43-.77-.3-1.18c.14-.43.52-.7.52-.7s-.71-.23-.82-.2c-.1.02-.73.31-.73.31z"/><path fill="#ffd691" stroke="#000" stroke-width=".5" d="M208.79 316.37c2.01.6 3.03 2.1 3.03 3.85 0 2.28-2.22 4.01-5.09 4.01-2.87 0-5.2-1.73-5.2-4.01 0-1.73.96-3.65 2.96-3.79 0 0-.06-.18-.24-.48l-.61-.63s.76-.15 1.2.02c.44.17.73.45.73.45s.21-.41.5-.73c.3-.31.68-.5.68-.5s.44.36.59.61c.14.26.23.56.23.56s.41-.34.76-.47c.35-.14.81-.25.81-.25s-.13.44-.22.66c-.08.23-.13.7-.13.7"/><path fill="#058e6e" stroke="#000" stroke-width=".5" d="M206.3 326.7s-3.81-2.57-5.47-2.91c-2.11-.45-4.5-.09-5.52-.14.03.03 1.23.89 1.76 1.42.53.53 2.3 1.58 3.3 1.83 3.1.78 5.94-.2 5.94-.2m1.09.23s2.44-2.54 5-2.9c3.03-.41 5.01.26 6.19.56.02 0-.97.48-1.5.84s-1.9 1.5-3.98 1.53c-2.09.03-4.39-.22-4.77-.16l-.94.13"/><path fill="#ad1519" stroke="#000" stroke-width=".5" d="M206.66 323.79a4.85 4.85 0 0 1 0-7.13 4.84 4.84 0 0 1 1.56 3.56 4.86 4.86 0 0 1-1.56 3.57"/><path fill="#058e6e" stroke="#000" stroke-width=".5" d="M205.7 329s.58-1.46.64-2.71c.05-1.05-.15-2.09-.15-2.09h.77s.38 1.12.38 2.09c0 .97-.18 2.27-.18 2.27s-.53.08-.7.16c-.18.09-.77.28-.77.28"/><path fill="#fff" d="M254 190.73c0-.56.47-1 1.05-1 .59 0 1.06.44 1.06 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M254 190.73c0-.56.47-1 1.05-1 .59 0 1.06.44 1.06 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M255.44 188.18c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M255.44 188.18c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M256.4 185.22c0-.55.47-.99 1.06-.99.58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M256.4 185.22c0-.55.47-.99 1.06-.99.58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M256.52 182.06c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M256.52 182.06c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M255.74 178.94c0-.55.48-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M255.74 178.94c0-.55.48-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M254.12 176.11c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.57 0-1.04-.45-1.04-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M254.12 176.11c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.57 0-1.04-.45-1.04-1z"/><path fill="#fff" d="M251.96 173.78c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M251.96 173.78c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M249.45 171.85c0-.55.48-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M249.45 171.85c0-.55.48-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M246.46 170.27c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M246.46 170.27c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M243.35 169.14c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M243.35 169.14c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M239.87 168.52c0-.55.47-1 1.05-1 .59 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M239.87 168.52c0-.55.47-1 1.05-1 .59 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M236.57 168.35c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M236.57 168.35c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M233.33 168.46c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M233.33 168.46c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M230.1 168.46c0-.55.46-1 1.04-1 .58 0 1.06.45 1.06 1s-.48 1-1.05 1c-.59 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M230.1 168.46c0-.55.46-1 1.04-1 .58 0 1.06.45 1.06 1s-.48 1-1.05 1c-.59 0-1.06-.45-1.06-1z"/><path fill="#fff" stroke="#000" stroke-width=".4" d="M231.71 171.24c0-.55.47-1 1.05-1 .59 0 1.05.45 1.05 1s-.46 1-1.05 1c-.58 0-1.05-.45-1.05-1m.66 3.07c0-.56.47-1 1.05-1 .59 0 1.06.44 1.06 1 0 .54-.47.99-1.06.99-.58 0-1.05-.45-1.05-1m.12 3.06c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1m-.96 2.78c0-.54.47-1 1.05-1 .59 0 1.06.46 1.06 1 0 .56-.47 1-1.06 1-.58 0-1.05-.44-1.05-1m-1.79 2.56c0-.55.48-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.05 1c-.58 0-1.06-.45-1.06-1"/><path fill="#fff" d="M227.64 166.53c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M227.64 166.53c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M224.76 164.94c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M224.76 164.94c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M221.6 163.98c0-.55.47-.99 1.05-.99.58 0 1.05.44 1.05 1 0 .54-.47 1-1.05 1-.58 0-1.06-.46-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M221.6 163.98c0-.55.47-.99 1.05-.99.58 0 1.05.44 1.05 1 0 .54-.47 1-1.05 1-.58 0-1.06-.46-1.06-1z"/><path fill="#fff" d="M218.3 163.42c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M218.3 163.42c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M215.07 163.47c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.05-.44-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M215.07 163.47c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.58 0-1.05-.44-1.05-1z"/><path fill="#fff" d="M211.71 164.04c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M211.71 164.04c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M208.6 165.11c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M208.6 165.11c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M155.93 190.73c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M155.93 190.73c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M154.49 188.18c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M154.49 188.18c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M153.53 185.22c0-.55.47-.99 1.05-.99.58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M153.53 185.22c0-.55.47-.99 1.05-.99.58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M153.4 182.06c0-.56.48-1 1.06-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M153.4 182.06c0-.56.48-1 1.06-1 .58 0 1.05.44 1.05 1 0 .55-.47 1-1.05 1-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M154.19 178.94c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M154.19 178.94c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M155.8 176.11c0-.55.48-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M155.8 176.11c0-.55.48-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M157.97 173.78c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M157.97 173.78c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M160.47 171.85c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M160.47 171.85c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M163.47 170.27c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M163.47 170.27c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M166.58 169.14c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M166.58 169.14c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M170.06 168.52c0-.55.47-1 1.06-1 .57 0 1.05.45 1.05 1s-.48 1-1.05 1c-.58 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M170.06 168.52c0-.55.47-1 1.06-1 .57 0 1.05.45 1.05 1s-.48 1-1.05 1c-.58 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M173.36 168.35c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M173.36 168.35c0-.55.47-1 1.06-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.59 0-1.06-.45-1.06-1z"/><path fill="#fff" d="M176.6 168.46c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M176.6 168.46c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M179.84 168.46c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M179.84 168.46c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" stroke="#000" stroke-width=".4" d="M178.22 171.24c0-.55.47-1 1.05-1 .58 0 1.06.45 1.06 1s-.48 1-1.06 1c-.58 0-1.05-.45-1.05-1m-.66 3.07c0-.56.47-1 1.05-1 .58 0 1.05.44 1.05 1 0 .54-.47.99-1.05.99-.58 0-1.05-.45-1.05-1m-.12 3.06c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1m.96 2.78c0-.54.47-1 1.05-1 .59 0 1.06.46 1.06 1 0 .56-.47 1-1.06 1-.58 0-1.05-.44-1.05-1m1.79 2.56c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="#fff" d="M182.29 166.53c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M182.29 166.53c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M185.17 164.94c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M185.17 164.94c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M188.33 163.98c0-.55.48-.99 1.06-.99.58 0 1.05.44 1.05 1 0 .54-.47 1-1.05 1-.58 0-1.06-.46-1.06-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M188.33 163.98c0-.55.48-.99 1.06-.99.58 0 1.05.44 1.05 1 0 .54-.47 1-1.05 1-.58 0-1.06-.46-1.06-1z"/><path fill="#fff" d="M191.63 163.42c0-.55.48-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M191.63 163.42c0-.55.48-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M194.87 163.47c0-.55.46-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.59 0-1.05-.44-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M194.87 163.47c0-.55.46-1 1.05-1 .58 0 1.05.45 1.05 1 0 .56-.47 1-1.05 1-.59 0-1.05-.44-1.05-1z"/><path fill="#fff" d="M198.22 164.04c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M198.22 164.04c0-.55.47-1 1.05-1 .59 0 1.06.45 1.06 1s-.47 1-1.06 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#fff" d="M201.33 165.11c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1"/><path fill="none" stroke="#000" stroke-width=".4" d="M201.33 165.11c0-.55.47-1 1.05-1 .58 0 1.05.45 1.05 1s-.47 1-1.05 1c-.58 0-1.05-.45-1.05-1z"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M174.65 228.88h-.89v-.9h-1.55v3.56h1.55v2.44h-3.33v7.1h1.78v14.2h-3.55v7.31h27.28v-7.32h-3.55v-14.2h1.78v-7.1h-3.33v-2.43h1.55v-3.55h-1.55v.89h-.88v-.9h-1.56v.9h-1.1v-.9h-1.56v3.56h1.55v2.44h-3.33v-7.77h1.78v-3.55h-1.78v.9h-.88v-.9h-1.56v.9h-.88v-.9h-1.78v3.56h1.78v7.76h-3.33v-2.44h1.55v-3.55h-1.55v.89h-.9v-.9h-1.76v.9zm-6 33.71h27.3m-27.3-1.77h27.3m-27.3-1.78h27.3m-27.3-1.77h27.3m-27.3-2h27.3m-23.74-1.55h20.18m-20.18-1.78h20.18m-20.18-2h20.18m-20.18-1.77h20.18m-20.18-1.77h20.18m-20.18-1.78h20.18m-20.18-1.77h20.18m-21.96-1.78h23.74m-23.74-1.77h23.74m-23.74-1.78h23.74m-23.74-1.77h23.74m-20.41-1.78h17.08m-10.2-1.77h3.32m-3.32-1.78h3.32m-3.32-1.77h3.32m-3.32-1.77h3.32m-5.1-2.22h6.88m-11.98 7.54h3.55m-5.1-2.22h6.65m-6.65 32.6v-1.77m0-1.77v-1.78m-1.78 1.78v1.77m3.33 0v-1.77m1.77 3.55v-1.78m0-1.77v-1.78m0-2v-1.55m0-1.77v-2m-1.77 7.32v-2m-3.33 2v-2m6.88 0v2m1.55-2v-1.55m-5.1-1.78v1.78m3.55-1.78v1.78m3.33-1.78v1.78m-1.78-1.78v-2m1.78-1.77v1.78m0-5.33v1.77m-1.78-3.55v1.78m1.78-3.55v1.77m-3.33-1.77v1.77m-3.55-1.77v1.77m-1.56-3.55v1.78m3.33-1.77v1.77m3.33-1.77v1.77m1.77-3.55v1.78m-3.32-1.78v1.78m-3.55-1.77v1.77m-1.56-3.55v1.78m6.66-1.78v1.78m-3.33-5.33v1.78m15.3-1.78h-3.54m5.1-2.22h-6.65m6.65 32.61v-1.77m0-1.78v-1.77m1.78 1.77v1.78m-3.33 0v-1.78m-1.78 3.55v-1.77m0-1.78v-1.78m0-2v-1.55m0-1.77v-2m1.78 7.32v-2m3.33 2v-2m-6.88 0v2m-1.55-2v-1.55m5.1-1.77v1.77m-3.55-1.77v1.77m-3.33-1.77v1.77m1.78-1.77v-2m-1.78-1.78v1.78m0-5.33v1.78m1.78-3.55v1.77m-1.78-3.55v1.78m3.33-1.78v1.78m3.55-1.78v1.78m1.55-3.55v1.77m-3.32-1.77v1.78m-3.33-1.78v1.78m-1.78-3.55v1.77m3.33-1.77v1.77m3.55-1.77v1.77m1.55-3.54v1.77m-6.65-1.77v1.77m3.33-5.32v1.77m-6.88 17.97v-2m0-5.32v-1.78m0 5.33v-1.76m0-5.32v-1.78m0-1.77v-1.78m0-3.55v-1.77m0-1.78v-1.77m-8.43 4.66h3.55m3.33-5.33h3.32m3.33 5.33h3.55"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M186.85 262.6v-4.67c0-.88-.45-3.54-4.66-3.54-4 0-4.44 2.66-4.44 3.55v4.65h9.1z"/><path fill="#c8b100" stroke="#000" stroke-width=".4" d="M179.3 258.16l-2.21-.22c0-.9.22-2.22.88-2.67l2 1.56c-.22.22-.66.88-.66 1.33zm6 0l2.21-.22c0-.9-.22-2.22-.88-2.67l-2 1.56c.22.22.66.88.66 1.33zm-2.22-2.22l1.1-2a5.31 5.31 0 0 0-2-.44c-.43 0-1.32.22-1.77.44l1.11 2h1.56zm-4.22-5.55v-4.88c0-1.33-.88-2.44-2.44-2.44s-2.44 1.11-2.44 2.44v4.88h4.88zm6.88 0v-4.88c0-1.33.89-2.44 2.44-2.44 1.55 0 2.44 1.11 2.44 2.44v4.88h-4.88zm-1.78-11.98l.45-4.43h-4.22l.23 4.43h3.55zm3.33 0l-.44-4.43h4.43l-.44 4.43h-3.55zm-9.98 0l.22-4.43h-4.21l.44 4.43h3.55z"/><path fill="#0039f0" d="M185.3 262.6v-4c0-.67-.45-2.66-3.11-2.66-2.44 0-2.89 2-2.89 2.66v4h6zm-6.88-12.65v-4.22c0-1.1-.67-2.21-2-2.21s-2 1.1-2 2.21v4.22h4zm7.76 0v-4.22c0-1.1.67-2.21 2-2.21s2 1.1 2 2.21v4.22h-4z"/><path fill="#ad1519" d="M190.8 269.77c0-9.7 7-17.56 15.61-17.56 8.62 0 15.61 7.86 15.61 17.56s-6.99 17.56-15.6 17.56c-8.63 0-15.61-7.87-15.61-17.56"/><path fill="none" stroke="#000" stroke-width=".6" d="M190.8 269.77c0-9.7 7-17.56 15.61-17.56 8.62 0 15.61 7.86 15.61 17.56s-6.99 17.56-15.6 17.56c-8.63 0-15.61-7.87-15.61-17.56z"/><path fill="#005bbf" d="M195.44 269.73c0-7.11 4.91-12.87 10.98-12.87 6.06 0 10.98 5.76 10.98 12.87 0 7.12-4.92 12.88-10.98 12.88-6.07 0-10.98-5.76-10.98-12.88"/><path fill="none" stroke="#000" stroke-width=".6" d="M195.44 269.73c0-7.11 4.91-12.87 10.98-12.87 6.06 0 10.98 5.76 10.98 12.87 0 7.12-4.92 12.88-10.98 12.88-6.07 0-10.98-5.76-10.98-12.88z"/><path fill="#c8b100" d="M201.23 260.87s-1.3 1.43-1.3 2.75c0 1.33.55 2.43.55 2.43-.2-.52-.73-.9-1.36-.9-.79 0-1.43.6-1.43 1.36 0 .22.13.56.23.75l.47.94c.15-.35.52-.54.94-.54.57 0 1.03.43 1.03.97a.88.88 0 0 1-.03.24h-1.17v1h1.04l-.77 1.54 1.03-.4.77.87.8-.87 1.03.4-.77-1.54h1.05v-1h-1.18a.88.88 0 0 1-.02-.24 1 1 0 0 1 1.02-.97c.42 0 .79.2.95.54l.46-.94c.1-.19.24-.53.24-.75a1.4 1.4 0 0 0-1.44-1.36c-.63 0-1.16.38-1.35.9 0 0 .54-1.1.54-2.43 0-1.32-1.33-2.75-1.33-2.75"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".3" d="M201.23 260.87s-1.3 1.43-1.3 2.75c0 1.33.55 2.43.55 2.43-.2-.52-.73-.9-1.36-.9-.79 0-1.43.6-1.43 1.36 0 .22.13.56.23.75l.47.94c.15-.35.52-.54.94-.54.57 0 1.03.43 1.03.97a.88.88 0 0 1-.03.24h-1.17v1h1.04l-.77 1.54 1.03-.4.77.87.8-.87 1.03.4-.77-1.54h1.05v-1h-1.18a.88.88 0 0 1-.02-.24 1 1 0 0 1 1.02-.97c.42 0 .79.2.95.54l.46-.94c.1-.19.24-.53.24-.75a1.4 1.4 0 0 0-1.44-1.36c-.63 0-1.16.38-1.35.9 0 0 .54-1.1.54-2.43 0-1.32-1.33-2.75-1.33-2.75z"/><path fill="#c8b100" d="M199.16 269.87h4.18v-1h-4.18v1z"/><path fill="none" stroke="#000" stroke-width=".3" d="M199.16 269.87h4.18v-1h-4.18v1z"/><path fill="#c8b100" d="M211.44 260.87s-1.3 1.43-1.3 2.75c0 1.33.54 2.43.54 2.43-.2-.52-.72-.9-1.35-.9-.8 0-1.44.6-1.44 1.36 0 .22.14.56.24.75l.46.94c.16-.35.52-.54.95-.54a1 1 0 0 1 1.02.97.89.89 0 0 1-.02.24h-1.17v1h1.04l-.78 1.54 1.03-.4.78.87.8-.87 1.03.4-.78-1.54h1.05v-1h-1.17a.84.84 0 0 1-.03-.24 1 1 0 0 1 1.02-.97c.43 0 .8.2.95.54l.46-.94c.1-.19.24-.53.24-.75a1.4 1.4 0 0 0-1.44-1.36c-.62 0-1.16.38-1.35.9 0 0 .55-1.1.55-2.43 0-1.32-1.33-2.75-1.33-2.75"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".3" d="M211.44 260.87s-1.3 1.43-1.3 2.75c0 1.33.54 2.43.54 2.43-.2-.52-.72-.9-1.35-.9-.8 0-1.44.6-1.44 1.36 0 .22.14.56.24.75l.46.94c.16-.35.52-.54.95-.54a1 1 0 0 1 1.02.97.89.89 0 0 1-.02.24h-1.17v1h1.04l-.78 1.54 1.03-.4.78.87.8-.87 1.03.4-.78-1.54h1.05v-1h-1.17a.84.84 0 0 1-.03-.24 1 1 0 0 1 1.02-.97c.43 0 .8.2.95.54l.46-.94c.1-.19.24-.53.24-.75a1.4 1.4 0 0 0-1.44-1.36c-.62 0-1.16.38-1.35.9 0 0 .55-1.1.55-2.43 0-1.32-1.33-2.75-1.33-2.75z"/><path fill="#c8b100" d="M209.36 269.87h4.18v-1h-4.18v1z"/><path fill="none" stroke="#000" stroke-width=".3" d="M209.36 269.87h4.18v-1h-4.18v1z"/><path fill="#c8b100" d="M206.33 269.65s-1.3 1.42-1.3 2.75.55 2.43.55 2.43c-.2-.52-.73-.9-1.36-.9-.79 0-1.43.6-1.43 1.36 0 .22.13.56.23.74l.47.95c.16-.35.52-.55.94-.55a1 1 0 0 1 1.03.98.86.86 0 0 1-.03.24h-1.17v1h1.05l-.78 1.54 1.02-.4.78.87.8-.88 1.04.41-.78-1.54h1.04v-1h-1.17a.9.9 0 0 1-.03-.24 1 1 0 0 1 1.03-.98c.42 0 .78.2.94.55l.47-.95c.1-.18.24-.52.24-.74a1.4 1.4 0 0 0-1.44-1.36c-.63 0-1.15.38-1.36.9 0 0 .55-1.1.55-2.43 0-1.32-1.33-2.75-1.33-2.75"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".3" d="M206.33 269.65s-1.3 1.42-1.3 2.75.55 2.43.55 2.43c-.2-.52-.73-.9-1.36-.9-.79 0-1.43.6-1.43 1.36 0 .22.13.56.23.74l.47.95c.16-.35.52-.55.94-.55a1 1 0 0 1 1.03.98.86.86 0 0 1-.03.24h-1.17v1h1.05l-.78 1.54 1.02-.4.78.87.8-.88 1.04.41-.78-1.54h1.04v-1h-1.17a.9.9 0 0 1-.03-.24 1 1 0 0 1 1.03-.98c.42 0 .78.2.94.55l.47-.95c.1-.18.24-.52.24-.74a1.4 1.4 0 0 0-1.44-1.36c-.63 0-1.15.38-1.36.9 0 0 .55-1.1.55-2.43 0-1.32-1.33-2.75-1.33-2.75z"/><path fill="#c8b100" d="M204.26 278.65h4.18v-1h-4.18v1z"/><path fill="none" stroke="#000" stroke-width=".3" d="M204.26 278.65h4.18v-1h-4.18v1z"/><path fill="#c8b100" d="M237.57 223.4l-.28.02a1.48 1.48 0 0 1-.26.34c-.24.23-.61.26-.82.06a.47.47 0 0 1-.14-.39.5.5 0 0 1-.49 0c-.24-.15-.3-.49-.13-.77.03-.06.06-.13.1-.17l-.01-.3-.34.07-.1.18c-.2.24-.51.3-.67.16a.56.56 0 0 1-.12-.25s-.08.08-.17.1c-.51.13-.72-1-.73-1.3l-.17.24s.15.68.08 1.25c-.08.57-.28 1.15-.28 1.15.71.18 1.79.76 2.85 1.58 1.07.82 1.9 1.7 2.25 2.33 0 0 .55-.31 1.13-.5.58-.18 1.3-.19 1.3-.19l.22-.2c-.31.04-1.52.1-1.5-.41 0-.08.07-.17.08-.17a.67.67 0 0 1-.3-.07c-.17-.12-.16-.41.03-.66l.17-.12.01-.33-.33.05c-.02.04-.1.09-.14.13-.26.22-.62.23-.83.03a.42.42 0 0 1-.1-.45.55.55 0 0 1-.44-.04c-.25-.15-.3-.5-.1-.78.09-.13.26-.29.3-.3l-.07-.3"/><path fill="none" stroke="#000" stroke-width=".3" d="M237.57 223.4l-.28.02a1.48 1.48 0 0 1-.26.34c-.24.23-.61.26-.82.06a.47.47 0 0 1-.14-.39.5.5 0 0 1-.49 0c-.24-.15-.3-.49-.13-.77.03-.06.06-.13.1-.17l-.01-.3-.34.07-.1.18c-.2.24-.51.3-.67.16a.56.56 0 0 1-.12-.25s-.08.08-.17.1c-.51.13-.72-1-.73-1.3l-.17.24s.15.68.08 1.25c-.08.57-.28 1.15-.28 1.15.71.18 1.79.76 2.85 1.58 1.07.82 1.9 1.7 2.25 2.33 0 0 .55-.31 1.13-.5.58-.18 1.3-.19 1.3-.19l.22-.2c-.31.04-1.52.1-1.5-.41 0-.08.07-.17.08-.17a.67.67 0 0 1-.3-.07c-.17-.12-.16-.41.03-.66l.17-.12.01-.33-.33.05c-.02.04-.1.09-.14.13-.26.22-.62.23-.83.03a.42.42 0 0 1-.1-.45.55.55 0 0 1-.44-.04c-.25-.15-.3-.5-.1-.78.09-.13.26-.29.3-.3l-.07-.3z"/><path d="M235.4 224.06c.05-.06.15-.06.23 0 .07.06.1.15.05.2-.05.06-.15.06-.22 0-.08-.05-.1-.15-.05-.2"/><path fill="none" d="M235.4 224.06c.05-.06.15-.06.23 0 .07.06.1.15.05.2-.05.06-.15.06-.22 0-.08-.05-.1-.15-.05-.2z"/><path d="M236.32 224.82l-.32-.24c-.05-.04-.07-.11-.04-.15.04-.04.12-.04.17 0l.32.25.32.24c.05.04.07.1.04.15-.04.04-.12.04-.18 0l-.31-.25"/><path fill="none" d="M236.32 224.82l-.32-.24c-.05-.04-.07-.11-.04-.15.04-.04.12-.04.17 0l.32.25.32.24c.05.04.07.1.04.15-.04.04-.12.04-.18 0l-.31-.25"/><path d="M234.64 223.68l-.25-.15c-.06-.03-.09-.1-.06-.15.03-.05.1-.06.16-.02l.25.14.25.15c.06.03.1.1.07.16-.03.04-.1.05-.17.01l-.25-.14"/><path fill="none" d="M234.64 223.68l-.25-.15c-.06-.03-.09-.1-.06-.15.03-.05.1-.06.16-.02l.25.14.25.15c.06.03.1.1.07.16-.03.04-.1.05-.17.01l-.25-.14"/><path d="M233.65 223c.05-.05.15-.05.23 0 .07.06.1.15.05.2-.05.06-.15.06-.23 0-.07-.06-.1-.15-.05-.2"/><path fill="none" d="M233.65 223c.05-.05.15-.05.23 0 .07.06.1.15.05.2-.05.06-.15.06-.23 0-.07-.06-.1-.15-.05-.2z"/><path d="M237.32 225.53c.05-.06.03-.15-.05-.2-.07-.07-.17-.07-.22 0-.04.04-.02.14.05.2.08.06.18.06.23 0"/><path fill="none" d="M237.32 225.53c.05-.06.03-.15-.05-.2-.07-.07-.17-.07-.22 0-.04.04-.02.14.05.2.08.06.18.06.23 0z"/><path d="M237.88 226.16l.2.2c.05.04.13.06.17.02.05-.03.04-.1 0-.15l-.2-.2-.22-.2c-.05-.05-.13-.06-.17-.03-.05.03-.04.11.01.16l.2.2"/><path fill="none" d="M237.88 226.16l.2.2c.05.04.13.06.17.02.05-.03.04-.1 0-.15l-.2-.2-.22-.2c-.05-.05-.13-.06-.17-.03-.05.03-.04.11.01.16l.2.2"/><path d="M238.78 226.94c.05-.06.03-.15-.05-.21-.07-.06-.17-.06-.22 0-.05.05-.02.14.05.2.08.06.18.06.22 0"/><path fill="none" d="M238.78 226.94c.05-.06.03-.15-.05-.21-.07-.06-.17-.06-.22 0-.05.05-.02.14.05.2.08.06.18.06.22 0z"/><path fill="#c8b100" d="M236.15 221.14l-.57.02-.11.83.06.14.14-.01.73-.5-.26-.48"/><path fill="none" stroke="#000" stroke-width=".3" d="M236.15 221.14l-.57.02-.11.83.06.14.14-.01.73-.5-.26-.48"/><path fill="#c8b100" d="M234.6 221.6v.53l.88.1.13-.05v-.15l-.52-.68-.48.25"/><path fill="none" stroke="#000" stroke-width=".3" d="M234.6 221.6v.53l.88.1.13-.05v-.15l-.52-.68-.48.25"/><path fill="#c8b100" d="M236.43 222.64l-.47.27-.52-.7v-.13l.13-.06.89.1-.03.52"/><path fill="none" stroke="#000" stroke-width=".3" d="M236.43 222.64l-.47.27-.52-.7v-.13l.13-.06.89.1-.03.52"/><path fill="#c8b100" d="M235.29 222a.28.28 0 0 1 .38-.09.25.25 0 0 1 .1.36.29.29 0 0 1-.39.09.26.26 0 0 1-.09-.36"/><path fill="none" stroke="#000" stroke-width=".3" d="M235.29 222a.28.28 0 0 1 .38-.09.25.25 0 0 1 .1.36.29.29 0 0 1-.39.09.26.26 0 0 1-.09-.36z"/><path fill="#c8b100" d="M233.23 221.14c-.02 0-.13-.44-.25-.69-.08-.17-.38-.4-.38-.4.03-.06.4-.2.84.08.36.3-.03.83-.03.83s-.1.13-.18.18"/><path fill="none" stroke="#000" stroke-width=".3" d="M233.23 221.14c-.02 0-.13-.44-.25-.69-.08-.17-.38-.4-.38-.4.03-.06.4-.2.84.08.36.3-.03.83-.03.83s-.1.13-.18.18z"/><path fill="#c8b100" d="M234.22 221.44l-.4.35-.66-.57.06-.08.02-.14.89-.07.09.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M234.22 221.44l-.4.35-.66-.57.06-.08.02-.14.89-.07.09.5"/><path fill="#c8b100" d="M233.1 221.08c.06-.14.18-.23.28-.2.1.04.14.18.1.32-.05.15-.18.23-.28.2-.1-.04-.14-.18-.1-.32"/><path fill="none" stroke="#000" stroke-width=".3" d="M233.1 221.08c.06-.14.18-.23.28-.2.1.04.14.18.1.32-.05.15-.18.23-.28.2-.1-.04-.14-.18-.1-.32z"/><path fill="#c8b100" d="M238.32 222.5l-.56-.06-.24.81.04.14h.15l.8-.38-.19-.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M238.32 222.5l-.56-.06-.24.81.04.14h.15l.8-.38-.19-.5"/><path fill="#c8b100" d="M236.73 222.75l-.1.52.86.22.15-.04v-.14l-.4-.75-.51.2"/><path fill="none" stroke="#000" stroke-width=".3" d="M236.73 222.75l-.1.52.86.22.15-.04v-.14l-.4-.75-.51.2"/><path fill="#c8b100" d="M238.38 224.02l-.5.2-.41-.75v-.14l.15-.04.86.23-.1.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M238.38 224.02l-.5.2-.41-.75v-.14l.15-.04.86.23-.1.5"/><path fill="#c8b100" d="M237.35 223.24c.09-.12.27-.13.38-.04a.25.25 0 0 1 .05.36.29.29 0 0 1-.4.04.25.25 0 0 1-.03-.36"/><path fill="none" stroke="#000" stroke-width=".3" d="M237.35 223.24c.09-.12.27-.13.38-.04a.25.25 0 0 1 .05.36.29.29 0 0 1-.4.04.25.25 0 0 1-.03-.36z"/><path fill="#c8b100" d="M240.22 224.26l.1.54-.84.28-.14-.03-.02-.14.35-.78.55.13"/><path fill="none" stroke="#000" stroke-width=".3" d="M240.22 224.26l.1.54-.84.28-.14-.03-.02-.14.35-.78.55.13"/><path fill="#c8b100" d="M240.07 225.8l-.54.11-.3-.8.04-.13.15-.02.81.33-.16.5"/><path fill="none" stroke="#000" stroke-width=".3" d="M240.07 225.8l-.54.11-.3-.8.04-.13.15-.02.81.33-.16.5"/><path fill="#c8b100" d="M238.61 224.31l-.17.5.82.33.15-.02.03-.14-.3-.8-.53.13"/><path fill="none" stroke="#000" stroke-width=".3" d="M238.61 224.31l-.17.5.82.33.15-.02.03-.14-.3-.8-.53.13"/><path fill="#c8b100" d="M239.52 225.24a.26.26 0 0 0 .01-.37.3.3 0 0 0-.4-.02.26.26 0 0 0 0 .38.29.29 0 0 0 .39.01"/><path fill="none" stroke="#000" stroke-width=".3" d="M239.52 225.24a.26.26 0 0 0 .01-.37.3.3 0 0 0-.4-.02.26.26 0 0 0 0 .38.29.29 0 0 0 .39.01z"/><path fill="#c8b100" d="M240.84 226.97c0 .02.48.03.75.09.2.04.5.26.5.26.06-.04.12-.4-.26-.75-.38-.27-.85.2-.85.2s-.12.11-.14.2"/><path fill="none" stroke="#000" stroke-width=".3" d="M240.84 226.97c0 .02.48.03.75.09.2.04.5.26.5.26.06-.04.12-.4-.26-.75-.38-.27-.85.2-.85.2s-.12.11-.14.2z"/><path fill="#c8b100" d="M240.32 226.11l-.28.45.73.5.09-.09.12-.04-.11-.84-.55.02"/><path fill="none" stroke="#000" stroke-width=".3" d="M240.32 226.11l-.28.45.73.5.09-.09.12-.04-.11-.84-.55.02"/><path fill="#c8b100" d="M240.92 227.07c.13-.07.2-.2.14-.3-.06-.08-.2-.1-.34-.02s-.2.2-.14.3c.05.09.2.1.34.02"/><path fill="none" stroke="#000" stroke-width=".3" d="M240.92 227.07c.13-.07.2-.2.14-.3-.06-.08-.2-.1-.34-.02s-.2.2-.14.3c.05.09.2.1.34.02zM279.09 205.1v.55h-2.44v-.55h.9v-1.26h-.6v-.56h.6v-.54h.59v.55h.58v.56h-.58v1.25h.95"/><path fill="none" d="M134.42 217.1v-1.21M134.09 217.1v-1.21M133.78 217.1v-1.21m-.31 1.21v-1.21M133.19 217.1v-1.21"/><path fill="none" stroke="#000" stroke-width=".1" d="M132.66 217.04v-1.11m.25 1.12v-1.16M132.18 216.99v-1.02m.24 1.05v-1.09M131.53 216.93v-.9m.21.91V216m.22.97V216M131.3 216.92v-.86M131.09 216.88v-.81M130.86 216.86v-.75M130.4 216.8l-.02-.6m.25.62v-.67m-.48.59v-.52M129.93 216.7v-.44M129.7 216.64v-.34M129.45 216.61v-.25"/><path fill="none" stroke="#000" stroke-width=".2" d="M129.19 216.55v-.12"/><path fill="none" d="M135.73 217.04v-1.12m-.56 1.15l.01-1.18m-.42 1.2v-1.2M277.78 217.13v-1.22M277.45 217.13v-1.22M277.13 217.13v-1.22m-.3 1.21v-1.21M276.55 217.13v-1.22"/><path fill="none" stroke="#000" stroke-width=".1" d="M276.02 217.06v-1.11m.25 1.12v-1.15M275.54 217.01v-1.02m.24 1.05v-1.09M274.89 216.95v-.9m.21.91v-.94m.22.97v-.97M274.66 216.94v-.86M274.45 216.9v-.81M274.22 216.88v-.75M273.75 216.81v-.6m.24.63v-.67m-.48.59v-.52M273.3 216.72v-.44M273.05 216.66v-.34M272.8 216.63v-.25"/><path fill="none" stroke="#000" stroke-width=".2" d="M272.55 216.57v-.12"/><path fill="none" d="M279.1 217.06v-1.12m-.57 1.15l.01-1.17m-.42 1.19v-1.2"/></symbol><symbol viewBox="0 0 640 480" id="flag-fr"><g fill-rule="evenodd" stroke-width="1pt"><path fill="#fff" d="M0 0h640v480H0z"/><path fill="#00267f" d="M0 0h213.34v480H0z"/><path fill="#f31830" d="M426.66 0H640v480H426.66z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-hr"><path fill="#171796" d="M0 0h640v480H0z"/><path fill="#fff" d="M0 0h640v320H0z"/><path fill="red" d="M0 0h640v160H0z"/><path fill="red" d="M320.03 364.15c51.32 0 93.31-41.99 93.31-93.31V159.96H226.72v110.88c0 51.32 41.99 93.31 93.3 93.31z"/><path fill="#fff" d="M320.03 362.65c50.34 0 91.53-41.19 91.53-91.53V161.76H228.5v109.36c0 50.35 41.19 91.53 91.53 91.53z"/><g fill="red"><path d="M267.13 165.2h-35.22v38.7h35.22zm0 77.4h35.23v-38.7h-35.23zm-35.22 28.31c0 3.51.22 6.98.62 10.39h34.6v-38.7h-35.22v28.31zm105.67-28.31h-35.22v38.7h35.22zm0 77.4h35.23v-38.7h-35.23zm35.23 21.17A89.19 89.19 0 0 0 392.92 320h-20.11v21.17zM267.14 320h35.22v-38.7h-35.22zm-20.15 0a89.17 89.17 0 0 0 20.15 21.2V320h-20.15zm79.12 38.7c3.9-.27 7.73-.8 11.47-1.57V320h-35.22v37.14a87.06 87.06 0 0 0 11.44 1.56c4.1.25 8.2.24 12.3 0z"/><path d="M407.38 281.3c.4-3.42.62-6.9.62-10.43V242.6h-35.2v38.7h34.58zm-69.8-38.7h35.23v-38.7h-35.23zm0-77.4h-35.22v38.7h35.23zM408 203.9v-38.7h-35.19v38.7z"/></g><path fill="#fff" d="M409.97 158.83l21.84-49.51-16.64-26.87-27.57 10.2-19.35-22.12-25.5 14.62L320 66.52l-22.74 18.63-25.5-14.62-19.36 22.13-27.57-10.21-16.64 26.87L230 158.84a217.75 217.75 0 0 1 90-19.37c32.03 0 62.5 6.93 89.97 19.36z"/><path fill="#0093dd" d="M253 94.84l-.03.05-27.34-10.13-15.3 24.7 5.86 13.33 14.85 33.7a219.67 219.67 0 0 1 34.58-11.96L253 94.84z"/><path fill="#fff" stroke="#000" stroke-width=".3" d="M251.44 119.27a13.26 13.26 0 0 1 1.53 6.2c0 7.36-6 13.36-13.36 13.36a13.4 13.4 0 0 1-13.12-10.8 13.45 13.45 0 0 0 11.7 6.84 13.45 13.45 0 0 0 13.25-15.6z"/><path d="M227.59 113.92l.93-4.8-3.68-3.21-.17-.15.22-.08 4.61-1.59.95-4.79.04-.22.17.14 3.69 3.21 4.62-1.58.22-.07-.05.22-.93 4.8 3.68 3.21.17.15-.21.07-4.62 1.6-.95 4.79-.04.22-.17-.15-3.69-3.2-4.62 1.57-.22.08z"/><path fill="#f7db17" d="M233.64 107.59l3.45 3 4.31-1.48zm.03-.15l7.76 1.52-3.43-3zm-8.34-1.63l7.76 1.52-3.44-3.01zm7.73 1.67l-7.76-1.52 3.44 3zm.44-.3l5.2-5.96-4.32 1.48zm-5.58 6.41l5.2-5.96-4.33 1.48zm5.31-5.86l-5.2 5.96 4.32-1.47zm5.59-6.4l-5.2 5.96 4.33-1.49zm-5.62 5.88l-2.57-7.49-.88 4.48zm2.75 8.03l-2.56-7.48-.88 4.5zm-2.41-7.53l2.56 7.48.89-4.47zm-2.76-8.04l2.56 7.49.88-4.5z"/><path fill="#171796" d="M297.5 87.4l-.05.04-25.29-14.49-19.15 21.9 12.6 49.68a219.78 219.78 0 0 1 36.12-6.03l-4.23-51.1z"/><path fill="red" d="M262.49 132.2a232.25 232.25 0 0 1 38.2-6.38l-1.07-12.92a245.55 245.55 0 0 0-40.32 6.74l3.19 12.56zm-6.34-24.97a257.96 257.96 0 0 1 42.4-7.09l-1.05-12.68a270.72 270.72 0 0 0-44.48 7.44l3.13 12.33z"/><g transform="translate(-160) scale(.00237)"><path fill="#0093dd" d="M212105 36890l-23 13-9517-7794-9497 7778 1788 21560c2543-210 5113-322 7709-322 2608 0 5190 113 7744 325l1795-21560z"/><g id="flag-hr-a"><path d="M202545 46585c-18-2-44 10-69 45-186 250-359 469-545 720-195 61-242 180-167 348-261-26-291 193-302 432-250-379-522-482-814-307-11-230-187-338-439-392-180-10-319-65-436-145-60-42-110-64-170-106-126-88-226-5-172 74 267 434 535 868 802 1302-14 80 6 151 88 204 47 133 93 265 140 397-11 38-21 75-32 113-221-105-443-118-664-133-170-8-287-50-361-137-54-63-91-26-92 82-3 534 162 1014 599 1492-231 4-462 11-694 21-79 6-95 39-73 104 126 304 339 579 822 766-208 112-327 285-357 520-9 224-75 382-212 455-60 32-81 65-24 106 253 185 565 193 895 112-157 270-226 553-198 850 208 56 412 15 614-52-29 61-44 175-52 309-7 115-41 229-104 343-32 33-65 84 4 102 336 91 648 52 915-47 0 243 2 487 76 727 18 58 70 102 125 26 155-214 322-396 527-517 31 90 75 168 156 215 96 55 147 170 153 343 0 30-2 60 35 90 149 7 514-380 589-597 206 121 284 246 439 461 55 76 99 29 128-25 62-243 67-481 66-724 267 99 579 138 915 47 69-19 36-70 4-102-62-114-105-250-113-365-9-133-14-226-43-287 202 68 405 108 614 52 29-297-53-579-211-850 330 80 655 73 908-112 57-41 35-74-24-106-136-73-203-231-212-455-30-235-149-409-357-520 483-187 696-463 822-766 22-66 6-99-73-104-231-10-480-24-711-27 437-478 606-961 604-1495-1-108-38-146-92-82-74 87-179 137-348 146-222 15-435 24-656 128-11-38-21-75-32-113 46-132 106-260 153-393 82-53 102-123 88-204 267-434 513-868 781-1302 54-79-46-162-171-74-60 42-110 64-170 106-117 80-257 134-437 145-251 54-417 167-428 397-293-175-564-73-814 307-11-239-41-457-302-432 75-168 17-291-178-352-186-250-458-470-644-720-31-35-51-47-69-45z"/><g fill="#f7db17"><path d="M205075 47978c-51-26-124 17-162 95s-33 170 19 196c40 20 84-6 119-56l22-36c2-3 4-6 5-9 38-78 49-163-2-188zm-5008 0c52-26 124 17 162 95s39 165-13 191-103-24-141-102-60-158-9-184zm4539 905c-32 0-59 27-59 59s26 59 59 59 59-26 59-59c0-32-26-59-59-59zm-4032 0c-32 0-59 26-59 59 0 32 26 59 59 59s59-26 59-59-26-59-59-59zm4294-304c-754-91-1506-133-2260-133s-1509 41-2269 115c-26 8-21 90 14 86 756-73 1507-113 2256-113 743 0 1485 40 2228 129 39 4 54-80 32-84z"/><path d="M200319 48495c768-75 1530-117 2289-116 754 0 1507 42 2261 133l111-184c-32 10-62 9-90-5-76-38-92-161-36-274 56-114 164-175 240-138 39 19 62 62 68 114l446-739c-204 130-328 214-581 252-281 41-409 139-368 307 38 156-57 133-201 54-314-171-541 71-652 353-73 186-159 181-168-13-4-70 0-131-7-200-21-223-89-286-216-224-161 78-175 25-137-58 28-60 86-128 66-221-9-67-66-92-151-98-182-244-467-483-649-727-182 244-374 483-556 727-86 5-142 30-152 98-20 93 52 157 80 217 38 82 23 135-137 57-127-61-186-3-207 220-7 69-10 139-13 209-9 194-95 199-168 13-111-282-352-524-667-353-145 79-203 102-182-54 23-172-107-266-388-307-253-37-377-122-581-252l419 682c12-25 29-45 53-57 76-38 184 24 240 138 56 113 40 237-36 274-10 5-21 8-32 10l100 163zm4389 911c-7 3-7 4-24 11-46 19-80 66-134 124-57 60-128 125-211 188-12 10-25 19-44-6s-7-35 6-44c80-62 149-124 204-182 30-32 56-63 77-92-95-11-190-21-284-30-79 24-157 55-222 95-59 35-107 77-137 125-8 14-16 27-44 11-27-16-19-30-11-44 35-58 91-107 158-147 33-20 69-38 106-54-107-9-214-18-321-25-22 13-42 29-61 47-20 19-39 42-56 67-9 13-18 26-44 8s-18-31-8-44c19-29 41-54 64-77l9-9c-80-5-161-10-241-14-2 2-5 5-8 7-21 18-40 38-55 59s-28 43-38 67c-6 15-12 29-41 18-29-12-23-26-17-41 12-29 27-55 45-81 8-11 18-22 27-33-115-5-230-9-344-12-4 5-9 8-14 11-25 15-47 32-66 51s-35 40-48 63c-8 14-16 28-43 12-28-16-20-29-12-43 16-28 35-54 59-77 7-7 14-13 21-19-122-2-244-4-365-4-120 0-240 1-360 3 8 7 15 13 22 20 23 23 42 49 59 77 8 14 16 27-12 43s-35 2-44-12c-13-23-29-44-48-63s-41-36-66-51c-6-3-12-7-15-12-115 2-230 6-345 11 11 11 20 23 29 35 19 25 33 52 45 81 6 15 12 29-17 41s-35-3-41-18c-9-24-22-46-38-67-15-21-34-41-55-59-4-3-7-6-10-10-81 4-162 8-243 13 4 4 9 8 13 12 24 23 45 48 64 77 9 13 18 26-8 44s-35 5-44-8c-18-26-36-48-56-67s-41-35-64-49c-1-1-3-2-5-3-110 7-220 14-330 23 43 18 85 38 122 61 67 40 124 89 158 147 8 14 16 27-11 44-27 16-35 3-44-11-29-48-78-90-137-125-72-44-159-77-246-102h-2c-90 7-179 15-268 24 22 33 51 68 86 106 55 58 124 120 204 182 13 9 25 19 6 44s-32 15-44 6c-83-64-155-128-211-188-37-38-99-111-135-140-196-90-354-127-575-147-153-14-318-9-458-79 36 85 75 164 126 229 53 68 120 121 209 147 8 2 21 16 22 25 28 157 84 286 169 386 52 60 114 110 188 149-75-81-132-166-172-251-67-142-90-286-77-420 1-16 3-32 34-29 32 3 30 19 29 35-11 123 9 256 72 387 56 118 159 237 291 346 24 19 0 63-29 55-154-44-290-123-383-231-89-104-149-237-180-397-94-32-165-90-222-164-47-60-85-131-118-205 28 428 182 801 456 1137 61 75 165 182 255 216 92 35 95 100-20 101-34 1-69 1-105 1 84 31 164 66 233 105 127 73 217 162 224 273 1 16 2 32-29 34-32 2-33-14-34-29-6-86-82-160-192-223-113-65-259-117-402-160-154 0-312-1-459 3 39 28 80 57 131 84 82 44 188 86 343 122 89 21 166 52 233 91 71 42 130 93 177 150 10 12 20 25-5 45s-34 8-45-5c-42-52-95-98-159-135-61-36-133-64-216-84-161-38-272-81-358-128-75-40-131-82-184-123 180 393 450 573 835 689 23 7 43 13 61 19 3 1 6 1 9 2 86 21 175 40 266 55 92 15 166 28 261 37 16 1 32 3 29 34-3 32-19 30-34 29-99-9-174-22-266-38-58-10-115-21-171-33-26 6-64 9-107 12-232 14-420 225-435 494 0 5 0 11-1 16 88-80 179-157 273-212 117-68 239-103 364-69 15 4 31 8 22 39-8 31-23 27-39 22-106-28-212 3-316 63-108 63-213 158-315 253-24 147-82 285-205 377 61 34 104 65 163 45 86-39 172-78 261-108 91-31 184-52 282-57 16-1 32-1 33 31s-14 32-31 33c-91 4-179 24-264 53-75 26-149 58-222 91 221 47 460-1 667-79 60-22 105-42 133-41 51-30 112-53 172-79 66-28 132-51 182-57 16-2 32-4 35 28 4 32-12 33-28 35-112 13-127 21-222 79 0 21-66 57-126 96-36 24-70 52-87 67-95 86-144 181-188 287-29 70-52 145-68 224 55-108 121-211 201-303 94-108 208-201 345-265 14-7 29-13 42 15 13 29-1 35-15 42-129 60-236 147-324 250-90 103-161 222-219 345-31 64-8 1-42 86 110-122 212-224 323-307 132-100 283-157 418-133 15 3 31 6 26 37s-21 28-37 26c-116-21-250 32-369 121-121 92-244 223-366 361 184 26 366-26 542-85 91-30 183-135 239-152 19-24 38-46 57-67 33-37 67-71 102-100 12-10 24-20 45 4s8 34-4 45c-33 28-65 60-96 94-32 35-62 73-92 113-6 8-13 17-24 16-60 70-151 162-172 240-57 210-25 370-122 576 71-38 128-81 175-134 53-60 94-135 128-230 37-104 95-195 167-270 75-77 165-136 261-172 15-5 30-11 41 19s-4 35-19 41c-87 32-169 86-238 157-66 68-119 151-153 247-37 102-81 183-141 250-44 50-95 91-156 127 52-3 78-10 121-7 79-6 211-66 279-119 66-51 116-120 154-206 6-15 13-29 42-16s23 27 16 42c-42 96-99 174-173 231-56 43-121 75-196 93 161-5 311-42 467-100 65-24 87-168 127-208 32-58 66-112 105-158 47-56 101-101 164-127 15-6 29-12 41 18 12 29-3 35-17 41-52 21-98 60-139 108-36 42-68 93-98 147 10 73-51 228-53 305-7 205-2 409 53 612 53-71 107-134 162-192 0-5 0-10 1-15 18-106 33-219 40-332 7-112 7-223-6-329-2-16-4-32 27-35 32-4 34 12 35 28 14 111 14 226 7 340-6 90-16 180-30 269 54-51 53-51 77-103 37-80 59-159 67-237 9-80 5-157-13-230-4-15-7-31 24-38s35 8 38 24c19 80 25 165 14 252-8 65-24 132-49 199 56-42 114-82 178-122-4-75-5-153-3-227 2-68 7-134 18-190 4-20 7-40 47-33s37 27 33 48c-9 50-14 111-16 177-2 78 0 162 4 243 5 82 49 185 125 230 103 62 158 163 186 274 16-145 17-280 3-400-17-143-55-267-114-368-8-14-16-27 12-44 27-16 35-2 43 12 63 110 104 241 122 393 17 146 13 310-13 488 102-82 381-258 352-594-7-27-16-52-28-75-7-14-14-28 14-42s35 0 42 14c17 33 30 69 39 110 5 24 8 49 11 76 13-7 45-43 51-39 24 16 58 38 80 54-21-60-35-120-42-178-10-87-5-172 14-252 4-15 7-31 38-24s27 23 24 38c-18 73-22 151-13 230 9 77 31 157 67 237 4 8 8 16 5 25 24 21 47 42 70 65-13-84-22-170-28-255-8-115-7-230 7-341 2-16 4-32 35-28s29 20 27 35c-13 106-13 217-6 329 7 113 22 225 40 332 1 2 1 5 1 7 54 59 95 120 152 196 55-203 73-407 66-612-2-76-69-227-65-302-30-55-63-107-100-151-41-49-87-87-139-108-15-6-29-12-18-41 12-29 27-24 41-18 62 26 117 71 164 127 38 45 72 98 103 154 57 7 78 179 143 212 154 57 298 94 453 100-75-19-140-50-195-93-74-57-131-135-173-231-6-15-13-29 16-42s35 2 42 16c38 86 88 156 154 206 85 66 289 124 400 127-61-37-113-78-157-128-59-67-104-148-141-250-34-95-87-179-153-247-68-71-150-124-238-157-15-6-29-11-19-41 11-29 26-24 41-19 96 36 186 94 261 172 72 74 130 166 167 270 34 95 75 169 128 230 47 54 105 98 177 135-98-207-66-367-122-577-35-129-232-277-193-320 45-51 133 88 248 127 175 59 357 111 540 85-122-138-244-269-366-361-119-90-237-140-352-120-16 3-31 6-37-26-5-31 10-34 26-37 135-24 269 32 401 132 111 84 201 175 311 298-18-47 0-14-30-77-59-123-130-241-220-345-89-102-196-189-324-250-14-7-28-13-15-42 13-28 28-22 42-15 137 65 251 157 345 265 81 93 147 198 203 307-15-81-39-157-68-227-44-106-93-201-188-287-62-56-209-140-208-179-29-15-33-11-63-24-61-26-121-46-164-52-16-2-32-4-28-35 4-32 19-30 35-28 50 6 115 28 182 56 33 14 66 43 98 60 53 4 139 47 208 74 206 78 446 126 666 79-73-33-147-65-223-91-85-29-172-49-264-53-16-1-32-1-31-33s17-31 33-31c98 4 191 26 282 57 89 30 175 69 261 108 59 27 101-7 163-45-123-92-181-230-205-376l-2-2c-102-95-207-190-315-253-104-60-210-91-316-63-15 4-31 8-39-22-8-31 7-35 22-39 125-33 247 1 364 69 94 55 186 132 274 213 0-6-1-11-1-17-15-270-203-480-435-494-78-5-189 21-186-32 4-59 97-44 234-86 385-116 655-296 836-690-54 41-110 83-186 124-86 47-198 91-358 128-82 19-154 48-216 84-64 38-117 84-159 135-10 12-20 25-45 5s-14-32-5-45c47-57 106-108 177-150 67-39 145-70 233-91 155-36 261-78 343-122 51-27 92-55 131-84-148-4-305-3-459-3-143 44-289 96-402 160-110 63-186 136-192 223-1 16-2 32-34 29-32-2-31-18-29-34 8-111 97-200 224-273 69-39 149-74 233-105-35 0-70 0-104-1-116-2-112-66-20-101 90-34 190-141 251-216 271-334 412-714 456-1130-33 72-69 140-115 198-57 73-128 131-222 164-31 160-91 293-180 397-92 108-216 185-369 230-29 8-52-35-29-55 132-109 221-226 278-344 62-131 83-264 72-387-1-16-3-32 29-35 31-3 33 13 34 29 12 134-10 278-78 420-40 85-97 170-172 251 73-39 136-89 187-149 85-100 141-229 170-386 1-8 14-22 22-25 89-27 155-79 209-147 51-65 90-143 126-228-140 69-304 64-457 78-213 19-369 68-554 152z"/><path d="M204649 49231c-680-88-1359-113-2041-114-684 0-1369 40-2058 112-20 6-15 33-14 46 2 28 37 35 121 27 643-60 1285-93 1932-93 674 0 1351 21 2038 102 33 9 77-85 22-81z"/><path fill-rule="evenodd" d="M200570 49160c683-71 1362-110 2038-110 675 0 1349 40 2025 127l31-127c-17 9-37 15-58 15-67 0-123-55-123-123s55-123 123-123c51 0 94 31 113 75l60-170c-724-84-1446-122-2171-122-729 0-1459 38-2193 107l58 164c22-32 59-54 101-54 68 0 123 55 123 123s-55 123-123 123c-12 0-25-2-36-6l33 94-2 7zm3067-416c-68 0-123 55-123 123s55 123 123 123 123-55 123-123-55-123-123-123zm0 64c-33 0-59 27-59 59s26 59 59 59c32 0 59-27 59-59s-26-59-59-59zm-1082-91c-67 0-123 55-123 123s55 123 123 123 123-55 123-123-55-123-123-123zm0 64c-32 0-59 26-59 59s26 59 59 59 59-26 59-59c0-32-26-59-59-59zm-1064-40c-68 0-123 55-123 123s55 123 123 123c67 0 123-55 123-123s-55-123-123-123zm0 64c-33 0-59 26-59 59s26 59 59 59c32 0 59-26 59-59 0-32-26-59-59-59z"/></g><path d="M202601 47974c-14-68-49-129-100-175-51-47-116-78-187-88-33-4-39-58-7-68 60-20 114-67 157-133 45-69 79-157 95-256 5-34 64-35 69-1 15 84 51 153 97 208 55 66 125 112 193 138 31 12 25 63-8 68-59 9-105 42-141 87-50 62-81 145-100 221-8 33-62 31-69-2zm33-118c20-52 47-103 81-146 28-34 60-64 99-84-51-30-100-70-143-120-28-34-53-73-73-116-19 59-45 112-75 158-31 47-67 86-108 116 50 19 95 47 134 82 34 31 63 68 85 110zm799 5115l-515 206c-17 7-35 14-48-21-14-34 4-41 21-48l515-206c17-7 35-14 48 21 14 34-4 41-21 48zm59-326l-604 328c-16 9-33 18-51-15s-1-42 15-51l604-328c16-9 33-18 51 15s1 42-15 51zm-1826-65l604 328c16 9 33 18 15 51s-34 24-51 15l-604-328c-16-9-33-18-15-51s34-24 51-15zm51 322l515 206c18 7 35 14 21 48-14 35-31 28-49 21l-515-206c-17-7-34-14-21-48 14-35 31-28 48-21zm224 434c137 33 261 48 358 31 88-16 155-60 191-146v-493c-107-1-212-15-303-41-109-31-170-98-201-178-41-107-27-235-4-329 5-18 9-36 45-27s32 27 27 45c-20 82-33 194 1 284 23 60 69 110 152 133 91 25 198 38 307 38 107 0 214-13 304-40 82-24 148-69 192-123s65-117 57-176c-5-36-24-62-49-80-34-24-82-35-128-37-47-2-94 7-142 16-25 5-50 9-77 13-19 2-37 5-42-32s14-40 32-42c23-3 48-8 73-12 52-10 105-20 159-18 60 2 121 18 168 51 42 29 72 72 80 131 11 80-16 163-73 233-53 65-131 119-229 147-83 24-178 38-274 42v483c3 5 3 11 2 16 37 82 102 125 188 141 97 18 221 2 358-31 18-5 36-9 45 27 8 37-9 41-28 45-146 35-279 51-388 32-92-17-165-58-215-132-49 74-124 115-215 132-109 20-242 4-388-32-18-4-37-8-28-45 8-36 27-32 45-27zm356 210l402-9c19 0 38-1 38 37 1 38-18 38-37 38l-402 9c-19 0-37 1-38-37s18-38 37-38zm593-3082c151-125 293-227 423-297 133-72 254-111 359-106 19 1 37 1 36 39-1 37-20 37-39 36-92-4-200 32-322 97-125 67-263 166-410 289-14 12-29 24-53-5s-9-41 5-53zm-605 56c-141-130-298-240-445-314-139-71-268-108-363-100-19 2-37 4-40-34-4-37 15-39 34-40 110-10 252 31 404 107 152 77 315 191 461 325 14 13 28 25 2 53-25 27-39 15-53 2zm-213 1004c37-83 83-155 136-219 53-63 112-119 174-170 14-12 29-24 52 5 24 29 9 41-5 53-59 48-114 101-164 160-49 59-91 125-125 201-8 17-15 34-49 19s-27-32-19-49zm371-1734c49 66 88 139 114 223 26 82 40 175 39 279 5 80 6 165-7 249-13 86-42 170-97 246-43 60-101 97-165 113-53 13-109 10-164-7 29 100 51 208 6 308-8 18-33 27-51 18-43-22-86-43-128-62s-84-36-127-51l-1-1c-95-37-173-73-236-112-65-39-115-80-150-124l1 2c-44-49-72-106-88-170-14-55-20-114-22-174-72-39-138-78-194-116-64-43-118-87-161-131-13-14-26-27 1-53s40-12 53 1c39 40 89 80 150 121 60 40 128 81 204 121 124 13 247 51 370 109 106 50 211 115 317 192 13 7 19 16 27 20 8 6 16 13 25 19 51 22 104 28 152 16 47-11 90-39 122-84 48-66 72-139 84-214 12-77 11-157 6-234v-2c1-97-12-183-35-258-24-76-58-142-102-201-11-15-22-30 7-52s41-7 52 7zm-375 1047c-104-77-207-141-311-190-105-49-210-83-314-98 2 48 8 93 18 135 13 52 35 99 71 138l1 1c30 37 73 72 130 107 60 36 134 71 225 106l-1-1c45 16 89 34 133 54 31 14 61 28 93 44 19-83-10-179-37-267-2-8-5-15-9-29zm776-1003c-44 59-79 125-102 201-24 76-36 161-35 258v2c-5 77-6 158 6 234 12 75 37 148 84 214 32 45 75 72 122 84 48 12 101 6 152-16 8-6 17-13 25-19 6-4 13-12 27-20 105-77 211-143 317-192 123-58 246-95 370-109 75-40 144-80 204-121s111-81 149-121c13-13 26-27 53-1s14 39 0 53c-43 44-97 88-161 131-57 38-122 77-194 116-2 61-8 119-22 174-16 63-44 121-88 170l1-2c-35 44-85 85-150 124-63 38-141 75-237 112l-1 1c-43 15-85 32-127 51-43 19-85 40-128 62-18 9-43 0-51-18-45-100-23-208 6-308-55 18-111 20-164 7-64-15-122-53-165-113-55-76-84-160-97-246-13-85-12-169-7-249-1-104 13-196 39-279 26-84 65-158 114-223 11-15 22-30 52-7 30 22 19 37 7 52zm940 715c-105 15-209 49-314 98-104 49-207 113-311 190-4 13-6 21-8 29-27 88-56 184-37 267 31-15 62-30 93-44 44-20 87-38 133-54l-1 1c91-35 165-70 225-106 58-34 100-70 131-107l1-1c35-39 57-86 71-138 11-42 16-87 19-135z"/><path fill-rule="evenodd" d="M203459 50602c-119 0-216 97-216 216s97 217 216 217 216-97 216-217c0-119-97-216-216-216zm0 69c-81 0-147 66-147 147s66 147 147 147 147-66 147-147-66-147-147-147zm0 60c-48 0-87 39-87 87s39 87 87 87 87-39 87-87-39-87-87-87zm-1697-124c119 0 217 97 217 216s-97 217-217 217c-119 0-216-97-216-217 0-119 97-216 216-216zm0 69c81 0 147 66 147 147s-66 147-147 147-147-66-147-147 66-147 147-147zm0 60c48 0 87 39 87 87s-39 87-87 87-87-39-87-87 39-87 87-87z"/></g><use width="100%" height="100%" transform="rotate(-2.17 -55532.79 156275.84)" xlink:href="#flag-hr-a"/><use width="100%" height="100%" transform="rotate(2.18 459865.85 156275.76)" xlink:href="#flag-hr-a"/></g><path fill="#171796" d="M387.19 94.88l-.06.02-19.2-21.94-25.24 14.47-4.26 51.1a219.72 219.72 0 0 1 36.12 6.04l12.63-49.69z"/><path d="M347.67 98.03c.87-.21 1.74-.26 2.58.26.37.15.64.34.81.6.4-.3.79-.6 1.2-.83.57-.43 1.16-.8 1.8-1.02.9-.46 1.8-.73 2.7-.81.96-.17 1.93-.17 2.88-.12.8.05 1.58.27 2.31.7l2 1c.71.39 1.42.74 2.12 1.04.9.35 1.9.47 2.98.51.53.02 1.04.02 1.55-.11.41-.11.67.15.21.43-3.31 2.03-5.91.22-8.13-.6a16.2 16.2 0 0 1 2.13 1.7c.84.82 1.79 1.65 3.46 2.4a8.36 8.36 0 0 0 5.08.73c.28-.04.4-.02.4.13.01.1-.01.3-.18.41a4.8 4.8 0 0 1-2.56.79 10 10 0 0 1-5.22-1.35c-1.34-.73-2.24-1.6-3.3-2.39a7.53 7.53 0 0 0-2.98-1.43 5.95 5.95 0 0 0-2.91.09c.26.05.49.18.62.34.46.27 1.05.39 1.9.48.44.06.3.36-.38.73-.4.53-.94.81-1.65.74-.98.65-1.32.26-1.65-.16-.04.26-.12.53-.24.78a.6.6 0 0 1 0 .43c.15.24.22.47.17.73.03.14.07.27.22.4.2.18.33.4.36.65 0 .18.1.32.23.45.2.16.4.3.6.55.6.21.87.67.96 1.25.45.14.63.47.72.85.26.1.49.24.62.46.91 0 1.8 0 2.63.1.78.08 1.42.56 1.99 1.2.38.05.77.07 1.17-.02.4-.18.84-.32 1.31-.36.78-.07 1.56-.1 2.3.07.51.12.9.4 1.23.76.46.52 1.18.45 1.79.2a2.71 2.71 0 0 1 2.37.02 2.33 2.33 0 0 1 1.08-.17c.31-.33.64-.42.98-.43.55-.02.96.07.85.78-.03.2-.14.38-.28.44-.26.55-.74.71-1.35.66-.07.38-.22.66-.47.84.28.87 0 1.22-.64 1.2-.13.25-.33.41-.68.36a1.38 1.38 0 0 1-.87.51c.04.23.14.34.3.58.44.67-.22.93-.83.94.16.44.18.88.12 1.32.62.37.7.76.13 1.15.42.72.26 1.26-.52 1.65-.01.4-.05.8-.32 1.04-.19.15-.45.18-.28.48.32.52.25 1.18-.22 1.2-.1-.01-.19 0-.2.16 0 .05-.04.1-.13.16a9.6 9.6 0 0 0-1.57 1.04c-.07.05-.14.08-.21.02a9.6 9.6 0 0 1-1.73 2.32c-.1.57-.44.96-.97 1.16a.41.41 0 0 1-.32.33c.3.33.41.65.12.97-.36.4-.83.77-1.3.9-1 .25-1.63.2-2.04-.18-.35-.34-.21-.6.01-.7-.62.05-.74-.28-.72-.71.03-.22.1-.2.32-.18.34 0 .64-.18.96-.28.12-.21.29-.4.48-.54.11-.7.56-1.1 1.16-1.32.49-.19.95-.66 1.4-1.26l.84-1.44a1.24 1.24 0 0 1-.26-.76 1.48 1.48 0 0 1-.55-.52c-.44-.03-.62-.23-.68-.5a1.1 1.1 0 0 1-.33-.04c-.22.14-.43.26-.7.25a6.86 6.86 0 0 1-1.09.9c-.13.37-.39.51-.7.56-.9.1-1.43 1.22-1.93 1.68-.2.14-.32.4-.4.72-.05.59-.15 1.05-.47 1.05-.3 0-.34-.04-.35-.07a1.19 1.19 0 0 0-.37.02c.24.26.28.6.05.9-.22.28-.54.37-.85.4a3.58 3.58 0 0 1-1.63-.22c-.46-.18-.51-.46-.5-.72-.33-.16-.4-.31-.36-.47.04-.2.23-.3.46-.23.2-.1.4-.16.6-.2a5.22 5.22 0 0 1 1.82-1.4 2.97 2.97 0 0 1 .68-.62c.08-.56.44-1 .9-1.41.03-.2.1-.4.21-.61-.02-.12.01-.18.01-.3-.18-.33-.29-.74-.15-1.08a1.31 1.31 0 0 1-.05-.54c-1.08.64-1.4.42-1.53-.1-.4.34-.76.49-1.03.02-.38.1-.76.24-1.14.09-.25.1-.5.18-.8.2-.1.23-.26.46-.48.69 0 .48-.18.97-.49 1.45a9.27 9.27 0 0 1-.7 1.55.98.98 0 0 1-.1.5c.08.6-.11.88-.44 1.03a2.41 2.41 0 0 1-.42.72l-.02.24c.13.35.15.7-.2 1.05-.3.18-.6.37-.9.52-.36.17-.7.09-1-.02-.52-.2-.48-.38-.41-.56a.64.64 0 0 1-.52 0c-.13-.08-.21-.17-.34-.25-.11-.2-.15-.4.12-.54.35-.15.59-.27.86-.55.1-.21.22-.37.39-.42.17-.39.37-.65.65-.72.2-.48.42-1.01.68-1.47.09-.14.15-.29.11-.44 0-.13 0-.26.11-.33.06-.05.17-.1.04-.18a1.36 1.36 0 0 1 .16-1.15c.28-.42.6-1.44.3-1.94-.06-.28-.1-.6-.07-.86-.1 0-.18 0-.28-.07-.23-.14-.42 0-.6.25-.12.32-.24.6-.37.6-.12.82-.52 1.46-.94 1.62-.1.38-.16.75-.1 1.13.04.41 0 .69-.2.74-.2.05-.4.17-.52.5a1.05 1.05 0 0 0-.07.34c.29.3.2.67-.08.95-.63.61-1.4.52-2.23.28-.59-.24-.74-.48-.68-.74-.84-.07-.67-.72.03-.91.75-.21 1.36-.7 1.86-1.38.04-.81.23-1.37.67-1.46.04-.5.2-.95.41-1.37.22-.4.35-.81.28-1.33-.47-.3-.49-.6-.06-.9.14-.08.13-.17-.05-.26-.28-.02-.25-.3-.23-.55-.01-.13-.08-.2-.2-.2-.64-.1-.48-.35-.21-.63.11-.13.19-.32.07-.4-.1-.06-.16-.28-.18-.47-.39-.29-.22-.59 0-.87-.22-.19-.32-.46-.35-.77-.72-.03-.99-.4-.6-.93a3.38 3.38 0 0 1 .63-.65c.16-.26.32-.53.24-.8-.2-.52.46-.92 1.02-1.33a.88.88 0 0 1-.12-.4c-.32-.31-.24-.6.11-.87a1.06 1.06 0 0 1-.13-.41c-.79.15-.78-.32-.42-1.08-.45-.26-.33-.73.5-1.44a.95.95 0 0 1 .1-.38 1.92 1.92 0 0 0-1 .3c-.32.21-.64.19-.95.06a1.5 1.5 0 0 0-.42-.41.62.62 0 0 1-.22-.63c-.93.05-1.1-.64-.55-1.04.31-.25.54-.5.63-.8.25-.63.78-1.06 1.3-1.5 0-.19.04-.37.1-.56a1.55 1.55 0 0 0-.74-.28 1.18 1.18 0 0 0-.57-.64c-.18-.1-.23-.2-.13-.44-.49-.44-.37-.7-.24-.96z"/><g fill="#f7db17"><path d="M364.52 121.96a1.37 1.37 0 0 1-.17.01 8.45 8.45 0 0 1-.8.7c-.22-.27-.56.02-.23.18l-.17.12c-.11.3-.21.41-.53.46l-.15.03a2.95 2.95 0 0 1 .01-.36 3.48 3.48 0 0 1 .07-.42c0-.02.01-.05-.04-.06-.05 0-.05.02-.06.04a3.88 3.88 0 0 0-.07.44 2.75 2.75 0 0 0-.02.4c-.8.25-1.28 1.1-1.83 1.7-.24.2-.36.5-.45.8-.05.15-.06.88-.23.89h-.25c-.09-.13-.2-.14-.35-.01-.34 0-.7-.01-1 .04-.2.22.36.14.66.32.14.09.2.25.14.48-.28.66-1.82.45-2.34.17-.24-.12-.25-.27-.24-.47l.33-.03c.18-.02.36-.08.54-.18.05-.03.1-.06.05-.16-.06-.1-.11-.07-.16-.04a1.25 1.25 0 0 1-.46.15 2.57 2.57 0 0 1-.49.02h-.04c-.09-.06-.16-.12-.12-.17.04-.05.19 0 .22.01.24-.1.44-.18.7-.23a5.31 5.31 0 0 1 1.85-1.43c.23-.27.47-.49.77-.68.1-.65.42-1 .89-1.43.05-.27.12-.46.25-.7-.03-.14 0-.24 0-.39-.18-.34-.28-.64-.14-1.02a1.46 1.46 0 0 1-.04-.72.35.35 0 0 0 0-.14 6.22 6.22 0 0 1 .84-.58c-.02.26 0 .53.04.8v.01a1.28 1.28 0 0 0-.2.26.53.53 0 0 0-.07.28c0 .03 0 .05.05.05s.05-.03.05-.05a.43.43 0 0 1 .06-.23c.04-.08.1-.16.18-.24a.1.1 0 0 0 .02-.02c.25 0 .5-.14.74-.34.22-.18.44-.41.66-.65l-.01 1.06c-.21.2-.4.42-.54.7-.01.03-.02.05.02.08.05.02.06 0 .07-.03a2.27 2.27 0 0 1 .49-.65c.06 0 .06-.02.06-.05a3.17 3.17 0 0 1 .92-.53c-.05.31-.07.62-.01.91a1.48 1.48 0 0 0 .53.9z"/><path d="M349.04 112.95c.04-.08.14-.17.18-.16h.02c.1-.22.22-.41.35-.59a3.98 3.98 0 0 1 .5-.6c.01-.02.03-.03.07 0 .03.04.01.06 0 .08a3.91 3.91 0 0 0-.49.58 5.82 5.82 0 0 0-.34.57c.04.05.05.12.03.17.04.33.08.51.23.7a.2.2 0 0 1 .05-.04c.06-.14.14-.27.24-.38a1.65 1.65 0 0 1 .45-.35 1.8 1.8 0 0 0 .5-.64c0-.03.01-.05.06-.03.05.02.04.04.03.07-.05.12-.12.23-.2.35a2.06 2.06 0 0 1-.33.33c-.18.1-.32.2-.44.33a1.25 1.25 0 0 0-.2.33c.07.05.1.2.03.3-.21.31-.47.5-.07.76a.64.64 0 0 0 .2.51c.08.1.08.43-.15.68-.22.21-.05.16.17.18l.05.02c.08-.16.17-.3.28-.43a4.34 4.34 0 0 1 .32-.36c.16-.16.29-.33.38-.5.09-.17.14-.34.15-.5 0-.03 0-.06.06-.06.05 0 .05.03.04.06a1.41 1.41 0 0 1-.16.55c-.1.18-.22.36-.4.52a3.78 3.78 0 0 0-.3.36 2.6 2.6 0 0 0-.28.4c.27.17.18.46.22.72.06 0 .1.02.14.04a.03.03 0 0 1 .01-.01l.16-.25.24-.4c.02-.01.03-.04.07-.01.05.03.03.05.02.07l-.25.4-.15.24a.05.05 0 0 1-.01.01c.16.13.17.38-.03.56-.4.3-.28.4.09.63.04.35.05.63-.03.92v.03l.03.3.02.29c0 .02 0 .05-.04.05-.06 0-.06-.02-.06-.04l-.02-.3a.64.64 0 0 1-.01-.08l-.06.15c-.27.58-.54 1.05-.6 1.7-.64.15-.54.78-.58 1.34a3.9 3.9 0 0 1-1.9 1.49c-.15.05-.51.14-.55.33 0 .07.25.22.4.13.45-.43.68-.2.17.25-.04.08-.01.17.08.25.46.41 1.6.55 2.13.22.38-.24.58-.5.25-.88.02-.52.22-1.03.77-1.17.06-.12.05-.34.02-.46-.05-.46.02-.86.13-1.3.02-.05.06-.1.15-.12.2-.04.6-.65.73-1.23l.08-.38c.03-.2.1-.24.2-.12.1-.13.1-.21.16-.36.22-.31.52-.56.89-.38a3.04 3.04 0 0 1-.18-.83 2.7 2.7 0 0 1 .11-1.03c.02-.05.03-.1.11-.1l.31-.73.32-.74c0-.02.02-.05.06-.03.05.02.04.05.03.07l-.31.74-.31.74c.04.03.03.07.01.12a2.52 2.52 0 0 0-.1.94c.03.35.11.68.24.95.01.03.03.05.02.08.17.1.17.12.16.35 0 .18.02.35.06.57.34.62-.01 1.67-.34 2.2a1.09 1.09 0 0 0-.13.83c.2.2.07.4-.11.54-.02.04 0 .1 0 .15.02.2-.06.37-.16.54-.28.5-.5 1.03-.72 1.56-.4.1-.48.34-.64.72-.24.07-.26.13-.36.35a2.71 2.71 0 0 1-.88.6c-.28.12 0 .25.2.39.18.13.42-.16.57-.39.16-.24.33-.17.22.02a1.95 1.95 0 0 0-.22.68c-.06.17.6.3.7.3.4.02.9-.37 1.2-.56.26-.26.22-.5.11-.81v-.02a1.97 1.97 0 0 1-.47-.05 3.43 3.43 0 0 1-.56-.19c-.03 0-.05-.02-.03-.07.02-.04.04-.03.07-.02.18.07.36.14.54.17.15.04.3.05.47.05l.02-.25a2.7 2.7 0 0 0 .46-.8c.44-.21.44-.43.38-.9.1-.19.12-.3.11-.51a9.93 9.93 0 0 0 .73-1.6c.34-.46.51-.9.47-1.44.03-.21.11-.33.27-.33a3.82 3.82 0 0 0 .3-.5.46.46 0 0 0 .06 0 .08.08 0 0 1 0-.04l.1-.33a.8.8 0 0 1 .15-.22.92.92 0 0 0 .07-.46 1.1 1.1 0 0 0-.16-.44.5.5 0 0 1-.11-.18c-.02-.08 0-.15.07-.22.02-.02.03-.04.07 0s.02.05 0 .07c-.04.04-.05.08-.04.11a.46.46 0 0 0 .1.15v.01c.1.16.16.33.17.5a1.01 1.01 0 0 1-.08.5v.03a.72.72 0 0 0-.14.2 1.69 1.69 0 0 0-.1.3v.02c.25 0 .46-.07.7-.19v-.01c.13-.1.25-.24.36-.43.08-.16.16-.35.2-.58 0-.02 0-.05.06-.04.05 0 .04.04.04.06a2.04 2.04 0 0 1-.21.6c-.08.16-.17.28-.27.37.38.12.7 0 1.07-.1-.05-.51-.05-.9 0-1.2.07-.33.18-.56.32-.74.02-.02.03-.04.07 0 .04.03.03.04.01.07-.13.16-.23.38-.29.69-.05.29-.06.66 0 1.14h.01c.15.26.23.45.54.24.12-.07.24-.15.33-.25.03-.04.02-.06.05-.09.3-.31.6-.6.9-.87.29-.26.59-.49.89-.67.02-.01.04-.03.07.02.03.04 0 .06-.02.07a6.45 6.45 0 0 0-.88.66c-.25.22-.5.47-.76.73.02.05.02.13.03.25.03.35.09.56.59.37.28-.11.3-.12.57-.28a1.34 1.34 0 0 1 .3-.15 7.99 7.99 0 0 1 .5-.36l.47-.3a3 3 0 0 1 .13-.54c.15-.46.41-.88.74-1.28l.01-.01a2.27 2.27 0 0 0 1.08-1.17c0-.03.02-.05.07-.03.05.02.04.04.03.07-.1.25-.25.48-.43.68a2.52 2.52 0 0 1-.69.54c-.31.39-.56.8-.71 1.23a2.69 2.69 0 0 0-.12.47l.03.03c.02.05 0 .06-.02.07l-.02.02a2.81 2.81 0 0 0 .02.8c.22 0 .45-.13.67-.31.24-.2.48-.46.73-.73v-.02a1.7 1.7 0 0 1 .24-.5.95.95 0 0 1 .4-.33c.02-.01.05-.02.07.03.02.04 0 .05-.03.07a.86.86 0 0 0-.36.29 1.66 1.66 0 0 0-.22.49l-.01 1.1.04-.03c.27-.2.58-.36.92-.49.04-.01.08.02.07.06-.05.33-.08.66-.03.97.05.28.18.55.44.78a2.78 2.78 0 0 1 .48-.63l.3-.27.22-.2.23-.22c.02-.02.04-.04.08 0 .03.04.01.06 0 .08l-.23.2-.23.22c-.1.08-.2.16-.28.25v.3l.01.15c.22.06.35.06.58.05.07.44.1.51.49.52a3.24 3.24 0 0 1 .01-.46c.02-.17.06-.33.12-.49 0-.02.01-.05.06-.03.05.02.04.04.03.07a1.89 1.89 0 0 0-.1.46 3.1 3.1 0 0 0-.02.45h.03c.15.32.33.47.65.6.1-.13.16-.28.2-.42a1.37 1.37 0 0 0 .06-.47c0-.03 0-.06.05-.06s.05.02.06.05c0 .17-.01.34-.07.51-.05.17-.13.34-.24.5-.01.02-.02.04-.04.04.01.18.05.31.11.45a3.02 3.02 0 0 1 .15-.3c.08-.13.17-.26.28-.37.02-.02.04-.03.07 0 .04.04.02.06 0 .08-.1.1-.18.22-.26.34a3.98 3.98 0 0 0-.18.37l.13.2c-.6 1.03-1.25 2.47-2.45 2.95-.62.24-.89.56-1.01 1.22-.23.18-.4.36-.55.61-.4.14-.76.34-1.2.32 0 .28.1.4.37.4.54-.26.66-.31.71-.28.07.06-.08.45-.52.76-.07.04-.07.07-.03.14.38.59 1.37.38 1.9.24.38-.1 1.06-.55 1.25-.93.07-.18-.1-.4-.26-.59-.76.12-.61-.6.04-.3.22-.07.25-.07.31-.32.58-.22.82-.47.96-1.09.58-.63 1.17-1.28 1.59-2.03.12-.15.18-.4.15-.53a1.07 1.07 0 0 0 .2-.42c.04-.15.06-.3.06-.45 0-.03 0-.05.05-.06.05 0 .05.03.05.05 0 .16-.02.32-.06.48a4.48 4.48 0 0 1-.12.37c.04.1.06.16.14.14.5-.4 1.02-.7 1.57-1.03.04-.24.19-.35.42-.36.09 0 .12-.03.16-.11.12-.32-.04-.54-.2-.8-.13-.4.12-.5.37-.69.27-.2.25-.72.26-1.02l-.03-.15a2.62 2.62 0 0 0-.1-.32c0-.02 0-.05.04-.07.05-.01.06.01.07.04l.1.33c0 .04 0 .08.02.12.25-.13.52-.28.62-.56.08-.31-.09-.61-.24-.88a9.57 9.57 0 0 1-.6.26c-.02.01-.04.02-.06-.03-.02-.05 0-.06.03-.06a10.22 10.22 0 0 0 .69-.3 1.29 1.29 0 0 0 .3-.27c.19-.26-.3-.5-.47-.6v-.03l-.73-.68c-.02-.01-.04-.03 0-.07.03-.04.05-.02.07 0l.68.62c.04-.39.04-.75-.08-1.14l-.12-.36a1.12 1.12 0 0 1-.48-.4 1.04 1.04 0 0 1-.16-.5c0-.02 0-.05.05-.05s.05.02.05.05c.02.16.06.3.14.44.1.14.22.25.42.35.2.1.64.05.89-.07.35-.2-.1-.6-.22-.83-.07-.16-.09-.34-.12-.52l.1-.01a1.04 1.04 0 0 0-.15-.15.6.6 0 0 0-.19-.11c-.02-.01-.05-.02-.03-.07.02-.05.05-.04.07-.03a.71.71 0 0 1 .22.13l.19.2a.88.88 0 0 0 .1-.01c.34-.07.53-.26.74-.51a3.6 3.6 0 0 0-.37-.39 10.09 10.09 0 0 0-.43-.36c-.02-.01-.04-.03 0-.07.02-.04.04-.02.06 0a4 4 0 0 1 .84.82c.32.03.37-.04.53-.32a1.53 1.53 0 0 0-.2-.41 2.5 2.5 0 0 0-.3-.39c-.02-.02-.04-.04 0-.07.03-.04.05-.02.07 0 .12.13.23.26.32.4.1.14.16.28.2.44.15 0 .31 0 .44-.07.27-.16.04-.75-.03-.98l.01-.01a2.76 2.76 0 0 0-.11-.07l-.2-.12c-.01-.02-.04-.03-.01-.07.03-.05.05-.03.07-.02l.2.12.14.1.06-.06c.2-.16.27-.37.34-.6.09-.34.1-.18.5-.24.44-.07.67-.12.92-.62.14-.07.2-.12.23-.29.04-.3.02-.44-.32-.47-.48-.04-.77.06-1.09.37l.13.2c.02.01.03.04-.01.07s-.06 0-.07-.02l-.12-.18c-.43-.04-.78.03-1.18.18l-.12-.05c.08.11.15.22.2.33.07.15.1.3.1.43 0 .03 0 .05-.04.06-.06 0-.06-.03-.06-.05a1.04 1.04 0 0 0-.1-.4 1.84 1.84 0 0 0-.3-.44 2.62 2.62 0 0 0-.96-.18l.16.15.2.2c.02.02.04.04 0 .08-.03.03-.05.02-.07 0a7.74 7.74 0 0 1-.2-.2 6.46 6.46 0 0 1-.2-.2l-.03-.02a2.72 2.72 0 0 0-.85.22c-.19.08-.39.14-.58.17.14.14.27.3.36.47.1.18.18.38.23.6 0 .03 0 .05-.04.06-.05.01-.06-.01-.06-.04a2.15 2.15 0 0 0-.22-.57 1.89 1.89 0 0 0-.35-.45c-.02-.02-.03-.03-.03-.05a1.78 1.78 0 0 1-.52 0l.2.35c.02.03.03.05-.01.07-.05.02-.06 0-.07-.02l-.2-.41a1.45 1.45 0 0 1-.47-.19 8.33 8.33 0 0 1 .19 1.5c0 .03 0 .06-.06.06-.05 0-.05-.03-.05-.05a7.85 7.85 0 0 0-.07-.9 4.7 4.7 0 0 0-.15-.7 1.66 1.66 0 0 1-.21-.2 2.1 2.1 0 0 0-.57-.45.95.95 0 0 1-.21.73c-.01.02-.03.04-.07.01-.04-.03-.03-.05-.01-.07a.85.85 0 0 0 .18-.72 3.13 3.13 0 0 0-1.05-.26 5.31 5.31 0 0 1 .55.88c.14.12.22.27.27.43.04.16.05.33.05.5 0 .02 0 .05-.05.05s-.05-.02-.05-.05a2.09 2.09 0 0 0-.06-.48.71.71 0 0 0-.24-.38.09.09 0 0 1-.01-.01 5.64 5.64 0 0 0-.27-.48 4.61 4.61 0 0 0-.33-.45v-.01h-.38l.06.08a.58.58 0 0 1 .09.25c0 .03 0 .05-.05.06-.05 0-.05-.02-.06-.05a.5.5 0 0 0-.07-.2.68.68 0 0 0-.1-.14c-.27 0-.53.03-.78.05a5.07 5.07 0 0 1 1 2.26c0 .02.01.05-.04.06-.05 0-.05-.02-.06-.05a4.8 4.8 0 0 0-.36-1.2 5.12 5.12 0 0 0-.66-1.06h-.04c-.2.02-.4.06-.6.12a1.71 1.71 0 0 1 .45.38c.02.02.04.04 0 .07-.04.04-.06.02-.08 0a1.57 1.57 0 0 0-.2-.21 2.4 2.4 0 0 0-.3-.2 4.91 4.91 0 0 0-.31.1c-.06.03-.11.05-.17.06a4.7 4.7 0 0 1 1.04 1.06c.02.02.03.05-.01.07-.04.03-.06.01-.07 0a3.8 3.8 0 0 0-.53-.64 4.67 4.67 0 0 0-.56-.45c-.22.04-.43.06-.65.05.14.26.25.53.34.8.1.29.16.58.18.87 0 .03 0 .06-.05.06s-.05-.02-.05-.05a3.49 3.49 0 0 0-.18-.85 6.22 6.22 0 0 0-.36-.83 7.97 7.97 0 0 1-.4-.05 9.13 9.13 0 0 1 .36 1.66c0 .03 0 .05-.04.06-.05 0-.05-.02-.06-.04a9.25 9.25 0 0 0-.16-.91 9.28 9.28 0 0 0-.22-.81 3.9 3.9 0 0 0-1.3-1.01 1.7 1.7 0 0 1 .38 1.12c0 .03 0 .05-.05.05s-.05-.03-.05-.05a1.63 1.63 0 0 0-.12-.67 1.68 1.68 0 0 0-.35-.53 1.95 1.95 0 0 0-.36-.07 15.62 15.62 0 0 0-1-.06c.26.23.46.44.44.7 0 .02 0 .05-.06.05-.05-.01-.05-.03-.05-.06.02-.24-.22-.46-.5-.7l-.6-.02c.12.11.2.23.29.34.1.15.17.3.2.45v.01c.03.24.09.44.2.61.1.17.24.3.44.4.03 0 .05.01.03.06-.02.05-.05.04-.07.03a1.1 1.1 0 0 1-.5-.43 1.51 1.51 0 0 1-.2-.65 1.25 1.25 0 0 0-.19-.42 2.67 2.67 0 0 0-.34-.4h-.67c.1.26.16.53.2.81.06.34.08.68.09 1.03 0 .02 0 .05-.06.05-.05 0-.05-.03-.05-.05a7.14 7.14 0 0 0-.08-1.01 4.47 4.47 0 0 0-.2-.83h-.07a1 1 0 0 0-.49-.44.6.6 0 0 1-.1.28c-.02.02-.04.05-.08.02-.04-.03-.03-.05-.01-.07a.5.5 0 0 0 .09-.27l-.1-.05c-.11-.44-.21-.63-.57-.78l-.03.38c-.03.16-.08.33-.18.48-.01.02-.03.05-.07.02-.05-.03-.03-.05-.02-.07.1-.15.14-.3.17-.44l.03-.4-.07-.03c-.1-.62-.2-.97-.85-1.22v.25c0 .14-.03.28-.09.43 0 .02-.02.05-.06.03-.05-.02-.04-.04-.03-.07.05-.13.07-.27.08-.4a1.9 1.9 0 0 0-.02-.36c-.14-.16-.33-.3-.5-.47a2.28 2.28 0 0 1-.1.68 3.06 3.06 0 0 1-.38.84c-.01.02-.02.04-.07.01-.04-.02-.03-.05-.01-.07a3 3 0 0 0 .37-.8 2.2 2.2 0 0 0 .08-.78 1.04 1.04 0 0 1-.18-.26l-.01.04-.08.17c0 .02-.02.04-.07.03-.04-.03-.03-.05-.02-.07l.07-.17.06-.14-.01-.1a.74.74 0 0 0-.27-.47 1.48 1.48 0 0 1-.25.47c-.02.02-.04.04-.08.01s-.02-.05 0-.07c.06-.1.12-.18.16-.27.04-.08.06-.15.08-.23a.96.96 0 0 1-.15-.25.8.8 0 0 1-.1.17 1.2 1.2 0 0 1-.2.2c-.01.02-.03.03-.07 0-.03-.05 0-.06.01-.08l.18-.18a.65.65 0 0 0 .1-.17c.03-.1.04-.04 0-.18.06-.3-.05-.47-.2-.72a.07.07 0 0 1 0-.02.89.89 0 0 0-.3.09 2.76 2.76 0 0 0-.46.26c-.03.02-.05.03-.08-.01s0-.06.02-.07a3.16 3.16 0 0 1 .47-.28.9.9 0 0 1 .4-.09.37.37 0 0 0 0-.22c-.46.17-.84.26-1.14.27a1.64 1.64 0 0 1-.76-.11c-.02-.01-.05-.02-.03-.07.02-.05.05-.04.07-.03.19.08.42.13.71.1.3-.01.66-.1 1.13-.27.09-.2.15-.38.2-.57a1.7 1.7 0 0 1-.5.04h-.03c-.03 0-.05 0-.05-.05s.02-.05.05-.05h.03c.18 0 .35 0 .53-.05l.03-.19c.02-.2.27-.25.44-.07.14.15.27.31.4.38.3.14.61.01.84-.17l-.2-.07c-.03 0-.06-.02-.04-.06.02-.05.04-.05.06-.04l.27.1a.95.95 0 0 0 .07-.07c.58.05.97-.08 1.34-.46a6.93 6.93 0 0 1-.89-.03c-.28-.03-.52-.09-.7-.17-.02-.01-.04-.03-.02-.07.03-.05.05-.04.07-.02.16.08.39.13.66.16.28.03.6.04.98.03l.1-.12c.17-.07.33-.14.45-.27a5.36 5.36 0 0 1-1.95-.53 1.35 1.35 0 0 0-.68-.35c-.5-.06-.94.06-1.35.28l-.29-.3c-.15-.01-.3-.1-.46-.11-.2-.03-.42.01-.63-.01-.03 0-.06 0-.05-.06 0-.05.03-.05.06-.04.2.02.43-.02.63 0 .2.03.4.12.6.14a4.5 4.5 0 0 1 1.7-.37 5.68 5.68 0 0 1 1.74-.22.1.1 0 0 1-.02-.02c-.07-.07-.04-.1 0-.14.31-.32.39-.61.28-.88-.1-.27-.39-.53-.78-.77-.43.05-.83-.06-1.28-.01a3.95 3.95 0 0 0-.82.18c.22.08.42.21.58.4.2.24.34.56.42.96 0 .05.01.1-.08.11-.1.02-.1-.03-.12-.08-.07-.36-.2-.65-.37-.86-.19-.27-.62-.38-.75-.43-.45.05-.9.1-1.27.2-.3.07-.55.17-.74.32.29-.06.59-.05.85.08.25.13.46.36.6.74 0 .04.02.09-.07.12-.1.03-.1-.01-.12-.06-.11-.33-.29-.52-.5-.62-.4-.2-1.25-.03-1.61.24a4.23 4.23 0 0 0-.62.59c-.04.05-.08.09-.17.01-.09-.08-.05-.12-.01-.16.22-.25.43-.46.66-.63.22-.16.44-.27.67-.33.24-.26.6-.42 1-.52.4-.1.85-.16 1.3-.2-.13-.28-.3-.44-.5-.53a1.4 1.4 0 0 0-.73-.08c-.55.19-1.04.48-1.51.82h.13c.14.01.26-.01.38.03.04.02.1.04.06.13-.04.1-.35.04-.45.03a1.35 1.35 0 0 0-.4.04c-.03 0-.05.01-.07 0-.58.36-.99.72-1.47 1.13l-.08.03c-.42-.02-.72.04-.9.17-.15.12-.16.31-.13.57-.08.24-.17.5-.2.78-.5.43-1.05.86-1.3 1.48a1.42 1.42 0 0 1-.28.49.54.54 0 0 1 .25.1l.06.06c0-.1.03-.21.05-.32.04-.14.1-.28.16-.39.01-.02.03-.04.07-.01.05.03.03.05.02.07a1.2 1.2 0 0 0-.15.36c-.04.16-.06.35-.06.51 0 .05-.1.06-.1 0a.29.29 0 0 0-.12-.2.52.52 0 0 0-.27-.08c-.1.12-.23.22-.35.32-.1.08-.2.17-.21.3-.02.22.26.26.53.28.6.04.12.38.45.68.17.11.32.24.43.4.23.08.37.07.53 0 .03-.42 0-.63.17-.63h.02a.77.77 0 0 1 .18-.38c.02-.02.03-.04.07 0 .04.02.03.04.01.06a.8.8 0 0 0-.12.2.75.75 0 0 0-.04.18c.03.06.02.18.02.4a2.4 2.4 0 0 1 1-.23c.66-.77.94-.57.37-.01l-.1.17a1.4 1.4 0 0 0-.18.6c-.17.15-1 .83-.69 1.08.22-.03.35-.02.27.14-.1.22-.4.66-.3.9.03.1.16.09.3.06l.02-.03a6.2 6.2 0 0 0 .66-.6 3.8 3.8 0 0 0 .57-.8c.02-.04.04-.08.1-.07a9.07 9.07 0 0 1 .23-.71c.08-.24.18-.49.29-.74.02-.03.07-.04.09 0 .09.12.18.22.26.28a.4.4 0 0 0 .24.08.42.42 0 0 0 .23-.07c.08-.06.17-.15.26-.28.01-.02.03-.04.07 0 .04.02.03.04.01.06a1.18 1.18 0 0 1-.28.3.49.49 0 0 1-.3.1.5.5 0 0 1-.28-.1 1.13 1.13 0 0 1-.24-.25 11.91 11.91 0 0 0-.49 1.37c.06.05.03.09.01.13-.17.32-.38.6-.6.84-.18.2-.37.38-.56.54.03.17.07.34.15.5.36-.3.7-.61.99-.93.3-.33.55-.66.75-1.01.01-.02.03-.05.07-.02.05.03.03.05.02.07a5.98 5.98 0 0 1-.35.53c.02.03 0 .05-.02.07-.03.03-.06.15-.07.3 0 .22 0 .5.03.68 0 .03 0 .06-.05.06-.05.01-.05-.02-.06-.04-.02-.2-.03-.48-.02-.7 0-.05 0-.1.02-.15l-.25.27a11.55 11.55 0 0 1-1.01.97l.03.06c-.31.23-.57.3-.22.62l.36-.26.38-.27c.02-.02.04-.03.07.01.03.04.01.06-.01.07l-.38.28-.37.26a.62.62 0 0 0 .09.36.53.53 0 0 1 .08 0l.8-.58c.01-.02.04-.03.07 0 .03.05 0 .07-.01.08l-.78.56a.71.71 0 0 1-.09.12c-.26.19-1.17.75-1.07 1.14.21-.06.43-.14.64-.24.22-.11.43-.26.63-.47.02-.02.03-.03.07 0 .03.04.02.06 0 .08a2.54 2.54 0 0 1-.65.48v.22c-.01.03-.01.05-.06.05-.05 0-.05-.03-.05-.05v-.11-.06a3.62 3.62 0 0 1-.56.2c.08.37-.11.69-.3 1-.12.09-1.03.83-.65 1.05a.98.98 0 0 0 .33.08z"/><path d="M349.45 100.13a2.24 2.24 0 0 0-.67-.3 1.44 1.44 0 0 0-.5-.56c-.18-.12-.18-.1-.11-.23.2-.03.28-.08.28-.14a.9.9 0 0 1 .27.05.4.4 0 0 1 .2.14c.02.02.04.04.08 0s.03-.04.01-.07a.54.54 0 0 0-.25-.17 1.02 1.02 0 0 0-.37-.05h-.03a.74.74 0 0 0-.33-.05c-.14-.12-.25-.27-.2-.46l.03.01.3.1c.08.04.15.08.2.14.01.02.03.04.07 0 .03-.04.02-.05 0-.07a.74.74 0 0 0-.23-.16 2.05 2.05 0 0 0-.23-.09 2.88 2.88 0 0 1 2.18.27c.37.15.54.33.74.6l-.2.17c-.45-.01-.79.05-1 .21-.19.14-.23.4-.23.65z"/></g><path d="M365 121.77c-.15.1-.28.16-.44.19a.07.07 0 0 0 .02-.02c.1-.2.22-.36.36-.51l.05-.06v.19l.01.21zm1.96 4.2a2.3 2.3 0 0 1-.37.42 3.99 3.99 0 0 1-.48.37c-.02.01-.05.03-.07-.02-.03-.04-.01-.05 0-.07.18-.1.33-.23.47-.35.14-.13.27-.26.36-.41.02-.02.03-.04.08-.02.04.03.03.05.01.08zm1.3-1.55l-.2.3c-.01.02-.03.04-.07.01-.04-.02-.03-.05-.02-.07l.2-.3c.01-.02.03-.04.07-.01.05.03.03.05.02.07zm-.7-.1a1.11 1.11 0 0 1-.19.42c-.1.13-.23.25-.44.34-.02.01-.04.02-.07-.02-.02-.05 0-.06.03-.07a.99.99 0 0 0 .4-.3.97.97 0 0 0 .16-.4c0-.02.02-.04.07-.03.05.01.04.04.03.06zm1.26-1.55a.93.93 0 0 0-.14.18 1.15 1.15 0 0 0-.1.22c0 .02-.01.05-.06.03-.05-.02-.04-.04-.03-.07a1.14 1.14 0 0 1 .26-.43c.02-.02.03-.04.07 0 .04.03.02.05 0 .07zm1.04.1l-.14.45c-.06.15-.12.3-.2.45-.02.02-.03.04-.08.02-.04-.03-.03-.05-.02-.08.09-.14.15-.29.2-.43l.14-.44c0-.02.02-.05.07-.03.05.01.04.04.03.06zm-.47-6.07c.32.47.4.96.4 1.45a7.29 7.29 0 0 1 .13-.53v-.02a1.42 1.42 0 0 0 .27-1.13c0-.03 0-.05.05-.06.05-.01.06.02.06.04.04.2.04.4 0 .6a1.68 1.68 0 0 1-.28.6c-.09.33-.15.66-.21 1l-.01.06c-.01.05-.1.04-.1-.01v-.11c0-.62 0-1.24-.4-1.83 0-.02-.02-.04.02-.07.04-.03.06-.01.07.01zm-.79 1.01l-.01.12-.01.12c0 .03 0 .06-.06.05-.05 0-.05-.03-.05-.06l.01-.12.02-.12c0-.02 0-.05.05-.04.05 0 .05.03.05.05zm-.22 1.38a6.17 6.17 0 0 1 .25 1.38.98.98 0 0 1 .07-.1c.08-.1.2-.2.33-.28.02-.01.05-.02.07.02.03.05 0 .06-.02.07a1.05 1.05 0 0 0-.3.26.7.7 0 0 0-.15.32c0 .05-.1.04-.1-.01a5.05 5.05 0 0 0-.07-.83 5.9 5.9 0 0 0-.18-.8c0-.02-.01-.05.04-.06.05-.01.05.01.06.03zm1.1.5a3.56 3.56 0 0 1 .06 1.19c0 .02 0 .05-.06.04-.05 0-.04-.03-.04-.06.02-.17.03-.36.02-.55a3.6 3.6 0 0 0-.08-.6c0-.03-.02-.05.04-.06.05-.02.05.01.06.04zm.94-.18c.04.2.06.39.05.57a1.47 1.47 0 0 1-.12.53 1.19 1.19 0 0 0-.04.58c.03.2.11.4.2.6.01.03.02.05-.03.07-.04.02-.06 0-.07-.03a2.54 2.54 0 0 1-.2-.62 1.3 1.3 0 0 1 .04-.64 1.36 1.36 0 0 0 .11-.5 2.25 2.25 0 0 0-.04-.54c0-.02-.01-.05.04-.06.05 0 .05.02.06.04zm.46-1.56l-.08.3-.07.29c0 .03 0 .05-.06.04-.05-.01-.05-.04-.04-.07l.08-.3.07-.29c0-.02.01-.05.06-.04.05.02.05.04.04.07zm-.47-2.6l.08.27c.01.03.02.05-.03.06-.05.02-.06 0-.07-.03l-.08-.27c0-.02-.01-.05.03-.06.05-.02.06 0 .07.03zm.24-1.97v.77a.77.77 0 0 0-.24.38 1.38 1.38 0 0 0 0 .59c0 .02 0 .05-.05.06-.05.01-.06-.02-.06-.04a1.42 1.42 0 0 1 0-.63.86.86 0 0 1 .27-.43l-.02-.33v-.37c0-.03 0-.05.05-.05s.05.02.05.05zm-1.96-.69c.3.2.56.42.74.68.19.26.3.56.28.92a.05.05 0 0 1-.08.04l-.51-.22c.11.74.09 1.33-.07 1.78-.17.47-.49.8-.94.98a.05.05 0 0 1-.07-.06 3.78 3.78 0 0 0 .12-1.68c0-.02 0-.05.05-.06.05 0 .05.02.06.05a3.62 3.62 0 0 1-.1 1.61 1.5 1.5 0 0 0 .78-.88 3.7 3.7 0 0 0 .05-1.81c0-.04.04-.07.07-.06l.53.23c0-.3-.1-.56-.25-.78a2.53 2.53 0 0 0-.72-.65c-.02-.02-.04-.03-.01-.08.03-.04.05-.02.07-.01zm5.13-1.01l-.04.1-.04.1c-.01.03-.02.05-.07.03-.05-.02-.04-.04-.03-.06l.05-.1c.01-.04.02-.08.04-.1 0-.03.02-.05.06-.04.05.02.04.05.03.07zm-1.2-.03c.1.04.17.1.24.16a.83.83 0 0 1 .16.23c.01.02.02.04-.02.07-.05.02-.06 0-.07-.03a.78.78 0 0 0-.14-.2.6.6 0 0 0-.21-.13c-.03-.01-.05-.02-.03-.07.02-.04.04-.03.07-.03zm-1.8.52c.13.14.22.31.26.5.05.19.06.4.03.62 0 .03 0 .05-.06.05-.05 0-.05-.03-.04-.06.02-.21.02-.4-.03-.58a1.03 1.03 0 0 0-.23-.46c-.02-.02-.04-.04 0-.07.04-.04.06-.02.07 0zm-6.05.58l-.02.2-.02.2c0 .03 0 .06-.06.05-.05 0-.05-.03-.04-.05l.02-.2.02-.21c0-.03 0-.05.05-.05.06 0 .05.03.05.06zm1.12-.6l.09.3.02.09c.01.02.02.05-.03.06-.05.02-.06 0-.07-.03l-.02-.1-.09-.28c0-.03-.02-.05.03-.07.05-.01.06.01.07.04zm2.3 1.55c.02.05.02.1.02.13a1.11 1.11 0 0 1 0 .13c0 .02 0 .05-.05.04-.05 0-.05-.03-.05-.05a.84.84 0 0 0 0-.11.55.55 0 0 0-.02-.11c0-.03-.01-.05.04-.07.05 0 .05.02.06.04zm.8-1.75c.05.05.08.1.1.16a.23.23 0 0 1-.03.17c-.01.02-.03.04-.07.02-.05-.03-.03-.05-.02-.07a.14.14 0 0 0 .01-.1.25.25 0 0 0-.07-.11c-.02-.02-.03-.04 0-.07.04-.04.06-.02.08 0zm-5.5.28a.93.93 0 0 0 .25.66c.12.14.19.27.22.41.03.14.04.27.04.4 0 .03 0 .05-.05.06-.05 0-.05-.03-.05-.05 0-.13-.01-.26-.04-.38a.86.86 0 0 0-.2-.37 1.05 1.05 0 0 1-.2-.35 1.13 1.13 0 0 1-.07-.39c0-.02 0-.05.05-.05s.05.03.05.05zm2.23 1.5c.12.23.19.45.21.68.03.22.02.45-.02.7-.05.27.01.54.16.8.14.23.36.46.65.66a2.86 2.86 0 0 1-.13-.9c.01-.34.12-.67.36-.98.1-.13.17-.27.22-.4.05-.15.07-.29.1-.43 0-.02 0-.05.05-.04.05 0 .05.03.04.06-.02.14-.04.29-.1.44a1.52 1.52 0 0 1-.23.44 1.59 1.59 0 0 0-.33.92c-.02.32.05.66.16 1 .02.05-.04.09-.08.06-.35-.24-.63-.5-.8-.79a1.26 1.26 0 0 1-.17-.87c.04-.23.05-.45.02-.66a1.81 1.81 0 0 0-.2-.64c-.02-.03-.03-.05.02-.07.04-.03.06 0 .07.02zm-.9 1.36c0 .25-.07.5-.19.74a3.39 3.39 0 0 1-.38.58l.24-.1a2.21 2.21 0 0 0 .7-.5c.1-.1.2-.21.3-.35 0-.02.02-.04.07-.01.04.03.02.05 0 .07a3.59 3.59 0 0 1-.3.37 2.48 2.48 0 0 1-.27.24 24.48 24.48 0 0 1 .07.34c0 .03.01.05-.04.06-.05.01-.05-.01-.06-.04l-.04-.18a1.54 1.54 0 0 0-.02-.11 2.21 2.21 0 0 1-.37.2l-.42.18c-.05.01-.1-.05-.06-.09.2-.23.37-.47.48-.7.12-.24.19-.47.19-.7 0-.02 0-.05.05-.05s.05.03.05.05zm-1.09-.08v.23c0 .03 0 .05-.05.05s-.05-.02-.05-.05v-.23c0-.03 0-.05.05-.05s.05.02.05.05z"/><path d="M363.05 113.67c.14.35.18.68.13.98a1.85 1.85 0 0 1-.42.85v.01a1.89 1.89 0 0 0-.48.63 2.6 2.6 0 0 0-.18.52c.06-.08.11-.16.18-.22.14-.14.3-.25.51-.3a4.6 4.6 0 0 0 1.16-.92c.02-.02.04-.03.07 0s.02.05 0 .07a4.03 4.03 0 0 1-1.18.93h-.01a1.03 1.03 0 0 0-.47.29 2.29 2.29 0 0 0-.33.44c-.02.04-.1.01-.1-.04.06-.29.14-.57.26-.82s.28-.47.5-.66c.2-.25.34-.52.39-.8.04-.29 0-.6-.13-.92 0-.02-.02-.05.03-.07.05-.02.06 0 .07.03zm2.21 3.55c-.03.1.04.18.18.36l.1.13c.18.25.25.53.25.82 0 .3-.05.6-.1.89-.01.05-.1.04-.1 0a1.79 1.79 0 0 0-.4-.87 3.43 3.43 0 0 0-.78-.69c-.02-.01-.04-.03-.01-.07.02-.05.05-.03.07-.02.32.22.6.45.8.72.17.2.3.42.36.66a3.4 3.4 0 0 0 .06-.61 1.28 1.28 0 0 0-.24-.77c-.03-.05-.06-.09-.1-.12-.15-.21-.23-.31-.18-.46 0-.02.01-.05.06-.03.05.01.04.04.04.06zm.95-.06l.11.12.12.12c.02.02.03.04 0 .08-.04.03-.06.01-.08 0l-.11-.13-.12-.12c-.02-.02-.03-.04 0-.08.04-.03.06-.01.08 0zm1.15.37l-.21.7-.22.69c0 .02-.02.05-.07.03-.05-.01-.04-.04-.03-.06l.22-.7.21-.7c.01-.02.02-.04.07-.03.05.02.04.04.03.07zm.66 3.88a.24.24 0 0 0 0 .17c0 .03.02.05-.03.07-.05.02-.06 0-.07-.03a.35.35 0 0 1 0-.25c.01-.03.02-.05.07-.03.05.02.04.04.03.07zm-.69-1.14l-.1.36-.09.37c0 .03-.01.05-.06.04-.05-.01-.05-.04-.04-.06l.1-.37.09-.37c0-.02.01-.05.06-.03.05 0 .05.03.04.06zm-.99 0l.09.09c.02.02.03.03 0 .07-.04.03-.06.02-.07 0l-.1-.1c-.01-.01-.03-.03 0-.07.04-.03.06-.02.08 0zm-1.17-.56a7.32 7.32 0 0 1-.07.2l-.07.21c-.01.03-.02.05-.07.03-.04-.01-.04-.04-.03-.06a5.08 5.08 0 0 1 .08-.21 5.08 5.08 0 0 1 .07-.2c0-.03.01-.06.06-.04s.04.04.04.07zm-1.66 1.76a.7.7 0 0 0-.14.22 1.29 1.29 0 0 0-.06.25c0 .03-.01.06-.06.05-.05-.01-.05-.04-.04-.06.01-.1.03-.18.07-.27a.77.77 0 0 1 .15-.26c.02-.02.04-.04.08 0 .03.03.02.05 0 .07zm-4.77 4.67a.66.66 0 0 1-.1.16 1.1 1.1 0 0 1-.16.15c-.02.02-.04.04-.07 0-.04-.05-.02-.06 0-.08a.82.82 0 0 0 .23-.27c.02-.02.02-.05.07-.03.05.02.04.05.03.07zm.75-.4a.35.35 0 0 1-.1.14.61.61 0 0 1-.17.1c-.02 0-.05.01-.06-.04-.02-.05 0-.06.03-.06a.43.43 0 0 0 .13-.08.28.28 0 0 0 .07-.1c.01-.02.02-.04.07-.02s.04.04.03.07zm.99-.6a.48.48 0 0 1-.06.09.52.52 0 0 1-.11.08c-.02.02-.05.03-.07-.01-.03-.05 0-.06.02-.07a.38.38 0 0 0 .13-.14c.02-.02.03-.04.07-.01.05.02.03.04.02.07zm1.49-3.88c-.05.14-.08.28-.1.42a1.4 1.4 0 0 0 .03.4c0 .03.01.06-.04.07-.05.01-.06-.01-.06-.04a1.4 1.4 0 0 1-.03-.44c.02-.15.05-.3.1-.44.01-.03.02-.05.07-.04.05.02.04.05.03.07zm1.01-10.31a.87.87 0 0 1-.09.34 1.4 1.4 0 0 1-.23.34c-.02.02-.04.04-.08 0-.03-.04-.02-.06 0-.07.1-.1.17-.21.22-.31a.77.77 0 0 0 .08-.3c0-.04 0-.06.05-.06.06 0 .05.03.05.06zm-1.03-.92a1.87 1.87 0 0 1 .2.95c0 .02 0 .05-.05.05s-.05-.03-.05-.06a1.76 1.76 0 0 0-.03-.44 1.46 1.46 0 0 0-.16-.45c-.01-.02-.03-.04.02-.07.04-.02.06 0 .07.02zm-1.38 1.7a1.51 1.51 0 0 1-.4-.41.65.65 0 0 1-.1-.44c.01-.03.01-.05.06-.04.06 0 .05.03.05.06-.02.12 0 .24.08.36.07.13.2.26.37.4.03 0 .05.02.02.06-.03.05-.06.03-.08.02zm1.52 2.58v.23c0 .03 0 .05-.05.05s-.05-.02-.05-.05v-.23c0-.02 0-.05.05-.05s.05.03.05.05zm-1.94-1.95c.3.29.5.64.59 1.02.06.24.08.5.09.76h.01c.14-.05.25-.17.32-.37.08-.2.12-.5.13-.86a.11.11 0 0 1 0-.03 1.9 1.9 0 0 0 .22-.53 3.49 3.49 0 0 0 .09-.55c0-.04.06-.06.1-.02.17.25.33.5.45.79.12.28.2.57.23.9 0 .02 0 .05-.05.05s-.05-.02-.06-.04a2.9 2.9 0 0 0-.22-.87 3.87 3.87 0 0 0-.36-.65 2.9 2.9 0 0 1-.07.41 1.94 1.94 0 0 1-.23.56c0 .37-.05.67-.13.88-.09.23-.21.37-.38.43h-.05c0 .13 0 .26-.02.4 0 .02 0 .05-.05.04-.05 0-.05-.03-.05-.05.04-.44.03-.85-.07-1.21a1.98 1.98 0 0 0-.55-.98c-.02-.02-.04-.04 0-.07.03-.04.05-.02.07 0zm1.14 4.87l-.06.4-.07.41c0 .03 0 .05-.06.04-.05 0-.04-.03-.04-.06l.07-.4.06-.41c0-.03 0-.05.06-.04.05 0 .05.03.04.06zm-2.18.92l.05.31c0 .03.01.05-.04.06-.05.01-.06-.01-.06-.04l-.06-.31c0-.03 0-.05.04-.06.05-.01.06.01.06.04zm1.88-2.5a2.27 2.27 0 0 1-.16.6c-.08.18-.2.37-.34.55a1.13 1.13 0 0 0-.3.64 1.8 1.8 0 0 0 .06.68c0 .03 0 .05-.04.07-.05.01-.06-.01-.07-.04a1.89 1.89 0 0 1-.06-.72c.03-.24.13-.48.33-.7a2.1 2.1 0 0 0 .33-.52 2.1 2.1 0 0 0 .15-.57c0-.03 0-.06.06-.05.05 0 .04.03.04.06zm-.49-.74c.04.2 0 .4-.08.6a2.22 2.22 0 0 1-.38.57 1.83 1.83 0 0 0-.41.49c-.1.17-.17.35-.25.53 0 .02-.02.04-.07.03-.04-.02-.03-.05-.02-.07.07-.18.15-.37.25-.54.1-.18.24-.35.42-.51a2 2 0 0 0 .37-.55.92.92 0 0 0 .07-.53c0-.02-.01-.05.04-.06.05 0 .06.02.06.04zm-2.41 1.14c.06.4 0 .74-.15 1.04-.15.3-.38.56-.67.79-.02.01-.04.03-.08-.01-.03-.04 0-.06.01-.08.28-.22.5-.46.64-.75.14-.28.2-.6.15-.97 0-.03 0-.06.04-.06.06-.01.06.02.06.04zm-3.08 1.7l.1.2.09.19c0 .02.02.05-.03.07-.05.02-.06 0-.07-.02l-.1-.2-.08-.18c0-.03-.02-.05.02-.07.05-.02.06 0 .07.02zm-1.22.03a2.69 2.69 0 0 0 .08.7c.06.21.15.43.3.64h.01c.08.16.12.32.16.48l.04.36c.15-.16.26-.32.34-.49a1.44 1.44 0 0 0 .15-.6c0-.03 0-.06.05-.05.06 0 .06.02.05.05a1.55 1.55 0 0 1-.15.65c-.1.2-.25.4-.45.6-.03.03-.09 0-.09-.04a3.25 3.25 0 0 0-.04-.46 1.76 1.76 0 0 0-.15-.44 1.94 1.94 0 0 1-.32-.68 2.7 2.7 0 0 1-.08-.72c0-.03 0-.05.05-.05s.05.02.05.05zm.17 4.17a2.63 2.63 0 0 1 .18-.77c0-.02.02-.04.06-.02.05.02.04.04.03.06a2.52 2.52 0 0 0-.17.74c0 .02 0 .05-.05.04-.06 0-.05-.03-.05-.05zm-.14 1.16l.06-.46c0-.03 0-.05.06-.04.05 0 .05.03.04.06l-.06.46c0 .02 0 .05-.06.04-.05 0-.05-.03-.04-.06zm-.8 1.95l.22-.27.2-.33c0-.02.02-.04.07-.02.04.03.03.05.02.07a4.04 4.04 0 0 1-.21.34c-.07.1-.15.2-.23.28-.02.02-.04.04-.08 0-.03-.03-.01-.05 0-.07zm-1.16-6.53v.19c0 .03 0 .05-.05.05s-.05-.02-.05-.05v-.2c0-.02 0-.04.05-.04s.05.02.05.05zm-1.95 4.5a2.86 2.86 0 0 0-.01-.14l-.01-.15c0-.03 0-.05.05-.05s.06.02.06.05v.14l.02.14c0 .03 0 .05-.05.05-.06 0-.06-.02-.06-.05zm4.9-8c-.1.34-.17.7-.17 1 0 .3.1.55.3.68.25.16.36.4.47.64 0 .02 0 .03.02.04.03-.11.05-.24.06-.36.02-.15.02-.3 0-.43 0-.02-.01-.05.04-.06.05-.01.06.02.06.04a2.72 2.72 0 0 1-.1.97c-.02.05-.08.05-.1.01a5.95 5.95 0 0 1-.08-.17c-.1-.22-.2-.44-.42-.59-.25-.16-.35-.43-.35-.76 0-.32.07-.69.17-1.04.01-.03.02-.05.07-.04.05.02.04.04.03.07zm-.34-1.31a2.52 2.52 0 0 1-.02.76 4 4 0 0 1-.23.76 2.41 2.41 0 0 0-.17 1c.02.34.1.67.26 1 .01.02.03.04-.02.06-.05.03-.06 0-.07-.02a2.54 2.54 0 0 1-.1-2.08 3.8 3.8 0 0 0 .23-.74c.04-.24.05-.48.02-.73 0-.03-.01-.06.04-.06s.06.02.06.04zm-2.28 3.24a.79.79 0 0 0-.06.47c.03.15.1.32.2.48.01.02.02.04-.02.07-.04.02-.06 0-.07-.02a1.5 1.5 0 0 1-.2-.52.88.88 0 0 1 .06-.53c.01-.02.02-.04.07-.02s.03.04.03.07zm-.99-.36c.02.1.02.2.01.31a.86.86 0 0 1-.07.27.4.4 0 0 0-.04.27c.02.09.07.18.13.28.02.02.03.04-.01.07-.04.03-.06.01-.08-.01a.85.85 0 0 1-.14-.32.48.48 0 0 1 .05-.33.76.76 0 0 0 .06-.24l-.01-.28c0-.02-.01-.05.04-.06.05 0 .06.02.06.05zm5.8-8.6a2.32 2.32 0 0 0 .32 1.47c.01.02.02.04-.02.07-.05.02-.06 0-.07-.02a2.59 2.59 0 0 1-.29-.72 2.33 2.33 0 0 1-.04-.8c0-.03 0-.06.06-.05.05 0 .05.03.05.05zm-.72.7a3.95 3.95 0 0 1 .5 1.72c0 .03 0 .05-.04.06-.06 0-.06-.03-.06-.05a3.77 3.77 0 0 0-.5-1.67c0-.03-.02-.05.03-.07.04-.03.06 0 .07.02zm-3.61.12c-.35.5-.5.9-.53 1.24-.03.35.07.64.2.9v.01c.1.28.14.55.14.83a2.58 2.58 0 0 1-.16.82c-.01.02-.02.05-.07.03-.05-.02-.04-.05-.03-.07.1-.26.15-.52.16-.79a2.25 2.25 0 0 0-.13-.78 1.7 1.7 0 0 1-.2-.95c.02-.37.18-.79.54-1.3.01-.02.03-.04.07-.02.04.03.03.06.01.08zm3.36-1.43c.03.15.02.3-.05.46-.06.14-.17.27-.33.4a.81.81 0 0 0-.3.48c-.04.2-.03.44.02.7 0 .03.01.05-.04.06-.05.01-.06-.01-.06-.04a1.85 1.85 0 0 1-.01-.74.91.91 0 0 1 .33-.55.99.99 0 0 0 .3-.35.64.64 0 0 0 .04-.4c0-.02 0-.05.04-.06.05 0 .06.02.07.04zm-3.56.3c.07.23.07.44 0 .66-.05.21-.18.42-.38.63a1.21 1.21 0 0 0-.37.58 2.87 2.87 0 0 0-.12.73c0 .03 0 .06-.05.05-.05 0-.05-.03-.05-.05a3.04 3.04 0 0 1 .12-.76c.07-.24.2-.45.4-.62.18-.2.3-.4.36-.6a1.01 1.01 0 0 0 0-.58c-.01-.03-.02-.05.03-.07.05-.01.05.01.06.04zm2.04.11a.76.76 0 0 0 0 .23.5.5 0 0 0 .09.22c.01.02.03.04-.02.07-.04.03-.05.01-.07-.01a.63.63 0 0 1-.1-.26.82.82 0 0 1 0-.26c0-.03 0-.05.06-.04.05 0 .04.03.04.06zm-.1-.53a.85.85 0 0 0-.43.4c-.1.18-.16.43-.18.72l.02.04c.1.13.17.3.21.47.05.2.07.42.06.66 0 .03 0 .06-.05.05-.06 0-.05-.02-.05-.05a2.42 2.42 0 0 0-.06-.63c-.04-.16-.1-.3-.18-.42-.38.36-.57.76-.59 1.19 0 .45.17.95.51 1.47.01.02.03.05-.02.07-.04.03-.05.01-.07-.01a2.73 2.73 0 0 1-.52-1.53c.02-.47.22-.9.64-1.28.02-.33.08-.6.2-.8a.95.95 0 0 1 .47-.45c.03 0 .05-.02.07.03.02.05 0 .06-.03.07zm-.58-.75v.1c-.03.25-.06.53-.25.7a.83.83 0 0 0-.21.32 1.61 1.61 0 0 0-.1.39c0 .02 0 .05-.05.04-.05 0-.05-.03-.04-.06a1.71 1.71 0 0 1 .1-.41.92.92 0 0 1 .24-.36c.15-.14.18-.4.2-.62a2.69 2.69 0 0 0 .02-.12c0-.02 0-.05.06-.04.05 0 .04.03.04.06zm5.67 6.04c.06.13.1.26.14.4.04.13.05.27.05.41 0 .03 0 .06-.06.05-.05 0-.05-.03-.05-.05a1.43 1.43 0 0 0-.04-.4 1.88 1.88 0 0 0-.14-.37c0-.02-.02-.04.03-.07.05-.02.06 0 .07.03zm.01 1.86c.05.21.05.43.01.65-.03.21-.12.44-.23.66l-.24.56c-.01.03-.02.05-.07.03-.05-.02-.04-.04-.03-.07l.24-.56a2.15 2.15 0 0 0 .23-.64 1.6 1.6 0 0 0 0-.61c-.01-.03-.02-.06.03-.07.05 0 .06.02.06.04zm-1.18-1.73a2.54 2.54 0 0 1 .63 2.51c0 .03-.01.05-.06.04-.05-.02-.04-.04-.04-.07a2.44 2.44 0 0 0-.6-2.42c-.02-.02-.04-.03 0-.07s.06-.01.07 0zm-.1 2.08a5.33 5.33 0 0 1-.87 1.32 2.52 2.52 0 0 0-.54.94c-.01.05-.1.03-.1-.02a1.45 1.45 0 0 0-.05-.47 1.87 1.87 0 0 0-.2-.47 1.35 1.35 0 0 1-.26-.84c.01-.28.13-.55.32-.83.12-.2.2-.39.26-.58a2.39 2.39 0 0 0 .09-.6c0-.02 0-.04.05-.04s.05.03.05.05a2.61 2.61 0 0 1-.36 1.23c-.19.26-.3.52-.3.78-.02.26.06.52.23.78a2.07 2.07 0 0 1 .27.74 2.65 2.65 0 0 1 .47-.73 4.92 4.92 0 0 0 .5-.65c.14-.22.25-.43.35-.65.02-.02.03-.05.07-.02.05.02.04.04.03.06zm-3.1-1c0 .27.02.5.08.73.05.23.13.44.25.63.02.03.03.05-.01.08-.05.02-.06 0-.07-.02a2.25 2.25 0 0 1-.27-.66 3 3 0 0 1-.07-.75c0-.03 0-.06.05-.05.05 0 .05.02.05.05zm-1.75.95v.3c0 .03 0 .06-.06.06s-.05-.03-.05-.06v-.3c0-.03 0-.05.05-.05.06 0 .06.02.06.05zm.58-1.61c0 .18-.02.35-.07.52a1.44 1.44 0 0 1-.28.47c-.01.02-.03.04-.07 0-.04-.03-.02-.04 0-.07.11-.14.2-.28.24-.44a1.37 1.37 0 0 0 .07-.48c0-.02 0-.05.05-.05.06 0 .06.03.06.05zm-1.59 3.12a3.29 3.29 0 0 1-.28-1.72c.07-.47.29-.82.57-1.1.18-.2.35-.39.45-.62.11-.24.16-.52.12-.9 0-.03 0-.06.05-.06s.05.02.06.04c.03.4-.02.7-.13.96-.11.25-.28.45-.48.65a1.87 1.87 0 0 0-.53 1.04c-.07.44 0 .99.27 1.68.01.02.02.05-.02.07-.05.02-.06-.01-.07-.03zm-.91-1.16a.72.72 0 0 0-.05.34c.01.12.06.23.13.35.01.02.03.04-.02.07-.04.03-.05 0-.07-.02a.94.94 0 0 1-.14-.39.83.83 0 0 1 .05-.39c.01-.02.02-.04.07-.03.05.02.04.05.03.07zm4.5-3.2c.18.27.3.54.31.83.02.28-.04.57-.2.88-.01.02-.02.04-.07.02s-.03-.05-.02-.07c.15-.28.21-.56.2-.83a1.51 1.51 0 0 0-.3-.76c-.02-.02-.04-.05 0-.08.05-.03.06 0 .08.02zm1.4-1.1a2.4 2.4 0 0 1 .07 1.68c-.01.04-.1.04-.1-.02a1.78 1.78 0 0 0-.16-.7 1.52 1.52 0 0 0-.43-.53c-.02-.02-.04-.04 0-.08.03-.04.05-.02.07 0a1.6 1.6 0 0 1 .6 1c.02-.17.04-.34.03-.51a2.25 2.25 0 0 0-.17-.8c-.01-.02-.02-.04.03-.06.04-.02.06 0 .07.03zm.84-1.13c.18.18.31.42.4.72.07.3.1.64.08 1.03a2.02 2.02 0 0 0 0 .49.95.95 0 0 0 .13.41c.02.02.03.05-.01.07-.04.03-.06 0-.07-.01a1.06 1.06 0 0 1-.16-.46 2.28 2.28 0 0 1 .01-.5 3.52 3.52 0 0 0-.09-1 1.48 1.48 0 0 0-.36-.68c-.02-.02-.04-.04 0-.08.03-.03.05-.02.07 0zm-2.22-.22c-.12.14-.2.32-.23.5-.03.2-.03.41 0 .65.01.02.02.05-.04.06-.05 0-.05-.02-.06-.05a2.02 2.02 0 0 1 0-.67c.04-.21.12-.4.25-.56.02-.02.04-.04.08 0 .03.03.02.04 0 .07zm-4.34 2.92a1.98 1.98 0 0 1-.34 1.07 2.48 2.48 0 0 1-.8.7c-.03.02-.05.03-.07-.02-.03-.04-.01-.05.01-.07.31-.18.58-.4.77-.67.2-.27.31-.6.33-1.02 0-.02 0-.05.06-.05.05 0 .05.03.05.06zm-.11-1.5c.03.16.02.32-.02.48a2.17 2.17 0 0 1-.17.47c-.02.02-.03.04-.07.02-.05-.03-.04-.05-.03-.07.08-.15.14-.3.17-.44.03-.15.04-.3.02-.44 0-.03 0-.05.05-.06.05 0 .05.02.06.05zm2.94-.21v.15l.05.76v.07c0 .02 0 .05-.04.05h-.02l-.04.02c-.05 0-.05-.03-.05-.06v-.84l-.02-.2c0-.03 0-.06.05-.06s.05.02.06.05V110.63zm.71-1.31c-.21.25-.3.5-.3.74s.07.47.18.71c.25.4.33.8.3 1.19-.02.4-.15.78-.33 1.17 0 .03-.02.05-.07.03-.04-.02-.03-.05-.02-.07.17-.38.3-.76.32-1.14a1.85 1.85 0 0 0-.3-1.13c-.1-.25-.19-.5-.18-.77 0-.26.1-.52.32-.8.01-.02.03-.04.07 0 .04.03.02.05 0 .07zm-4.56-8.13c.34-.26.68-.41 1.03-.45.36-.03.72.04 1.11.23h.4l.4-.01c.02 0 .05 0 .05.05s-.03.05-.06.05h-.4l-.36.01c-.43.38-.79.58-1.1.65a1.06 1.06 0 0 1-.88-.19c-.02-.02-.05-.04-.01-.09.03-.05.06-.04.09-.02a.96.96 0 0 0 .77.17c.28-.06.6-.23.97-.55a1.87 1.87 0 0 0-.96-.17c-.32.03-.64.17-.97.42-.02.02-.05.04-.09 0-.03-.06 0-.08.02-.1z"/><path d="M351.64 101a.26.26 0 0 1 .26.25.26.26 0 0 1-.26.26.26.26 0 0 1-.26-.26.26.26 0 0 1 .26-.26zm1.8 1.57a2.22 2.22 0 0 0 .74-.63c.02-.02.03-.05.07-.02.05.03.03.06.02.08a2.27 2.27 0 0 1-.31.34c-.13.11-.28.22-.48.32-.02.01-.04.03-.07-.02-.02-.04 0-.06.03-.07zm3.7-1.53a.52.52 0 0 1 .28 0 .77.77 0 0 1 .28.15c.02.02.04.04.01.08s-.05.02-.07 0a.67.67 0 0 0-.24-.13.46.46 0 0 0-.24 0c-.03 0-.05.01-.06-.04-.02-.05 0-.05.03-.06zm-2.12.08a.85.85 0 0 1 .38-.42c.17-.1.38-.13.65-.1.02 0 .05 0 .05.05s-.03.05-.06.05c-.25-.03-.44 0-.6.09a.73.73 0 0 0-.33.37c0 .03-.02.05-.07.03-.05-.02-.04-.05-.02-.07zm.24.35a.42.42 0 0 1 .12-.24.56.56 0 0 1 .26-.15c.03 0 .05-.01.07.04.01.05-.01.05-.04.06a.45.45 0 0 0-.22.12.35.35 0 0 0-.08.19c0 .02-.01.05-.06.04-.05 0-.05-.04-.05-.06zm-3.52 1.17c-.06.09-.11.18-.15.28a.82.82 0 0 0-.05.33c0 .03 0 .06-.04.06-.06 0-.06-.02-.06-.05a.94.94 0 0 1 .05-.37c.04-.11.1-.21.16-.3.01-.03.03-.05.07-.02.04.03.03.05.01.07zm1 .45v.16c0 .02 0 .05-.04.05s-.06-.03-.06-.05v-.16c0-.02 0-.05.05-.05s.06.03.06.05zm-.65-1.13a.96.96 0 0 0 .31.06c.1 0 .21-.01.32-.04.02 0 .05 0 .06.04.01.05-.02.06-.04.07a1.4 1.4 0 0 1-.34.04 1 1 0 0 1-.35-.07c-.02 0-.05-.02-.03-.07.02-.04.05-.03.07-.02zm.65-1.89a.32.32 0 0 0-.21.07.38.38 0 0 0-.13.18c0 .03-.01.05-.06.04-.05-.01-.05-.04-.04-.06a.49.49 0 0 1 .17-.25.43.43 0 0 1 .27-.08c.03 0 .06 0 .06.05s-.03.05-.06.05zm-1.05.1a.8.8 0 0 0-.19.12.25.25 0 0 0-.08.11c-.01.03-.02.05-.07.03-.05-.01-.04-.04-.03-.06a.37.37 0 0 1 .12-.16.86.86 0 0 1 .21-.13c.03-.01.05-.02.07.03.02.05 0 .06-.03.07zm-.65.03a.82.82 0 0 0-.16.14.67.67 0 0 0-.1.19c-.02.02-.02.05-.07.03-.05-.02-.04-.05-.03-.07a.74.74 0 0 1 .12-.21.9.9 0 0 1 .18-.17c.02-.02.05-.03.08.01s0 .06-.02.08zm-.83.66a1.7 1.7 0 0 0-.38.4c-.01.01-.03.04-.07 0-.04-.03-.03-.05-.01-.07a1.96 1.96 0 0 1 .4-.41c.02-.02.04-.03.07.01.03.04.01.06-.01.07zm.08.92l-.15.16-.15.16c-.01.02-.03.04-.07 0-.04-.03-.02-.05 0-.07l.15-.16.15-.16c.01-.02.03-.04.07 0 .04.03.02.05 0 .07zm-.84.24v.33c0 .02 0 .05-.05.05s-.05-.03-.05-.05v-.33c0-.02 0-.05.05-.05s.05.03.05.05zm1.08 1.42l-.05.53v.05c0 .03 0 .05-.06.05-.05 0-.05-.03-.05-.06v-.05l.06-.53c0-.03 0-.05.05-.05.06 0 .05.03.05.06zm-.63-.47l-.01.34c0 .03 0 .06-.06.05-.05 0-.05-.02-.05-.05l.01-.34c0-.03 0-.06.06-.05.05 0 .05.03.05.05zm-.59-4.49a.73.73 0 0 1 .47.47c0 .03.01.05-.04.07-.05.01-.05-.01-.06-.04a.65.65 0 0 0-.16-.25.7.7 0 0 0-.25-.15c-.02-.01-.05-.02-.03-.07.02-.05.04-.04.07-.03zm5.16 6.73a1.63 1.63 0 0 1 .02 1.35c0 .03-.02.05-.06.03-.05-.02-.04-.04-.03-.07a1.55 1.55 0 0 0-.02-1.26c-.02-.03-.03-.05.02-.07.05-.02.06 0 .07.02zm-1.68 1.95c.07-.25.18-.47.3-.68.13-.2.27-.38.4-.56.17-.21.27-.44.33-.67a1.82 1.82 0 0 0 .02-.76c0-.02 0-.05.04-.06.05 0 .06.02.06.05a1.93 1.93 0 0 1-.36 1.5 6.32 6.32 0 0 0-.4.56c-.12.2-.22.41-.29.65 0 .03-.01.05-.06.04-.05-.02-.05-.04-.04-.07zm-2.16-.57a.72.72 0 0 1 .16-.25.9.9 0 0 1 .26-.19c.02-.01.04-.02.07.03.02.04 0 .06-.03.07a.8.8 0 0 0-.23.16.57.57 0 0 0-.14.21c0 .03-.02.05-.06.03-.05-.01-.04-.04-.03-.06zm-.42-.15l.25-.29c.1-.09.2-.16.32-.21.03-.01.05-.02.07.03.02.05 0 .06-.03.06a.97.97 0 0 0-.29.2 2.06 2.06 0 0 0-.24.27c-.02.02-.03.04-.08 0-.04-.02-.02-.04 0-.07zm2.24-2.23c.09.04.17.06.26.06a.83.83 0 0 0 .24-.03c.02 0 .05-.01.06.04.02.05-.01.06-.03.06a.8.8 0 0 1-.57-.03c-.03-.01-.05-.02-.03-.07.02-.05.05-.04.07-.03zm-1.12-.14l.08-.09.01-.01c.02-.02.03-.04.07 0 .04.03.02.05 0 .07l-.08.1c-.02.02-.04.04-.08 0-.03-.03-.02-.05 0-.07zm24.14 6.96a1.12 1.12 0 0 1 .22.37c0 .02.01.05-.04.06-.05.02-.05 0-.06-.03a.76.76 0 0 0-.08-.17.8.8 0 0 0-.12-.16c-.01-.02-.03-.04 0-.07.04-.04.06-.02.08 0zm-26.8 12.58c.12.1.23.2.37.26a.95.95 0 0 0 .43.1c.02 0 .05 0 .05.06 0 .05-.03.05-.05.05-.18 0-.34-.05-.48-.12a1.68 1.68 0 0 1-.39-.28c-.02-.01-.04-.03 0-.07.03-.04.05-.02.07 0z"/><g fill="red"><path d="M368.9 99.6a8.22 8.22 0 0 0 1.66-.08c-.53.38-1.2.63-1.91.75a.77.77 0 0 0 .27-.34.43.43 0 0 0-.02-.33zm-1.42-.15c.38.07.79.11 1.18.14l.02.02c.06.1.08.18.05.26-.03.1-.12.2-.27.3-.04.02-.08.05-.02.13a5.63 5.63 0 0 1-1.22.02.18.18 0 0 0 .04-.03.92.92 0 0 0 .27-.47.63.63 0 0 0-.05-.37zm-10.49-3.01c.67-.09 1.35-.11 2.04-.1a.98.98 0 0 1 .5.41c.11.2.15.46.1.79 0 .04 0 .1.09.1.1.02.1-.03.11-.08.05-.37 0-.67-.13-.9a1.05 1.05 0 0 0-.26-.3l.19.01c.8.04 1.41.27 2.1.61a.12.12 0 0 1 .02.02c.15.16.2.32.18.48-.03.17-.13.36-.3.55-.03.04-.06.08 0 .14.08.06.12.03.15-.01.19-.22.3-.44.34-.65a.7.7 0 0 0-.04-.35c.59.29 1.18.56 1.75.87.02 0 .03 0 .04.02l.01.03a.48.48 0 0 1-.05.43 1 1 0 0 1-.48.32c-.04.01-.09.03-.05.12.03.1.08.08.12.06.27-.1.46-.23.57-.4a.63.63 0 0 0 .1-.45c.39.2.77.42 1.16.61.07.14.08.26.03.38-.06.12-.2.23-.4.33-.05.03-.1.05-.05.13.04.1.09.07.13.05.26-.12.42-.27.5-.43a.54.54 0 0 0 .04-.35l.4.17a8.1 8.1 0 0 0 1.33.35.47.47 0 0 1 .1.38.74.74 0 0 1-.2.37c-.04.03-.07.07 0 .13a.27.27 0 0 0 .03.03c-1.48-.15-2.8-.86-4.18-1.4l-.5-.18c-.5-.2-1.02-.46-1.53-.66a.16.16 0 0 0-.06-.04c-.04 0-.07-.02-.1-.03-.03 0-.05-.02-.07-.03v.01a8.48 8.48 0 0 0-1.41-.33 6.11 6.11 0 0 0-1.63-.02l-.09-.01c.05-.3.01-.55-.13-.77a1.25 1.25 0 0 0-.47-.42z"/><path d="M354.56 97.09a8.69 8.69 0 0 1 2.08-.6c.32.13.53.28.65.47.12.18.15.4.1.64a4.2 4.2 0 0 0-1.83.22 1.22 1.22 0 0 0-.62-.63 1.24 1.24 0 0 0-.38-.1zm7.46 3.77a9.41 9.41 0 0 0-.56-.33 6.92 6.92 0 0 0-3.03-.86l.02-.03c.38-.38.46-.74.33-1.08a1.7 1.7 0 0 0-.64-.73c.35-.02.68 0 1.05.06.52.07 1.2.25 1.82.5.15.32.19.62.12.86-.07.26-.26.48-.57.65-.04.03-.09.05-.04.14.05.08.09.06.13.03.37-.2.59-.46.67-.77.07-.24.05-.51-.06-.81.42.19.8.4 1.06.65l1.01.73c0 .42-.12.66-.32.78-.22.13-.53.15-.88.12-.05 0-.1-.01-.1.08z"/><path d="M364.05 102.39c-.61-.48-1.22-.98-1.86-1.42.36.03.68 0 .92-.14.23-.15.39-.4.41-.8.39.3.76.6 1.11.94l.54.5v.01c.05.15.06.28.05.4a.46.46 0 0 1-.11.26.55.55 0 0 1-.27.15c-.18.05-.4.06-.68.03-.05 0-.1-.01-.1.07z"/><path d="M366.18 103.79a11.84 11.84 0 0 1-1.96-1.27c.26.02.48 0 .66-.05a.75.75 0 0 0 .37-.2c.09-.1.14-.23.16-.38a.92.92 0 0 0 0-.22 10.47 10.47 0 0 0 2.1 1.43v.05c.04.2-.07.32-.27.4-.23.1-.58.13-.97.15-.05 0-.1 0-.1.08z"/><path d="M368.45 104.68a11.89 11.89 0 0 1-2.06-.78c.37-.03.7-.07.92-.16.27-.1.42-.27.4-.53a10.8 10.8 0 0 0 1.28.55c.08.17.08.3.01.42-.08.15-.27.27-.5.37-.05.02-.1.04-.05.13z"/><path d="M373.18 104.2c.06-.01.44-.11.24.04-1.4.9-3.16.9-4.83.48.27-.12.48-.26.58-.43a.57.57 0 0 0 .06-.45c.53.17 1.07.3 1.62.37a.38.38 0 0 1-.08.25c-.1.11-.24.22-.48.32-.05.02-.1.04-.05.13.03.1.08.07.12.05.28-.12.46-.25.56-.38a.55.55 0 0 0 .13-.35 8.96 8.96 0 0 0 2.13-.03zm-9.64 24c-.1.12-.19.24-.27.38-.41.13-.77.33-1.2.32 0 .28.09.4.37.4.54-.27.66-.32.7-.28.07.06-.07.44-.51.76-.07.04-.07.07-.03.14.38.59 1.36.38 1.9.24.37-.1 1.06-.55 1.25-.93.07-.18-.1-.4-.26-.59-.42.07-.56-.13-.5-.26a3.9 3.9 0 0 0-1.45-.17zm-15.15-4.77c-.3.25-.65.45-1.05.58-.15.05-.52.14-.56.33 0 .07.25.22.41.14.45-.43.67-.2.16.24-.04.09 0 .18.08.26.46.41 1.6.55 2.13.22.38-.24.59-.51.25-.88a1.74 1.74 0 0 1 .02-.24l-.63-.07-.4-.22-.4-.36zm9.97 3.47l-.11.02c-.2.22.36.14.66.32.14.09.2.25.14.48-.27.66-1.82.44-2.34.17-.24-.12-.25-.27-.24-.47l.33-.03c.18-.02.37-.08.55-.18.05-.03.1-.06.04-.16-.06-.1-.1-.07-.16-.05a1.3 1.3 0 0 1-.46.16 2.57 2.57 0 0 1-.49.01h-.04c-.09-.05-.16-.11-.12-.16.04-.06.19 0 .22.01.24-.11.44-.18.7-.23l.1-.11c.48.04.93.11 1.23.22zm-7.15-.4c-.1.05-.13.13-.2.28a2.7 2.7 0 0 1-.87.6c-.29.12-.01.25.19.39.18.13.42-.16.57-.38.16-.25.33-.18.22.02-.12.2-.2.5-.21.67-.06.17.59.3.7.3.4.02.9-.36 1.2-.56.26-.26.22-.5.1-.81v-.02a1.97 1.97 0 0 1-.47-.05 3.43 3.43 0 0 1-.56-.19c-.02 0-.04-.02-.02-.07 0-.03.02-.03.04-.03l-.68-.16zm2.77-26.38h.32c.2.02.4.11.6.13a4.5 4.5 0 0 1 1.7-.37 5.68 5.68 0 0 1 1.74-.22.08.08 0 0 1-.02-.02c-.07-.06-.04-.1 0-.13.31-.32.38-.62.28-.88-.1-.28-.39-.53-.78-.77-.42.05-.83-.07-1.28-.02a4.06 4.06 0 0 0-.82.19c.22.08.42.2.58.4.2.23.34.55.42.96 0 .04.01.09-.08.1-.1.03-.1-.02-.12-.07-.06-.37-.2-.66-.37-.87-.19-.26-.62-.37-.75-.42-.45.04-.9.1-1.27.19-.3.07-.55.18-.74.33.29-.06.59-.05.85.08.25.12.46.35.59.73.02.04.03.1-.06.12-.1.03-.11-.01-.12-.06a1.01 1.01 0 0 0-.5-.62c-.4-.2-1.25-.03-1.61.24a4.23 4.23 0 0 0-.62.6c-.02.02-.05.04-.08.04.77.06 1.54.1 2.14.34zm-2.28-.44c-.01-.04.01-.07.04-.1.22-.25.43-.46.66-.63.22-.16.44-.28.67-.33.24-.26.6-.42 1-.53.4-.1.85-.15 1.3-.2-.13-.27-.3-.43-.5-.52-.22-.1-.46-.1-.73-.08-.55.19-1.04.49-1.5.82h.12c.14.01.26 0 .38.04.05.01.1.03.06.12-.04.11-.35.04-.45.04a1.35 1.35 0 0 0-.4.04h-.07c-.5.3-.87.62-1.27.96.3.1.54.23.7.38z"/></g><path fill="#0093dd" d="M409.03 156.5l20.74-47.01-15.3-24.7-27.29 10.1-12.63 49.68a219.39 219.39 0 0 1 34.48 11.93z"/><path fill="#fff" d="M382.58 113.01a251.72 251.72 0 0 1 39.59 13.7l-8 18.15a231.95 231.95 0 0 0-36.48-12.62z"/><path fill="red" d="M415.45 141.95l5.35-12.12a248.56 248.56 0 0 0-39.06-13.52l-3.15 12.4a235.9 235.9 0 0 1 37.05 12.82l-.19.42z"/><path d="M385.59 125.75c.36-.22.74-.17 1.12-.1.31-.12.67-.16 1.06-.15.17-.09.36-.15.58-.2.11-.08.12-.18.01-.28a.62.62 0 0 1-.15-.36c-.62-.35-.85-.9-1.08-1.44-.35-.09-.52-.21-.55-.34l-.51-.06c-.8.1-1-.17-1.3-.38a.95.95 0 0 1-.57-.46l-.26-.33c-.22-.27-.15-.64.18-.62.23.03.46.03.67-.06a2 2 0 0 1 .9-.09c.34-.02.55-.23.88-.54l-.01-.39c-.05-.14.01-.2.2-.18a.98.98 0 0 1 .87.5c.5.1.9.34 1.17.76.67 0 1.12.26 1.18.5.04.19-.16.4-.46.62v.14c.18.15.3.31.36.46.38.15.74.34 1.07.63.96-.11 2.58.58 4.77 1.98a18.58 18.58 0 0 1 4.12 1.22l.84.02c2.37-.35 4.67-.08 6.8 1.55.8.1 1.53.35 2.23.64.52.22 1.05.3 1.58.35a7.93 7.93 0 0 1 2.6.7c.98.21 1.89.52 2.45 1.2.4.49.3.93-.2 1.12-.31.65-.93.67-1.84.35-.64.12-1.33-.39-1.97-.86-.88-.29-1.68-.8-2.48-1.33-.42-.31-.84-.51-1.24-.6-.32-.07-.61-.11-.8 0-.1.06-.09.1 0 .16.22.19.38.47.43.8.04.3 0 .64.01 1 .02.38.25.66.63.9.27.16.58.33 1.03.4.22.04.28.17.27.33.12.58.24 1.16.45 1.68.06.15.17.22.34.35.59.42.28.9-.25 1a3.1 3.1 0 0 1-1.35.8c-.38.12-.54-.03-.67-.22a.48.48 0 0 1-.44-.25c-.47-.34-.07-.94 1.05-.68.02-.13.12-.17.21-.17a1.5 1.5 0 0 1 .02-.91c-.1-.07-.18-.15-.33-.2a2.8 2.8 0 0 1-1.08-.59c-.57-.54-1.47-.99-2.33-1.44-.7-.04-1.24-.36-1.8-.64l-.75-.01c-.22-.07-.4 0-.53.16-.22.27-.48.23-.79.19-.35-.04-.7-.01-1.06-.02-.17.04-.34.1-.53.1-.4-.02-.78-.02-1.04.2-.22.23-.44.2-.66.12a.98.98 0 0 1-.35-.24c-.27-.06-.45-.12-.51-.2-.46-.14-.6-.27-.57-.4-.62-.14-.32-.63.07-.64.47-.02.9.07 1.36.13.39.11.87.05 1.18-.24.2-.18.28-.34.53-.48-.8-.05-1.38-.2-1.81-.46-1.16-.74-2.1-.91-2.83-.3-.2.12-.35.16-.56.08a1.06 1.06 0 0 0-.59-.03c-.42.1-.83.05-1.25-.1a4.09 4.09 0 0 1-1.84.06c-.52.27-.9.3-1.14.1a8.55 8.55 0 0 1-.65-.4c-.33-.06-.47-.14-.48-.25-.42-.04-.48-.2-.47-.37-.18-.2-.11-.35.06-.48.32-.13.64-.18 1 0 .22.1.38.2.5.3.25-.02.45 0 .63.08.13-.21.51-.22.92-.2.21-.14.46-.23.77-.26l-.02-.15c-.42-.1-.63-.4-.84-.71a2.94 2.94 0 0 1-1.55-.56c-.37.03-.67-.1-.96-.27-.24.02-.5.03-.75-.04a2.55 2.55 0 0 1-1.4 0c-.31.03-.56 0-.82-.02-.29.33-.62.4-.98.22a1.5 1.5 0 0 0-.83-.5c-.26-.1-.35-.2-.4-.33-.32-.2-.25-.4.06-.55.24-.12.53-.14.98.08.15.06.31.1.5.1z"/><path fill="#fff" d="M401.22 130.52c-.03-.06-.1-.2-.34-.06-.74-.04-1.57-.03-2.2-.4-.64-.38-1.31-.77-2.03-.75.22-.2.48-.34.79-.42.41-.1.9-.11 1.44-.03.76.13 1.43.27 1.94.47.5.18.85.42 1 .72a.4.4 0 0 0 .05.04 3.36 3.36 0 0 1 .8.72 2.5 2.5 0 0 1-.71-.04 2.88 2.88 0 0 1-.74-.26z"/><path d="M402.93 94.71l.04.22.93 4.84-3.71 3.23-.17.15.21.08 4.66 1.61.94 4.83.05.23.17-.15 3.72-3.23 4.66 1.6.22.07-.04-.22-.94-4.84 3.72-3.24.17-.15-.22-.07-4.65-1.61-.95-4.83-.05-.23-.17.15-3.72 3.23-4.66-1.6z"/><path fill="#f7db17" d="M400.65 102.95l3.47-3.02 4.36 1.5zm8.41-1.63l3.48-3.03 4.35 1.5zm7.86-1.37l-3.47 3.02-4.36-1.5zm-8.41 1.64l-3.48 3.02-4.35-1.5zm-5.1-6.43l4.36 1.49.88 4.53zm5.63 6.46l4.36 1.5.87 4.52zm5.11 6.13l-4.35-1.5-.88-4.52zm-5.62-6.47l-4.36-1.5-.87-4.52zm3.02-7.63l.89 4.52-3.48 3.03zm-2.79 8.1l.88 4.53-3.47 3.02zm-2.74 7.5l-.89-4.52 3.48-3.03zm2.79-8.1l-.88-4.53 3.48-3.02z"/></symbol><symbol viewBox="0 0 640 480" id="flag-it"><g fill-rule="evenodd" stroke-width="1pt"><path fill="#fff" d="M0 0h640v480H0z"/><path fill="#009246" d="M0 0h213.33v480H0z"/><path fill="#ce2b37" d="M426.66 0H640v480H426.66z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-cy"><path fill="#fff" d="M0 0h640v480H0z"/><path id="flag-cy-a" fill="#435125" d="M307.84 398.6a.81.81 0 0 1-.28-.2l-.1-.09c-.26-.24-.69-.66-1.26-1.31-1.07-1.21-2.5-2.99-3.76-4.55-2.49-3.1-4.55-5.78-4.94-6.29l-.63-.82-6.21-1.92-4.54-2.12 2.43-2.72 8.32 3.56 6.22 1.28 11.49 8.45h-.01c-.02.03-1.67 1.4-3.31 2.89-.73.66-1.65 1.51-2.3 2.22-.3.33-.56.65-.74.92-.12.16-.18.3-.2.37l.7-.44.78.6-1.57.15-.08.01zm-42.67-12.82a31.7 31.7 0 0 1-15.92-4.45s.67-1.29 2.3-2.48c1.55-1.14 4.35-2.5 8.88-2.52h.1c5.35 0 11.91 1.82 19.5 5.41a28.8 28.8 0 0 1-14.86 4.05zm-23.5-5.2c-1 0-1.9-.38-2.53-1.07a5.16 5.16 0 0 1-1.14-2.3 11.7 11.7 0 0 1-.28-3.38 3.48 3.48 0 0 1 1.25-.28h.09c2 0 3.59 1.74 4.27 3.47.38.98.46 1.8.22 2.45-.24.65-1 1.1-1.88 1.1zm41.35-4.8c-13.9-1.98-19.78-7-22.27-10.86-2.66-4.12-2.11-7.93-2.1-7.97v-.01s.85-.23 2.13-.24c3.7 0 13.15 1.86 22.24 19.08zm-28.47-2.75c-5.93 0-10.45-1.02-13.42-3.04a8.25 8.25 0 0 1-2.95-3.3 5.4 5.4 0 0 1-.48-1.62 18.17 18.17 0 0 1 7.15-1.34c4.59 0 11.56 1.5 18.92 8.62-3.36.45-6.47.68-9.23.68zm-28.73-1.1c-6.25 0-14.85-1.91-20.2-7.27h-.01l.01-.01c.06-.02 5.88-1.5 12.42-1.65l1.18-.02c5.87 0 10.36 1.14 13.35 3.38 1.04.79 1.61 1.52 1.74 2.23.1.6-.2 1.24-.84 1.72-1.35 1.02-3.76 1.56-7.16 1.61l-.48.02zm-20.27-10.4a2.56 2.56 0 0 1-1.98-.94 4.68 4.68 0 0 1-.89-2.01c-.33-1.48-.23-2.93-.23-2.94v-.02a2.43 2.43 0 0 1 .97-.22c.93 0 1.64.5 2.08.93a5.57 5.57 0 0 1 1.35 2.12c.29.82.34 1.5.14 2.1-.16.48-.7.97-1.44.97zm46.83-1.06c-1 0-1.9-.38-2.54-1.06a5.16 5.16 0 0 1-1.14-2.3 11.7 11.7 0 0 1-.28-3.38 3.48 3.48 0 0 1 1.25-.28h.1c2 0 3.58 1.74 4.26 3.46.39.99.46 1.81.22 2.46-.24.65-1 1.1-1.87 1.1zm-22.81-.94c-12.6-.44-19.12-4.02-22.39-6.95a14.63 14.63 0 0 1-3.39-4.36c-.5-1.02-.7-1.8-.73-1.95h.02s1.19-.43 3.1-.47h.3c4.25 0 12.89 1.78 23.08 13.72v.01zm13.67-1.27c-10.13-1.55-15.87-5.9-18.9-9.27a19.35 19.35 0 0 1-4.17-7c.02 0 1.26-.32 3.12-.37a14.24 14.24 0 0 1 .86 0c5.1.11 14.35 2.42 19.09 16.63zm-52-4.87c-3.32 0-6.54-.38-9.57-1.14-5.3-1.33-7.58-3.35-8.55-4.82a5.05 5.05 0 0 1-.83-2.02 3.41 3.41 0 0 1-.02-.86l.02-.01c.02 0 3.52-.99 8.37-1.06a35.03 35.03 0 0 1 7.43.66 21.72 21.72 0 0 1 12.85 8.1v.02c-.06 0-4.07 1.13-9.7 1.13zm23.51-8.54a3.4 3.4 0 0 1-2.54-1.04 5.21 5.21 0 0 1-1.13-2.33c-.4-1.61-.3-3.2-.28-3.35a3.48 3.48 0 0 1 1.25-.28h.09c2 0 3.59 1.74 4.27 3.47.37.95.44 1.76.2 2.42-.26.68-.98 1.1-1.86 1.1zm-17.68-2.43a38.6 38.6 0 0 1-9.57-4.18c-4.44-2.73-9.86-7.56-10.52-15.06 0 0 .42-.1 1.03-.13h.27c1.32 0 4.03.37 7.31 2.86 4.18 3.19 8.04 8.74 11.48 16.52zm11.55-.42a31.2 31.2 0 0 1-7.58-4.87c-3.9-3.27-9.4-9.16-13.37-18.66 0 0 .91-.49 2.3-.58a3.31 3.31 0 0 1 .25 0h.37c1.93.06 4.87.86 8.13 4.37 3.74 4.04 7.08 10.68 9.92 19.73v.02h-.02zm-29.92-.87c-3.85 0-5.17-2.1-5.56-3-.64-1.47-.45-2.94-.44-2.96v-.02a8.5 8.5 0 0 1 1.92-.25h.13c3.04 0 5.44 1.55 6.47 3.08.2.3.83 1.35.3 2.17-.4.65-1.35.98-2.82.98zm-8.54-10.78a51.1 51.1 0 0 1-8.91-.76c-3.44-.62-5.38-3.54-6.41-5.88-1.12-2.55-1.44-4.98-1.44-5 10.63.3 15.65 3.4 18 5.96a9.38 9.38 0 0 1 2.56 5.54h-.01c-.02 0-1.51.14-3.8.14zm11.06-11.05a42.73 42.73 0 0 1-2.42-3.39c-1.26-1.95-2.42-4-2.42-5.66 0-1.62-.38-5.02-.61-6.9-.29-2.39-.58-4.43-.6-4.6h.01c.27.1 6.65 2.49 6.65 8.47 0 6-.6 12.01-.6 12.07v.01zm-8.26-.57c-.07 0-.13 0-.2-.02-1.88-.31-5.2-1.75-8.86-3.85-4.06-2.33-7.37-4.83-9.3-7.03-1.75-2.01-2.8-5.17-3.1-9.38-.21-3 .04-5.49.07-5.73a3.3 3.3 0 0 1 1.05-.17c1.41.02 2.92.66 4.95 2.06a39.6 39.6 0 0 1 5.2 4.41c3.2 3.17 5.73 6.35 5.76 6.38l.02.03c.21.38 2.03 3.66 3.45 6.85.9 2.02 1.41 3.48 1.62 4.6.12.63.15 1.04 0 1.42a.72.72 0 0 1-.31.36.87.87 0 0 1-.36.07z"/><use width="100%" height="100%" transform="matrix(-1 0 0 1 593.74 0)" xlink:href="#flag-cy-a"/><path fill="#d47600" d="M519.06 76.38l-1.88.75-.74.3-2.28-.13-2.14 1.03-3.8 2.59-.16.12-1.41.37-1.32-.57-.74.34-.26 1.53-.7 1.1-.88.62-3.03.31-2.55 1.32-3.32-.9-1.54.61-3.28 2.96-1.68.79-.58-.03-2.23-.12-.94.3-1.4 1.36-2.65.2-.82.58-1.3 2.6-1.4 1.46-.8.16-.87-.31-.66.11-.3 1.67-.63.7-1.77.61-1.42 1.18-1.25.64-1.66-.04h-.39l-1.66.92-3.12.27-1.3 1.24-.29.27-.6.36-1 .6-.24.14-1.2-.21-1.4.55-.56-.87-.97.58-1.28.06-1.6-.71-1.22-.54-.89.13-.3 1.55-.04.16-.94 1.25-1.74 1.06-.24.3-1.99 2.57-3.78 3.97-3.2 1.63-3.3 1-2.32 1.9-6.08 3.02-9.6 4.77-1.96.63-2.81.45-5.03 1.85-4.43 1.34-.24.08-.88.26-6.25 1.9-2.9-.32-1.73.63-4.48-.5-3.12.06-1.97.41-3.71 1.78-6.26 3.01-2.07 1.9-3.22 1.68-3.78 1.2.01-1.6-.02-.06-1.3.41-.95.3-3.06.47h-1.7l-1.06-.3-.17.05-6.25 2.06-6.98.67-3.49 1.12-2.6-.04-1.64.49-3.2.39-1.13-.3-.26-.08-9.4.41-4.3-.49-2.05.47-3.44-1.16-5.01-.58-1.17-.35-2.64-.78-1.2.69-.88.1-2.14-.78-.77-.02-1.76.63-1.01-.26-.94-.75-2.21-.33-1.35-1.13-7.52 1-2.04-.6-6.84-2-1.1.06-1.35 1.02-2.04.74-1.77.46-2.4.09-2.8-.74-2.89-1.4-1.07-.25-2.38.24-.72.07-4.38-2.35-5.63-3.52-3.82-1.84-1.44-.23-.2.68.72 2.25.24 2.22-.07 2.05-.04 1.27.36 1.14 1.38 1.53.58 1.53.42 4.23-.01 4.3-.67 6.83-.23 1.04-.8 3.55-.73 3.25-2.84 8.67-.78 1.07-1.9 1.3-4.34 2.96-3.2 1.84-1 .42-2.6.2-1.61-.1-2.01-1.08-1.97-.51-2.6-1.86-2.87-.6-3.15-1.82-.82-.98-1.72-.16-2.38-.72-.87-.27-.6-.17-3.04-.09-2.83-1.3-1.5-.36-2.03-.1-2.13.98-1.08.5-1.37-.54-.99.06-1.12 1.7-.16.26-.78.4h-.96l-.75-.03-.81.36-1.1.47-.96.43-.47.2h-.01l-.29.05-.52.1-.64.11-1.13-.66-.6-.35-1-.2-.54.38-.1 1.85-.5 1.1-1.57 1.38-1.6 1.4-1.1 1.65-2.95 6.7-1.84 2.72-.57.63-1.93 2.12-1.7 1.33-3.94 3.05-3.73 1.4-3.21.65h-1.56l-2.96-.39-2.66-.82-2.92-1.82-3.2-2.57-4.63-4.58-.66-.4-.14-.09-1.46-.93-1.08.02-.42.7-.24 1.01-.2.9-.52 5.1.04.29.28 2.1 3.52 4.92 1.08 2.61.18.3.73 1.22.55.93.06.1 1.2 3.59-.85 2.02.43 1.36-1.07.83-.2 1.17 3.17 3.97.69 1.74-.77 2.43-1.23 1.33-.35.37.18 1.02 1.45 1.31 2.47 2.2 1.32 3.27 1 .88 1.17-.25.65.5.98-.02.96.96.63.3.99.5.78 1.02.17 3.13 1.46 3.88.02 2.11.01.3.9 1.56.3 1.23-.49 3.26 1.16 1.04 1.25-.26.81.13 1.3 1.09 1.58 2.4 1.54-.23.97.47 4.73 4.27 1.07.54.06.03.77.39.95.97 1.49-.99.16-.02 1.62-.14.7.48 1.37.92 1.79-.03 3.87 1.2 1.7.43 3.4 2.11 1.46.9.85.7 1.14.93 2.28.98 1.95.46 1.06.25.8.31.01-.05h.01l-.01.05 4.22 1.62 2.29.54 2.12.78 1.54.56 1.13.02 1.6-1.35 1.55-.09 1.29.32 1.25-.2 2-1.23.38-.58 1.41-.67 4.76-.59 1.39.45 3.56-1.55 2.4.67 2.11-.75 4.62 1.02 1.23.87 1.38 1.57h.16l1.53.04-.64 1.06 2.02 2.12 1.83 2.76.12.36 1.33 3.89.98 1.38.7 1.92.02 1.26-1.07.82-.17.46-.06.17.21.53.4-.22.78-.43.93-.14 1.65.17 1.1.12 1.72-.86 1.14-.57 1.83.8 2.02-.03.85.38 2.4 1.08 1.21.12.46-.3.28-.68-.14-.8-.92-1.06-2.02-2.35-.83-1.2-.63-1.76-.2-2.23-.14-1.5.25-1.99.54-.7.4-1.58h.01l.1-.41 1.13-1.5 2.98-1.91 3.2-2.87 2.53-1.66 2.6-1.13.08-.32.29.12 6.63-2.26.1-.01 2.96-.52 19.94 1.4.74-.22.66-1.87.36-.34.24-.23 2.19-.96 1.03-.15 2.84.7 1.17.3 1.86-1.05 1.33.02 2.73-1.5 1.69.05.64-.26 3.29-2.36 3.17-.91.82-.44.3-.16 3.24-1.71 2.06-1.59 1.78-.95 1.95-.5 5.1-.36 1.04-1.7 2.2-.3 1.32-1.5 1.51-.61 1.1-1.57.9-1.31 1.28-.74 4.08-.25 4.83.6.64-.4 1.1-3.9 1.14-.72 3.08-4.5v-1.63l.01-1.37.5-1.94-.34-3.52.41-3.55 1.92-4.52 1.68-1.83 2.72-1.84 1.39-.6 1.96-.33.29-.05.5-.09 6.74-.09c.1-.07 2.45-.03 2.45-.03l2.25-.03 5.7 1 .4.08 1.92.62 2.22 1.73 2.35 2.3.44.42 1.52.64.46.2 1.26-.2 1.79-.93 1.35-1.14 1.84-1 .05-.07 1.03-1.56.03-.03h.03-.02l.4-.63 3.57-1.38 4.18-.25.47-.25.26-.14 1.1-1.3h1.04l2.51.9 1.77-.35 1.4.56 1.08-.13 2.06-.24 2.2 1.55 1.28.16 4.53 2.65.23.04.13.02.26.04.53-.16.8-.23.1-.03.1.14.52.72.7.1.84-1.1-.33-.51-.12-.19-1.62-.33-1.45-2.48 1.38-1.49-2.17-2.66-.36-.44-.12-.19-.75-1.13-3.8-5.8-4.94-3.94-1.74-1.38V200l-.62-.48-2.64-2.68-1.88-2.5-.25-.55-.4-.85-1.12-2.46-1.97-1.51-1.6-1.76-.08-.1-3.31-4.5-.55-.76-.78-.45h-1.65l-.16-.17-.1-.1.06-.05.8-.79.88-.22.38-.87-1.69-4.89v-.17l-.13-1.56 1.37-7.08.18-.86 2.34-4.77 1.45-1.19 1.58-3.11 1.36-2 1.3-1.26.23-.13 2.34-1.42 1.98-.28 1.87-.27 3.28 1.01 3.12-.06.61-.06 1.42-.16 2.33-.74 1.1-.68.57-.87 1.19-3.99.38-1.27.73-1.38 4.25-4.88 3.2-2.97 7.22-5.3 3.53-2.1 1.8-1.08 16.1-7.16 4.2-4.24 2.17-2.2 3.86-2.6 4.5-1.84 3.9-3.08.84-1.06 1.07-3.45.9-.21.8-1.74.23-.5 3.16-2.23.36-.18 12.31-6.17 1.79.25.96-1.44 3.58-.6.66-.1.88-.45.75-1.28v-.25l.1-3.42.77-.92.42-2.26.39-.52.41-.54 1.02-.7-.18-.43z"/></symbol><symbol viewBox="0 0 640 480" id="flag-lv"><g fill-rule="evenodd"><path fill="#fff" d="M0 0h640v480H0z"/><path fill="#981e32" d="M0 0h640v192H0zm0 288h640v192H0z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-lt"><g fill-rule="evenodd" stroke-width="1pt" transform="scale(.64143 .96773)"><rect width="1063" height="708.7" fill="#007308" rx="0" ry="0" transform="scale(.93865 .69686)"/><rect width="1063" height="236.2" y="475.6" fill="#bf0000" rx="0" ry="0" transform="scale(.93865 .69686)"/><path fill="#ffb300" d="M0 0h997.77v164.61H0z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-lu"><path fill="#00a1de" d="M0 240h640v240H0z"/><path fill="#ed2939" d="M0 0h640v240H0z"/><path fill="#fff" d="M0 160h640v160H0z"/></symbol><symbol viewBox="0 0 640 480" id="flag-hu"><g fill-rule="evenodd"><path fill="#fff" d="M640 480H0V0h640z"/><path fill="#388d00" d="M640 480H0V320h640z"/><path fill="#d43516" d="M640 160.13H0V.13h640z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-mt"><g fill-rule="evenodd" stroke-width="1pt"><path fill="#ce0000" d="M320 0h320v480H320z"/><path fill="#fff" d="M0 0h320v480H0z"/></g><g transform="translate(-12.38 -30.75) scale(1.5986)"><path fill="#f1eeee" fill-rule="evenodd" d="M104.82 108.07c0 .8-.91 1.46-2.04 1.46-1.14 0-2.05-.65-2.05-1.46 0-.81.91-1.47 2.04-1.47 1.14 0 2.05.66 2.05 1.47z"/><path fill="#c00" fill-rule="evenodd" d="M40.73 100.98v37.2h37.2c0 6.2 6.21 12.41 12.41 12.41v37.2h37.21v-37.2c6.2 0 12.4-6.2 12.4-12.4h37.21v-37.21h-37.2c0-6.2-6.2-12.4-12.41-12.4v-37.2h-37.2v37.2c-6.21 0-12.41 6.2-12.41 12.4H40.73z"/><path fill="#ffe600" fill-rule="evenodd" d="M41.97 102.22v34.73h37.21c0 6.2 6.2 12.4 12.4 12.4v37.2h34.73v-37.2c6.2 0 12.4-6.2 12.4-12.4h37.21v-34.73h-37.2c0-6.2-6.2-12.4-12.4-12.4V52.6H91.57v37.2c-6.2 0-12.4 6.21-12.4 12.41H41.97z"/><path fill="#707070" fill-rule="evenodd" d="M43.2 103.46v32.25h37.22c0 6.2 6.2 12.4 12.4 12.4v37.2h32.25v-37.2c6.2 0 12.4-6.2 12.4-12.4h37.21v-32.25h-37.2c0-6.2-6.2-12.4-12.41-12.4v-37.2H92.82v37.2c-6.2 0-12.4 6.2-12.4 12.4H43.2z"/><path fill="#a0a0a0" fill-rule="evenodd" d="M44.45 104.7v29.77h37.2c0 6.2 6.21 12.4 12.41 12.4v37.2h29.77v-37.2c6.2 0 12.4-6.2 12.4-12.4h37.21V104.7h-37.2c0-6.2-6.2-12.4-12.41-12.4V55.1H94.06v37.2c-6.2 0-12.4 6.2-12.4 12.4H44.45z"/><g fill-rule="evenodd"><path fill="#d0d0d0" d="M94.37 89.22c2.18 2.18.41 7.48-3.95 11.84s-9.66 6.13-11.84 3.95c-2.18-2.18-.41-7.48 3.95-11.84s9.66-6.13 11.84-3.95z"/><path fill="gray" d="M91.74 91.85c2.18 2.18 1.59 6.3-1.32 9.21s-7.03 3.5-9.2 1.32c-2.19-2.18-1.6-6.3 1.31-9.21s7.03-3.5 9.21-1.32z"/><path fill="#d0d0d0" d="M80.77 98.43l.88-.88 3.5 1.76-1.75-3.51.88-.88 3.51 7.02-7.02-3.51zm5.27-5.26l.87-.88 5.27 5.26-.88.88z"/></g><g fill-rule="evenodd"><path fill="#d0d0d0" d="M139.3 105c-2.17 2.19-7.47.42-11.83-3.94s-6.13-9.66-3.95-11.84c2.18-2.18 7.48-.41 11.84 3.95s6.13 9.66 3.95 11.84z"/><path fill="gray" d="M136.68 102.38c-2.18 2.18-6.3 1.59-9.21-1.32s-3.5-7.03-1.32-9.2c2.18-2.19 6.3-1.6 9.21 1.31s3.5 7.03 1.32 9.2z"/><path fill="#d0d0d0" d="M130.1 91.41l.88.88-1.76 3.5 3.51-1.75.88.88-7.02 3.51 3.51-7.02zm5.26 5.27l.88.87-5.26 5.27-.88-.88z"/></g><g fill-rule="evenodd"><path fill="#d0d0d0" d="M123.52 149.95c-2.18-2.18-.41-7.48 3.95-11.84s9.66-6.13 11.84-3.95c2.18 2.18.41 7.48-3.95 11.84s-9.66 6.13-11.84 3.95z"/><path fill="gray" d="M126.15 147.32c-2.18-2.18-1.59-6.3 1.32-9.21s7.03-3.5 9.2-1.32c2.19 2.18 1.6 6.3-1.31 9.21s-7.03 3.5-9.21 1.32z"/><path fill="#d0d0d0" d="M137.12 140.74l-.88.88-3.5-1.76 1.74 3.51-.87.88-3.51-7.02 7.02 3.51zm-5.27 5.26l-.87.88-5.27-5.26.88-.88z"/></g><g fill-rule="evenodd"><path fill="#d0d0d0" d="M78.58 134.16c2.18-2.18 7.49-.41 11.84 3.94s6.13 9.66 3.95 11.84c-2.18 2.18-7.48.42-11.84-3.94s-6.12-9.66-3.95-11.84z"/><path fill="gray" d="M81.22 136.79c2.18-2.18 6.3-1.6 9.2 1.31s3.5 7.03 1.32 9.21c-2.18 2.18-6.3 1.6-9.21-1.31s-3.5-7.03-1.31-9.21z"/><path fill="#d0d0d0" d="M87.8 147.75l-.88-.87 1.75-3.51-3.5 1.75-.89-.88 7.02-3.5-3.5 7.01zm-5.27-5.26l-.88-.88 5.26-5.26.88.88z"/></g><path fill="none" stroke="#707070" stroke-width="1pt" d="M269.29 414.57c0 41.1-34.1 74.4-76.18 74.4s-76.18-33.3-76.18-74.4 34.1-74.4 76.18-74.4 76.18 33.3 76.18 74.4z" transform="matrix(.34191 0 0 .35003 42.92 -25.53)"/><path fill="none" stroke="#707070" stroke-width="1pt" d="M269.29 414.57c0 41.1-34.1 74.4-76.18 74.4s-76.18-33.3-76.18-74.4 34.1-74.4 76.18-74.4 76.18 33.3 76.18 74.4z" transform="matrix(.2605 0 0 .26669 58.64 9.02)"/><path fill="#d0d0d0" fill-rule="evenodd" d="M100.27 140.67a1.24 1.24 0 1 1-2.49 0 1.24 1.24 0 0 1 2.48 0zm19.84 0a1.24 1.24 0 1 1-2.48 0 1.24 1.24 0 0 1 2.48 0zm-11.99 0v1.3h-1.65c-1.66 0-1.66 1.29 0 1.29h1.65v1.29c0 1.34 1.44 1.5 1.55.1l.1-1.4h1.66c1.65 0 1.65-1.29 0-1.29h-1.66v-1.29c0-1.3-1.65-1.3-1.65 0z"/><path fill="#d0d0d0" fill-rule="evenodd" stroke="#707070" stroke-width=".1" d="M102.77 122.35v.73s-.39.56-2.87.74c-2.48.17-2.87 0-2.87 0 .07.64.55 1.85.41 3.3.1 1.68-.47 3.2-.47 3.2.06.1-.23.14-.75.1.4-.37.36-1.43.4-2.94.05-1.5-1.56-3.77-1.23-4.4.34-.62 7.38-.73 7.38-.73zm9.84-2.66c2.41-.11 6.46-.09 6.46-.09s.95 1.92.91 2.97c-.04 1.06-.36 1.96-.81 1.51-.45-.45.2-.36.29-1.5.08-1.15-.78-2.33-.78-2.33s-1.73.75-4.33.6c-2.6-.15-1.45-1.12-1.74-1.16z"/><path fill="#d0d0d0" fill-rule="evenodd" stroke="#707070" stroke-width=".1" d="M113.43 121.58c2.41-.11 4 .26 4 .26s.95 1.91.91 2.97c-.04 1.06-.37 1.96-.82 1.5-.45-.44.21-.36.3-1.5.07-1.14-.78-2.33-.78-2.33s-1.73.76-4.33.6c-2.6-.15-1.86-.3-2.15-.35-.3-.04-.37.72-4.3.83-3.94.1-5.95-.83-5.95-.83s-.39.56-2.86.74c-2.48.17-2.87 0-2.87 0 .06.64.55 1.85.4 3.3.1 1.68-.47 3.2-.47 3.2.07.1-.23.14-.75.1.4-.37.36-1.43.4-2.94.06-1.5-1.56-3.77-1.22-4.4.33-.62 2.12-.04 2.46-.36.34-.33-1.6-2.62-1.23-4.77.36-2.14 2.4-1.54 4.92-1.46 2.5.07 8.07.72 9.42 0 1.34-.73.76-3.41 2.05-5.14.82-1.1 2.05-1.46 3.27-1.46.82 0 2.05 2.93 2.05 3.66l-.4.37h-.42v.37c-.93.09-1.06-.8-1.64-1.47-.24 1.03.82 4.4.82 6.6 0 1.83-.76 2.64-.81 2.51z"/><path fill="#d0d0d0" fill-rule="evenodd" stroke="#707070" stroke-width=".1" d="M105.54 118.4c.03.73-3.17 2.37-3.43 3.02-.26.65.82 1 .48 1.37-.33.37-.6.24-.67.3-.07.08-1.2-2.53-1.2-2.53s3-1.36 2.88-1.94c-.1-.59-2.21-.94-2.6-2.41s-.16-4.32-.47-4.91c-.32-.6-4-1.16-4-2.06 0-.9 3.78-3.37 4.2-3.74.4-.36.81.37.4.74-.4.36-3.37 2.63-3.37 3 0 .36 2.45.73 3.27.73.82 0 1.23-.37 1.23-.73 0-.32-.82-.37-.82-1.1s.41-1.1 1.23-1.1c.41 0 1.2.47 1.23 1.1s-.73.68-.82 1.1c-.09.41.82.73 1.64.73s3.62 2.13 4.03 2.5c.4.36.82.36.4.73-.4.37-.16.8-.57.44a1.5 1.5 0 0 1-.41-.74c-.04-.33-3.04-1.83-3.45-1.47-.41.37 0 4.77 0 5.14 0 .73.85.73.82 1.83z"/><path fill="#a7a7a7" fill-rule="evenodd" d="M100.32 109.9h4.92v5.13h-4.92z"/><rect width="30.6" height=".4" x="138.6" y="-25.7" fill="gray" fill-rule="evenodd" rx=".4" ry=".2" transform="matrix(.55442 .83223 -.88237 .47055 0 0)"/><path fill="#d0d0d0" fill-rule="evenodd" stroke="#707070" stroke-width="1pt" d="M180.71 42.52a7.09 7.09 0 1 1-14.17 0 7.09 7.09 0 0 1 14.17 0z" transform="matrix(.11563 0 0 .10345 80.65 101.47)"/><path fill="gray" fill-rule="evenodd" d="M115.88 112.54c0 .3-1.9.66-4.1.66-2.2 0-4.1-.36-4.1-.66 0-.3 1.9.44 4.1.44 2.2 0 4.1-.74 4.1-.44z"/><path fill="#a7a7a7" fill-rule="evenodd" d="M100.73 115.03h4.1v1.47h-4.1z"/><path fill="gray" fill-rule="evenodd" d="M114.05 111.42c-.4.74-.78 1.27-.84 1.18-.07-.09.2-.76.6-1.5.39-.75.77-1.28.84-1.2.06.1-.2.77-.6 1.52zm1.03 1.92c-.45.4-.83.66-.84.58a3.2 3.2 0 0 1 .8-.87c.45-.4.83-.65.84-.57.01.08-.34.47-.8.86z"/><path fill="gray" fill-rule="evenodd" d="M114.56 112.41c.34.61.56 1.12.5 1.15-.07.03-.39-.44-.72-1.05-.34-.6-.56-1.12-.5-1.15.07-.02.39.45.72 1.05zm-.32 3.17c0 .1-1.28.19-2.86.19s-2.87-.09-2.87-.19 1.28-.18 2.87-.18c1.58 0 2.86.08 2.86.18zm-9.42-.36c0 .1-.91.18-2.04.18-1.14 0-2.05-.08-2.05-.19 0-.1.91-.18 2.04-.18 1.14 0 2.05.08 2.05.18z"/><path fill="#d0d0d0" fill-rule="evenodd" stroke="gray" stroke-width=".1" d="M95.81 127.96s.68 1.64 3.56 1.67c2.88.02 3.87-.5 2.7-1.37s-3.33-.6-3.05.15c.28.76-.81 1-1.07.48-.25-.53-1.29-2.1.57-2.2 1.85-.1 5.78-.67 6.77.42.98 1.09-1.11 2.08.47 2.3 1.58.24 1.8-.26 4.53-.4 2.72-.16 3.76.5 4.69.4.93-.08.8-1.69.06-2.1-.74-.4-2.15-.47-2.52-.92-.36-.45-1.35-.08-1.25-.59.09-.5 1.4.35 1.41.1 0-.02.22-.19.26-.23-.16-.04-.26.02-.38.09.13-.1.13-.16.17-.25-.02-.03-.19.13-.21.1-.03-.04.19-.26.09-.18-.04.02-.3.15-.3.06 0-.03.14-.12.1-.17-.05-.05-.24.04-.27.05.12-.15.1-.14 0-.26-.1-.1-.16-.1-.32.02.07-.18.08-.22-.07-.29-.13-.07-.14-.13-.3.2.07-.35-.1-.37-.03-.53.04-.15.25-.22.6-.18.68 0 1.04.81 1.26.81.22 0 .47-.86 1.42-.51.94.35 1.06.42 1.54.62.48.21-.34.52-.06.93.27.4 2.13 1.77 1.6 3.18-.53 1.42-1.9 1.64-2.01 2.25-.13.62 4.31.37 5.44.57a2.96 2.96 0 0 1 1.89 1.2c.05.14-1.98.13-1.98.13s-1.04-.54-3.53-.6c-2.48-.04-3.43-1.04-4.36-1.17-.93-.12-2.9.21-4.01.16-1.11-.05-2.23-.22-2.95-.32-.72-.1-4.29 1.61-4.28 2.01-.74-.03-2.5-.12-2.42-.07.07.04.32-.78 1.68-.92 1.37-.15 2.7-.8 2.65-1.23-.04-.43.27-1.9.38-2.54.11-.63.62-.94.5-1.27-.12-.33-1.68-.67-3.18-.66-1.5.01-3.15.1-3.4.45-.24.37-.05 1.41.26 1.3.3-.13-.08-.81.25-.95a6.78 6.78 0 0 1 1.95-.29c.79-.02 2.15.67 2.14.9-.01.21.44.94-.19 1.22a8.2 8.2 0 0 1-3.15.34 7.48 7.48 0 0 1-2.92-.75c-.45-.28-.73-1.1-.73-1.16z"/><path fill-rule="evenodd" d="M114.05 125.53a.33.33 0 1 1-.65 0 .33.33 0 0 1 .65 0z"/><path fill="#d0d0d0" d="M129.51 120.77l1.6.34 2.66-1.82-.2.96-1.4.92c-.25.17-.5.33-.76.47.16.22.33.49.52.8l.86 1.39-.2.91-1.66-2.84-1.59-.34.17-.79zm-2.72-11.73l3.09-1.42-.84-1.82.41-.2 2.02 4.39-.41.19-.85-1.83-3.08 1.42-.34-.73zm-4.78-5.81l2.84-2.6.56.6-.07 4.4 2.23-2.04.52.57-2.84 2.6-.56-.6.07-4.4-2.23 2.04-.52-.57zm-12.42-5.02l.47-3.82.8.1-.42 3.37 2.98.36-.06.45-3.77-.46zm-6.11.55l-.69-3.79.8-.14.6 3.34 2.95-.54.08.45-3.74.68zm-11.28 5.57l-.29-.35 2.01-1.62.9 1.12a5.69 5.69 0 0 1-.67 1.12 5.66 5.66 0 0 1-.92.92 5.2 5.2 0 0 1-1.43.83c-.48.18-.91.23-1.3.14a1.59 1.59 0 0 1-.93-.56 1.7 1.7 0 0 1-.37-1.05c0-.41.12-.83.38-1.24.27-.41.64-.8 1.11-1.19a4.79 4.79 0 0 1 1.01-.63c.34-.16.64-.23.9-.24.25 0 .5.07.75.21l-.49.55a1.3 1.3 0 0 0-.55-.15c-.18 0-.39.05-.63.16a3.2 3.2 0 0 0-.71.44c-.3.23-.52.46-.68.68-.17.22-.28.43-.34.63-.05.19-.07.37-.06.53.03.29.13.54.3.75.22.27.47.44.76.5.3.07.61.03.96-.1a4.12 4.12 0 0 0 2.13-2l-.45-.57-1.4 1.12zm-.13 27.7l-3.14 2.23-2.38-3.35.37-.26 1.91 2.7.97-.7-1.65-2.33.37-.26 1.65 2.33 1.43-1.02.47.66zm-4.63-5.01c.45-.13.75-.41.9-.87.15-.45.14-.96-.02-1.53a2.57 2.57 0 0 0-.8-1.33c-.36-.3-.78-.4-1.26-.26a1.36 1.36 0 0 0-.72.47c-.18.22-.3.5-.33.85-.03.35 0 .71.11 1.1.16.55.4.99.76 1.32.35.32.8.4 1.36.25zm.22.8a1.7 1.7 0 0 1-1.67-.38 3.7 3.7 0 0 1-1.09-1.87c-.15-.54-.2-1.05-.17-1.53s.18-.87.4-1.18a1.63 1.63 0 0 1 .9-.63 1.63 1.63 0 0 1 1.12.08c.36.15.68.43.96.83a4.5 4.5 0 0 1 .8 2.9 2.3 2.3 0 0 1-.42 1.18c-.23.31-.5.5-.83.6zm.32-7.82l-3.85-.09.06-2.7c.01-.54.06-.95.13-1.23.08-.28.2-.5.38-.67a.82.82 0 0 1 .59-.24c.27.01.5.15.68.44.18.28.3.72.33 1.3a2.5 2.5 0 0 1 .73-1.14l1.07-1.03-.02 1.01-.82.79c-.24.23-.42.42-.54.57a1.7 1.7 0 0 0-.27.4 1.6 1.6 0 0 0-.11.36c-.02.1-.02.24-.03.45l-.02.94 1.7.04v.8zm-2.13-.85l.04-1.73a4.07 4.07 0 0 0-.05-.87.99.99 0 0 0-.22-.48.48.48 0 0 0-.35-.17c-.18 0-.33.1-.45.31-.13.2-.2.53-.2.98l-.05 1.93 1.28.03zm10.7-16.95l.03-4.5.74-.45 4.12 2.03-.8.47-1.2-.64-2.18 1.3.02 1.35-.73.44zm.7-2.26L99 98.88l-1.09-.59a8.26 8.26 0 0 1-.78-.46c.06.25.1.52.1.8v1.31zm18.6-1.2l4.16-1.74.7.5-.26 4.59-.74-.54.11-1.36-2.05-1.5-1.23.55-.69-.5zm2.35-.25l1.67 1.21.11-1.23a8.44 8.44 0 0 1 .12-.9 3.7 3.7 0 0 1-.7.4l-1.2.52zm10.3 14.34l3.75-.9.63 2.63c.12.52.18.93.18 1.22 0 .3-.07.54-.2.75a.82.82 0 0 1-.5.38c-.27.06-.53-.02-.77-.25a2.81 2.81 0 0 1-.65-1.18 2.46 2.46 0 0 1-.08.52c-.07.26-.19.52-.34.77l-.77 1.27-.24-.98.6-.97c.16-.28.3-.51.38-.69a1.6 1.6 0 0 0 .17-.84 3.72 3.72 0 0 0-.1-.44l-.2-.9-1.67.4-.19-.79zm2.28.28l.4 1.68c.09.36.18.64.27.83.1.19.21.32.34.4.13.08.25.11.37.08.18-.04.3-.18.37-.41a2.1 2.1 0 0 0-.06-1l-.45-1.87-1.24.3z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-nl"><g fill-rule="evenodd" stroke-width="1pt" transform="scale(1.25 .9375)"><rect width="512" height="509.8" fill="#fff" rx="0" ry="0"/><rect width="512" height="169.9" y="342.1" fill="#21468b" rx="0" ry="0"/><path fill="#ae1c28" d="M0 0h512v169.92H0z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-at"><g fill-rule="evenodd"><path fill="#fff" d="M640 480H0V0h640z"/><path fill="#df0000" d="M640 480H0V320h640zm0-319.88H0V.13h640z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-pl"><g fill-rule="evenodd"><path fill="#e9e8e7" d="M640 480H0V0h640z"/><path fill="#d4213d" d="M640 480H0V240h640z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-pt"><path fill="red" d="M256 0h384v480H256z"/><path fill="#060" d="M0 0h256v480H0z"/><g fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width=".6"><path d="M339.46 306.18c-32.23-.97-180-93.2-181-107.9l8.15-13.6c14.66 21.3 165.72 111 180.56 107.81l-7.71 13.68"/><path d="M164.9 182.83c-2.9 7.78 38.56 33.4 88.43 63.73 49.87 30.33 92.87 49.08 96.05 46.39.2-.35 1.57-2.71 1.45-2.7-.6.9-2.06 1.2-4.32.54-13.48-3.89-48.62-20.02-92.14-46.4-43.52-26.4-81.38-50.72-87.26-61.06a6.27 6.27 0 0 1-.64-3.04h-.15l-1.25 2.2-.17.34zM340.2 306.6c-.54 1-1.56 1.03-3.5.81-12.05-1.33-48.63-19.12-91.9-45.02-50.36-30.15-91.95-57.61-87.44-64.8l1.23-2.16.24.07c-4.06 12.17 82.08 61.42 87.15 64.56 49.84 30.88 91.86 48.9 95.57 44.22l-1.35 2.33z"/><path d="M256.18 207.18c32.25-.26 72.06-4.41 94.96-13.54l-4.94-8.01c-13.53 7.49-53.55 12.42-90.3 13.15-43.44-.4-74.12-4.44-89.48-14.75l-4.66 8.53c28.25 11.96 57.2 14.5 94.42 14.62"/><path d="M352.47 193.82c-.79 1.26-15.73 6.42-37.73 10.22-14.92 2.27-34.38 4.22-58.67 4.24a416.12 416.12 0 0 1-56.2-3.56c-23.1-3.62-35.02-8.66-39.43-10.44l1.1-2.2c12.69 5.05 24.67 8.1 38.7 10.25A411.53 411.53 0 0 0 256 205.9a391.78 391.78 0 0 0 58.26-4.33c22.56-3.64 34.89-8.32 36.62-10.5l1.6 2.75zm-4.33-8.13c-2.45 1.97-14.63 6.29-36.07 9.71a388.24 388.24 0 0 1-55.75 3.91c-22.09.02-40.13-1.46-53.85-3.46-21.78-2.85-33.37-7.98-37.55-9.47l1.28-2.15c3.25 1.64 14.43 6.18 36.5 9.3 13.57 1.93 31.64 3.36 53.62 3.34 23.13-.03 41.12-1.9 55.34-3.94 21.55-2.96 33.15-8.47 34.9-9.85l1.58 2.61zm-197.87 60.35c19.84 10.67 63.9 16.04 105.6 16.41 37.96.06 87.42-5.86 105.91-15.67l-.5-10.67c-5.8 9.04-58.8 17.71-105.83 17.36-47.03-.36-90.7-7.62-105.26-17.03l.08 9.6"/><path d="M362.8 244.5v2.55c-2.78 3.32-20.21 8.34-42.07 11.88-16.64 2.55-38.32 4.48-65.35 4.48-25.67 0-46.14-1.83-62.02-4.27-25.1-3.66-41.15-10.06-44.38-11.97l.02-2.97c9.68 6.44 35.9 11.15 44.7 12.59 15.78 2.42 36.14 4.23 61.68 4.23 26.9 0 48.46-1.9 65-4.44 15.67-2.27 38.01-8.16 42.41-12.08zm0-9.06V238c-2.77 3.32-20.2 8.35-42.06 11.88-16.64 2.55-38.32 4.48-65.35 4.48-25.67 0-46.14-1.83-62.02-4.27-25.1-3.66-41.15-10.06-44.38-11.97l.02-2.97c9.68 6.44 35.9 11.15 44.71 12.59 15.78 2.42 36.13 4.24 61.67 4.24 26.9 0 48.47-1.91 65-4.45 15.68-2.27 38.02-8.16 42.41-12.08zm-107.02 68.9c-45.63-.27-84.72-12.44-92.97-14.45l6.02 9.43c14.58 6.13 52.71 15.27 87.38 14.26 34.67-1.01 64.97-3.7 86.33-14.1l6.17-9.76c-14.55 6.86-64.07 14.55-92.94 14.62"/><path d="M344.85 297.3a143.02 143.02 0 0 1-2.77 4.09c-10.07 3.55-25.94 7.28-32.63 8.36-13.68 2.82-34.85 4.9-53.63 4.91-40.41-.59-73.5-8.5-89.06-15.25l-1.26-2.16.2-.32 2.14.82c27.68 9.9 58.76 13.86 88.2 14.57 18.72.06 37.44-2.15 52.59-4.86 23.22-4.65 32.6-8.16 35.49-9.75l.73-.4zm5.35-8.83l.07.09a287.23 287.23 0 0 1-2.09 3.48c-5.37 1.92-19.95 6.18-41.24 9.16-14.02 1.9-22.74 3.76-50.64 4.3-52.28-1.33-86.13-11.55-94.17-14.07l-1.2-2.29c30.3 7.91 61.25 13.43 95.37 14 25.53-.55 36.39-2.43 50.3-4.32 24.82-3.86 37.33-7.95 41.08-9.13a2.85 2.85 0 0 0-.16-.21l2.69-1z"/><path d="M350.75 237.61c.15 30.01-15.2 56.95-27.58 68.83-17.5 16.8-40.7 27.62-67.8 28.12-30.27.55-58.8-19.17-66.45-27.84-14.97-16.95-27.15-38.46-27.54-67.46 1.85-32.76 14.71-55.57 33.35-71.22 18.64-15.65 43.46-23.27 64.13-22.72 23.85.63 51.7 12.33 70.96 35.55 12.6 15.22 18.07 31.73 20.93 56.74zm-95.13-102.76c58.12 0 105.92 47.3 105.92 105.28 0 57.99-47.8 105.28-105.92 105.28-58.12 0-105.52-47.3-105.52-105.28 0-58 47.4-105.28 105.52-105.28"/><path d="M255.9 134.49c58.17 0 105.62 47.45 105.62 105.62S314.07 345.73 255.9 345.73 150.3 298.28 150.3 240.1c0-58.18 47.43-105.63 105.6-105.63zM152.62 240.1c0 56.81 46.65 103.3 103.28 103.3 56.64 0 103.3-46.49 103.3-103.3 0-56.81-46.66-103.3-103.3-103.3S152.62 183.3 152.62 240.1z"/><path d="M255.99 143.26c53.05 0 96.74 43.55 96.74 96.75 0 53.21-43.7 96.75-96.74 96.75-53.05 0-96.74-43.54-96.74-96.75 0-53.2 43.7-96.75 96.74-96.75zm-94.42 96.75c0 51.93 42.65 94.43 94.42 94.43s94.41-42.5 94.41-94.43c0-51.93-42.64-94.42-94.41-94.42-51.77 0-94.42 42.5-94.42 94.42z"/><path d="M260.25 134.06h-9.05v212.22h9.09z"/><path d="M259.34 132.85h2.3l.02 214.67h-2.3l-.02-214.67zm-8.98 0h2.32v214.67h-2.32V132.85z"/><path d="M361.59 244.2v-7.85l-6.39-5.95-36.27-9.6-52.26-5.33-62.94 3.2-44.8 10.66-9.04 6.7v7.85l22.91-10.28 54.4-8.53h52.27l38.4 4.26 26.66 6.4z"/><path d="M255.95 223.75c24.94-.04 49.14 2.37 68.33 6.1 19.81 3.96 33.75 8.92 38.52 14.48l-.01 2.76c-5.75-6.93-24.5-12-38.95-14.9-19.05-3.7-43.09-6.1-67.9-6.05-26.17.04-50.54 2.52-69.31 6.19-15.06 2.98-35.15 8.92-37.66 14.78v-2.87c1.38-4.05 16.34-10.11 37.32-14.31 18.91-3.7 43.33-6.13 69.66-6.17zm0-9.06c24.95-.04 49.15 2.37 68.34 6.1 19.81 3.97 33.75 8.92 38.51 14.48v2.76c-5.75-6.92-24.5-12-38.95-14.9-19.05-3.7-43.09-6.1-67.9-6.05-26.17.04-50.42 2.53-69.2 6.19-14.53 2.75-35.43 8.92-37.76 14.78v-2.87c1.37-4.01 16.63-10.28 37.31-14.31 18.91-3.69 43.33-6.12 69.66-6.17zm-.5-46.2c39.3-.2 73.59 5.5 89.27 13.53l5.72 9.9c-13.63-7.35-50.62-14.99-94.94-13.84-36.1.22-74.7 3.97-94.05 14.3l6.83-11.42c15.89-8.24 53.36-12.42 87.17-12.47"/><path d="M255.97 176.66c22.42-.06 44.08 1.2 61.3 4.32 16.05 2.98 31.35 7.46 33.54 9.87l1.7 3c-5.33-3.48-18.57-7.34-35.57-10.57-17.07-3.2-38.72-4.27-61.01-4.21-25.3-.09-44.96 1.25-61.84 4.19-17.84 3.34-30.22 8.11-33.27 10.38l1.66-3.17c5.93-3.03 15.35-6.68 31.17-9.53 17.45-3.19 37.32-4.14 62.32-4.28zm-.01-9.05c21.45-.06 42.63 1.14 59.15 4.11 13.02 2.53 25.9 6.5 30.61 10.01l2.48 3.95c-4.21-4.7-20.08-9.13-34.1-11.62-16.39-2.83-36.69-3.95-58.14-4.13-22.52.07-43.32 1.45-59.47 4.39-15.4 2.93-25.34 6.4-29.55 9.1l2.18-3.28c5.8-3.06 15.18-5.87 27-8.16 16.26-2.96 37.2-4.3 59.84-4.37zm52.47 116.4c-19.44-3.63-38.9-4.15-52.5-4-65.5.77-86.66 13.46-89.24 17.3l-4.9-7.98c16.68-12.1 52.35-18.87 94.5-18.18 21.88.36 40.77 1.81 56.65 4.9l-4.52 7.96"/><path d="M255.55 278.89c18.22.27 36.1 1.02 53.37 4.24l-1.25 2.21c-16.03-2.96-33.13-4.09-52.06-4-24.17-.19-48.62 2.07-69.9 8.18-6.72 1.87-17.84 6.19-18.98 9.76l-1.24-2.05c.36-2.11 7.08-6.5 19.64-10.02 24.38-6.98 47.19-8.16 70.42-8.32zm.83-9.17c18.88.35 38.37 1.23 57.32 4.98l-1.3 2.3c-17.11-3.4-33.46-4.53-55.91-4.88-24.25.05-49.97 1.78-73.36 8.58-7.55 2.2-20.59 6.95-21.02 10.72l-1.25-2.2c.29-3.42 11.57-7.88 21.72-10.84 23.57-6.85 49.36-8.61 73.8-8.66z"/><path d="M349.42 290.54l-7.87 12.21-22.62-20.08-58.66-39.47-66.14-36.27-34.33-11.74 7.31-13.57 2.49-1.35 21.33 5.33 70.4 36.27 40.54 25.6L336 272l13.87 16z"/><path d="M158.56 195.51c6.02-4.08 50.28 15.63 96.6 43.56 46.18 28 90.31 59.65 86.33 65.57l-1.31 2.06-.6.47c.13-.09.8-.9-.07-3.1-1.96-6.47-33.27-31.46-85.22-62.82-50.64-30.2-92.84-48.4-97.06-43.2l1.33-2.54zm192.47 94.86c3.8-7.53-37.24-38.45-88.14-68.56-52.07-29.51-89.6-46.88-96.45-41.7l-1.52 2.77c-.02.15.05-.19.38-.44 1.24-1.09 3.3-1.01 4.24-1.03 11.8.18 45.5 15.69 92.8 42.8 20.73 12.07 87.55 54.93 87.3 66.98.01 1.03.08 1.25-.31 1.76l1.7-2.59z"/></g><g transform="translate(0 26.67) scale(1.06667)"><path fill="#fff" stroke="#000" stroke-width=".7" d="M180.6 211.01a58.71 58.71 0 0 0 17.46 41.74c10.81 10.78 25.5 17.58 41.8 17.58a59.37 59.37 0 0 0 42.02-17.39 59 59 0 0 0 17.45-41.88v-79.19l-118.74-.14v79.28h.01z"/><path fill="red" stroke="#000" stroke-width=".5" d="M182.82 211.12v.04a56.39 56.39 0 0 0 16.77 40.01 56.98 56.98 0 0 0 40.22 16.71 56.87 56.87 0 0 0 40.22-16.62 56.38 56.38 0 0 0 16.7-40.04v-76.83l-113.84-.02-.07 76.75m91.02-53.75v48.9l-.04 5.16a33.2 33.2 0 0 1-9.99 23.94 34 34 0 0 1-24.04 9.95c-9.33 0-17.64-3.94-23.83-10.1a33.96 33.96 0 0 1-10.03-23.95l-.01-54.02 67.94.12z"/><g id="flag-pt-e"><g id="flag-pt-d" fill="#ff0" stroke="#000" stroke-width=".5"><path stroke="none" d="M190.19 154.43c.14-5.52 4.05-6.83 4.08-6.85.03-.02 4.23 1.41 4.22 6.9l-8.3-.05"/><path d="M186.81 147.69l-.68 6.34 4.14.01c.04-5.25 3.97-6.12 4.07-6.1.09 0 3.99 1.16 4.1 6.1h4.14l-.75-6.39-15.02.04zm-.96 6.37h16.95c.35 0 .65.35.65.78 0 .43-.3.78-.65.78h-16.95c-.36 0-.65-.35-.65-.78 0-.43.3-.78.65-.78z"/><path d="M192.01 154.03c.02-3.31 2.26-4.25 2.27-4.25 0 0 2.35.97 2.36 4.25h-4.63m-5.8-8.98h16.24c.35 0 .63.32.63.7 0 .4-.28.7-.63.7h-16.24c-.34 0-.62-.3-.62-.7 0-.38.28-.7.62-.7zm.34 1.42h15.54c.32 0 .6.32.6.7 0 .4-.28.7-.6.7h-15.54c-.33 0-.6-.3-.6-.7 0-.38.27-.7.6-.7zm5.02-10.59h1.23v.87h.9v-.89h1.25v.9h.9v-.9h1.25v2.01c0 .32-.25.52-.55.52h-4.4c-.3 0-.58-.23-.58-.52v-2zm4.62 2.69l.28 6.45-4.3-.02.28-6.45 3.74.02"/><path id="flag-pt-a" d="M190.94 141.56l.13 3.48h-4.12l.11-3.48h3.88z"/><use width="100%" height="100%" x="10.6" xlink:href="#flag-pt-a"/><path id="flag-pt-b" d="M186.3 139.04h1.2v.87h.88v-.89h1.23v.9h.88v-.9h1.23v2.02c0 .31-.26.51-.54.51h-4.32c-.29 0-.56-.23-.56-.52v-1.99z"/><use width="100%" height="100%" x="10.6" xlink:href="#flag-pt-b"/><path fill="#000" stroke="none" d="M193.9 140.61c-.03-.63.88-.63.87 0v1.54h-.87v-1.54"/><path id="flag-pt-c" fill="#000" stroke="none" d="M188.57 142.84c0-.6.84-.62.83 0v1.19h-.83v-1.19"/><use width="100%" height="100%" x="10.6" xlink:href="#flag-pt-c"/></g><use width="100%" height="100%" y="46.3" xlink:href="#flag-pt-d"/><use width="100%" height="100%" transform="rotate(-45.2 312.77 180)" xlink:href="#flag-pt-d"/></g><use width="100%" height="100%" x="45.7" xlink:href="#flag-pt-d"/><use width="100%" height="100%" transform="matrix(-1 0 0 1 479.8 0)" xlink:href="#flag-pt-e"/><g id="flag-pt-f" fill="#fff"><path fill="#039" d="M232.64 202.4v.01a8.34 8.34 0 0 0 2.2 5.7 7.24 7.24 0 0 0 5.31 2.37c2.07 0 3.94-.9 5.3-2.37a8.34 8.34 0 0 0 2.2-5.69v-10.77l-14.99-.01-.03 10.76"/><circle cx="236.1" cy="195.7" r="1.5"/><circle cx="244.4" cy="195.7" r="1.5"/><circle cx="240.2" cy="199.7" r="1.5"/><circle cx="236.1" cy="203.9" r="1.5"/><circle cx="244.4" cy="203.9" r="1.5"/></g><use width="100%" height="100%" y="-26" xlink:href="#flag-pt-f"/><use width="100%" height="100%" x="-20.8" xlink:href="#flag-pt-f"/><use width="100%" height="100%" x="20.7" xlink:href="#flag-pt-f"/><use width="100%" height="100%" y="25.8" xlink:href="#flag-pt-f"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-ro"><g fill-rule="evenodd" stroke-width="1pt"><path fill="#00319c" d="M0 0h213.33v480H0z"/><path fill="#ffde00" d="M213.33 0h213.34v480H213.33z"/><path fill="#de2110" d="M426.67 0H640v480H426.67z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-si"><g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#flag-si-a)" transform="translate(14.13) scale(.9375)"><path fill="#fff" d="M-62 0H962v512H-62z"/><path fill="#de2918" d="M-62 341.33H962V512H-62z"/><path fill="#08399c" d="M-62 170.67H962v170.67H-62z"/><path fill="#de2918" d="M228.37 92.98c-4.02 61.65-6.32 95.43-15.7 111.07-10.16 16.78-20.03 29.08-59.64 43.88-39.6-14.81-49.48-27.1-59.63-43.9-9.39-15.62-11.7-49.4-15.71-111.05L83.54 91c11.78-3.6 20.58-6.49 27.08-7.77 9.31-1.97 17.23-4.2 42.26-4.72 25.02.43 32.98 2.8 42.3 4.77 6.44 1.37 15.6 4.08 27.3 7.74l5.89 1.95z"/><path fill="#08399c" d="M222.6 90.95c-3.8 61.52-6.98 89.7-11.94 103.24-9.63 23.2-24.87 35.91-57.67 48.04-32.8-12.14-48.04-24.86-57.66-48.05-4.96-13.54-8.1-41.64-11.79-103.3 11.53-3.6 20.58-6.42 27.08-7.7 9.31-1.97 17.23-4.3 42.26-4.72 25.03.43 33.03 2.75 42.35 4.72 6.5 1.28 15.73 4.1 27.37 7.76z"/><path fill="#fc0" d="M152.96 109.79l1.57 3.72 6.91.95-4.47 2.7 4.33 2.9-6.3 1.05-1.92 3.37-2.15-3.47-6-.85 4.08-2.96-4.2-2.69 6.64-1.02 1.51-3.7z"/><path fill="#fff" d="M208.28 179.62l-3.83-3.03-2.77-4.55-5.42-4.7-2.83-4.76-5.42-4.85-2.65-4.75-2.89-2.33-1.9-1.83-4.9 4.3-2.67 4.66-3.32 3.01-3.66-2.85-2.76-4.87L153 134.85l-10.26 18.22-2.76 4.87-3.66 2.85-3.32-3.01-2.67-4.67-4.9-4.3-1.9 1.84-2.89 2.33-2.65 4.75-5.42 4.85-2.83 4.75-5.42 4.7-2.77 4.56-3.82 3.1c1.98 16.89 12.75 30.12 18.61 36.17 6.55 6.35 20.04 14.86 36.54 20.49 16.55-5.51 30.23-14.14 36.78-20.5 5.86-6.04 16.62-19.27 18.62-36.23z"/><path fill="#fc0" d="M169.45 83.89l1.57 3.72 6.91.95-4.48 2.7 4.33 2.9-6.3 1.05-1.9 3.37-2.17-3.47-5.99-.85 4.08-2.96-4.2-2.69 6.63-1.02 1.52-3.7zm-32.98-.06l1.57 3.73 6.91.94-4.47 2.7 4.33 2.9-6.3 1.05-1.92 3.38-2.15-3.48-6-.85 4.08-2.95-4.2-2.7 6.64-1.01 1.51-3.7z"/><path fill="#08399c" d="M199.72 203.03l-7.47.02-6.89-.51-8.35-4.1-9.4.06-8.16 3.98-6.42.57-6.43-.57-8.15-3.98-9.4-.05-8.36 4.09-6.89.51-7.56-.1-3.65-6.19.13-.14 11.18 1.85 6.89-.51 8.35-4.1 9.4.06 8.15 3.98 6.43.57 6.43-.57 8.15-3.98 9.4-.06 8.35 4.1 6.9.5 10.87-1.9.14.29-3.64 6.18zm-86.47 9.51l7.4-.51 8.34-4.1 9.41.06 8.15 3.98 6.43.57 6.42-.57 8.15-3.98 9.41-.06 8.35 4.1 7.5.51 4.83-5.96-.17-.14-5.18 1.51-6.89-.5-8.35-4.1-9.4.05-8.15 3.99-6.43.56-6.43-.56-8.15-3.98-9.4-.06-8.35 4.1-6.9.5-5.07-1.27-.06.25 4.54 5.61z"/></g></symbol><symbol viewBox="0 0 640 480" id="flag-sk"><path fill="#ee1c25" d="M0 0h640v480H0z"/><path fill="#0b4ea2" d="M0 0h640v320H0z"/><path fill="#fff" d="M0 0h640v160H0z"/><path fill="#fff" d="M233 370.8c-43.02-20.72-104.56-61.86-104.56-143.23 0-81.37 3.89-118.37 3.89-118.37h201.35s3.9 37 3.9 118.37S276.02 350.07 233 370.8z"/><path fill="#ee1c25" d="M233 360c-39.47-19.01-95.93-56.75-95.93-131.4s3.57-108.6 3.57-108.6h184.73s3.57 33.95 3.57 108.6c0 74.65-56.46 112.39-95.94 131.4z"/><path fill="#fff" d="M241.45 209.03c10.68.17 31.54.59 50.1-5.63 0 0-.49 6.65-.49 14.39s.5 14.39.5 14.39c-17.04-5.7-38.07-5.82-50.11-5.67v41.23h-16.89v-41.23c-12.04-.15-33.07-.03-50.1 5.67 0 0 .49-6.65.49-14.4 0-7.73-.5-14.38-.5-14.38 18.57 6.22 39.43 5.8 50.11 5.63v-25.9c-9.74-.08-23.78.38-39.65 5.7 0 0 .5-6.65.5-14.4 0-7.73-.5-14.38-.5-14.38 15.85 5.3 29.87 5.78 39.61 5.7-.5-16.4-5.28-37.07-5.28-37.07s9.83.76 13.76.76c3.94 0 13.77-.76 13.77-.76s-4.78 20.66-5.28 37.06c9.74.09 23.76-.39 39.6-5.69 0 0-.48 6.64-.48 14.39 0 7.74.49 14.38.49 14.38-15.87-5.31-29.91-5.78-39.65-5.69v25.9z"/><path fill="#0b4ea2" d="M233 263.27c-19.88 0-30.52 27.58-30.52 27.58s-5.91-13.08-22.13-13.08c-10.97 0-19.06 9.77-24.2 18.8 19.96 31.77 51.81 51.37 76.85 63.43 25.04-12.06 56.91-31.66 76.88-63.42-5.14-9.04-13.23-18.8-24.2-18.8-16.22 0-22.15 13.07-22.15 13.07s-10.65-27.58-30.53-27.58z"/></symbol><symbol viewBox="0 0 640 480" id="flag-fi"><path fill="#fff" d="M0 0h640v480H0z"/><path fill="#003580" d="M0 174.54h640v130.91H0z"/><path fill="#003580" d="M175.46 0h130.9v480h-130.9z"/></symbol><symbol viewBox="0 0 640 480" id="flag-se"><g clip-path="url(#flag-se-a)" transform="translate(50.08) scale(.9375)"><g fill-rule="evenodd" stroke-width="1pt"><path fill="#006aa7" d="M-121.1.3h256v204.8h-256zm0 306.88h256v204.8h-256z"/><path fill="#fecc00" d="M-121.1 204.98h256v102.4h-256z"/><path fill="#fecc00" d="M133.84.01h102.4v512h-102.4z"/><path fill="#fecc00" d="M233 205.01h460.8v102.4H233z"/><path fill="#006aa7" d="M236.16 307.2h460.8V512h-460.8zm0-306.9h460.8v204.8h-460.8z"/></g></g></symbol><symbol viewBox="0 0 640 480" id="flag-gb"><g clip-path="url(#flag-gb-a)" transform="translate(80) scale(.94)"><g stroke-width="1pt"><path fill="#006" d="M-256 0H768.02v512.01H-256z"/><path fill="#fff" d="M-256 0v57.24l909.53 454.77h114.49v-57.24L-141.51 0H-256zM768.02 0v57.24l-909.53 454.77H-256v-57.24L653.53 0h114.49z"/><path fill="#fff" d="M170.68 0v512.01h170.66V0H170.69zM-256 170.67v170.67H768.02V170.67H-256z"/><path fill="#c00" d="M-256 204.8v102.4H768.02V204.8H-256zM204.81 0v512.01h102.4V0h-102.4zM-256 512.01L85.34 341.34h76.32l-341.34 170.67H-256zM-256 0L85.34 170.67H9.02L-256 38.17V0zm606.36 170.67L691.7 0h76.32L426.68 170.67h-76.32zm417.66 341.34L426.68 341.34H503l265.02 132.5v38.17z"/></g></g></symbol><symbol viewBox="0 0 640 480" id="flag-eu"><path fill="#039" d="M0 0h640v480H0z"/><g fill="#fc0" transform="translate(320 242.26) scale(23.7037)"><use width="100%" height="100%" y="-6" xlink:href="#flag-eu-d"/><use width="100%" height="100%" y="6" xlink:href="#flag-eu-d"/><g id="flag-eu-e"><use width="100%" height="100%" x="-6" xlink:href="#flag-eu-d"/><use width="100%" height="100%" transform="rotate(-144 -2.34 -2.11)" xlink:href="#flag-eu-d"/><use width="100%" height="100%" transform="rotate(144 -2.11 -2.34)" xlink:href="#flag-eu-d"/><use width="100%" height="100%" transform="rotate(72 -4.66 -2.08)" xlink:href="#flag-eu-d"/><use width="100%" height="100%" transform="rotate(72 -5.08 .53)" xlink:href="#flag-eu-d"/></g><use width="100%" height="100%" transform="scale(-1 1)" xlink:href="#flag-eu-e"/></g></symbol><symbol id="flag-uk"><use href="#flag-gb" /></symbol><symbol id="flag-el"><use href="#flag-gr" /></symbol></svg>
<!-- endinject -->
</div>
</body>
</html>