mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-04 12:14:37 +08:00
Replaced default ruby error pages [SCI-6967] (#4230)
* Replaced default ruby error pages [SCI-6967] * Remove error 500 in controller [SCI-6967]
This commit is contained in:
parent
1cd5a35b32
commit
a55d6ea9de
9 changed files with 410 additions and 398 deletions
|
@ -13,15 +13,6 @@ class ApplicationController < ActionController::Base
|
|||
redirect_to root_path
|
||||
end
|
||||
|
||||
def respond_422(message = t('client_api.permission_error'))
|
||||
respond_to do |format|
|
||||
format.json do
|
||||
render json: { message: message },
|
||||
status: 422
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def forbidden
|
||||
render_403
|
||||
end
|
||||
|
@ -30,6 +21,10 @@ class ApplicationController < ActionController::Base
|
|||
render_404
|
||||
end
|
||||
|
||||
def respond_422(message = t('client_api.permission_error'))
|
||||
render_422(message)
|
||||
end
|
||||
|
||||
def is_current_page_root?
|
||||
controller_name == 'projects' && action_name == 'index'
|
||||
end
|
||||
|
@ -79,6 +74,20 @@ class ApplicationController < ActionController::Base
|
|||
end
|
||||
end
|
||||
|
||||
def render_422(message = t('client_api.permission_error'))
|
||||
respond_to do |format|
|
||||
format.html do
|
||||
render file: 'public/422.html', status: :unprocessable_entity, layout: false
|
||||
end
|
||||
format.json do
|
||||
render json: { message: message }, status: :unprocessable_entity
|
||||
end
|
||||
format.any do
|
||||
render plain: 'UNPROCESSABLE ENTITY', status: :unprocessable_entity
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def update_current_team
|
||||
|
|
|
@ -25,6 +25,7 @@ Rails.application.routes.draw do
|
|||
|
||||
get 'forbidden', to: 'application#forbidden', as: 'forbidden'
|
||||
get 'not_found', to: 'application#not_found', as: 'not_found'
|
||||
get 'unprocessable_entity', to: 'application#respond_422', as: 'unprocessable_entity'
|
||||
|
||||
# JS backend helpers
|
||||
get 'helpers/to_user_date_format',
|
||||
|
|
|
@ -3,95 +3,7 @@
|
|||
<head>
|
||||
<title>Access to this page is denied (403).</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<style>
|
||||
body {
|
||||
background-color: #E5E5E5;
|
||||
color: #2E2F30;
|
||||
text-align: center;
|
||||
font-family: arial, sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.navbar {
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 1px 4px rgba(35, 31, 32, 0.15);
|
||||
height: 52px;
|
||||
left: 0%;
|
||||
position: absolute;
|
||||
right: 0%;
|
||||
top: 0%;
|
||||
}
|
||||
|
||||
div.navbar > img {
|
||||
width: 121px;
|
||||
height: 24px;
|
||||
left: 21px;
|
||||
position: absolute;
|
||||
top: calc(50% - 24px/2 - 0px);
|
||||
}
|
||||
|
||||
div.dialog {
|
||||
width: 95%;
|
||||
margin: 4em auto 0;
|
||||
}
|
||||
|
||||
div.dialog > h1 {
|
||||
color: #404048;
|
||||
font-family: Lato;
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
font-size: 1.5em;
|
||||
line-height: 29px;
|
||||
margin: 0.5em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.dialog > p {
|
||||
color: #404048;
|
||||
font-family: Lato;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-size: 1.1em;
|
||||
margin: 0.5em;
|
||||
}
|
||||
|
||||
div.dialog > img {
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
div.back-button {
|
||||
margin-top: 3em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a.back-button {
|
||||
background: #104DA9;
|
||||
border-radius: 4px;
|
||||
color: #FFFFFF;
|
||||
display: inline-block;
|
||||
font-family: Lato;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-size: 0.9em;
|
||||
margin-top: 3em;
|
||||
padding: 0.8em 1em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.back-button > img {
|
||||
filter: invert(100%);
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
margin-right: 0.5em;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
a.back-button > span {
|
||||
color: #FFFFFF;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="error_pages.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -100,7 +12,7 @@
|
|||
<img id="logo" src="/images/scinote_icon.svg" title="SciNote">
|
||||
</div>
|
||||
<div class="dialog">
|
||||
<img src="/images/undraw_through_the_park.svg">
|
||||
<img src="/images/undraw_through_the_park.svg" class="illustration">
|
||||
<h1>It would seem that you are not allowed in here.</h1>
|
||||
<p>You should request access from your team administrators.</p>
|
||||
|
||||
|
|
|
@ -3,71 +3,18 @@
|
|||
<head>
|
||||
<title>This page could not be found (404).</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<style>
|
||||
body {
|
||||
background-color: #EFEFEF;
|
||||
color: #2E2F30;
|
||||
text-align: center;
|
||||
font-family: arial, sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.dialog {
|
||||
width: 95%;
|
||||
max-width: 33em;
|
||||
margin: 4em auto 0;
|
||||
}
|
||||
|
||||
div.dialog > div {
|
||||
border: 1px solid #CCC;
|
||||
border-right-color: #999;
|
||||
border-left-color: #999;
|
||||
border-bottom-color: #BBB;
|
||||
border-top: #B00100 solid 4px;
|
||||
border-top-left-radius: 9px;
|
||||
border-top-right-radius: 9px;
|
||||
background-color: white;
|
||||
padding: 7px 12% 0;
|
||||
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 100%;
|
||||
color: #730E15;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
div.dialog > p {
|
||||
margin: 0 0 1em;
|
||||
padding: 1em;
|
||||
background-color: #F7F7F7;
|
||||
border: 1px solid #CCC;
|
||||
border-right-color: #999;
|
||||
border-left-color: #999;
|
||||
border-bottom-color: #999;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
border-top-color: #DADADA;
|
||||
color: #666;
|
||||
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="error_pages.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- This file lives in public/404.html -->
|
||||
<div class="navbar">
|
||||
<img id="logo" src="/images/scinote_icon.svg" title="SciNote">
|
||||
</div>
|
||||
<div class="dialog">
|
||||
<div>
|
||||
<h1>This page could not be found (404).</h1>
|
||||
<p>You may have mistyped the address or the page may have moved.</p>
|
||||
</div>
|
||||
<p>
|
||||
If you are the application owner check the logs for more information.
|
||||
You can go back to
|
||||
<a href="/">home page</a>
|
||||
or try
|
||||
<a href="/search/new">searching.</a>
|
||||
</p>
|
||||
<img src="/images/genericError.svg" class="illustration">
|
||||
<h1>Ooops, something went wrong.</h1>
|
||||
<p>Please contact your SciNote administrator.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,67 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>The change you wanted was rejected (422)</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<style>
|
||||
body {
|
||||
background-color: #EFEFEF;
|
||||
color: #2E2F30;
|
||||
text-align: center;
|
||||
font-family: arial, sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
<head>
|
||||
<title>The change you wanted was rejected (422)</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<link rel="stylesheet" href="error_pages.css">
|
||||
</head>
|
||||
|
||||
div.dialog {
|
||||
width: 95%;
|
||||
max-width: 33em;
|
||||
margin: 4em auto 0;
|
||||
}
|
||||
|
||||
div.dialog > div {
|
||||
border: 1px solid #CCC;
|
||||
border-right-color: #999;
|
||||
border-left-color: #999;
|
||||
border-bottom-color: #BBB;
|
||||
border-top: #B00100 solid 4px;
|
||||
border-top-left-radius: 9px;
|
||||
border-top-right-radius: 9px;
|
||||
background-color: white;
|
||||
padding: 7px 12% 0;
|
||||
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 100%;
|
||||
color: #730E15;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
div.dialog > p {
|
||||
margin: 0 0 1em;
|
||||
padding: 1em;
|
||||
background-color: #F7F7F7;
|
||||
border: 1px solid #CCC;
|
||||
border-right-color: #999;
|
||||
border-left-color: #999;
|
||||
border-bottom-color: #999;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
border-top-color: #DADADA;
|
||||
color: #666;
|
||||
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- This file lives in public/422.html -->
|
||||
<div class="dialog">
|
||||
<div>
|
||||
<h1>The change you wanted was rejected.</h1>
|
||||
<p>Maybe you tried to change something you didn't have access to.</p>
|
||||
<body>
|
||||
<!-- This file lives in public/422.html -->
|
||||
<div class="navbar">
|
||||
<img id="logo" src="/images/scinote_icon.svg" title="SciNote">
|
||||
</div>
|
||||
<p>If you are the application owner check the logs for more information.</p>
|
||||
</div>
|
||||
</body>
|
||||
<div class="dialog">
|
||||
<img src="/images/genericError.svg" class="illustration">
|
||||
<h1>Ooops, something went wrong.</h1>
|
||||
<p>Please contact your SciNote administrator.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,66 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>We're sorry, but something went wrong (500)</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<style>
|
||||
body {
|
||||
background-color: #EFEFEF;
|
||||
color: #2E2F30;
|
||||
text-align: center;
|
||||
font-family: arial, sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
<head>
|
||||
<title>We're sorry, but something went wrong (500)</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<link rel="stylesheet" href="error_pages.css">
|
||||
</head>
|
||||
|
||||
div.dialog {
|
||||
width: 95%;
|
||||
max-width: 33em;
|
||||
margin: 4em auto 0;
|
||||
}
|
||||
|
||||
div.dialog > div {
|
||||
border: 1px solid #CCC;
|
||||
border-right-color: #999;
|
||||
border-left-color: #999;
|
||||
border-bottom-color: #BBB;
|
||||
border-top: #B00100 solid 4px;
|
||||
border-top-left-radius: 9px;
|
||||
border-top-right-radius: 9px;
|
||||
background-color: white;
|
||||
padding: 7px 12% 0;
|
||||
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 100%;
|
||||
color: #730E15;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
div.dialog > p {
|
||||
margin: 0 0 1em;
|
||||
padding: 1em;
|
||||
background-color: #F7F7F7;
|
||||
border: 1px solid #CCC;
|
||||
border-right-color: #999;
|
||||
border-left-color: #999;
|
||||
border-bottom-color: #999;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
border-top-color: #DADADA;
|
||||
color: #666;
|
||||
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- This file lives in public/500.html -->
|
||||
<div class="dialog">
|
||||
<div>
|
||||
<h1>We're sorry, but something went wrong.</h1>
|
||||
<body>
|
||||
<!-- This file lives in public/500.html -->
|
||||
<div class="navbar">
|
||||
<img id="logo" src="/images/scinote_icon.svg" title="SciNote">
|
||||
</div>
|
||||
<p>If you are the application owner check the logs for more information.</p>
|
||||
</div>
|
||||
</body>
|
||||
<div class="dialog">
|
||||
<img src="/images/genericError.svg" class="illustration">
|
||||
<h1>Ooops, something went wrong.</h1>
|
||||
<p>Please contact your SciNote administrator.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
91
public/error_pages.css
Normal file
91
public/error_pages.css
Normal file
|
@ -0,0 +1,91 @@
|
|||
body {
|
||||
background-color: #F0F0F6;
|
||||
color: #2E2F30;
|
||||
text-align: center;
|
||||
font-family: arial, sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.navbar {
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 1px 4px rgba(35, 31, 32, 0.15);
|
||||
height: 52px;
|
||||
left: 0%;
|
||||
position: absolute;
|
||||
right: 0%;
|
||||
top: 0%;
|
||||
}
|
||||
|
||||
div.navbar > img {
|
||||
width: 121px;
|
||||
height: 24px;
|
||||
left: 21px;
|
||||
position: absolute;
|
||||
top: calc(50% - 24px/2 - 0px);
|
||||
}
|
||||
|
||||
div.dialog {
|
||||
width: 95%;
|
||||
margin: 4em auto 0;
|
||||
}
|
||||
|
||||
div.dialog > h1 {
|
||||
color: #404048;
|
||||
font-family: Lato;
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
font-size: 1.5em;
|
||||
line-height: 29px;
|
||||
margin: 0.5em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.dialog > p {
|
||||
color: #404048;
|
||||
font-family: Lato;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-size: 1.1em;
|
||||
margin: 0.5em;
|
||||
}
|
||||
|
||||
div.dialog > img {
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
div.back-button {
|
||||
margin-top: 3em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a.back-button {
|
||||
background: #104DA9;
|
||||
border-radius: 4px;
|
||||
color: #FFFFFF;
|
||||
display: inline-block;
|
||||
font-family: Lato;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-size: 0.9em;
|
||||
margin-top: 3em;
|
||||
padding: 0.8em 1em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.back-button > img {
|
||||
filter: invert(100%);
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
margin-right: 0.5em;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
a.back-button > span {
|
||||
color: #FFFFFF;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
}
|
||||
|
||||
.illustration {
|
||||
margin-top: 64px !important;
|
||||
}
|
138
public/images/genericError.svg
Normal file
138
public/images/genericError.svg
Normal file
|
@ -0,0 +1,138 @@
|
|||
<svg width="320" height="158" viewBox="0 0 320 158" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_501_29534)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M59.0461 67.5369C58.611 68.1745 57.8924 68.6653 57.5635 67.8152L54.1227 59.2131C52.6654 55.3522 60.807 50.4844 62.5629 55.671C63.3523 58.9854 62.2289 62.9019 59.0461 67.5369Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.2571 59.1609L57.6981 67.7633C57.773 67.9569 57.8612 68.051 57.9401 68.0926C58.0161 68.1327 58.1069 68.1365 58.2175 68.0979C58.4491 68.017 58.7156 67.7655 58.9271 67.4557C62.0982 62.8377 63.1967 58.966 62.4242 55.711C62 54.4637 61.2014 53.8355 60.2681 53.6345C59.3232 53.431 58.2208 53.6618 57.2031 54.178C56.1867 54.6935 55.2715 55.4854 54.7014 56.3791C54.1316 57.2723 53.9145 58.2518 54.2571 59.1609ZM60.3288 53.3525C61.3689 53.5766 62.2453 54.2831 62.6995 55.6249L62.7017 55.6312L62.7032 55.6377C63.5064 59.0101 62.3575 62.9695 59.1652 67.6184C58.9416 67.9461 58.6313 68.2588 58.3126 68.3702C58.148 68.4277 57.9703 68.4347 57.8055 68.3477C57.6437 68.2623 57.5189 68.0992 57.4294 67.8682C57.4293 67.8679 57.4292 67.8676 57.4291 67.8674L53.9878 59.2641C53.6024 58.2432 53.8567 57.1669 54.4582 56.224C55.0596 55.2813 56.0164 54.4565 57.0727 53.9207C58.1277 53.3856 59.2989 53.1307 60.3288 53.3525Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M58.4036 68.6604C58.6971 67.9874 58.7021 67.1879 57.8166 67.4156L48.7793 69.642C44.7666 70.7046 45.2372 79.3979 50.4947 77.8242C53.6775 76.5642 56.3289 73.5585 58.4036 68.6604Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M58.6908 67.6606C58.7775 67.965 58.6867 68.3715 58.536 68.7172C56.4537 73.6332 53.7806 76.6784 50.5477 77.9582L50.5419 77.9605L50.5359 77.9623C49.1818 78.3676 48.1143 78.1152 47.3511 77.469C46.5947 76.8286 46.1572 75.8182 46.0176 74.7402C45.8778 73.6608 46.0338 72.4959 46.4844 71.5291C46.9354 70.5613 47.6874 69.7819 48.7423 69.5025L48.7447 69.5019L48.7447 69.5019L57.7806 67.2758C57.7809 67.2758 57.7811 67.2757 57.7813 67.2756C58.0193 67.2146 58.2215 67.2158 58.382 67.2877C58.5482 67.362 58.6454 67.5009 58.6908 67.6606ZM58.2642 67.5509C58.1859 67.5159 58.0569 67.5026 57.8524 67.5552L57.851 67.5555L57.851 67.5555L48.8149 69.7817C47.8641 70.0339 47.1706 70.7394 46.7458 71.6509C46.3203 72.5638 46.1702 73.673 46.3036 74.7031C46.4372 75.7345 46.8524 76.6688 47.5375 77.2489C48.2148 77.8224 49.1757 78.0667 50.4473 77.6877C53.5772 76.4463 56.2051 73.481 58.2707 68.604L58.2713 68.6026C58.4139 68.2756 58.4722 67.9462 58.4134 67.7396C58.3862 67.6438 58.3369 67.5835 58.2642 67.5509Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.1133 60.797C48.6782 61.4346 47.9596 61.9203 47.6307 61.0702L44.1899 52.4681C42.7275 48.6072 50.8742 43.7394 52.6301 48.926C53.4144 52.2404 52.2961 56.1771 49.1133 60.797Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.3241 52.4157L47.765 61.0182C47.84 61.2118 47.9283 61.3064 48.0075 61.3485C48.0838 61.389 48.1747 61.3932 48.285 61.3551C48.5163 61.2754 48.7827 61.0253 48.994 60.7157L48.9944 60.7151C52.1651 56.1128 53.2587 52.2211 52.4911 48.9658C52.0669 47.7186 51.268 47.0904 50.3344 46.8894C49.389 46.6859 48.2862 46.9167 47.2682 47.4329C46.2514 47.9484 45.3361 48.7403 44.7662 49.634C44.1967 50.5271 43.9803 51.5066 44.3241 52.4157ZM50.3951 46.6074C51.4355 46.8314 52.3123 47.538 52.7665 48.8797L52.7687 48.8862L52.7702 48.8928C53.5682 52.2648 52.4246 56.2444 49.2321 60.8785C49.0083 61.2063 48.6979 61.5178 48.379 61.6278C48.2142 61.6846 48.0366 61.6906 47.872 61.6031C47.7106 61.5172 47.5859 61.354 47.4963 61.123C47.4962 61.1228 47.4961 61.1225 47.496 61.1222L44.0548 52.5191C43.6681 51.4982 43.9217 50.4218 44.523 49.4789C45.1242 48.5361 46.0811 47.7113 47.1377 47.1756C48.1931 46.6405 49.3648 46.3856 50.3951 46.6074Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.4705 61.9203C48.7589 61.2422 48.769 60.4427 47.8784 60.6755L38.8462 62.9019C34.8335 63.9645 35.3041 72.6578 40.5615 71.0841C43.7443 69.8241 46.3958 66.8184 48.4705 61.9203Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.7554 60.9169C48.8421 61.2211 48.7512 61.6291 48.6034 61.9766C46.521 66.893 43.8479 69.9383 40.6148 71.2182L40.609 71.2205L40.6031 71.2223C39.2489 71.6276 38.1814 71.3753 37.4182 70.7291C36.6619 70.0886 36.2244 69.0783 36.0847 68.0002C35.9449 66.9208 36.1009 65.7559 36.5515 64.7891C37.0025 63.8213 37.7546 63.0419 38.8094 62.7626L38.8118 62.7619L38.8118 62.7619L47.8421 60.536C47.8425 60.5359 47.8428 60.5358 47.8431 60.5357C48.0819 60.4735 48.2846 60.4736 48.4456 60.5445C48.6126 60.6181 48.7099 60.757 48.7554 60.9169ZM48.3292 60.8084C48.2508 60.7739 48.1212 60.7612 47.9151 60.815L47.9131 60.8156L47.9131 60.8155L38.8821 63.0417C37.9312 63.2939 37.2377 63.9994 36.8129 64.9109C36.3875 65.8238 36.2373 66.933 36.3708 67.9631C36.5044 68.9945 36.9195 69.9288 37.6046 70.5089C38.2819 71.0824 39.2428 71.3267 40.5144 70.9477C43.6443 69.7063 46.2722 66.741 48.3378 61.8641L48.3379 61.8638C48.4785 61.5334 48.5369 61.2026 48.478 60.9958C48.4508 60.9002 48.4018 60.8404 48.3292 60.8084Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.9341 54.8058C39.5748 55.3118 38.9828 55.7318 38.7146 55.0335L35.881 47.9747C34.6817 44.797 41.3813 40.7944 42.8234 45.05C43.4711 47.7672 42.5502 51.0057 39.9341 54.8058Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.0154 47.9223L38.8493 54.9818C38.909 55.1372 38.9776 55.2065 39.0339 55.2354C39.0876 55.2631 39.1545 55.2666 39.2417 55.2354C39.426 55.1696 39.6421 54.9678 39.816 54.7231C42.4197 50.9407 43.3155 47.7477 42.6847 45.0899C42.339 44.0755 41.6895 43.5677 40.9315 43.4058C40.1618 43.2413 39.261 43.4299 38.427 43.8534C37.5943 44.2762 36.845 44.925 36.3786 45.6562C35.9127 46.3867 35.7374 47.184 36.0154 47.9223ZM40.9918 43.1237C41.8565 43.3085 42.5842 43.8945 42.96 45.0036L42.9622 45.01L42.9637 45.0165C43.6253 47.7917 42.6788 51.0732 40.0529 54.8875L40.0518 54.8893C39.8665 55.1502 39.6072 55.411 39.3388 55.507C39.1996 55.5568 39.0457 55.566 38.9018 55.4918C38.7606 55.4191 38.6548 55.2794 38.5804 55.0862L35.7461 48.0256C35.4252 47.1754 35.6378 46.2813 36.1355 45.5011C36.6331 44.721 37.4239 44.0393 38.2964 43.5962C39.1677 43.1538 40.1372 42.9411 40.9918 43.1237Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.4029 55.7267C39.6407 55.1701 39.6509 54.5123 38.8969 54.7147L31.4687 56.5465C28.1695 57.4219 28.544 64.5718 32.8805 63.2764C35.5168 62.2239 37.6977 59.7546 39.4029 55.7267Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.6724 55.3289C39.6476 55.4791 39.5986 55.6357 39.5355 55.7832C37.8225 59.8295 35.6199 62.338 32.9339 63.4104L32.9278 63.4128L32.9217 63.4146C31.7979 63.7503 30.9091 63.5423 30.2733 63.0046C29.6442 62.4726 29.2827 61.6348 29.1681 60.7439C29.0533 59.8518 29.1832 58.8886 29.5569 58.0885C29.931 57.2875 30.5552 56.6397 31.4316 56.4071L31.4341 56.4065L31.4341 56.4065L38.8609 54.5751C39.0645 54.5206 39.2405 54.5173 39.3825 54.5759C39.5314 54.6375 39.6191 54.7573 39.66 54.8951C39.6995 55.0282 39.697 55.1803 39.6724 55.3289ZM39.2723 54.8425C39.2119 54.8175 39.107 54.8077 38.9342 54.854L38.9314 54.8548L38.9313 54.8548L31.5044 56.6862C30.7318 56.8916 30.1661 57.4656 29.8182 58.2105C29.4697 58.9568 29.3457 59.8643 29.4542 60.7071C29.5628 61.5512 29.9019 62.3127 30.4595 62.7844C31.0093 63.2493 31.7915 63.4495 32.8329 63.1401C35.4168 62.1061 37.5739 59.6767 39.27 55.6706L39.2702 55.6701C39.3261 55.5394 39.3675 55.4051 39.3878 55.2818C39.4085 55.1569 39.406 55.0528 39.3835 54.9772C39.3624 54.9063 39.3261 54.8647 39.2723 54.8425Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.5174 49.3206C30.2745 49.776 29.8343 50.1555 29.5509 49.6141L26.6363 44.1441C25.3814 41.6799 30.4465 37.8393 32 41.1587C32.7539 43.3042 32.2985 46.0113 30.5174 49.3206Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.7642 44.0776L29.6782 49.5463L29.6787 49.5473C29.7401 49.6647 29.7988 49.7103 29.8401 49.7266C29.8784 49.7416 29.9251 49.7408 29.9871 49.7111C30.1213 49.6469 30.2737 49.4711 30.3901 49.2528L30.3904 49.2523C32.1613 45.9621 32.5974 43.3022 31.8663 41.2134C31.4981 40.4313 30.9341 40.0844 30.3155 40.0218C29.685 39.9579 28.9783 40.1881 28.344 40.6032C27.7109 41.0176 27.1657 41.6064 26.8559 42.2351C26.5463 42.8631 26.4782 43.5149 26.7642 44.0776ZM30.3446 39.7348C31.0718 39.8085 31.722 40.2245 32.1306 41.0976L32.1337 41.1041L32.136 41.1109C32.9095 43.3119 32.4339 46.0641 30.6445 49.3887C30.5181 49.6258 30.329 49.8673 30.1116 49.9713C29.9977 50.0258 29.866 50.0467 29.7344 49.9949C29.6061 49.9444 29.5035 49.8345 29.4234 49.6814C29.4233 49.6813 29.4234 49.6816 29.4234 49.6814L26.5078 44.2096C26.167 43.5405 26.2616 42.7885 26.5971 42.1076C26.9326 41.4268 27.5155 40.8008 28.186 40.3619C28.8554 39.9238 29.6277 39.6622 30.3446 39.7348Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.1783 50.1151C30.32 49.6445 30.2694 49.1031 29.6723 49.3308L23.8177 51.4763C21.2219 52.4883 22.1682 58.2365 25.5635 56.7995C27.6077 55.7267 29.1663 53.5307 30.1783 50.1151Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.3871 49.7694C30.3806 49.8963 30.3547 50.0298 30.3166 50.1563C29.2987 53.5915 27.7228 55.8293 25.6307 56.9271L25.6254 56.9299L25.6199 56.9322C24.733 57.3076 23.9849 57.2196 23.4131 56.836C22.8486 56.4573 22.4778 55.8052 22.304 55.0903C22.1298 54.3741 22.1487 53.5776 22.3815 52.8907C22.6147 52.2028 23.067 51.6142 23.7655 51.3418L23.7683 51.3408L23.7683 51.3408L29.6219 49.1956C29.7864 49.133 29.9363 49.1141 30.065 49.153C30.2003 49.1938 30.2874 49.2907 30.3354 49.4052C30.3817 49.5154 30.3936 49.644 30.3871 49.7694ZM29.9817 49.4291C29.9376 49.4158 29.8575 49.4145 29.7238 49.4655L29.7221 49.4661L29.7221 49.4661L23.8689 51.6111C23.2703 51.845 22.8679 52.3541 22.6547 52.9833C22.4409 53.6139 22.4219 54.3544 22.5842 55.0221C22.7469 55.6911 23.087 56.2699 23.5738 56.5965C24.0521 56.9174 24.6937 57.0094 25.5019 56.6689C27.4957 55.6203 29.0349 53.4669 30.0402 50.0741L30.0403 50.0735C30.0731 49.9647 30.0939 49.8542 30.0991 49.7545C30.1043 49.6531 30.0928 49.5724 30.0695 49.5168C30.048 49.4656 30.0193 49.4405 29.9817 49.4291Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.3808 44.6401C22.2543 44.9589 21.9962 45.2422 21.7685 44.9083L19.4055 41.5534C18.3934 40.0354 21.4042 37.1056 22.6894 39.16C23.3675 40.5111 23.2815 42.3226 22.3808 44.6401Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5244 41.472L21.8876 44.8271C21.9332 44.894 21.9665 44.9093 21.9793 44.9127C21.9888 44.9153 22.0052 44.9163 22.0353 44.8972C22.1052 44.8529 22.1869 44.7373 22.2465 44.5874C23.1394 42.2896 23.2115 40.5279 22.5635 39.2308C22.268 38.762 21.8865 38.5897 21.4947 38.598C21.091 38.6066 20.6565 38.808 20.279 39.1272C19.9026 39.4455 19.5973 39.8692 19.4469 40.2979C19.2967 40.726 19.3053 41.1422 19.5244 41.472ZM21.4886 38.3097C21.9896 38.299 22.465 38.5296 22.8116 39.0836L22.8152 39.0893L22.8182 39.0954C23.523 40.4997 23.422 42.3589 22.5151 44.6924L22.5147 44.6933C22.4478 44.862 22.3373 45.0473 22.1897 45.1408C22.111 45.1907 22.0123 45.2198 21.9054 45.1915C21.8022 45.1642 21.718 45.0901 21.6499 44.9905L19.2853 41.6335C18.9993 41.2045 19.0051 40.6858 19.1747 40.2024C19.3443 39.7191 19.6823 39.2541 20.0928 38.907C20.5021 38.5608 20.998 38.3201 21.4886 38.3097Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2188 45.1916C22.2745 44.8728 22.1935 44.5236 21.8343 44.7109L18.1607 46.5932C16.5364 47.4585 17.6192 51.1473 19.7343 49.948C20.9791 49.0828 21.8191 47.5192 22.2188 45.1916Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.3079 44.691C22.3906 44.8385 22.3905 45.0464 22.3609 45.2163C21.9578 47.5633 21.1058 49.1704 19.8166 50.0665L19.8112 50.0703L19.8054 50.0736C19.2406 50.3938 18.7248 50.3958 18.3021 50.18C17.8871 49.9682 17.5846 49.5582 17.4102 49.0958C17.2354 48.6323 17.1827 48.0996 17.2826 47.6217C17.3828 47.1426 17.6397 46.7074 18.0928 46.466L18.0948 46.4649L18.0948 46.465L21.7676 44.5831C21.7677 44.583 21.7679 44.5829 21.768 44.5828C21.8735 44.5279 21.9804 44.5006 22.0818 44.5208C22.1889 44.5421 22.2628 44.6107 22.3079 44.691ZM22.0256 44.8037C22.0127 44.8011 21.9748 44.8003 21.9009 44.8388L21.9 44.8393L18.2274 46.7211C17.869 46.9125 17.6524 47.2626 17.565 47.6807C17.4772 48.1002 17.5228 48.5771 17.6801 48.994C17.8378 49.4121 18.101 49.7535 18.4332 49.9231C18.7564 50.0881 19.1672 50.102 19.6574 49.8259C20.8548 48.9907 21.6809 47.4719 22.0766 45.1672L22.0767 45.1668C22.1027 45.018 22.0899 44.8919 22.0563 44.8321C22.0432 44.8087 22.0329 44.8051 22.0256 44.8037Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.998 41.1435C14.8765 41.4623 14.6134 41.7457 14.3857 41.4117L12.0277 38.0568C11.0157 36.5388 14.0518 33.609 15.3117 35.6634C16.01 37.0296 15.9037 38.8412 14.998 41.1435Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1469 37.9755L14.505 41.3305C14.5505 41.3971 14.5839 41.4126 14.5972 41.4161C14.6075 41.4188 14.6246 41.4196 14.655 41.4004C14.7251 41.3562 14.8068 41.2408 14.8634 41.0922L14.8639 41.0908C15.7626 38.8065 15.8537 37.0454 15.186 35.7341C14.8967 35.2653 14.5185 35.0931 14.1279 35.1015C13.7254 35.11 13.29 35.3114 12.9108 35.6308C12.5327 35.9493 12.2251 36.373 12.0728 36.8019C11.9207 37.2301 11.928 37.646 12.1469 37.9755ZM14.1218 34.8131C14.6219 34.8025 15.0946 35.0333 15.4348 35.5881L15.4377 35.5929L15.4403 35.5978C16.1663 37.0183 16.0441 38.8784 15.1326 41.1956C15.0677 41.3657 14.9572 41.5509 14.8087 41.6444C14.7297 41.6942 14.6307 41.7231 14.5238 41.695C14.4203 41.6678 14.3356 41.5938 14.2673 41.4939L11.9078 38.1369C11.6216 37.7076 11.6293 37.1886 11.801 36.7053C11.9726 36.2221 12.313 35.7572 12.725 35.4102C13.1358 35.0642 13.6324 34.8235 14.1218 34.8131Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.8363 41.7103C14.8919 41.3865 14.811 41.0424 14.4517 41.2043L10.7781 43.0867C9.1538 43.9519 10.2367 47.6407 12.3518 46.4415C13.5966 45.6015 14.4365 44.0329 14.8363 41.7103Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.926 41.2058C15.0078 41.3552 15.008 41.5621 14.9783 41.7347C14.5754 44.076 13.7234 45.6898 12.4324 46.561L12.4277 46.5641L12.4228 46.5669C11.858 46.8871 11.3422 46.8891 10.9195 46.6733C10.5046 46.4615 10.2021 46.0515 10.0277 45.5891C9.85283 45.1256 9.80011 44.593 9.90006 44.115C10.0003 43.6359 10.2571 43.2007 10.7102 42.9593L10.7122 42.9583L14.3891 41.0743L14.3924 41.0728C14.4996 41.0245 14.6068 41.0043 14.7066 41.0297C14.8106 41.0561 14.882 41.1254 14.926 41.2058ZM14.514 41.3344C14.5844 41.3032 14.6212 41.3056 14.6356 41.3092C14.6462 41.3119 14.6589 41.3185 14.673 41.3444C14.7076 41.4075 14.7201 41.5346 14.6941 41.6858C14.2981 43.9867 13.4717 45.5092 12.2757 46.3187C11.7851 46.5953 11.3741 46.5815 11.0507 46.4164C10.7185 46.2468 10.4552 45.9054 10.2975 45.4873C10.1403 45.0704 10.0946 44.5936 10.1824 44.174C10.2698 43.7559 10.4864 43.4058 10.8448 43.2144L14.514 41.3344Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.59906 38.9222C9.84194 39.1954 9.9735 39.5547 9.50797 39.5446L4.80209 39.494C2.70215 39.4383 1.55857 35.4965 4.34668 35.6483C6.07723 35.8811 7.82802 36.9488 9.59906 38.9222Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.80466 39.3498L9.50939 39.4004L9.51098 39.4004C9.6135 39.4027 9.65468 39.3831 9.66681 39.3742C9.66704 39.374 9.66728 39.3738 9.66753 39.3736C9.67093 39.3713 9.67586 39.3678 9.67495 39.3456C9.6737 39.3153 9.65999 39.2675 9.626 39.2052C9.59312 39.1449 9.54633 39.0801 9.49135 39.0183C7.73506 37.0613 6.01512 36.0201 4.33303 35.792C3.67408 35.7575 3.27829 35.9638 3.06309 36.2618C2.84248 36.5673 2.78755 37.0019 2.88251 37.4644C2.97707 37.9249 3.21711 38.3935 3.55699 38.7486C3.89617 39.1029 4.32691 39.3368 4.80466 39.3498ZM2.82926 36.0929C3.11755 35.6937 3.6227 35.4645 4.35439 35.5043L4.36011 35.5047L4.36578 35.5054C6.14289 35.7444 7.92255 36.8383 9.70626 38.8259L9.70671 38.8264C9.77308 38.9011 9.83374 38.9836 9.87925 39.0671C9.92369 39.1487 9.95932 39.2413 9.96313 39.3337C9.96721 39.4326 9.93374 39.5354 9.83844 39.606C9.75208 39.6699 9.63544 39.6915 9.50554 39.6888L4.79814 39.6382C4.22637 39.623 3.7271 39.3434 3.34864 38.948C2.97062 38.5531 2.70529 38.0353 2.59998 37.5224C2.49505 37.0114 2.54576 36.4855 2.82926 36.0929Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M65.854 74.9375C48.3532 61.378 29.8506 48.0122 8.8894 39.267L9.08424 38.8C30.1117 47.5729 48.659 60.9749 66.1639 74.5375L65.854 74.9375Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M264.46 92.8627C265.068 93.3687 265.918 93.6824 266.019 92.7463L267.183 83.2384C267.613 78.9828 258.166 76.2757 257.786 81.9278C257.882 85.4496 260.023 89.0878 264.46 92.8627Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M266.047 80.3373C266.9 81.121 267.44 82.1298 267.326 83.2529L267.326 83.2559L267.326 83.2559L266.162 92.7618C266.162 92.7622 266.162 92.7625 266.162 92.7629C266.135 93.0166 266.054 93.2109 265.915 93.3371C265.774 93.4656 265.596 93.5037 265.418 93.489C265.072 93.4607 264.679 93.2326 264.368 92.9735L264.367 92.9726C259.915 89.1859 257.74 85.5127 257.642 81.9318L257.642 81.925L257.642 81.9182C257.74 80.4576 258.429 79.5201 259.41 79.0212C260.381 78.5269 261.62 78.4712 262.818 78.7267C264.018 78.9825 265.194 79.5538 266.047 80.3373ZM257.931 81.9307C258.024 80.5693 258.657 79.7276 259.54 79.2782C260.434 78.8234 261.601 78.7621 262.758 79.0088C263.914 79.2553 265.042 79.8054 265.852 80.5497C266.661 81.2935 267.14 82.2183 267.039 83.2224L265.876 92.7288L265.876 92.7288L265.876 92.7308C265.852 92.9447 265.789 93.0618 265.721 93.124C265.655 93.1842 265.564 93.2116 265.441 93.2016C265.185 93.1806 264.849 92.999 264.553 92.7524C260.133 88.992 258.028 85.3912 257.931 81.9307Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M265.376 93.819C264.906 93.2219 264.688 92.4225 265.634 92.4123L275.249 92.2352C279.55 92.2352 281.407 101.06 275.709 100.883C272.212 100.473 268.756 98.1707 265.376 93.819Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M275.249 92.0911C276.377 92.0911 277.337 92.6707 278.047 93.5188C278.756 94.3662 279.223 95.4899 279.371 96.6066C279.519 97.722 279.351 98.8482 278.764 99.689C278.172 100.537 277.17 101.073 275.705 101.027L275.698 101.027L275.692 101.026C272.142 100.61 268.655 98.2749 265.263 93.908C265.021 93.6014 264.824 93.2193 264.83 92.893C264.833 92.722 264.893 92.5585 265.038 92.4406C265.178 92.3266 265.379 92.271 265.632 92.2682C265.633 92.2682 265.633 92.2682 265.633 92.2682L275.249 92.0911ZM275.25 92.3795L265.636 92.5566C265.417 92.5589 265.29 92.6071 265.22 92.6643C265.154 92.7178 265.12 92.7934 265.118 92.8983C265.114 93.1233 265.261 93.4393 265.49 93.7298L265.49 93.7306C268.856 98.0642 272.279 100.333 275.72 100.739C277.099 100.78 278 100.28 278.527 99.524C279.061 98.7599 279.227 97.7131 279.085 96.6445C278.944 95.5771 278.497 94.5057 277.826 93.7039C277.156 92.9033 276.271 92.3799 275.25 92.3795Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M272.587 83.4712C273.194 83.9772 274.039 84.2909 274.145 83.3548L275.304 73.8469C275.739 69.5964 266.292 66.8842 265.913 72.5363C266.004 76.0581 268.174 79.7014 272.587 83.4712Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M274.171 70.948C275.023 71.7315 275.562 72.7397 275.448 73.8616L275.447 73.8644L275.447 73.8644L274.289 83.3711C274.289 83.3713 274.289 83.3715 274.289 83.3717C274.26 83.6255 274.178 83.8197 274.039 83.9458C273.898 84.0741 273.72 84.1122 273.542 84.0975C273.197 84.0692 272.805 83.841 272.495 83.582L272.493 83.5809C268.068 79.7998 265.861 76.1215 265.768 72.5401L265.768 72.5334L265.769 72.5267C265.867 71.066 266.556 70.1289 267.536 69.6304C268.507 69.1365 269.746 69.0813 270.944 69.3371C272.143 69.5932 273.319 70.1647 274.171 70.948ZM266.057 72.5394C266.15 71.1779 266.784 70.3365 267.667 69.8875C268.56 69.433 269.727 69.3721 270.884 69.6192C272.039 69.866 273.167 70.4163 273.976 71.1603C274.785 71.9039 275.263 72.8281 275.161 73.8309L274.002 83.3374L274.002 83.3386C273.978 83.5525 273.914 83.67 273.845 83.7324C273.779 83.7928 273.688 83.8201 273.566 83.8101C273.31 83.7891 272.976 83.6077 272.68 83.361C268.284 79.6051 266.149 75.9993 266.057 72.5394Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M273.528 84.4276C273.058 83.8305 272.84 83.031 273.786 83.0209L283.4 82.8438C287.701 82.8438 289.553 91.6685 283.861 91.4914C280.359 91.0816 276.908 88.7792 273.528 84.4276Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M283.4 82.6995C284.529 82.6995 285.489 83.2791 286.198 84.1273C286.906 84.9746 287.373 86.0983 287.521 87.215C287.669 88.3304 287.5 89.4566 286.913 90.2974C286.322 91.1455 285.321 91.6811 283.856 91.6355L283.85 91.6353L283.844 91.6346C280.289 91.2184 276.807 88.8832 273.414 84.5163C273.173 84.2098 272.976 83.8277 272.982 83.5014C272.985 83.3304 273.044 83.1669 273.189 83.049C273.33 82.935 273.53 82.8794 273.784 82.8766C273.784 82.8766 273.784 82.8766 273.785 82.8766L283.4 82.6995ZM283.402 82.9879L273.788 83.165C273.569 83.1673 273.442 83.2155 273.371 83.2727C273.306 83.3262 273.272 83.4018 273.27 83.5067C273.266 83.7317 273.412 84.0477 273.641 84.3382L273.642 84.339C277.008 88.6727 280.426 90.9419 283.871 91.3474C285.25 91.3887 286.15 90.888 286.677 90.1324C287.21 89.3683 287.377 88.3215 287.235 87.2529C287.094 86.1855 286.647 85.1141 285.977 84.3123C285.307 83.5117 284.423 82.9883 283.402 82.9879Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M280.182 75.0461C280.688 75.4762 281.376 75.7242 281.462 74.95L282.419 67.1321C282.773 63.6356 275.006 61.4092 274.692 66.0543C274.768 68.9335 276.554 71.9291 280.182 75.0461Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M281.502 64.7292C282.207 65.3768 282.657 66.2133 282.562 67.1467L282.562 67.1497L282.562 67.1497L281.606 74.9659C281.606 74.9662 281.606 74.9665 281.606 74.9667C281.582 75.1795 281.514 75.3468 281.396 75.4575C281.274 75.5708 281.121 75.6052 280.969 75.5934C280.677 75.5709 280.349 75.3772 280.089 75.156L280.088 75.1555C276.447 72.0275 274.625 68.997 274.548 66.0581L274.548 66.0514L274.548 66.0446C274.63 64.8357 275.201 64.0571 276.016 63.6428C276.821 63.2333 277.847 63.1882 278.836 63.3991C279.826 63.6102 280.798 64.0817 281.502 64.7292ZM274.836 66.0573C274.913 64.9477 275.429 64.2647 276.147 63.8999C276.875 63.5297 277.828 63.479 278.776 63.6812C279.722 63.883 280.645 64.3334 281.307 64.9416C281.969 65.5493 282.357 66.3018 282.275 67.1161L281.319 74.9325L281.319 74.9325L281.319 74.934C281.3 75.108 281.249 75.1997 281.199 75.2467C281.151 75.2912 281.085 75.3131 280.991 75.3059C280.791 75.2905 280.521 75.1452 280.276 74.9364C276.664 71.833 274.913 68.8748 274.836 66.0573Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M280.956 75.8203C280.572 75.3143 280.39 74.6717 281.169 74.6616L289.093 74.5199C292.635 74.5199 294.153 81.771 289.467 81.604C286.573 81.2903 283.734 79.3978 280.956 75.8203Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M289.093 74.3757C290.032 74.3757 290.828 74.8569 291.415 75.5577C292.002 76.2577 292.387 77.1851 292.509 78.1057C292.63 79.0251 292.49 79.9558 292.002 80.6505C291.508 81.3526 290.675 81.7914 289.462 81.7482L289.457 81.748L289.452 81.7474C286.503 81.4278 283.632 79.5017 280.842 75.9088L280.842 75.9077C280.74 75.7743 280.651 75.6299 280.586 75.4863C280.522 75.3442 280.48 75.1942 280.482 75.0526C280.484 74.9065 280.536 74.7652 280.663 74.6634C280.784 74.5658 280.955 74.5202 281.167 74.5174C281.167 74.5174 281.167 74.5174 281.167 74.5174L289.093 74.3757ZM289.094 74.6642L281.172 74.8058L281.171 74.8058C280.993 74.8081 280.895 74.8467 280.843 74.8882C280.797 74.9256 280.772 74.9784 280.77 75.0575C280.769 75.141 280.795 75.2472 280.849 75.3683C280.903 75.4876 280.98 75.613 281.071 75.7325C283.835 79.2921 286.64 81.1507 289.478 81.4601C290.605 81.499 291.337 81.0943 291.766 80.4847C292.2 79.8668 292.338 79.016 292.223 78.1435C292.108 77.2723 291.742 76.3973 291.194 75.7429C290.647 75.0897 289.926 74.6646 289.094 74.6642Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M288.147 67.0411C288.511 67.4358 289.053 67.6938 289.194 67.0815L290.667 60.8273C291.269 58.029 285.172 55.5294 284.504 59.2637C284.306 61.6167 285.485 64.2024 288.147 67.0411Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M290.16 58.7825C290.677 59.374 290.971 60.0998 290.808 60.8577L290.807 60.8604L290.807 60.8604L289.335 67.1141C289.335 67.1142 289.335 67.1143 289.335 67.1143C289.295 67.2872 289.221 67.4224 289.107 67.5056C288.991 67.5906 288.855 67.6047 288.727 67.5807C288.483 67.5349 288.231 67.3447 288.041 67.1393C285.368 64.2882 284.158 61.6639 284.36 59.2517L284.36 59.245L284.362 59.2384C284.537 58.2577 285.076 57.6702 285.782 57.4042C286.479 57.1418 287.321 57.1984 288.107 57.4589C288.894 57.7199 289.644 58.1912 290.16 58.7825ZM284.647 59.2826C284.806 58.4002 285.28 57.9017 285.884 57.6741C286.499 57.4423 287.27 57.4853 288.016 57.7327C288.761 57.9797 289.465 58.4246 289.943 58.9722C290.421 59.5194 290.663 60.1549 290.526 60.7957L289.054 67.0486L289.054 67.0491C289.023 67.1822 288.976 67.2443 288.937 67.2726C288.901 67.299 288.852 67.3106 288.781 67.2972C288.628 67.2685 288.427 67.1325 288.253 66.9433L288.252 66.9425C285.605 64.1191 284.457 61.5744 284.647 59.2826Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M288.703 67.7495C288.435 67.3144 288.344 66.7679 288.976 66.8337L295.408 67.4257C298.272 67.7394 298.859 73.7508 295.079 73.2144C292.766 72.6831 290.636 70.8969 288.703 67.7495Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M288.645 67.1215C288.629 67.2542 288.697 67.4641 288.826 67.6738C290.747 70.8016 292.848 72.5515 295.105 73.0724C296.006 73.1987 296.625 72.9354 297.019 72.4852C297.42 72.0274 297.606 71.3558 297.591 70.6419C297.575 69.9293 297.359 69.1923 296.976 68.6178C296.595 68.0444 296.056 67.6421 295.393 67.5691L288.962 66.977C288.821 66.9624 288.745 66.9849 288.707 67.0092C288.674 67.0301 288.653 67.063 288.645 67.1215ZM288.991 66.69C288.816 66.672 288.666 66.6932 288.552 66.7663C288.432 66.8429 288.375 66.9615 288.359 67.0858C288.33 67.3186 288.442 67.5995 288.58 67.8249C290.524 70.9891 292.681 72.8114 295.047 73.3549L295.053 73.3563L295.059 73.3571C296.045 73.497 296.768 73.2102 297.236 72.6753C297.699 72.147 297.896 71.3967 297.879 70.6356C297.862 69.8732 297.632 69.082 297.216 68.458C296.801 67.8331 296.193 67.3665 295.424 67.2823L288.991 66.69Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M295.049 60.1948C295.256 60.4832 295.59 60.7008 295.732 60.301L297.199 56.3187C297.822 54.5275 294.016 52.3972 293.278 54.8007C292.964 56.3238 293.526 58.1201 295.049 60.1948Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M297.072 54.907C297.37 55.3453 297.511 55.862 297.335 56.3662L297.335 56.3687L297.335 56.3687L295.867 60.3502C295.825 60.4683 295.761 60.5643 295.666 60.6187C295.568 60.6752 295.463 60.6726 295.371 60.6435C295.2 60.5889 295.042 60.4321 294.932 60.2796C293.399 58.1909 292.811 56.3526 293.136 54.7717L293.138 54.765L293.14 54.7584C293.339 54.1119 293.752 53.7551 294.255 53.632C294.748 53.5114 295.309 53.6194 295.81 53.8563C296.314 54.0939 296.775 54.4689 297.072 54.907ZM293.418 54.8367C293.589 54.2857 293.927 54.0093 294.324 53.9122C294.733 53.8122 295.223 53.8981 295.687 54.1172C296.15 54.3356 296.569 54.6789 296.834 55.0689C297.098 55.4583 297.199 55.8791 297.063 56.2703L295.597 60.2512L295.596 60.2512L295.596 60.2529C295.567 60.3343 295.537 60.3606 295.523 60.3687C295.512 60.3748 295.494 60.38 295.459 60.3686C295.376 60.3423 295.263 60.2464 295.166 60.1106L295.166 60.1106L295.165 60.1095C293.655 58.0524 293.119 56.3004 293.418 54.8367Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M295.357 60.7059C295.216 60.3972 295.201 60.0329 295.61 60.124L299.79 61.0297C301.647 61.4649 301.551 65.4624 299.107 64.8046C297.629 64.2732 296.375 62.9273 295.357 60.7059Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M295.417 60.3002C295.399 60.3695 295.421 60.4997 295.488 60.6458C296.496 62.8465 297.726 64.1526 299.15 64.6669C299.718 64.8183 300.129 64.697 300.41 64.4459C300.699 64.1881 300.871 63.7749 300.918 63.3127C300.964 62.8517 300.882 62.3595 300.682 61.9604C300.482 61.5626 300.17 61.2673 299.758 61.1704L295.579 60.2648C295.493 60.2457 295.454 60.2563 295.441 60.2629C295.433 60.2667 295.424 60.2733 295.417 60.3002ZM295.641 59.9831C295.522 59.9567 295.41 59.9575 295.315 60.0033C295.215 60.0519 295.16 60.1385 295.137 60.2299C295.095 60.3972 295.152 60.6033 295.226 60.766C296.251 63.005 297.529 64.3905 299.058 64.9403L299.064 64.9423L299.069 64.9438C299.72 65.119 300.237 64.9872 300.602 64.661C300.961 64.3408 301.154 63.8507 301.205 63.3414C301.256 62.8309 301.167 62.2832 300.939 61.8309C300.711 61.3777 300.339 61.0103 299.823 60.8894L295.641 59.9831C295.641 59.9831 295.641 59.9832 295.641 59.9831Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M301.51 54.7451C301.718 55.0335 302.057 55.2511 302.194 54.8564L303.661 50.869C304.283 49.0778 300.478 46.9475 299.739 49.351C299.426 50.8792 299.987 52.6704 301.51 54.7451Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M303.534 49.4572C303.831 49.8955 303.972 50.4122 303.797 50.9163L303.796 50.9188L303.796 50.9188L302.329 54.9049C302.288 55.0222 302.224 55.1179 302.129 55.1716C302.031 55.2271 301.925 55.2234 301.834 55.1941C301.663 55.139 301.504 54.9829 301.394 54.8298C299.86 52.7411 299.272 50.9079 299.598 49.322L299.599 49.3152L299.602 49.3086C299.8 48.6621 300.214 48.3053 300.717 48.1822C301.21 48.0616 301.77 48.1696 302.272 48.4065C302.775 48.6441 303.237 49.019 303.534 49.4572ZM299.879 49.3868C300.051 48.8358 300.388 48.5595 300.786 48.4623C301.194 48.3624 301.685 48.4483 302.149 48.6673C302.612 48.8858 303.031 49.2291 303.295 49.619C303.559 50.0085 303.661 50.4293 303.525 50.8205L302.058 54.8065L302.058 54.8065L302.057 54.8092C302.03 54.8885 302 54.9132 301.987 54.9204C301.977 54.9261 301.96 54.9314 301.923 54.9196C301.839 54.8925 301.725 54.7959 301.627 54.6608L301.627 54.6608L301.627 54.6597C300.116 52.6026 299.58 50.8556 299.879 49.3868Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M301.819 55.2562C301.677 54.9475 301.662 54.5832 302.072 54.6743L306.252 55.58C308.109 56.0152 308.013 60.0126 305.569 59.3599C304.091 58.8235 302.836 57.4775 301.819 55.2562Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M301.879 54.8505C301.861 54.9198 301.883 55.05 301.95 55.196C302.958 57.3965 304.188 58.7029 305.612 59.2222C306.18 59.3723 306.59 59.2503 306.871 58.9985C307.16 58.7399 307.333 58.3261 307.38 57.8636C307.426 57.4023 307.344 56.91 307.143 56.5108C306.943 56.1129 306.632 55.8176 306.22 55.7207L302.041 54.8151C301.955 54.796 301.916 54.8066 301.903 54.8132C301.895 54.817 301.885 54.8236 301.879 54.8505ZM302.103 54.5334C301.984 54.507 301.871 54.5078 301.777 54.5536C301.677 54.6021 301.622 54.6888 301.599 54.7802C301.557 54.9474 301.613 55.1536 301.688 55.3162C302.713 57.5554 303.991 58.9406 305.519 59.4955L305.525 59.4976L305.531 59.4993C306.182 59.6731 306.699 59.5402 307.064 59.2133C307.422 58.8924 307.615 58.4019 307.666 57.8923C307.718 57.3815 307.628 56.8336 307.401 56.3813C307.173 55.928 306.801 55.5606 306.285 55.4396L302.103 54.5334C302.103 54.5334 302.103 54.5335 302.103 54.5334Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M306.323 51.0765C306.151 51.4155 306.115 51.8051 306.576 51.6736L311.271 50.3731C313.361 49.7558 313.457 45.5104 310.71 46.401C309.035 47.0942 307.567 48.6274 306.323 51.0765Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M312.578 49.4365C312.304 49.9321 311.88 50.3439 311.312 50.5114L311.31 50.5121L311.31 50.5121L306.615 51.8122C306.615 51.8123 306.615 51.8123 306.615 51.8124C306.487 51.8489 306.366 51.8577 306.265 51.8175C306.153 51.7731 306.093 51.6811 306.071 51.5825C306.051 51.4904 306.062 51.3894 306.085 51.2966C306.108 51.2017 306.147 51.1035 306.194 51.0112L306.194 51.0111C307.448 48.545 308.936 46.9789 310.655 46.2677L310.66 46.2655L310.665 46.2637C311.385 46.0304 311.949 46.1259 312.342 46.4475C312.728 46.7639 312.918 47.275 312.949 47.8134C312.979 48.3537 312.851 48.9414 312.578 49.4365ZM310.76 46.5364C311.411 46.3267 311.863 46.4281 312.159 46.6706C312.462 46.919 312.633 47.3409 312.661 47.8297C312.688 48.3166 312.572 48.8503 312.326 49.2971C312.079 49.7429 311.709 50.0931 311.232 50.2345L306.537 51.5346L306.537 51.5346L306.536 51.5349C306.434 51.564 306.387 51.5557 306.371 51.5494L306.37 51.5492C306.365 51.547 306.358 51.5444 306.353 51.5204C306.346 51.4892 306.347 51.4375 306.365 51.3659C306.382 51.2966 306.412 51.219 306.451 51.1418C307.686 48.7124 309.13 47.2126 310.76 46.5364Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M259.199 101.767C273.101 83.5383 288.096 65.1925 306.811 50.8202L307.119 51.2215C288.461 65.55 273.5 83.8493 259.602 102.074L259.199 101.767Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M73.2246 81.6799C72.2125 82.1404 70.9374 82.1859 71.1752 80.8905L73.4421 67.6331C74.5705 61.7381 88.3694 61.9 86.5984 69.6572C85.05 74.358 80.6679 78.3858 73.2144 81.685" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M71.57 82.5856C72.4454 81.9683 73.0627 80.9816 71.7876 80.592L58.8995 76.4731C53.1158 74.7425 47.064 85.8595 54.7958 87.919C59.699 88.7843 65.2702 87.0739 71.57 82.5856Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.0392 65.7608C65.0272 66.2213 63.7521 66.2669 63.9899 64.9765L66.2568 51.714C67.3852 45.819 81.1841 45.981 79.413 53.7381C77.8697 58.4389 73.4826 62.4667 66.0291 65.7659" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.3897 66.6666C65.26 66.0493 65.8774 65.0676 64.6022 64.673L51.7142 60.554C45.9305 58.8235 39.8837 69.9456 47.6155 72C52.5137 72.8652 58.0899 71.16 64.3897 66.6666Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M59.2234 51.3498C58.3783 51.7293 57.341 51.7748 57.5333 50.7021L59.4005 39.7976C60.3265 34.95 71.6762 35.0866 70.2291 41.4623C68.9539 45.3232 65.3511 48.6375 59.2234 51.3498Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M57.8621 52.0936C58.5807 51.5876 59.0867 50.778 58.0392 50.4541L47.4384 47.0689C42.6869 45.642 37.7129 54.7906 44.0684 56.4807C48.1164 57.1942 52.6705 55.7875 57.8621 52.0936Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M51.7243 37.3941C51.0767 37.7736 50.2367 37.9001 50.3025 37.0196L50.8085 28.0177C51.1273 24.0101 60.3316 23.0993 59.7294 28.3972C59.0463 31.6408 56.4201 34.6464 51.699 37.3941" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.6919 38.1075C51.2232 37.6319 51.5623 36.9285 50.6919 36.7616L41.8165 34.9804C37.8393 34.2518 34.6262 42.105 39.9291 42.9045C43.2587 43.1221 46.8412 41.5737 50.7122 38.1177" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.1967 25.4016C44.797 25.7052 44.2606 25.857 44.2303 25.27L43.8406 19.3143C43.7293 16.6527 49.7002 15.3219 49.7306 18.8488C49.5383 21.0347 48.0557 23.2156 45.1765 25.4016" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.5742 25.9633C44.8879 25.6091 45.0802 25.1233 44.4629 25.0829L38.4819 24.6173C35.8101 24.4554 34.3275 29.8697 37.8747 29.976C40.0809 29.8495 42.3124 28.544 44.5742 25.9633Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.6946 15.4686C38.2999 15.7722 37.7585 15.924 37.7332 15.337L37.3587 9.38132C37.2474 6.72478 43.2234 5.38891 43.2487 8.91579C43.0614 11.1017 41.5788 13.2877 38.6946 15.4686Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.0721 16.0253C38.3858 15.6711 38.5781 15.1853 37.9658 15.1449L31.9797 14.6793C29.308 14.5174 27.8304 19.9368 31.3776 20.038C33.5787 19.9115 35.8102 18.606 38.0721 16.0253Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.7204 8.592C33.8165 9.09801 33.7204 9.65462 33.1385 9.2903L27.3447 5.65209C24.7843 3.98226 26.363 -1.77106 29.7027 0.536342C31.6761 2.14039 33.0322 4.79694 33.7204 8.592Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.1402 95.978C64.761 65.8576 51.9939 35.1904 32.655 8.40103L33.0653 8.10486C52.4462 34.9525 65.2326 65.6742 76.6136 95.7992L76.1402 95.978Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M266.176 107.087C267.087 107.233 268.109 107.016 267.643 106.024L263.029 95.9392C260.878 91.4813 249.918 94.5325 252.964 100.336C255.191 103.752 259.542 106.034 266.176 107.087Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M267.684 107.456C266.859 107.152 266.166 106.495 267.087 105.913L276.488 99.9063C280.729 97.3105 287.904 104.901 282.171 108.159C278.452 109.885 273.65 109.703 267.679 107.456" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M268.509 92.8829C269.424 93.0297 270.442 92.8121 269.976 91.8203L265.361 81.7356C263.216 77.2777 252.256 80.3289 255.297 86.1328C257.523 89.5484 261.875 91.8304 268.509 92.8829Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M270.027 93.2625C269.202 92.9589 268.509 92.3011 269.435 91.7192L278.831 85.7128C283.072 83.1069 290.247 90.6869 284.524 93.9658C280.8 95.6913 275.998 95.5092 270.027 93.2625Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M270.912 79.9545C271.666 80.0759 272.501 79.8937 272.116 79.0841L268.326 70.7856C266.56 67.1221 257.543 69.6319 260.048 74.4035C261.88 77.2169 265.452 79.0892 270.912 79.9696" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M272.152 80.258C271.474 80.01 270.897 79.4686 271.646 78.993L279.393 74.0341C282.879 71.8937 288.779 78.1277 284.073 80.8197C281.037 82.2416 277.06 82.0898 272.152 80.2428" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M273.933 67.2485C274.53 67.4105 275.223 67.3396 274.986 66.6464L272.658 59.5623C271.555 56.4351 264.025 57.6597 265.629 61.7533C266.859 64.1923 269.586 66.0291 273.933 67.2232" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M274.91 67.6027C274.404 67.3396 273.963 66.8538 274.626 66.535L281.331 63.2207C284.367 61.7988 288.567 67.375 284.514 69.1359C281.908 70.0164 278.72 69.5407 274.899 67.6179" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M276.605 56.3238C276.984 56.4806 277.45 56.4907 277.349 56.0151L276.382 51.1928C275.906 49.0474 270.867 49.2498 271.59 52.0682C272.202 53.7684 273.847 55.1954 276.605 56.3238Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M277.207 56.6224C276.883 56.4048 276.645 56.0506 277.111 55.8937L281.776 54.2593C283.876 53.5661 286.199 57.5686 283.395 58.3985C281.614 58.7679 279.56 58.2011 277.207 56.6224Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M279.671 47.0183C280.051 47.1752 280.511 47.1853 280.415 46.7097L279.448 41.8874C278.973 39.7419 273.933 39.9443 274.657 42.7628C275.269 44.463 276.913 45.8899 279.671 47.0183Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M280.283 47.332C279.96 47.1144 279.722 46.7602 280.187 46.6033L284.853 44.9689C286.953 44.2757 289.275 48.2782 286.472 49.1081C284.691 49.4775 282.636 48.9107 280.283 47.332Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M282.196 40.4806C282.232 40.9209 282.434 41.3257 282.808 40.9158L286.654 36.7868C288.344 34.9145 285.865 30.6641 283.694 33.2144C282.459 34.9044 281.943 37.308 282.176 40.4806" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M266.42 119.043C269.112 92.6422 272.813 65.4612 282.562 39.9502L283.034 40.1308C273.312 65.575 269.615 92.6988 266.923 119.095L266.42 119.043Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M58.8995 156.822H284.579C287.919 156.822 290.652 154.383 290.652 151.408V148.301H52.8274V151.408C52.8223 154.383 55.5598 156.822 58.8995 156.822Z" fill="#DBDBDC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M52.4478 147.922H291.031V151.408C291.031 154.632 288.087 157.202 284.579 157.202H58.8994C55.3928 157.202 52.4425 154.633 52.4478 151.408C52.4478 151.407 52.4478 151.408 52.4478 151.408V147.922ZM53.2068 148.681L53.2068 151.409C53.2021 154.134 55.7267 156.443 58.8994 156.443H284.579C287.751 156.443 290.272 154.134 290.272 151.408V148.681H53.2068Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M161.058 153.053H182.689C184.982 153.053 186.854 150.988 186.854 148.463H156.893C156.893 150.988 158.77 153.053 161.058 153.053Z" fill="#DBDBDC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.514 148.083H187.233V148.463C187.233 151.162 185.225 153.432 182.69 153.432H161.058C158.527 153.432 156.514 151.162 156.514 148.463V148.083ZM157.288 148.843C157.463 151.011 159.125 152.673 161.058 152.673H182.69C184.627 152.673 186.284 151.011 186.459 148.843H157.288Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M267.891 15.3372H75.466C74.289 15.3545 73.1666 15.8367 72.3437 16.6785C71.5209 17.5203 71.0644 18.6534 71.0739 19.8305V147.567H272.283V19.8457C272.298 18.6656 271.844 17.5278 271.02 16.6824C270.197 15.837 269.071 15.3532 267.891 15.3372Z" fill="#DBDBDC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M75.4661 14.9576H267.896C269.177 14.975 270.398 15.5001 271.292 16.4176C272.185 17.3344 272.678 18.5681 272.663 19.848V147.947H70.6945V19.832C70.6846 18.5552 71.1799 17.3263 72.0725 16.4132C72.9654 15.4997 74.1833 14.9765 75.4606 14.9577L75.4661 14.9576ZM75.469 15.7167C74.3932 15.7332 73.3674 16.1743 72.6152 16.9437C71.8624 17.7139 71.4448 18.7505 71.4535 19.8275L71.4535 19.8305L71.4535 147.188H271.904V19.8457L271.904 19.8409C271.917 18.7614 271.502 17.7206 270.749 16.9472C269.996 16.1745 268.967 15.7319 267.889 15.7167H75.469Z" fill="#B7BBCE"/>
|
||||
<path d="M266.287 22.239H76.9387V140.999H266.287V22.239Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.5591 21.8595H266.667V141.379H76.5591V21.8595ZM77.3181 22.6185V140.62H265.908V22.6185H77.3181Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M171.861 49.0525C178.16 49.0525 184.317 50.9204 189.555 54.4199C194.792 57.9194 198.874 62.8934 201.285 68.7129C203.695 74.5324 204.326 80.936 203.097 87.114C201.868 93.2919 198.835 98.9667 194.381 103.421C189.927 107.875 184.252 110.908 178.074 112.137C171.896 113.366 165.493 112.735 159.673 110.325C153.854 107.914 148.88 103.832 145.38 98.5946C141.881 93.3572 140.013 87.1997 140.013 80.9007C140.013 72.454 143.368 64.3533 149.341 58.3806C155.314 52.4079 163.414 49.0525 171.861 49.0525ZM188.493 64.3188C187.859 63.6872 187 63.3326 186.105 63.3326C185.21 63.3326 184.351 63.6872 183.717 64.3188L172.109 75.9317L160.471 64.3188C160.162 63.9851 159.788 63.7172 159.373 63.5311C158.958 63.3451 158.51 63.2447 158.055 63.236C157.601 63.2273 157.149 63.3104 156.727 63.4804C156.305 63.6504 155.922 63.9038 155.601 64.2254C155.279 64.547 155.026 64.9301 154.856 65.352C154.686 65.7738 154.602 66.2256 154.611 66.6803C154.62 67.135 154.72 67.5833 154.906 67.9983C155.092 68.4133 155.36 68.7865 155.694 69.0955L167.307 80.7084L155.699 92.3162C155.374 92.6275 155.115 93.0004 154.937 93.4131C154.758 93.8257 154.664 94.2699 154.659 94.7195C154.654 95.1692 154.739 95.6152 154.909 96.0316C155.079 96.448 155.33 96.8263 155.647 97.1445C155.965 97.4626 156.343 97.7141 156.759 97.8843C157.176 98.0545 157.622 98.1399 158.071 98.1356C158.521 98.1313 158.965 98.0373 159.378 97.8591C159.791 97.681 160.164 97.4222 160.476 97.098L172.114 85.4851L183.722 97.098C184.36 97.7104 185.213 98.048 186.098 98.0386C186.982 98.0292 187.828 97.6733 188.453 97.0475C189.078 96.4217 189.433 95.5757 189.442 94.6912C189.45 93.8066 189.111 92.954 188.498 92.3162L176.891 80.7084L188.498 69.0955C189.129 68.4598 189.481 67.6002 189.48 66.705C189.478 65.8098 189.121 64.9518 188.488 64.3188H188.493Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 156.721H320V157.48H0V156.721Z" fill="#B7BBCE"/>
|
||||
<path d="M83.0058 136.131C86.6238 135.352 90.6617 136.521 94.2797 135.742C98.7022 134.796 103.459 133.9 107.552 136.45C110.932 138.56 113.498 142.831 117.141 143.899C122.576 145.488 128.071 139.264 133.359 141.596C137.543 143.438 140.038 150.143 144.42 150.654L144.147 151.403C141.819 156.503 136.025 158.295 131.977 155.178C130.404 153.968 129.103 152.142 127.423 151.276C123.922 149.48 120.172 152.217 116.448 152.521C110.695 152.992 105.533 147.648 99.8306 146.252C97.4119 145.66 94.9274 145.791 92.5137 145.169C88.5415 144.157 84.878 141.035 82.5757 136.708L83.0058 136.131Z" fill="#1F3563"/>
|
||||
<path d="M83.8154 135.307C88.1063 132.741 93.3334 131.856 97.6294 129.285C102.877 126.148 108.559 122.894 114.14 123.324C118.745 123.679 122.803 126.553 127.519 125.763C134.553 124.59 140.018 115.78 147.021 115.4C152.587 115.097 157.055 120.364 162.566 118.669L162.388 119.534C160.587 125.657 153.827 130.307 148.18 129.3C145.989 128.911 144.005 127.782 141.723 127.782C137.032 127.782 132.979 132.337 128.455 134.487C121.467 137.827 113.979 135.221 106.657 136.719C103.555 137.351 100.519 138.743 97.4118 139.33C92.3011 140.342 87.1297 139.132 83.3853 136.081L83.8154 135.307Z" fill="#0B4B9B"/>
|
||||
<path d="M83.1524 136.896C85.6419 137.523 88.2125 135.524 90.6818 136.147C93.7178 136.916 96.9765 137.563 99.4104 133.728C101.434 130.565 102.644 124.62 104.941 122.798C108.372 120.086 112.713 127.722 115.962 124.038C118.533 121.128 123.284 112.617 126.133 111.453L128.617 110.806C126.502 104.314 115.871 101.617 113.533 106.201C112.622 107.982 111.965 110.533 110.932 111.878C108.807 114.651 106.014 111.443 103.509 111.458C99.6381 111.458 96.8045 119.13 93.1764 121.614C91.6584 122.667 89.9734 122.773 88.4402 123.861C85.9202 125.647 83.8152 130.201 82.8032 136.177L83.1524 136.896Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M57.5989 140.154C55.8823 140.155 54.204 139.647 52.7762 138.694C51.3485 137.741 50.2354 136.386 49.5778 134.801C48.9202 133.215 48.7476 131.47 49.0819 129.786C49.4162 128.103 50.2423 126.556 51.4557 125.342C52.6692 124.128 54.2154 123.301 55.899 122.965C57.5825 122.63 59.3276 122.802 60.9136 123.458C62.4996 124.115 63.8552 125.227 64.809 126.654C65.7628 128.082 66.2719 129.76 66.2719 131.476C66.2652 133.775 65.3495 135.978 63.7246 137.603C62.0996 139.229 59.8975 140.146 57.5989 140.154Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.8169 123.692C59.2771 123.054 57.5829 122.888 55.9484 123.213C54.314 123.539 52.8128 124.342 51.6348 125.521C50.4567 126.699 49.6547 128.201 49.3301 129.836C49.0056 131.47 49.1732 133.164 49.8116 134.704C50.45 136.243 51.5306 137.559 52.9168 138.484C54.3028 139.409 55.9321 139.902 57.5986 139.901C59.8302 139.893 61.9681 139.003 63.5457 137.425C65.1232 135.846 66.0123 133.708 66.0189 131.476C66.0189 129.81 65.5247 128.181 64.5987 126.795C63.6728 125.409 62.3567 124.33 60.8169 123.692ZM57.599 140.154L57.5998 140.407C59.9653 140.399 62.2314 139.455 63.9036 137.782C65.5757 136.109 66.5181 133.842 66.525 131.477L66.525 131.476C66.525 129.71 66.001 127.983 65.0194 126.514C64.0379 125.045 62.6427 123.9 61.0105 123.225C59.3782 122.549 57.5822 122.372 55.8496 122.717C54.117 123.062 52.5257 123.913 51.2768 125.163C50.028 126.412 49.1778 128.004 48.8338 129.737C48.4898 131.47 48.6674 133.266 49.3442 134.898C50.0209 136.529 51.1665 137.924 52.6359 138.905C54.1052 139.885 55.8325 140.408 57.5991 140.407L57.599 140.154Z" fill="white"/>
|
||||
<path d="M80.9362 129.806C80.9362 127.478 79.0491 125.591 76.7212 125.591C74.3933 125.591 72.5061 127.478 72.5061 129.806C72.5061 132.134 74.3933 134.021 76.7212 134.021C79.0491 134.021 80.9362 132.134 80.9362 129.806Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.721 125.844C74.5328 125.844 72.7589 127.618 72.7589 129.806C72.7589 131.995 74.5328 133.768 76.721 133.768C78.9092 133.768 80.683 131.995 80.683 129.806C80.683 127.618 78.9092 125.844 76.721 125.844ZM72.2529 129.806C72.2529 127.339 74.2533 125.338 76.721 125.338C79.1886 125.338 81.189 127.339 81.189 129.806C81.189 132.274 79.1886 134.274 76.721 134.274C74.2533 134.274 72.2529 132.274 72.2529 129.806Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.7077 145.184C85.8492 144.346 86.3162 143.597 87.0072 143.101C87.6981 142.606 88.5569 142.403 89.3965 142.538C90.2353 142.677 90.9847 143.142 91.4807 143.833C91.9768 144.523 92.1789 145.382 92.043 146.221C91.9052 147.061 91.4398 147.811 90.749 148.307C90.0582 148.803 89.1986 149.005 88.3592 148.868C87.5202 148.729 86.7703 148.263 86.2735 147.573C85.7767 146.883 85.5733 146.024 85.7077 145.184Z" fill="#0B4B9B"/>
|
||||
<path d="M73.8064 129.736C73.8064 126.158 70.9066 123.259 67.3295 123.259C63.7524 123.259 60.8525 126.158 60.8525 129.736C60.8525 133.313 63.7524 136.213 67.3295 136.213C70.9066 136.213 73.8064 133.313 73.8064 129.736Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M67.3295 123.512C63.8922 123.512 61.1056 126.298 61.1056 129.736C61.1056 133.173 63.8922 135.959 67.3295 135.959C70.7669 135.959 73.5534 133.173 73.5534 129.736C73.5534 126.298 70.7669 123.512 67.3295 123.512ZM60.5996 129.736C60.5996 126.019 63.6127 123.006 67.3295 123.006C71.0464 123.006 74.0594 126.019 74.0594 129.736C74.0594 133.452 71.0464 136.465 67.3295 136.465C63.6127 136.465 60.5996 133.452 60.5996 129.736Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M82.9045 151.96C82.6964 153.247 83.0048 154.565 83.7629 155.626C84.5209 156.687 85.6672 157.406 86.9526 157.627C88.2401 157.835 89.5576 157.527 90.6189 156.769C91.6801 156.01 92.3992 154.864 92.6199 153.579C92.8281 152.291 92.5196 150.974 91.7616 149.912C91.0035 148.851 89.8572 148.132 88.5718 147.911C87.2846 147.705 85.9677 148.014 84.9067 148.772C83.8458 149.529 83.1264 150.675 82.9045 151.96Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M84.7597 148.566C85.8749 147.769 87.259 147.444 88.612 147.662L88.5719 147.911L88.6147 147.662C89.9658 147.894 91.1707 148.65 91.9675 149.765C92.7643 150.881 93.0885 152.266 92.8697 153.619L92.62 153.579L92.8693 153.622C92.6374 154.973 91.8815 156.178 90.766 156.974C89.6505 157.771 88.2656 158.095 86.9123 157.877L86.9527 157.627L86.9099 157.876C85.5588 157.644 84.3539 156.888 83.5571 155.773C82.7603 154.657 82.436 153.272 82.6548 151.919L82.9046 151.96L82.6553 151.916C82.8885 150.566 83.6446 149.362 84.7597 148.566ZM83.1541 152.001C82.9571 153.222 83.2498 154.472 83.9688 155.479C84.6879 156.485 85.7751 157.168 86.9943 157.377C88.2155 157.574 89.4652 157.282 90.4719 156.563C91.4786 155.844 92.1608 154.756 92.3704 153.537C92.5675 152.316 92.2748 151.066 91.5557 150.06C90.8367 149.053 89.7495 148.371 88.5304 148.161C87.3093 147.965 86.0602 148.259 85.0539 148.977C84.0475 149.696 83.365 150.783 83.1541 152.001Z" fill="white"/>
|
||||
<path d="M79.0335 136.923C79.0335 134.052 76.7057 131.724 73.8342 131.724C70.9628 131.724 68.635 134.052 68.635 136.923C68.635 139.795 70.9628 142.123 73.8342 142.123C76.7057 142.123 79.0335 139.795 79.0335 136.923Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M73.8343 131.977C71.1026 131.977 68.8881 134.192 68.8881 136.923C68.8881 139.655 71.1026 141.87 73.8343 141.87C76.5661 141.87 78.7806 139.655 78.7806 136.923C78.7806 134.192 76.5661 131.977 73.8343 131.977ZM68.3821 136.923C68.3821 133.912 70.8231 131.471 73.8343 131.471C76.8455 131.471 79.2866 133.912 79.2866 136.923C79.2866 139.935 76.8455 142.376 73.8343 142.376C70.8231 142.376 68.3821 139.935 68.3821 136.923Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M79.2613 146.358C79.3896 145.586 79.7438 144.87 80.279 144.3C80.8142 143.729 81.5064 143.33 82.2683 143.153C83.0302 142.976 83.8275 143.028 84.5595 143.304C85.2915 143.58 85.9254 144.066 86.381 144.702C86.8367 145.338 87.0937 146.094 87.1195 146.876C87.1454 147.658 86.939 148.43 86.5264 149.094C86.1137 149.759 85.5134 150.286 84.8013 150.61C84.0891 150.933 83.297 151.038 82.5251 150.912C81.4897 150.738 80.5651 150.162 79.9535 149.308C79.3419 148.455 79.0931 147.394 79.2613 146.358Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.611 144.481C64.8948 144.475 63.2505 143.791 62.037 142.578C60.8235 141.364 60.1394 139.72 60.134 138.004C60.1394 136.288 60.8236 134.644 62.0373 133.432C63.2509 132.219 64.8953 131.536 66.611 131.532C68.3266 131.536 69.971 132.219 71.1846 133.432C72.3983 134.644 73.0825 136.288 73.0879 138.004C73.0825 139.72 72.3984 141.364 71.1849 142.578C69.9714 143.791 68.3271 144.475 66.611 144.481Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.5995 151.509C76.3915 152.796 76.7001 154.113 77.4582 155.173C78.2164 156.234 79.3626 156.952 80.6476 157.171C81.9346 157.381 83.2523 157.073 84.3131 156.314C85.3738 155.556 86.0916 154.409 86.3098 153.123C86.5193 151.836 86.2112 150.519 85.4528 149.458C84.6945 148.397 83.5474 147.679 82.2618 147.461C80.9749 147.253 79.658 147.562 78.5975 148.32C77.5371 149.078 76.819 150.224 76.5995 151.509Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M78.4504 148.114C79.5652 147.317 80.9495 146.993 82.3022 147.211L82.3042 147.212L82.3042 147.212C83.6556 147.441 84.8615 148.196 85.6587 149.311C86.456 150.426 86.7798 151.811 86.5596 153.164L86.3099 153.123L86.5594 153.166C86.33 154.517 85.5754 155.723 84.4603 156.52C83.3452 157.317 81.96 157.641 80.607 157.421L80.6051 157.421C79.2544 157.19 78.0494 156.435 77.2525 155.321C76.4556 154.206 76.1311 152.821 76.3498 151.469L76.5996 151.509L76.3502 151.467C76.5809 150.116 77.3357 148.911 78.4504 148.114ZM76.8492 151.551C76.6521 152.771 76.945 154.02 77.6641 155.026C78.3833 156.032 79.4705 156.713 80.6894 156.922C81.9102 157.12 83.1599 156.828 84.166 156.109C85.1722 155.389 85.8531 154.301 86.0603 153.082C86.2588 151.861 85.9665 150.611 85.2471 149.605C84.5278 148.599 83.4398 147.918 82.2205 147.711C80.9998 147.514 79.7506 147.806 78.7447 148.526C77.7389 149.245 77.0576 150.332 76.8492 151.551Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M73.7963 146.292C74.6722 146.293 75.5287 146.034 76.2575 145.548C76.9863 145.063 77.5546 144.371 77.8905 143.562C78.2263 142.754 78.3147 141.863 78.1445 141.004C77.9742 140.145 77.5529 139.355 76.9339 138.736C76.3149 138.116 75.526 137.694 74.667 137.522C73.808 137.351 72.9175 137.439 72.1082 137.774C71.2988 138.109 70.607 138.676 70.1203 139.404C69.6336 140.132 69.3738 140.989 69.3738 141.865C69.3764 143.037 69.8431 144.161 70.6717 144.991C71.5004 145.82 72.6237 146.288 73.7963 146.292Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M72.0115 137.54C72.8671 137.186 73.8084 137.093 74.7165 137.274C75.6246 137.455 76.4586 137.902 77.113 138.557C77.7674 139.212 78.2127 140.047 78.3927 140.955C78.5727 141.863 78.4793 142.804 78.1242 143.66C77.7691 144.515 77.1683 145.245 76.3979 145.759C75.6275 146.273 74.722 146.546 73.7961 146.545L73.7964 146.292L73.7955 146.545C72.5561 146.541 71.3687 146.046 70.4928 145.169C69.6169 144.293 69.1237 143.105 69.1209 141.865L69.1208 141.865C69.1209 140.939 69.3955 140.034 69.91 139.264C70.4246 138.494 71.1559 137.894 72.0115 137.54ZM73.7967 146.039C74.6225 146.04 75.4301 145.796 76.1172 145.338C76.8044 144.88 77.3402 144.228 77.6569 143.466C77.9736 142.703 78.0569 141.863 77.8964 141.053C77.7358 140.243 77.3386 139.499 76.755 138.914C76.1714 138.33 75.4275 137.932 74.6176 137.771C73.8077 137.609 72.9681 137.692 72.205 138.007C71.4419 138.323 70.7896 138.858 70.3307 139.545C69.8719 140.231 69.6269 141.039 69.6269 141.864C69.6294 142.97 70.0695 144.03 70.8508 144.812C71.6321 145.594 72.6912 146.035 73.7967 146.039Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.1291 145.887C76.2756 145.006 76.765 144.219 77.4904 143.697C78.2157 143.176 79.1181 142.962 80.0001 143.104C80.8798 143.253 81.6652 143.743 82.1854 144.468C82.7056 145.193 82.9186 146.094 82.7781 146.975C82.6329 147.857 82.1436 148.645 81.4177 149.166C80.6918 149.687 79.7888 149.898 78.9071 149.753C78.0272 149.607 77.241 149.118 76.7204 148.393C76.1999 147.669 75.9873 146.768 76.1291 145.887Z" fill="#0B4B9B"/>
|
||||
<path d="M4.12915 118.669L20.6099 156.913L63.4385 144.799L42.3581 95.8633L4.12915 118.669Z" fill="#4175BA"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.3117 119.327C70.0903 123.534 76.1704 127.492 85.8255 131.041L85.6509 131.516C75.9512 127.951 69.7884 123.955 65.9352 119.665C62.0767 115.369 60.5495 110.795 60.0898 106.109L60.5934 106.06C61.0446 110.66 62.5382 115.126 66.3117 119.327Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M75.5367 138.062C78.3526 134.929 82.8506 132.016 89.9165 129.417L90.0912 129.892C83.0697 132.475 78.6544 135.35 75.9131 138.401C73.1769 141.445 72.0932 144.68 71.766 148.017L71.2625 147.968C71.5981 144.544 72.7156 141.201 75.5367 138.062Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.3186 122.587C79.0569 125.638 83.4671 128.515 90.4809 131.097L90.3061 131.572C83.2477 128.973 78.7548 126.059 75.9421 122.925C73.1242 119.785 72.008 116.442 71.6724 113.021L72.176 112.972C72.5032 116.307 73.5856 119.542 76.3186 122.587Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M86.2327 136.032C84.3698 137.703 82.6048 140.403 81.0166 144.715L80.5417 144.54C82.1464 140.184 83.9488 137.401 85.8948 135.655C87.8467 133.905 89.9259 133.212 92.0488 133.006L92.0978 133.509C90.0613 133.707 88.0899 134.366 86.2327 136.032Z" fill="#4071B7"/>
|
||||
<path d="M257.923 99.4256L255.858 97.5078L243.618 110.689L245.682 112.607L246.416 111.818L292.073 154.211C292.073 154.211 297.639 159.823 303.256 153.791C308.873 147.76 302.841 142.613 302.841 142.613L257.184 100.22L257.923 99.4256Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.855 97.4292L258.002 99.4228L257.263 100.217L302.877 142.571L302.879 142.572L302.879 142.573L302.882 142.575L302.895 142.587C302.907 142.597 302.924 142.612 302.945 142.632C302.988 142.671 303.051 142.73 303.129 142.807C303.284 142.96 303.499 143.186 303.739 143.476C304.219 144.056 304.801 144.893 305.207 145.92C305.613 146.948 305.842 148.167 305.616 149.509C305.389 150.852 304.707 152.314 303.297 153.829C301.886 155.344 300.476 156.13 299.153 156.455C297.829 156.78 296.596 156.643 295.542 156.316C294.488 155.99 293.611 155.473 292.999 155.039C292.692 154.822 292.451 154.625 292.287 154.483C292.205 154.411 292.142 154.353 292.099 154.313C292.078 154.293 292.062 154.278 292.051 154.267L292.038 154.255L292.036 154.252L292.035 154.252L292.034 154.251L246.419 111.896L245.685 112.686L243.539 110.692L255.855 97.4292ZM302.805 142.656L302.803 142.654L257.105 100.223L257.844 99.4285L255.861 97.5865L243.697 110.686L245.68 112.529L246.413 111.739L292.113 154.172L292.114 154.173L292.117 154.176L292.128 154.187C292.139 154.197 292.155 154.213 292.175 154.232C292.217 154.271 292.279 154.328 292.36 154.399C292.522 154.539 292.76 154.734 293.063 154.948C293.669 155.378 294.535 155.888 295.575 156.21C296.614 156.532 297.826 156.667 299.126 156.347C300.426 156.028 301.818 155.254 303.215 153.753C304.613 152.252 305.284 150.809 305.506 149.491C305.728 148.172 305.503 146.974 305.103 145.961C304.703 144.948 304.128 144.121 303.653 143.547C303.416 143.261 303.203 143.037 303.05 142.886C302.974 142.81 302.912 142.753 302.87 142.714C302.859 142.703 302.849 142.694 302.84 142.687C302.833 142.68 302.827 142.675 302.822 142.67L302.809 142.659L302.805 142.656Z" fill="#DBDBDC"/>
|
||||
<path d="M222.011 119.782L219.345 118.866L213.5 135.873L216.162 136.789L216.516 135.777L275.436 156.018C275.436 156.018 282.813 158.887 285.49 151.104C288.167 143.322 280.577 141.055 280.577 141.055L221.657 120.815L222.011 119.782Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M219.109 118.384L222.493 119.547L222.139 120.579L280.694 140.694L280.713 140.7C280.73 140.705 280.753 140.713 280.783 140.723C280.842 140.743 280.927 140.772 281.033 140.813C281.245 140.894 281.543 141.018 281.89 141.191C282.584 141.537 283.485 142.085 284.304 142.891C285.123 143.698 285.864 144.77 286.219 146.157C286.575 147.545 286.539 149.222 285.849 151.228C285.159 153.233 284.157 154.578 283.022 155.455C281.889 156.331 280.646 156.722 279.503 156.856C278.363 156.99 277.315 156.869 276.556 156.716C276.175 156.64 275.864 156.555 275.647 156.489C275.538 156.455 275.453 156.427 275.394 156.406C275.365 156.396 275.342 156.388 275.325 156.382L275.306 156.374L216.75 136.259L216.395 137.271L213.018 136.109L219.109 118.384ZM275.573 155.664L275.576 155.665L275.589 155.67C275.601 155.674 275.619 155.681 275.644 155.69C275.695 155.707 275.771 155.733 275.869 155.763C276.066 155.823 276.352 155.901 276.705 155.972C277.413 156.114 278.377 156.224 279.415 156.102C280.451 155.981 281.555 155.63 282.558 154.855C283.559 154.081 284.483 152.867 285.131 150.981C285.78 149.095 285.798 147.57 285.484 146.345C285.169 145.118 284.514 144.164 283.771 143.432C283.026 142.698 282.198 142.193 281.552 141.87C281.229 141.71 280.955 141.596 280.762 141.522C280.666 141.485 280.591 141.459 280.54 141.442C280.515 141.433 280.496 141.427 280.484 141.423L280.471 141.419L280.468 141.419L280.461 141.416L221.175 121.05L221.529 120.018L219.58 119.349L213.982 135.638L215.928 136.308L216.283 135.296L275.566 155.661L275.573 155.664Z" fill="#B7BBCE"/>
|
||||
<path d="M218.186 133.956L275.739 153.564C275.739 153.564 280.86 155.557 282.717 150.158C284.574 144.759 279.312 143.18 279.312 143.18L251.653 133.743L218.186 133.956Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M251.663 133.688L279.328 143.127L279.329 143.127L279.33 143.128L279.332 143.128L279.344 143.132C279.354 143.135 279.369 143.14 279.388 143.147C279.427 143.16 279.483 143.18 279.554 143.207C279.696 143.261 279.896 143.344 280.13 143.462C280.598 143.696 281.203 144.065 281.75 144.605C282.298 145.145 282.787 145.857 283.023 146.776C283.258 147.696 283.237 148.818 282.77 150.176C282.303 151.535 281.629 152.432 280.878 153.012C280.127 153.592 279.303 153.852 278.538 153.941C277.775 154.03 277.071 153.949 276.558 153.845C276.301 153.794 276.092 153.736 275.947 153.692C275.874 153.67 275.818 153.651 275.779 153.637C275.76 153.63 275.745 153.625 275.735 153.621L275.723 153.617L275.722 153.616L275.72 153.616L275.72 153.616L217.856 133.902L251.663 133.688ZM279.296 143.234L279.294 143.233L251.644 133.799L218.516 134.009L275.76 153.512L275.76 153.512L275.763 153.513L275.774 153.517C275.783 153.52 275.797 153.526 275.816 153.532C275.853 153.545 275.908 153.564 275.979 153.585C276.122 153.629 276.327 153.685 276.58 153.736C277.085 153.838 277.777 153.918 278.526 153.83C279.274 153.743 280.078 153.489 280.81 152.924C281.541 152.359 282.203 151.481 282.665 150.14C283.126 148.799 283.144 147.699 282.915 146.804C282.686 145.908 282.208 145.213 281.672 144.684C281.136 144.155 280.541 143.792 280.08 143.561C279.85 143.446 279.653 143.364 279.515 143.311C279.445 143.284 279.39 143.265 279.353 143.252C279.344 143.249 279.336 143.246 279.329 143.244C279.321 143.242 279.315 143.24 279.31 143.238L279.299 143.235L279.297 143.234L279.296 143.234Z" fill="#DBDBDC"/>
|
||||
<path d="M257.923 99.4256L255.858 97.5078L243.618 110.689L245.682 112.607L246.416 111.818L292.073 154.211C292.073 154.211 297.639 159.823 303.256 153.791C308.873 147.76 302.841 142.613 302.841 142.613L257.184 100.22L257.923 99.4256Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.838 96.9714L258.459 99.406L257.72 100.2L303.094 142.331L303.109 142.344C303.122 142.355 303.14 142.372 303.164 142.393C303.21 142.435 303.276 142.497 303.356 142.577C303.518 142.737 303.74 142.97 303.988 143.27C304.483 143.867 305.086 144.733 305.508 145.801C305.931 146.872 306.173 148.151 305.935 149.563C305.696 150.977 304.981 152.496 303.534 154.05C302.087 155.604 300.623 156.428 299.23 156.77C297.838 157.112 296.544 156.966 295.446 156.626C294.35 156.286 293.443 155.751 292.811 155.303C292.495 155.079 292.246 154.876 292.075 154.727C291.989 154.653 291.923 154.592 291.877 154.549C291.854 154.528 291.837 154.511 291.824 154.499L291.81 154.485L246.436 112.354L245.702 113.143L243.082 110.709L255.838 96.9714ZM292.343 153.944L292.345 153.946L292.354 153.955C292.363 153.964 292.378 153.978 292.397 153.996C292.436 154.033 292.495 154.087 292.572 154.154C292.727 154.289 292.957 154.476 293.25 154.684C293.838 155.101 294.673 155.591 295.671 155.901C296.666 156.209 297.817 156.335 299.049 156.033C300.279 155.731 301.617 154.994 302.978 153.533C304.339 152.071 304.976 150.684 305.186 149.437C305.397 148.188 305.185 147.05 304.802 146.08C304.418 145.108 303.864 144.31 303.403 143.754C303.174 143.476 302.969 143.261 302.822 143.116C302.749 143.044 302.691 142.989 302.651 142.953C302.632 142.935 302.617 142.921 302.607 142.913L302.597 142.904L302.595 142.902L302.589 142.897L256.647 100.24L257.386 99.4452L255.878 98.0442L244.154 110.67L245.663 112.071L246.396 111.282L292.337 153.938L292.343 153.944Z" fill="#B7BBCE"/>
|
||||
<path d="M261.677 122.677L293.354 152.086C293.354 152.086 297.23 155.982 301.111 151.803C304.992 147.623 300.822 144.04 300.822 144.04L277.202 122.687L261.677 122.677Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M261.536 122.621L277.223 122.631L300.859 143.998L300.86 143.999L300.862 144.001L300.871 144.009C300.879 144.016 300.891 144.027 300.906 144.041C300.936 144.068 300.979 144.11 301.033 144.163C301.141 144.27 301.29 144.428 301.456 144.63C301.789 145.034 302.192 145.618 302.474 146.334C302.755 147.05 302.915 147.9 302.758 148.836C302.601 149.772 302.128 150.789 301.152 151.84C300.175 152.892 299.196 153.439 298.275 153.664C297.354 153.89 296.495 153.793 295.76 153.565C295.026 153.337 294.415 152.977 293.988 152.675C293.774 152.524 293.606 152.387 293.491 152.287C293.434 152.238 293.39 152.197 293.36 152.169C293.351 152.161 293.344 152.154 293.338 152.148C293.333 152.144 293.329 152.14 293.326 152.137L293.317 152.128L293.315 152.126L261.536 122.621ZM261.819 122.732L293.393 152.047L293.396 152.049L293.404 152.057C293.408 152.061 293.414 152.067 293.421 152.073C293.425 152.078 293.43 152.083 293.436 152.088C293.465 152.115 293.508 152.154 293.564 152.203C293.677 152.301 293.842 152.435 294.052 152.584C294.473 152.882 295.073 153.235 295.793 153.459C296.513 153.682 297.351 153.776 298.248 153.556C299.145 153.337 300.106 152.803 301.07 151.765C302.034 150.727 302.495 149.729 302.648 148.817C302.801 147.906 302.646 147.076 302.37 146.375C302.094 145.672 301.698 145.099 301.37 144.701C301.206 144.502 301.06 144.347 300.955 144.242C300.902 144.189 300.86 144.149 300.831 144.123C300.816 144.109 300.805 144.099 300.797 144.092L300.789 144.085L300.787 144.083L300.786 144.083L300.785 144.082L277.18 122.742L261.819 122.732Z" fill="#DBDBDC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.502 144.734C214.543 144.934 214.563 145.137 214.563 145.341C214.563 146.119 214.254 146.866 213.703 147.416C213.153 147.967 212.406 148.276 211.628 148.276C210.85 148.276 210.103 147.967 209.553 147.416C209.002 146.866 208.693 146.119 208.693 145.341C208.693 145.137 208.713 144.934 208.754 144.734V144.693C208.794 144.52 208.85 144.35 208.921 144.187L210.186 140.296L211.633 135.853L213.08 140.296L214.527 144.744L214.502 144.734Z" fill="#0B4B9B"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_501_29534">
|
||||
<rect width="320" height="157.956" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 66 KiB |
|
@ -1,117 +1,124 @@
|
|||
<svg width="682" height="407" viewBox="0 0 682 407" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M205.059 0.00292969L205.351 406.256L72.4987 355.947L73.3316 26.6863L205.059 0.00292969ZM74.8285 27.9136L74.0013 354.912L203.849 404.084L203.561 1.83697L74.8285 27.9136Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M103.71 33.1099L169.04 20.1699L168.18 384.94L103.3 361.29L103.71 33.1099Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M169.792 19.2563L168.927 386.011L102.549 361.815L102.961 32.4937L169.792 19.2563ZM104.459 33.7261L104.051 360.765L167.433 383.869L168.288 21.0835L104.459 33.7261Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M251.63 380.88H379.51V382.38H251.63V380.88Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M569.26 380.88H663.76V382.38H569.26V380.88Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M204.76 403.83H677.61V405.33H204.76V403.83Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M203.48 0.300049H681.82V1.80005H203.48V0.300049Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M325.26 221.46H611.17V222.96H325.26V221.46Z" fill="#B7BBCE"/>
|
||||
<path d="M373.7 114.33L349.36 112.98L355.59 95.2299L378.87 93.1899L373.7 114.33Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M379.196 92.9104L373.894 114.591L349.014 113.211L355.408 94.9949L379.196 92.9104ZM355.772 95.4649L349.706 112.749L373.506 114.069L378.544 93.4694L355.772 95.4649Z" fill="#B7BBCE"/>
|
||||
<path d="M371.67 110.95H352.74L356.8 97.4201L375.73 96.0701L371.67 110.95Z" fill="#074C9C"/>
|
||||
<path d="M305.31 114.14L331.31 140.24C331.31 140.24 332.31 133.35 333.77 125.94C335.43 117.57 337.7 108.52 339.84 107.94C343.84 106.94 352.89 105.4 352 107.46C351.11 109.52 347 110.46 347 110.46C347 110.46 349.66 117.56 344.19 118.46C344.19 118.46 344.56 121.27 344.98 125.57C346.28 138.67 348.14 165.57 341.98 168.89C333.73 173.25 310.22 165.05 310.22 165.05L305.31 114.14Z" fill="#DBDBDC"/>
|
||||
<path d="M383.09 291.75L328.71 312.75L325.12 348.84L356.18 364.81L354.11 351.21L383.09 291.75Z" fill="#4175BA"/>
|
||||
<path d="M326.79 332.09L325.12 348.84L356.18 364.81L354.11 351.21L362.28 334.44L326.79 332.09Z" fill="#DBDBDC"/>
|
||||
<path d="M341.95 282.44H295.4V381.71H331.35L322.91 370.29C322.91 370.29 340.13 306.4 341.91 282.44" fill="#6693CD"/>
|
||||
<path d="M311.97 77.8398L304.45 99.3199L313.98 103.03C314.307 103.158 314.659 103.209 315.008 103.179C315.358 103.148 315.696 103.037 315.995 102.854C316.295 102.671 316.548 102.421 316.734 102.123C316.921 101.826 317.036 101.489 317.07 101.14C317.63 95.5498 318.07 83.4698 311.97 77.8398Z" fill="#1F3563"/>
|
||||
<path d="M307.65 93.97L309 93.72C309 93.72 307.39 91.93 308.43 83.51C309.47 75.09 297.3 72.77 290.68 80.09C280.9 90.9 287.57 116.63 287.57 116.63H305.77C305.77 116.63 302.56 105.83 302.56 102.17C302.56 102.17 297.95 102.88 295.56 100.27C308.43 103.49 307.65 93.97 307.65 93.97Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M303.82 89.9004C303.358 89.9004 302.915 90.0829 302.587 90.4081L302.432 90.2519C302.801 89.8858 303.3 89.6804 303.82 89.6804C304.34 89.6804 304.838 89.8858 305.207 90.2519L305.053 90.4081C304.725 90.0829 304.282 89.9004 303.82 89.9004Z" fill="white"/>
|
||||
<path d="M305.76 95.1599C305.589 95.3335 305.385 95.4713 305.16 95.5653C304.935 95.6594 304.694 95.7078 304.45 95.7078C304.206 95.7078 303.965 95.6594 303.74 95.5653C303.515 95.4713 303.311 95.3335 303.14 95.1599H305.76Z" fill="#1F3563"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M302.877 95.05H306.023L305.838 95.2373C305.657 95.4212 305.441 95.5673 305.202 95.6669C304.964 95.7666 304.708 95.818 304.45 95.818C304.192 95.818 303.936 95.7666 303.698 95.6669C303.459 95.5673 303.243 95.4212 303.062 95.2373L302.877 95.05ZM303.437 95.27C303.544 95.3476 303.66 95.4127 303.782 95.464C303.994 95.5524 304.221 95.598 304.45 95.598C304.679 95.598 304.906 95.5524 305.118 95.464C305.24 95.4127 305.356 95.3476 305.463 95.27H303.437Z" fill="#1F3563"/>
|
||||
<path d="M301.72 82.66C301.72 82.31 301.72 86.45 308.09 89.32C314.46 92.19 317.36 85.99 313.37 79.67C309.38 73.35 300.37 70.67 294.73 72.57C289.09 74.47 279.89 80.11 285.35 98.15L291.41 93.86C291.41 93.86 288.6 90.02 291.7 88.86C292.064 88.6781 292.467 88.5874 292.874 88.5958C293.281 88.6042 293.68 88.7115 294.036 88.9083C294.392 89.1051 294.695 89.3856 294.919 89.7257C295.143 90.0657 295.28 90.455 295.32 90.86C295.32 90.86 301.39 87.31 301.72 82.69" fill="#0B4B9B"/>
|
||||
<path d="M291.38 107.76C274.82 110.42 282.46 162.63 282.46 162.63H328.24C325.29 122.4 307.98 105.1 291.42 107.76" fill="#F0F0F6"/>
|
||||
<path d="M328.24 162.66H282.46L285.35 318.41C285.35 318.41 318.91 337.93 401.43 303.77L328.24 162.66Z" fill="#F0F0F6"/>
|
||||
<path d="M328.24 162.66L288.06 129.36C288.06 129.36 280.06 169.73 342.52 190.16L328.24 162.66Z" fill="#DBDBDC"/>
|
||||
<path d="M368.46 109.85C368.54 109.545 368.687 109.261 368.891 109.02C369.094 108.778 369.348 108.585 369.635 108.454C369.922 108.323 370.235 108.257 370.551 108.261C370.866 108.266 371.177 108.341 371.46 108.48C371.46 108.48 374.92 102.79 376.77 103.16C378.62 103.53 382.3 112.22 377.21 121.11L367.24 115.66C367.565 113.706 367.989 111.771 368.51 109.86" fill="#4071B7"/>
|
||||
<path d="M292.32 118.06C292.32 118.06 280.9 155.66 317.11 173.83C353.32 192 375.24 134.08 378.01 122.83L366.24 115.94L334.04 145.94C334.04 145.94 304.79 90.8499 292.29 118.08" fill="#F0F0F6"/>
|
||||
<path d="M295.4 362.01V381.71H331.35L322.91 370.29C322.91 370.29 324.39 364.79 326.53 356.41L295.4 362.01Z" fill="#DBDBDC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M310.911 114.969C310.511 114.654 310.194 114.458 309.965 114.375L310.135 113.905C310.442 114.017 310.81 114.253 311.22 114.576C311.635 114.902 312.111 115.331 312.634 115.844C313.682 116.869 314.934 118.243 316.302 119.837C319.037 123.027 322.241 127.113 325.198 131.096C328.155 135.078 330.869 138.963 332.621 141.749C333.495 143.139 334.138 144.268 334.45 145.003C334.476 145.064 334.499 145.123 334.521 145.179L346.846 134.471L347.174 134.849L334.667 145.715C334.673 145.779 334.672 145.841 334.662 145.9C334.651 145.966 334.625 146.041 334.568 146.105C334.509 146.173 334.433 146.212 334.353 146.227C334.211 146.253 334.065 146.203 333.944 146.146L333.596 145.983L334.115 145.532C334.086 145.438 334.044 145.327 333.99 145.198C333.695 144.504 333.071 143.405 332.198 142.016C330.455 139.244 327.75 135.371 324.797 131.394C321.844 127.417 318.647 123.341 315.922 120.163C314.559 118.573 313.317 117.212 312.284 116.201C311.768 115.695 311.307 115.28 310.911 114.969Z" fill="white"/>
|
||||
<path d="M344.84 124.04C344.5 120.62 344.23 118.47 344.23 118.47C349.5 117.57 346.94 110.38 346.94 110.38C346.94 110.38 350.94 109.48 351.79 107.38C352.64 105.28 343.95 106.81 340.06 107.86C338.16 108.38 336.14 116.27 334.59 124.16L344.84 124.04Z" fill="#4071B7"/>
|
||||
<path d="M526.88 230.01L485.81 224.66C485.81 224.66 422.01 232.36 451.74 319.94L478.56 323.46L479.95 269.29C479.95 269.29 529.12 278.58 526.88 230.05" fill="#1F3563"/>
|
||||
<path d="M512.14 177.31C512.14 177.31 516.23 214.17 492.22 219.31C468.21 224.45 464.95 221.99 464.95 221.99C464.95 221.99 454.95 224.21 451.47 219.74C451.47 219.74 447.83 221.18 447.98 219C448.13 216.82 458.2 212.93 486.8 203.29L496.5 178.71L512.14 177.31Z" fill="#DBDBDC"/>
|
||||
<path d="M516.93 164.05C509.83 161.29 500.23 168.93 495.48 181.13L521.19 191.13C525.94 178.93 524.03 166.8 516.93 164.04" fill="#DBDBDC"/>
|
||||
<path d="M465.65 250.17L503.4 232.86L513.71 174.56C513.71 174.56 510.89 148.48 529.32 157.13C547.75 165.78 561.96 241.95 531.11 260C500.26 278.05 444.59 262.58 465.65 250.17Z" fill="#4175BA"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M497.25 353.64V268.22H498.75V353.64H497.25Z" fill="#B7BBCE"/>
|
||||
<path d="M458.55 339.07L454.96 317.5L475.63 317.01L474.65 343.36L455.9 343.79L458.55 339.07Z" fill="#1F3563"/>
|
||||
<path d="M481.5 337.62L475.37 316.63L495.83 313.69L498 339.96L479.44 342.63L481.5 337.62Z" fill="#0B4B9B"/>
|
||||
<path d="M500.88 148.94L499.74 148.73C499.74 148.73 501.1 147.21 500.23 140.06C499.36 132.91 509.66 130.96 515.23 137.16C523.53 146.34 522.02 168.01 522.02 168.01L505.21 170.01C505.21 170.01 505.21 159.01 505.21 155.86C505.21 155.86 509.12 156.46 511.15 154.25C500.24 156.98 500.89 148.91 500.89 148.91" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M503.049 145.494C503.438 145.11 503.963 144.894 504.51 144.894C505.057 144.894 505.582 145.11 505.971 145.494L505.269 146.206C505.067 146.006 504.794 145.894 504.51 145.894C504.226 145.894 503.953 146.006 503.751 146.206L503.049 145.494Z" fill="#D2D2D2"/>
|
||||
<path d="M502.86 149.95C503.157 150.242 503.558 150.406 503.975 150.406C504.392 150.406 504.793 150.242 505.09 149.95H502.86Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M513.5 354.39H426.1V352.89H513.5V354.39Z" fill="#B7BBCE"/>
|
||||
<path d="M515.8 160.66C492.06 163.38 492.94 220.31 492.94 220.31H534.37C531.24 176.66 533.38 158.66 515.8 160.66Z" fill="#F0F0F6"/>
|
||||
<path d="M534.37 220.33H492.94C492.94 220.33 430.68 236.28 471.57 319.24H498.57L492.89 265.35C492.89 265.35 542.89 268.16 534.32 220.35" fill="#0B4B9B"/>
|
||||
<path d="M523.66 155.37L504.51 161.66C504.51 161.66 504.01 170.22 503.98 170.41L526.98 166.41L523.66 155.37Z" fill="#DBDBDC"/>
|
||||
<path d="M521.82 161.22C529.41 160.56 536.48 170.59 537.62 183.63L510.14 186.03C509 173.03 514.23 161.88 521.82 161.22Z" fill="#F0F0F6"/>
|
||||
<path d="M507.24 141.77C507.31 141.59 508.24 144.21 510.32 144.65L511.37 146.34C511.37 146.34 511.37 143.27 513.69 143.4C516.01 143.53 515.77 146.72 514.83 147.22L521.21 149.57C521.21 149.57 521.6 135.12 513.07 134.18C513.07 134.18 502.67 129.98 499.07 135.75C495.47 141.52 500.92 144.15 500.92 144.15C500.953 143.37 500.879 142.59 500.7 141.83C502.956 143.717 505.763 144.822 508.7 144.98C508.7 144.98 506.7 143.4 507.24 141.77Z" fill="#1F3563"/>
|
||||
<path d="M521.79 211.71L494.24 203.17C494.24 203.17 503.85 207.98 507.06 190.35C508.96 179.91 523.2 186.56 523.2 186.56L521.79 211.71Z" fill="#DBDBDC"/>
|
||||
<path d="M491.58 218.53L533.96 214.88C533.96 214.88 549.82 260.1 497.31 268.15C497.31 268.15 488.75 267.84 472.61 262.81C452.8 256.66 447.1 243.66 447.1 243.66C461.272 234.186 476.141 225.799 491.58 218.57" fill="#F0F0F6"/>
|
||||
<path d="M517.33 206.21L532.57 209.51C532.57 209.51 533.16 224.57 517.24 226.38C491.02 229.38 484.16 210.11 484.16 210.11L517.33 206.21Z" fill="#DBDBDC"/>
|
||||
<path d="M537.44 181.98C539.754 189.788 539.07 198.178 535.519 205.507C531.969 212.836 525.81 218.575 518.249 221.599C510.688 224.623 502.27 224.714 494.645 221.854C487.02 218.995 480.738 213.39 477.03 206.14C477.03 206.14 473.82 207.53 470.33 203.07C470.33 203.07 466.7 204.5 466.84 202.32C466.98 200.14 472.28 193.57 511.52 203.91L509.99 183.06L537.44 181.98Z" fill="#F0F0F6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M474.567 198.934C468.359 199.551 467.383 201.681 467.339 202.372C467.326 202.58 467.359 202.703 467.396 202.776C467.431 202.844 467.483 202.897 467.564 202.941C467.75 203.042 468.067 203.079 468.484 203.039C468.884 203 469.299 202.898 469.622 202.802C469.782 202.754 469.915 202.709 470.007 202.676C470.053 202.66 470.089 202.647 470.113 202.638L470.139 202.628L470.145 202.626L470.146 202.625L470.494 202.487L470.724 202.782C472.403 204.933 473.972 205.623 475.072 205.808C475.628 205.902 476.081 205.869 476.389 205.816C476.543 205.79 476.66 205.758 476.736 205.734C476.774 205.722 476.801 205.713 476.817 205.707L476.832 205.701C476.833 205.7 476.834 205.7 476.833 205.7L476.832 205.701L476.831 205.701C476.831 205.701 476.83 205.702 477.03 206.16C477.23 206.618 477.229 206.619 477.229 206.619L477.226 206.62L477.222 206.622L477.209 206.627C477.199 206.631 477.185 206.637 477.169 206.643C477.136 206.655 477.091 206.671 477.034 206.689C476.921 206.724 476.76 206.767 476.559 206.802C476.156 206.871 475.588 206.909 474.906 206.794C473.585 206.572 471.895 205.787 470.162 203.68C470.087 203.705 470.001 203.732 469.908 203.76C469.554 203.865 469.071 203.986 468.581 204.034C468.108 204.08 467.544 204.067 467.089 203.821C466.849 203.692 466.64 203.498 466.503 203.226C466.368 202.958 466.319 202.648 466.341 202.308C466.437 200.809 468.181 198.564 474.468 197.939C480.806 197.309 492.01 198.272 511.647 203.447L511.393 204.414C491.79 199.248 480.724 198.322 474.567 198.934Z" fill="white"/>
|
||||
<path d="M476.96 198.28C467.96 198.45 466.21 201.19 466.13 202.47C465.98 204.72 469.73 203.24 469.73 203.24C473.33 207.85 476.64 206.41 476.64 206.41L476.96 198.28Z" fill="#4071B7"/>
|
||||
<path d="M459.24 213.66C449.64 215.37 448.17 218.66 448.3 220.01C448.53 222.46 452.3 220.23 452.3 220.23C456.96 224.57 460.3 222.46 460.3 222.46L459.24 213.66Z" fill="#4071B7"/>
|
||||
<path d="M418.32 220.73L422.39 217.03H462.71L465.71 223.15L407.81 223.04C407.623 222.966 407.463 222.838 407.351 222.672C407.238 222.507 407.178 222.311 407.178 222.11C407.178 221.909 407.238 221.714 407.351 221.548C407.463 221.382 407.623 221.254 407.81 221.18L418.32 220.73Z" fill="#B7BBCE"/>
|
||||
<path d="M443.32 213.34L379.09 212.29L369.45 170.14L435.83 168.56L443.32 213.34Z" fill="#B7BBCE"/>
|
||||
<path d="M415.75 221.07H406.01L400.89 199.81H410.62L415.75 221.07Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M400.255 199.31H411.014L416.385 221.57H405.616L400.255 199.31ZM401.525 200.31L406.404 220.57H415.115L410.226 200.31H401.525Z" fill="white"/>
|
||||
<path d="M573.49 139.89C573.49 139.89 573.05 138.43 576.56 138.14C580.07 137.85 583.88 142.95 583.88 142.95L580.95 150.59C569.68 149.43 564.7 144.59 561.95 139.89C559.2 135.19 573.52 139.89 573.52 139.89" fill="#4071B7"/>
|
||||
<path d="M582.48 140.48L602.83 145.88L629.93 144.13L641.48 136C641.48 136 650.37 158.94 636.6 172.29C622.83 185.64 576.97 148.83 576.97 148.83L582.48 140.48Z" fill="#DBDBDC"/>
|
||||
<path d="M619.24 301.27L654.24 295.97L670.82 374.92L637.34 381.66L642.67 368.45C642.67 368.45 621.34 313.95 619.27 301.28" fill="#4175BA"/>
|
||||
<path d="M597.5 371.24L592.17 308.05L628.6 304.95C630.82 309.82 622.24 381.66 622.24 381.66H589.51L597.5 371.24Z" fill="#6693CD"/>
|
||||
<path d="M606 95.0699L604.66 94.8299C604.66 94.8299 606.26 93.0499 605.23 84.6499C604.2 76.2499 616.37 73.9499 623 81.2399C632.79 92.0199 626.1 117.64 626.1 117.64H607.89C607.89 117.64 611.1 106.89 611.1 103.24C611.1 103.24 615.72 103.95 618.1 101.35C605.22 104.55 605.99 95.0699 605.99 95.0699" fill="#4071B7"/>
|
||||
<path d="M611.15 91.45C610.802 91.1043 610.331 90.9104 609.84 90.9104C609.349 90.9104 608.878 91.1043 608.53 91.45H611.15Z" fill="#F0F0F6"/>
|
||||
<path d="M607.9 96.26C608.248 96.6056 608.719 96.7996 609.21 96.7996C609.701 96.7996 610.172 96.6056 610.52 96.26H607.9Z" fill="#1F3563"/>
|
||||
<path d="M624.24 108.81C640.82 111.46 633.17 163.45 633.17 163.45H587.37C590.37 123.39 607.66 106.16 624.24 108.81Z" fill="#F0F0F6"/>
|
||||
<path d="M587.37 163.45C592.37 136.6 611.15 151.3 611.15 151.3L633.15 163.45L659.36 301.75C659.36 301.75 639.93 314.34 587.36 314.34C587.36 314.34 582.36 190.34 587.36 163.45" fill="#F0F0F6"/>
|
||||
<path d="M622.75 132.66C622.75 132.66 618.16 171.55 607.28 175.52C596.4 179.49 587.37 172.2 587.37 172.2L586.71 168.05L622.75 132.66Z" fill="#DBDBDC"/>
|
||||
<path d="M617.61 91.97C617.61 91.97 618.05 88.32 620.83 89.54C623.61 90.76 621.27 94.73 619.22 94.73C619.766 97.7588 620.659 100.715 621.88 103.54C626.247 113.002 628.304 123.367 627.88 133.78C627.64 138.9 627.09 143.73 626.02 146.89C625.921 147.183 625.898 147.496 625.952 147.801C626.006 148.106 626.135 148.392 626.328 148.634C626.521 148.875 626.771 149.065 627.056 149.185C627.342 149.305 627.652 149.351 627.96 149.32C630.588 149.082 633.131 148.27 635.41 146.94C637.688 145.611 639.647 143.796 641.147 141.626C642.647 139.455 643.651 136.982 644.089 134.38C644.526 131.778 644.387 129.112 643.68 126.57C640.06 113.66 635.68 98.06 633.55 90.2C629.55 75.4 620 69.77 608.55 74.85C597.1 79.93 601.41 89.94 605.55 90.43C605.637 89.304 605.617 88.1722 605.49 87.05C605.49 87.05 609.49 90.53 617.6 91.97" fill="#6693CD"/>
|
||||
<path d="M557.95 155.17C547.88 150.11 544.73 143.75 543.54 138.36C542.35 132.97 554.24 142.41 554.24 142.41L557.95 155.17Z" fill="#4071B7"/>
|
||||
<path d="M625.03 133C625.911 131.149 626.128 129.052 625.646 127.06C625.163 125.068 624.01 123.302 622.38 122.06C616.57 117.61 607.38 112.64 601.17 119.5C591.51 130.19 581.51 150.3 581.51 150.3L554.24 141.46L549.67 150.56C549.67 150.56 576.23 175.48 593.33 171.95C606.33 169.27 619.49 144.68 625.08 132.95" fill="#F0F0F6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M555.76 109.82H563.55V118.91C566.328 119.835 568.687 121.719 570.203 124.223C571.719 126.728 572.295 129.691 571.826 132.582C571.358 135.472 569.876 138.101 567.646 139.999C565.416 141.897 562.583 142.939 559.655 142.939C556.727 142.939 553.894 141.897 551.664 139.999C549.434 138.101 547.952 135.472 547.484 132.582C547.015 129.691 547.591 126.728 549.107 124.223C550.624 121.719 552.982 119.835 555.76 118.91V109.82Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M555.26 109.32H564.05V118.555C566.792 119.555 569.115 121.461 570.631 123.965C572.208 126.571 572.807 129.654 572.32 132.662C571.832 135.669 570.29 138.405 567.97 140.38C565.649 142.354 562.702 143.439 559.655 143.439C556.608 143.439 553.661 142.354 551.34 140.38C549.02 138.405 547.478 135.669 546.99 132.662C546.503 129.654 547.102 126.571 548.679 123.965C550.195 121.461 552.518 119.555 555.26 118.555V109.32ZM556.26 110.32V119.271L555.918 119.384C553.252 120.272 550.99 122.079 549.535 124.482C548.08 126.886 547.528 129.728 547.977 132.502C548.427 135.275 549.849 137.798 551.988 139.618C554.128 141.439 556.846 142.439 559.655 142.439C562.464 142.439 565.182 141.439 567.322 139.618C569.461 137.798 570.883 135.275 571.333 132.502C571.782 129.728 571.23 126.886 569.775 124.482C568.32 122.079 566.058 120.272 563.392 119.384L563.05 119.271V110.32H556.26Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M567.11 125C568.199 126.383 568.877 128.045 569.066 129.796C569.255 131.546 568.947 133.315 568.178 134.899C567.409 136.483 566.21 137.818 564.718 138.752C563.226 139.687 561.501 140.182 559.74 140.182C557.979 140.182 556.254 139.687 554.762 138.752C553.27 137.818 552.071 136.483 551.302 134.899C550.533 133.315 550.225 131.546 550.414 129.796C550.603 128.045 551.281 126.383 552.37 125H567.11Z" fill="#4175BA"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M198.84 298.15C237.47 270.07 260.94 235.53 260.24 190.66L198.84 170.1L137.16 190.91C135.72 238.44 161.69 271.29 198.84 298.15Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M233.14 193.78H162.93C160.827 193.796 158.815 194.639 157.329 196.127C155.844 197.614 155.003 199.627 154.99 201.73V259.57C155.003 261.673 155.844 263.686 157.329 265.174C158.815 266.661 160.827 267.504 162.93 267.52H233.14C235.253 267.52 237.28 266.684 238.779 265.195C240.278 263.705 241.127 261.683 241.14 259.57V201.73C241.127 199.617 240.278 197.595 238.779 196.105C237.28 194.616 235.253 193.78 233.14 193.78Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M162.93 193.495H233.14C235.328 193.495 237.428 194.361 238.98 195.903C240.532 197.446 241.411 199.54 241.425 201.728L241.425 201.73V259.57L241.425 259.572C241.411 261.76 240.532 263.854 238.98 265.397C237.428 266.939 235.328 267.805 233.14 267.805H162.93L162.928 267.805C160.75 267.789 158.667 266.916 157.128 265.375C155.589 263.834 154.719 261.749 154.705 259.572L154.705 259.57V201.728C154.719 199.55 155.589 197.466 157.128 195.925C158.667 194.384 160.75 193.511 162.928 193.495L162.93 193.495ZM162.931 194.065C160.904 194.08 158.964 194.893 157.531 196.328C156.098 197.762 155.288 199.703 155.275 201.731V259.569C155.288 261.596 156.098 263.537 157.531 264.972C158.964 266.406 160.903 267.219 162.93 267.235H233.14C235.178 267.235 237.133 266.429 238.578 264.992C240.024 263.556 240.842 261.607 240.855 259.569C240.855 259.569 240.855 259.569 240.855 259.568V201.732C240.855 201.731 240.855 201.731 240.855 201.73C240.842 199.693 240.024 197.744 238.578 196.307C237.133 194.871 235.178 194.065 233.14 194.065H162.931Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M178.024 163.289C183.284 158.03 190.417 155.075 197.855 155.075C205.293 155.075 212.426 158.03 217.686 163.289C222.709 168.312 225.63 175.045 225.882 182.12H226.06V194.12H224.06V184.12H223.9V183.12C223.9 176.212 221.156 169.588 216.272 164.703C211.387 159.819 204.763 157.075 197.855 157.075C190.947 157.075 184.323 159.819 179.438 164.703C174.554 169.588 171.81 176.212 171.81 183.12V184.12H171.74V194.12H169.74V182.12H169.828C170.08 175.045 173.001 168.312 178.024 163.289Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M196.45 232.26V244.14C196.45 244.71 196.677 245.257 197.08 245.66C197.483 246.063 198.03 246.29 198.6 246.29C199.17 246.29 199.717 246.063 200.12 245.66C200.523 245.257 200.75 244.71 200.75 244.14V232.26C202.67 231.739 204.336 230.538 205.437 228.881C206.539 227.225 207.001 225.224 206.738 223.252C206.475 221.28 205.505 219.47 204.008 218.16C202.511 216.849 200.59 216.126 198.6 216.126C196.61 216.126 194.689 216.849 193.192 218.16C191.695 219.47 190.725 221.28 190.462 223.252C190.199 225.224 190.661 227.225 191.763 228.881C192.864 230.538 194.53 231.739 196.45 232.26Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M192.862 217.783C194.45 216.393 196.489 215.626 198.6 215.626C200.711 215.626 202.75 216.393 204.338 217.783C205.926 219.174 206.955 221.094 207.234 223.186C207.512 225.278 207.022 227.4 205.854 229.158C204.756 230.809 203.131 232.033 201.25 232.634V244.14C201.25 244.843 200.971 245.517 200.474 246.014C199.977 246.511 199.303 246.79 198.6 246.79C197.897 246.79 197.223 246.511 196.726 246.014C196.229 245.517 195.95 244.843 195.95 244.14V232.634C194.069 232.033 192.444 230.809 191.346 229.158C190.178 227.4 189.688 225.278 189.966 223.186C190.245 221.094 191.274 219.174 192.862 217.783ZM196.45 232.26H196.95V244.14C196.95 244.578 197.124 244.997 197.433 245.307C197.743 245.616 198.162 245.79 198.6 245.79C199.038 245.79 199.457 245.616 199.767 245.307C200.076 244.997 200.25 244.578 200.25 244.14V231.878L200.619 231.777C202.422 231.288 203.986 230.161 205.021 228.605C206.055 227.049 206.489 225.17 206.242 223.318C205.996 221.466 205.085 219.767 203.679 218.536C202.273 217.305 200.468 216.626 198.6 216.626C196.732 216.626 194.927 217.305 193.521 218.536C192.115 219.767 191.204 221.466 190.958 223.318C190.711 225.17 191.145 227.049 192.179 228.605C193.214 230.161 194.778 231.288 196.581 231.777L196.45 232.26Z" fill="white"/>
|
||||
<path d="M137.46 101.41C136.72 95.29 132.53 91.17 128.1 92.2C123.67 93.23 120.69 99.03 121.43 105.14C122.01 109.91 124.7 113.47 127.95 114.31C128.883 114.741 129.933 114.849 130.934 114.617C131.935 114.385 132.831 113.827 133.48 113.03C136.35 110.76 138.04 106.18 137.48 101.41" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.75 97.4898C126.964 97.5 127.166 97.5916 127.315 97.7459C127.464 97.9002 127.548 98.1056 127.55 98.3198V99.8998C127.552 100.003 127.532 100.105 127.492 100.2C127.453 100.294 127.394 100.38 127.32 100.451C127.246 100.523 127.158 100.578 127.062 100.614C126.965 100.65 126.863 100.665 126.76 100.66C126.547 100.647 126.346 100.555 126.198 100.401C126.05 100.247 125.965 100.043 125.96 99.8298V98.2498C125.958 98.147 125.978 98.0451 126.018 97.9502C126.057 97.8553 126.116 97.7695 126.19 97.6983C126.264 97.627 126.352 97.5717 126.448 97.5359C126.545 97.5 126.647 97.4843 126.75 97.4898Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.61 101.58C126.823 101.597 127.023 101.692 127.17 101.847C127.318 102.002 127.403 102.206 127.41 102.42V103.94C127.413 104.042 127.395 104.144 127.356 104.239C127.318 104.334 127.26 104.42 127.187 104.491C127.113 104.562 127.026 104.618 126.93 104.654C126.834 104.69 126.732 104.706 126.63 104.7C126.416 104.688 126.214 104.596 126.064 104.442C125.914 104.288 125.827 104.084 125.82 103.87V102.35C125.819 102.247 125.838 102.144 125.878 102.049C125.917 101.954 125.976 101.867 126.049 101.795C126.123 101.723 126.211 101.667 126.308 101.63C126.404 101.593 126.507 101.576 126.61 101.58Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.74 106.09C126.954 106.1 127.156 106.192 127.305 106.346C127.454 106.5 127.538 106.706 127.54 106.92V108.35C127.541 108.453 127.522 108.556 127.482 108.651C127.443 108.746 127.384 108.833 127.311 108.905C127.237 108.977 127.149 109.033 127.052 109.07C126.956 109.107 126.853 109.124 126.75 109.12C126.537 109.107 126.336 109.015 126.188 108.861C126.04 108.707 125.955 108.504 125.95 108.29V106.85C125.948 106.747 125.968 106.645 126.008 106.55C126.047 106.455 126.106 106.37 126.18 106.298C126.254 106.227 126.342 106.172 126.438 106.136C126.535 106.1 126.637 106.084 126.74 106.09Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M129.69 97.3599C129.955 97.3599 130.21 97.4652 130.397 97.6528C130.585 97.8403 130.69 98.0946 130.69 98.3599V99.6599C130.701 99.7939 130.682 99.9286 130.635 100.055C130.589 100.181 130.516 100.295 130.42 100.39C130.325 100.485 130.211 100.559 130.085 100.605C129.959 100.652 129.824 100.67 129.69 100.66C129.429 100.645 129.183 100.536 128.999 100.351C128.814 100.167 128.704 99.9204 128.69 99.6599V98.4299C128.679 98.2959 128.698 98.1612 128.745 98.0351C128.791 97.909 128.864 97.7944 128.96 97.6994C129.055 97.6044 129.169 97.531 129.295 97.4845C129.421 97.438 129.556 97.4193 129.69 97.4299" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M129.66 101.49C129.921 101.504 130.167 101.614 130.351 101.799C130.536 101.983 130.646 102.229 130.66 102.49V103.49C130.671 103.624 130.652 103.759 130.605 103.885C130.559 104.011 130.486 104.125 130.39 104.22C130.295 104.315 130.181 104.389 130.055 104.435C129.929 104.482 129.794 104.5 129.66 104.49C129.399 104.475 129.153 104.366 128.969 104.181C128.784 103.997 128.674 103.75 128.66 103.49V102.44C128.649 102.306 128.668 102.171 128.715 102.045C128.761 101.919 128.834 101.804 128.93 101.709C129.025 101.614 129.139 101.541 129.265 101.495C129.391 101.448 129.526 101.429 129.66 101.44" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M129.6 105.94C129.865 105.94 130.12 106.045 130.307 106.233C130.495 106.42 130.6 106.675 130.6 106.94V108.17C130.6 108.435 130.495 108.689 130.307 108.877C130.12 109.065 129.865 109.17 129.6 109.17C129.339 109.155 129.093 109.046 128.909 108.861C128.724 108.677 128.614 108.43 128.6 108.17V106.94C128.589 106.806 128.608 106.671 128.655 106.545C128.701 106.419 128.774 106.304 128.87 106.209C128.965 106.114 129.079 106.041 129.205 105.995C129.331 105.948 129.466 105.929 129.6 105.94Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.87 97.0801C133.192 97.095 133.497 97.2311 133.723 97.461C133.949 97.6909 134.08 97.9977 134.09 98.3201V99.4401C134.094 99.5957 134.066 99.7505 134.009 99.8951C133.951 100.04 133.864 100.171 133.753 100.28C133.643 100.39 133.511 100.476 133.366 100.532C133.221 100.589 133.066 100.616 132.91 100.61C132.587 100.593 132.282 100.454 132.056 100.223C131.83 99.9914 131.7 99.6834 131.69 99.3601V98.2401C131.687 98.0853 131.716 97.9315 131.775 97.7882C131.833 97.6448 131.92 97.5149 132.031 97.4064C132.141 97.2978 132.272 97.2129 132.417 97.1568C132.561 97.1007 132.715 97.0746 132.87 97.0801Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.15 101.45C133.472 101.465 133.777 101.601 134.003 101.831C134.229 102.061 134.36 102.368 134.37 102.69V103.36C134.374 103.516 134.346 103.67 134.289 103.815C134.231 103.959 134.144 104.091 134.033 104.2C133.923 104.31 133.791 104.396 133.646 104.452C133.501 104.509 133.346 104.535 133.19 104.53C132.869 104.517 132.564 104.384 132.338 104.155C132.111 103.927 131.98 103.621 131.97 103.3V102.66C131.966 102.504 131.994 102.349 132.051 102.205C132.109 102.06 132.196 101.929 132.307 101.82C132.417 101.71 132.549 101.624 132.694 101.568C132.839 101.511 132.994 101.484 133.15 101.49" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.87 105.91C133.192 105.923 133.497 106.058 133.722 106.289C133.947 106.52 134.075 106.828 134.08 107.15V108.33C134.083 108.486 134.054 108.64 133.995 108.784C133.935 108.928 133.847 109.059 133.736 109.167C133.624 109.276 133.492 109.361 133.346 109.416C133.201 109.472 133.046 109.497 132.89 109.49C132.568 109.477 132.263 109.342 132.038 109.111C131.813 108.88 131.685 108.572 131.68 108.25V107.07C131.677 106.914 131.706 106.76 131.765 106.616C131.825 106.472 131.913 106.341 132.024 106.233C132.136 106.124 132.268 106.039 132.414 105.984C132.559 105.928 132.714 105.903 132.87 105.91Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.77 97.0699C125.984 97.0801 126.186 97.1717 126.335 97.326C126.484 97.4803 126.568 97.6856 126.57 97.8999V99.4699C126.571 99.5731 126.552 99.6756 126.512 99.771C126.473 99.8663 126.414 99.9527 126.341 100.025C126.267 100.097 126.179 100.153 126.082 100.19C125.986 100.227 125.883 100.244 125.78 100.24C125.565 100.227 125.363 100.134 125.214 99.9776C125.066 99.8217 124.982 99.6152 124.98 99.3999V97.8299C124.978 97.7271 124.998 97.6251 125.038 97.5302C125.077 97.4354 125.136 97.3496 125.21 97.2784C125.284 97.2071 125.372 97.1518 125.468 97.1159C125.565 97.0801 125.667 97.0644 125.77 97.0699Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.62 101.16C125.833 101.173 126.034 101.265 126.182 101.419C126.33 101.573 126.415 101.776 126.42 101.99V103.52C126.422 103.623 126.402 103.725 126.362 103.82C126.323 103.915 126.264 104 126.19 104.072C126.116 104.143 126.028 104.198 125.932 104.234C125.835 104.27 125.733 104.286 125.63 104.28C125.417 104.268 125.216 104.175 125.068 104.021C124.92 103.868 124.835 103.664 124.83 103.45V101.93C124.826 101.827 124.843 101.724 124.881 101.628C124.919 101.532 124.976 101.445 125.049 101.372C125.123 101.3 125.211 101.243 125.307 101.207C125.404 101.17 125.507 101.154 125.61 101.16" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.75 105.66C125.962 105.675 126.162 105.768 126.31 105.921C126.457 106.074 126.543 106.277 126.55 106.49V107.93C126.553 108.032 126.535 108.134 126.496 108.229C126.458 108.324 126.4 108.41 126.327 108.481C126.253 108.553 126.166 108.608 126.07 108.644C125.974 108.68 125.872 108.696 125.77 108.69C125.555 108.68 125.352 108.589 125.201 108.435C125.051 108.281 124.965 108.075 124.96 107.86V106.43C124.957 106.327 124.975 106.225 125.014 106.13C125.052 106.034 125.11 105.948 125.183 105.876C125.256 105.803 125.343 105.747 125.439 105.71C125.535 105.673 125.637 105.656 125.74 105.66" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.7 96.9299C128.965 96.9299 129.22 97.0352 129.407 97.2228C129.595 97.4103 129.7 97.6646 129.7 97.9299V99.1599C129.711 99.2939 129.692 99.4286 129.645 99.5547C129.599 99.6808 129.526 99.7953 129.43 99.8903C129.335 99.9854 129.221 100.059 129.095 100.105C128.969 100.152 128.834 100.17 128.7 100.16C128.439 100.145 128.193 100.036 128.009 99.851C127.824 99.6665 127.714 99.4204 127.7 99.1599V97.9299C127.689 97.7959 127.708 97.6612 127.755 97.5351C127.801 97.409 127.874 97.2944 127.97 97.1994C128.065 97.1043 128.179 97.031 128.305 96.9845C128.431 96.938 128.566 96.9193 128.7 96.9299Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.68 101.07C128.945 101.07 129.2 101.175 129.387 101.363C129.575 101.55 129.68 101.805 129.68 102.07V103.07C129.68 103.335 129.575 103.59 129.387 103.777C129.2 103.965 128.945 104.07 128.68 104.07C128.419 104.056 128.173 103.946 127.989 103.761C127.804 103.577 127.694 103.331 127.68 103.07V102.07C127.68 101.805 127.785 101.55 127.973 101.363C128.16 101.175 128.415 101.07 128.68 101.07Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M128.62 105.52C128.881 105.534 129.127 105.644 129.311 105.829C129.496 106.013 129.606 106.26 129.62 106.52V107.75C129.623 107.88 129.599 108.009 129.549 108.129C129.499 108.249 129.425 108.357 129.331 108.447C129.237 108.536 129.125 108.605 129.002 108.649C128.88 108.692 128.75 108.71 128.62 108.7C128.355 108.7 128.1 108.595 127.913 108.407C127.725 108.22 127.62 107.965 127.62 107.7V106.47C127.611 106.336 127.631 106.203 127.678 106.077C127.725 105.952 127.799 105.838 127.893 105.743C127.988 105.649 128.102 105.575 128.227 105.528C128.352 105.481 128.486 105.461 128.62 105.47" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.89 96.66C132.212 96.675 132.517 96.811 132.743 97.0409C132.969 97.2708 133.1 97.5777 133.11 97.9V99.02C133.114 99.1761 133.086 99.3314 133.028 99.4761C132.969 99.6209 132.881 99.7518 132.769 99.8608C132.657 99.9698 132.524 100.054 132.378 100.109C132.232 100.164 132.076 100.188 131.92 100.18C131.599 100.165 131.295 100.029 131.071 99.7984C130.846 99.5683 130.717 99.2615 130.71 98.94V97.82C130.707 97.6644 130.736 97.5097 130.795 97.3657C130.855 97.2217 130.943 97.0913 131.054 96.9826C131.166 96.8739 131.298 96.7892 131.444 96.7337C131.589 96.6783 131.744 96.6532 131.9 96.66" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M132.17 101.03C132.493 101.043 132.799 101.178 133.026 101.408C133.252 101.639 133.383 101.947 133.39 102.27V102.94C133.393 103.096 133.364 103.251 133.305 103.396C133.246 103.54 133.158 103.671 133.046 103.781C132.935 103.89 132.803 103.976 132.657 104.032C132.512 104.089 132.356 104.115 132.2 104.11C131.877 104.097 131.571 103.962 131.344 103.732C131.118 103.501 130.987 103.193 130.98 102.87V102.2C130.977 102.044 131.006 101.889 131.065 101.744C131.124 101.6 131.212 101.469 131.324 101.359C131.435 101.25 131.567 101.164 131.713 101.108C131.858 101.051 132.014 101.025 132.17 101.03Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.88 105.49C132.202 105.505 132.507 105.641 132.733 105.871C132.959 106.101 133.09 106.408 133.1 106.73V107.91C133.101 108.065 133.071 108.219 133.012 108.363C132.952 108.506 132.864 108.636 132.753 108.744C132.642 108.853 132.51 108.937 132.365 108.993C132.22 109.049 132.065 109.075 131.91 109.07C131.588 109.055 131.283 108.919 131.057 108.689C130.831 108.459 130.7 108.152 130.69 107.83V106.66C130.687 106.505 130.716 106.351 130.775 106.208C130.833 106.065 130.92 105.935 131.031 105.826C131.141 105.718 131.272 105.633 131.417 105.577C131.561 105.521 131.715 105.495 131.87 105.5" fill="white"/>
|
||||
<path d="M58.49 128.66C58.49 128.66 79.24 151.16 86.24 154.49C93.24 157.82 90.24 129.16 93.24 121.8C96.24 114.44 100.38 111.2 99.94 113.4C99.5 115.6 98.66 119.66 98.66 119.66C98.66 119.66 106.47 123.74 102.43 129.95C98.39 136.16 101.71 135.41 101.71 135.41C101.71 135.41 114.08 173.27 91.99 175.26L58.49 128.66Z" fill="#DBDBDC"/>
|
||||
<path d="M53.91 301.17H17.78L0 371.92L31.77 381.02L26.95 376.18L53.91 301.17Z" fill="#1F3563"/>
|
||||
<path d="M91.89 375.84L89.94 307.8L53.99 295.43L66.7 381.02H98.67L91.89 375.84Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M105.23 381.77H2.58V380.27H105.23V381.77Z" fill="#B7BBCE"/>
|
||||
<path d="M73.29 94.4899L74.62 94.2499C74.62 94.2499 73.03 92.4699 74.06 84.0699C75.09 75.6699 62.98 73.3799 56.39 80.6699C46.64 91.4399 53.29 117.06 53.29 117.06H71.41C71.41 117.06 68.24 106.3 68.24 102.66C68.24 102.66 63.64 103.36 61.24 100.77C74.05 103.97 73.24 94.4899 73.24 94.4899" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M69.47 90.8303C69.1112 90.8303 68.7669 90.9721 68.5121 91.2249L67.8078 90.515C68.2499 90.0764 68.8473 89.8303 69.47 89.8303C70.0927 89.8303 70.6901 90.0764 71.1321 90.515L70.4278 91.2249C70.1731 90.9721 69.8288 90.8303 69.47 90.8303Z" fill="white"/>
|
||||
<path d="M71.4 95.6599C71.0533 96.0049 70.5841 96.1986 70.095 96.1986C69.6059 96.1986 69.1367 96.0049 68.79 95.6599H71.4Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M67.5788 95.1599H72.6112L71.7527 96.0143C71.3123 96.4526 70.7163 96.6986 70.095 96.6986C69.4737 96.6986 68.8777 96.4526 68.4373 96.0143L67.5788 95.1599Z" fill="#0B4B9B"/>
|
||||
<path d="M76.55 86.5599H62.85C62.85 86.5599 58.24 96.5099 59.98 105.66L40.43 103.23C40.43 103.23 40.54 72.5299 57.99 71.5299C75.44 70.5299 76.55 86.5299 76.55 86.5299" fill="#DBDBDC"/>
|
||||
<path d="M54.8 108.22C38.31 110.87 45.91 162.86 45.91 162.86H91.47C88.52 122.8 71.29 105.57 54.8 108.22Z" fill="#F0F0F6"/>
|
||||
<path d="M91.47 162.86C88.96 145.12 61.16 156.55 61.16 156.55L45.91 162.86L2.59 303.66L98.68 317.58C98.68 317.58 93.98 180.58 91.47 162.85" fill="#F0F0F6"/>
|
||||
<path d="M86.65 148.55L61.16 134.39C61.16 134.39 60.09 146.01 84.5 160.15C84.5 160.15 97.42 159.96 86.65 148.55Z" fill="#DBDBDC"/>
|
||||
<path d="M123.99 112.96C122.81 110.09 121.07 105.81 119.89 110.27C119.323 112.661 118.392 114.951 117.13 117.06C117.13 117.06 116.13 114.58 115.22 115.17C114.31 115.76 115.36 120.17 115.36 120.17L97.99 134.76L83.1 120.22L58.54 138.22C58.54 138.22 64.74 144.86 89.61 156.22C114.48 167.58 123.46 123.22 123.46 123.22C123.46 123.22 125.17 115.78 123.99 112.91" fill="#F0F0F6"/>
|
||||
<path d="M71.9 111.91C71.7526 111.221 71.4025 110.592 70.8946 110.104C70.3867 109.615 69.7442 109.29 69.05 109.17L51.45 106.17L49.89 112.17L72.42 114.38L71.9 111.91Z" fill="#DBDBDC"/>
|
||||
<path d="M56.36 113.89C50.19 119.36 52.08 131.56 60.58 141.14L82.9 121.37C74.4 111.78 62.52 108.43 56.36 113.89Z" fill="#F0F0F6"/>
|
||||
<path d="M114.1 112.78C114.18 110.84 116.66 113.65 116.66 113.65C116.66 113.65 116.98 103.04 121.16 107.65C126.74 113.78 123.61 122.26 123.61 122.26L116.61 120.84C115.47 119.84 114.02 114.73 114.09 112.84" fill="#4071B7"/>
|
||||
<path d="M101.86 130.06C104.33 129.2 103.33 124.43 103.33 124.43C105.53 120.12 98.95 118.12 98.95 118.12C98.95 118.12 100.95 114.47 99.87 112.72C98.79 110.97 94.66 118.46 93.42 121.78C93.17 122.44 90.49 127.36 91.94 129.57C92.83 130.92 94.49 131.98 96.68 134.39L101.86 130.06Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.9657 134.576L82.6295 119.583L81.9305 120.298L97.9143 135.924L115.641 121.053L114.999 120.287L97.9657 134.576Z" fill="white"/>
|
||||
<svg width="320" height="191" viewBox="0 0 320 191" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_501_29674)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.2408 0.00146484L96.3776 190.669L34.0259 167.058L34.4168 12.5248L96.2408 0.00146484ZM35.1193 13.1008L34.7311 166.572L95.6729 189.65L95.5375 0.862241L35.1193 13.1008Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.6744 15.5397L79.3358 9.46655L78.9322 180.665L48.4819 169.565L48.6744 15.5397Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M79.6889 9.03784L79.283 181.167L48.1296 169.811L48.3227 15.2506L79.6889 9.03784ZM49.026 15.8289L48.8343 169.319L78.5814 180.162L78.9828 9.89536L49.026 15.8289Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M118.098 178.759H178.116V179.463H118.098V178.759Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M267.172 178.759H311.524V179.463H267.172V178.759Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.1003 189.531H318.024V190.234H96.1003V189.531Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M95.4998 0.140869H320V0.844867H95.4998V0.140869Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M152.655 103.938H286.842V104.642H152.655V103.938Z" fill="#B7BBCE"/>
|
||||
<path d="M175.389 53.6587L163.966 53.0251L166.89 44.6945L177.816 43.7371L175.389 53.6587Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.969 43.606L175.48 53.7814L163.803 53.1337L166.804 44.5843L177.969 43.606ZM166.975 44.8049L164.128 52.9167L175.299 53.5363L177.663 43.8683L166.975 44.8049Z" fill="#B7BBCE"/>
|
||||
<path d="M174.437 52.0725H165.552L167.458 45.7225L176.342 45.0889L174.437 52.0725Z" fill="#074C9C"/>
|
||||
<path d="M143.292 53.5696L155.494 65.8192C155.494 65.8192 155.964 62.5855 156.649 59.1077C157.428 55.1794 158.493 50.9319 159.498 50.6597C161.375 50.1904 165.623 49.4676 165.205 50.4345C164.787 51.4013 162.858 51.8425 162.858 51.8425C162.858 51.8425 164.107 55.1747 161.539 55.5971C161.539 55.5971 161.713 56.9159 161.91 58.9341C162.52 65.0823 163.393 77.7073 160.502 79.2655C156.63 81.3118 145.596 77.4633 145.596 77.4633L143.292 53.5696Z" fill="#DBDBDC"/>
|
||||
<path d="M179.797 136.928L154.274 146.784L152.589 163.722L167.167 171.217L166.195 164.834L179.797 136.928Z" fill="#4175BA"/>
|
||||
<path d="M153.373 155.861L152.589 163.722L167.167 171.217L166.195 164.834L170.03 156.964L153.373 155.861Z" fill="#DBDBDC"/>
|
||||
<path d="M160.488 132.558H138.641V179.149H155.513L151.552 173.789C151.552 173.789 159.634 143.803 160.469 132.558" fill="#6693CD"/>
|
||||
<path d="M146.418 36.533L142.888 46.6142L147.361 48.3554C147.514 48.4157 147.679 48.4397 147.844 48.4253C148.008 48.411 148.166 48.3588 148.307 48.2729C148.447 48.1869 148.566 48.0695 148.654 47.9299C148.741 47.7903 148.795 47.6324 148.811 47.4684C149.074 44.8448 149.281 39.1753 146.418 36.533Z" fill="#1F3563"/>
|
||||
<path d="M144.39 44.1032L145.024 43.9858C145.024 43.9858 144.268 43.1457 144.756 39.1939C145.244 35.2422 139.532 34.1533 136.425 37.5888C131.835 42.6623 134.966 54.7382 134.966 54.7382H143.508C143.508 54.7382 142.001 49.6694 142.001 47.9517C142.001 47.9517 139.837 48.2849 138.716 47.0599C144.756 48.5712 144.39 44.1032 144.39 44.1032Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M142.592 42.1931C142.376 42.1931 142.168 42.2787 142.014 42.4314L141.941 42.3581C142.114 42.1863 142.348 42.0898 142.592 42.0898C142.836 42.0898 143.07 42.1863 143.244 42.3581L143.171 42.4314C143.017 42.2787 142.809 42.1931 142.592 42.1931Z" fill="white"/>
|
||||
<path d="M143.503 44.6616C143.423 44.7431 143.327 44.8077 143.221 44.8519C143.116 44.896 143.003 44.9188 142.888 44.9188C142.774 44.9188 142.661 44.896 142.555 44.8519C142.45 44.8077 142.354 44.7431 142.273 44.6616H143.503Z" fill="#1F3563"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M142.15 44.6101H143.626L143.54 44.698C143.455 44.7843 143.353 44.8528 143.241 44.8996C143.129 44.9464 143.009 44.9705 142.888 44.9705C142.767 44.9705 142.647 44.9464 142.535 44.8996C142.423 44.8529 142.322 44.7843 142.237 44.698L142.15 44.6101ZM142.413 44.7134C142.463 44.7497 142.517 44.7803 142.575 44.8044C142.674 44.8459 142.781 44.8673 142.888 44.8673C142.996 44.8673 143.102 44.8459 143.201 44.8044C143.259 44.7803 143.313 44.7497 143.364 44.7134H142.413Z" fill="#1F3563"/>
|
||||
<path d="M141.607 38.7952C141.607 38.6309 141.607 40.5739 144.596 41.9209C147.586 43.2679 148.947 40.358 147.075 37.3918C145.202 34.4257 140.973 33.1679 138.326 34.0596C135.679 34.9513 131.361 37.5984 133.924 46.0651L136.768 44.0517C136.768 44.0517 135.449 42.2494 136.904 41.705C137.075 41.6196 137.264 41.5771 137.455 41.581C137.646 41.585 137.833 41.6353 138 41.7277C138.168 41.82 138.31 41.9517 138.415 42.1113C138.52 42.2709 138.584 42.4536 138.603 42.6437C138.603 42.6437 141.452 40.9775 141.607 38.8092" fill="#0B4B9B"/>
|
||||
<path d="M136.754 50.5753C128.982 51.8237 132.567 76.3275 132.567 76.3275H154.054C152.669 57.4463 144.545 49.3269 136.773 50.5753" fill="white"/>
|
||||
<path d="M154.054 76.3416H132.568L133.924 149.44C133.924 149.44 149.675 158.601 188.404 142.569L154.054 76.3416Z" fill="white"/>
|
||||
<path d="M154.053 76.3416L135.196 60.7129C135.196 60.7129 131.441 79.6598 160.756 89.2483L154.053 76.3416Z" fill="#DBDBDC"/>
|
||||
<path d="M172.93 51.5562C172.968 51.4129 173.037 51.2798 173.132 51.1665C173.227 51.0531 173.347 50.9624 173.482 50.9009C173.616 50.8394 173.763 50.8085 173.911 50.8107C174.059 50.8128 174.205 50.8478 174.338 50.9132C174.338 50.9132 175.962 48.2427 176.83 48.4163C177.698 48.59 179.426 52.6685 177.037 56.8408L172.357 54.283C172.51 53.3661 172.709 52.4576 172.953 51.5608" fill="#4071B7"/>
|
||||
<path d="M137.195 55.4093C137.195 55.4093 131.835 73.0562 148.83 81.584C165.824 90.1118 176.112 62.9281 177.412 57.6481L171.888 54.4144L156.776 68.4943C156.776 68.4943 143.048 42.6388 137.181 55.4187" fill="white"/>
|
||||
<path d="M138.641 169.903V179.149H155.513L151.552 173.789C151.552 173.789 152.247 171.208 153.251 167.275L138.641 169.903Z" fill="#DBDBDC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M145.921 53.9588C145.733 53.811 145.584 53.7192 145.476 53.68L145.557 53.4595C145.7 53.5118 145.873 53.6227 146.066 53.7744C146.26 53.9276 146.484 54.1287 146.729 54.3693C147.221 54.8506 147.809 55.4953 148.451 56.2437C149.734 57.7406 151.238 59.6584 152.626 61.5277C154.014 63.3969 155.287 65.22 156.11 66.5277C156.52 67.18 156.822 67.71 156.968 68.0548C156.98 68.0834 156.991 68.111 157.002 68.1375L162.786 63.1119L162.94 63.289L157.07 68.389C157.073 68.4189 157.072 68.4482 157.068 68.4756C157.062 68.5066 157.05 68.5418 157.024 68.5722C156.996 68.604 156.96 68.6223 156.922 68.6292C156.856 68.6414 156.787 68.6181 156.73 68.5913L156.568 68.5146L156.811 68.303C156.797 68.2589 156.778 68.2067 156.752 68.1465C156.614 67.8206 156.321 67.3046 155.911 66.6527C155.093 65.3521 153.824 63.5344 152.438 61.6676C151.052 59.8011 149.551 57.8879 148.272 56.3964C147.633 55.6505 147.05 55.0115 146.565 54.537C146.323 54.2997 146.106 54.1049 145.921 53.9588Z" fill="white"/>
|
||||
<path d="M161.844 58.216C161.685 56.6109 161.558 55.6018 161.558 55.6018C164.031 55.1794 162.83 51.8049 162.83 51.8049C162.83 51.8049 164.707 51.3825 165.106 50.3969C165.505 49.4113 161.427 50.1294 159.601 50.6222C158.709 50.8662 157.761 54.5693 157.034 58.2723L161.844 58.216Z" fill="#4071B7"/>
|
||||
<path d="M247.282 107.951L228.006 105.44C228.006 105.44 198.063 109.054 212.016 150.158L224.603 151.81L225.256 126.386C225.256 126.386 248.333 130.747 247.282 107.97" fill="#1F3563"/>
|
||||
<path d="M240.364 83.2173C240.364 83.2173 242.283 100.517 231.015 102.929C219.746 105.342 218.216 104.187 218.216 104.187C218.216 104.187 213.523 105.229 211.889 103.131C211.889 103.131 210.181 103.807 210.251 102.784C210.322 101.761 215.048 99.9349 228.471 95.4105L233.023 83.8743L240.364 83.2173Z" fill="#DBDBDC"/>
|
||||
<path d="M242.612 76.9941C239.28 75.6988 234.774 79.2844 232.545 85.0103L244.611 89.7036C246.841 83.9778 245.944 78.2848 242.612 76.9894" fill="#DBDBDC"/>
|
||||
<path d="M218.544 117.413L236.262 109.289L241.101 81.9267C241.101 81.9267 239.777 69.6866 248.427 73.7463C257.077 77.806 263.746 113.555 249.267 122.026C234.788 130.498 208.66 123.237 218.544 117.413Z" fill="#4175BA"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M233.375 165.975V125.884H234.079V165.975H233.375Z" fill="#B7BBCE"/>
|
||||
<path d="M215.212 159.136L213.527 149.013L223.228 148.783L222.769 161.15L213.969 161.352L215.212 159.136Z" fill="#1F3563"/>
|
||||
<path d="M225.983 158.456L223.106 148.605L232.709 147.225L233.727 159.554L225.017 160.807L225.983 158.456Z" fill="#0B4B9B"/>
|
||||
<path d="M235.079 69.9025L234.544 69.8039C234.544 69.8039 235.182 69.0905 234.774 65.7348C234.366 62.3791 239.2 61.4639 241.814 64.3738C245.709 68.6822 245.001 78.8527 245.001 78.8527L237.111 79.7913C237.111 79.7913 237.111 74.6287 237.111 73.1503C237.111 73.1503 238.946 73.4319 239.899 72.3946C234.779 73.6759 235.084 69.8884 235.084 69.8884" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M236.097 68.2852C236.28 68.1048 236.526 68.0037 236.783 68.0037C237.039 68.0037 237.286 68.1048 237.469 68.2852L237.139 68.6191C237.044 68.5255 236.916 68.473 236.783 68.473C236.649 68.473 236.522 68.5255 236.427 68.6191L236.097 68.2852Z" fill="#D2D2D2"/>
|
||||
<path d="M236.008 70.3765C236.148 70.5138 236.336 70.5907 236.532 70.5907C236.727 70.5907 236.915 70.5138 237.055 70.3765H236.008Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M241.002 166.327H199.982V165.623H241.002V166.327Z" fill="#B7BBCE"/>
|
||||
<path d="M242.081 75.4031C230.94 76.6797 231.353 103.399 231.353 103.399H250.797C249.328 82.9124 250.332 74.4644 242.081 75.4031Z" fill="white"/>
|
||||
<path d="M250.797 103.408H231.353C231.353 103.408 202.132 110.894 221.323 149.83H233.995L231.329 124.537C231.329 124.537 254.796 125.856 250.774 103.417" fill="#0B4B9B"/>
|
||||
<path d="M245.77 72.9202L236.783 75.8723C236.783 75.8723 236.548 79.8897 236.534 79.9789L247.329 78.1016L245.77 72.9202Z" fill="#DBDBDC"/>
|
||||
<path d="M244.907 75.6658C248.469 75.3561 251.787 80.0635 252.322 86.1836L239.425 87.31C238.89 81.2086 241.345 75.9756 244.907 75.6658Z" fill="white"/>
|
||||
<path d="M238.064 66.5372C238.097 66.4527 238.533 67.6823 239.509 67.8888L240.002 68.682C240.002 68.682 240.002 67.2412 241.091 67.3022C242.18 67.3632 242.067 68.8603 241.626 69.095L244.62 70.1979C244.62 70.1979 244.804 63.4161 240.8 62.9749C240.8 62.9749 235.919 61.0037 234.229 63.7118C232.54 66.4198 235.098 67.6542 235.098 67.6542C235.113 67.2882 235.078 66.9219 234.995 66.5653C236.053 67.4509 237.371 67.9696 238.749 68.0437C238.749 68.0437 237.81 67.3022 238.064 66.5372Z" fill="#1F3563"/>
|
||||
<path d="M244.893 99.3624L231.963 95.3543C231.963 95.3543 236.473 97.6118 237.979 89.3375C238.871 84.4376 245.555 87.5587 245.555 87.5587L244.893 99.3624Z" fill="#DBDBDC"/>
|
||||
<path d="M230.714 102.563L250.605 100.85C250.605 100.85 258.048 122.073 233.404 125.851C233.404 125.851 229.386 125.706 221.811 123.345C212.514 120.459 209.838 114.357 209.838 114.357C216.49 109.911 223.468 105.975 230.714 102.582" fill="white"/>
|
||||
<path d="M242.8 96.781L249.952 98.3298C249.952 98.3298 250.229 105.398 242.757 106.247C230.452 107.655 227.232 98.6114 227.232 98.6114L242.8 96.781Z" fill="#DBDBDC"/>
|
||||
<path d="M252.238 85.4092C253.324 89.0736 253.003 93.0116 251.336 96.4513C249.67 99.891 246.78 102.584 243.231 104.004C239.682 105.423 235.731 105.466 232.153 104.124C228.574 102.781 225.626 100.151 223.885 96.7482C223.885 96.7482 222.379 97.4006 220.741 95.3074C220.741 95.3074 219.037 95.9785 219.103 94.9554C219.169 93.9322 221.656 90.8487 240.073 95.7016L239.355 85.9161L252.238 85.4092Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M222.729 93.3661C219.816 93.6558 219.358 94.6553 219.337 94.9797C219.331 95.0772 219.347 95.1352 219.364 95.1693C219.38 95.2015 219.405 95.2263 219.443 95.2468C219.53 95.294 219.679 95.3116 219.875 95.2926C220.062 95.2744 220.257 95.2265 220.409 95.1814C220.484 95.1591 220.546 95.138 220.589 95.1226C220.611 95.1149 220.628 95.1087 220.639 95.1045L220.651 95.0998L220.654 95.0988L220.655 95.0986L220.818 95.0338L220.926 95.1723C221.714 96.1815 222.45 96.5055 222.966 96.5925C223.227 96.6365 223.44 96.6212 223.585 96.5962C223.657 96.5838 223.712 96.5688 223.748 96.5577C223.765 96.5522 223.778 96.5476 223.786 96.5448L223.793 96.542C223.793 96.5418 223.793 96.5417 223.793 96.5418L223.793 96.542L223.792 96.5422C223.792 96.5423 223.792 96.5425 223.885 96.7576C223.979 96.9727 223.979 96.9728 223.979 96.9728L223.978 96.9734L223.976 96.9743L223.969 96.9768C223.965 96.9787 223.958 96.9812 223.951 96.9841C223.935 96.9899 223.914 96.9974 223.888 97.0057C223.834 97.0224 223.759 97.0424 223.664 97.0587C223.475 97.0914 223.209 97.1093 222.888 97.0553C222.269 96.9508 221.475 96.5825 220.662 95.5937C220.627 95.6054 220.587 95.6181 220.543 95.6312C220.377 95.6806 220.15 95.7375 219.92 95.7598C219.698 95.7812 219.433 95.7751 219.22 95.6599C219.107 95.5992 219.009 95.5083 218.945 95.3807C218.882 95.255 218.859 95.1093 218.869 94.9498C218.914 94.2464 219.732 93.1925 222.683 92.8991C225.658 92.6033 230.916 93.0555 240.133 95.4841L240.013 95.9379C230.813 93.5136 225.619 93.0787 222.729 93.3661Z" fill="white"/>
|
||||
<path d="M223.852 93.0593C219.628 93.1391 218.807 94.4251 218.77 95.0258C218.699 96.0818 220.459 95.3872 220.459 95.3872C222.149 97.5508 223.702 96.875 223.702 96.875L223.852 93.0593Z" fill="#4071B7"/>
|
||||
<path d="M215.536 100.278C211.03 101.08 210.34 102.624 210.401 103.258C210.509 104.408 212.279 103.361 212.279 103.361C214.466 105.398 216.033 104.408 216.033 104.408L215.536 100.278Z" fill="#4071B7"/>
|
||||
<path d="M196.331 103.596L198.241 101.859H217.165L218.573 104.731L191.398 104.68C191.311 104.645 191.236 104.585 191.183 104.507C191.13 104.429 191.102 104.337 191.102 104.243C191.102 104.149 191.13 104.057 191.183 103.979C191.236 103.902 191.311 103.841 191.398 103.807L196.331 103.596Z" fill="#B7BBCE"/>
|
||||
<path d="M208.064 100.127L177.919 99.6345L173.395 79.8521L204.549 79.1106L208.064 100.127Z" fill="#B7BBCE"/>
|
||||
<path d="M195.125 103.755H190.554L188.151 93.7773H192.717L195.125 103.755Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M187.853 93.5427H192.902L195.423 103.99H190.369L187.853 93.5427ZM188.448 94.0121L190.738 103.521H194.827L192.532 94.0121H188.448Z" fill="white"/>
|
||||
<path d="M269.157 65.6549C269.157 65.6549 268.951 64.9697 270.598 64.8336C272.245 64.6975 274.034 67.0911 274.034 67.0911L272.658 70.6768C267.369 70.1324 265.032 67.8608 263.741 65.6549C262.45 63.4491 269.171 65.6549 269.171 65.6549" fill="#4071B7"/>
|
||||
<path d="M273.377 65.932L282.927 68.4663L295.646 67.645L301.067 63.8293C301.067 63.8293 305.239 74.5958 298.777 80.8614C292.314 87.127 270.791 69.8509 270.791 69.8509L273.377 65.932Z" fill="#DBDBDC"/>
|
||||
<path d="M290.629 141.396L307.056 138.908L314.837 175.962L299.124 179.125L301.626 172.925C301.626 172.925 291.615 147.347 290.643 141.4" fill="#4175BA"/>
|
||||
<path d="M280.426 174.235L277.924 144.578L295.022 143.123C296.064 145.408 292.037 179.125 292.037 179.125H276.676L280.426 174.235Z" fill="#6693CD"/>
|
||||
<path d="M284.415 44.6195L283.786 44.5068C283.786 44.5068 284.537 43.6714 284.054 39.729C283.57 35.7866 289.282 34.7072 292.394 38.1286C296.989 43.188 293.849 55.2123 293.849 55.2123H285.302C285.302 55.2123 286.809 50.167 286.809 48.4539C286.809 48.4539 288.977 48.7871 290.094 47.5669C284.049 49.0687 284.411 44.6195 284.411 44.6195" fill="#4071B7"/>
|
||||
<path d="M286.832 42.9205C286.669 42.7583 286.448 42.6672 286.217 42.6672C285.987 42.6672 285.766 42.7583 285.603 42.9205H286.832Z" fill="white"/>
|
||||
<path d="M285.307 45.178C285.47 45.3402 285.691 45.4312 285.922 45.4312C286.152 45.4312 286.373 45.3402 286.537 45.178H285.307Z" fill="#1F3563"/>
|
||||
<path d="M292.976 51.068C300.757 52.3118 297.167 76.7123 297.167 76.7123H275.672C277.08 57.9109 285.194 49.8243 292.976 51.068Z" fill="white"/>
|
||||
<path d="M275.672 76.7124C278.018 64.1108 286.832 71.01 286.832 71.01L297.158 76.7124L309.459 141.621C309.459 141.621 300.34 147.53 275.667 147.53C275.667 147.53 273.32 89.3327 275.667 76.7124" fill="white"/>
|
||||
<path d="M292.277 62.2617C292.277 62.2617 290.122 80.514 285.016 82.3773C279.91 84.2405 275.672 80.8191 275.672 80.8191L275.362 78.8714L292.277 62.2617Z" fill="#DBDBDC"/>
|
||||
<path d="M289.864 43.1645C289.864 43.1645 290.071 41.4514 291.375 42.024C292.68 42.5966 291.582 44.4599 290.62 44.4599C290.876 45.8814 291.295 47.2687 291.868 48.5947C293.918 53.0357 294.883 57.9001 294.684 62.7873C294.572 65.1903 294.313 67.4571 293.811 68.9402C293.765 69.0778 293.754 69.2248 293.779 69.3678C293.804 69.5108 293.865 69.6451 293.956 69.7586C294.046 69.872 294.164 69.961 294.298 70.0172C294.432 70.0735 294.577 70.0953 294.722 70.0807C295.955 69.9691 297.149 69.5878 298.218 68.9638C299.288 68.3398 300.207 67.4883 300.911 66.4696C301.615 65.4509 302.086 64.2899 302.292 63.0688C302.497 61.8477 302.431 60.5964 302.1 59.4034C300.401 53.3443 298.345 46.0227 297.345 42.3338C295.468 35.3877 290.986 32.7453 285.612 35.1295C280.238 37.5138 282.261 42.2118 284.204 42.4417C284.245 41.9133 284.235 41.3821 284.176 40.8554C284.176 40.8554 286.053 42.4887 289.859 43.1645" fill="#6693CD"/>
|
||||
<path d="M261.864 72.8263C257.138 70.4515 255.659 67.4665 255.101 64.9368C254.542 62.4071 260.123 66.8376 260.123 66.8376L261.864 72.8263Z" fill="#4071B7"/>
|
||||
<path d="M293.347 62.4212C293.76 61.5526 293.862 60.5682 293.636 59.6333C293.409 58.6983 292.868 57.8698 292.103 57.2867C289.376 55.1981 285.063 52.8656 282.148 56.0852C277.615 61.1023 272.921 70.5406 272.921 70.5406L260.123 66.3917L257.978 70.6626C257.978 70.6626 270.443 82.3584 278.469 80.7016C284.57 79.4438 290.747 67.903 293.37 62.3977" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M260.836 51.5422H264.492V55.8085C265.796 56.2426 266.903 57.1266 267.614 58.3022C268.326 59.4779 268.596 60.8684 268.376 62.225C268.156 63.5815 267.461 64.8155 266.414 65.7062C265.368 66.5968 264.038 67.0859 262.664 67.0859C261.29 67.0859 259.96 66.5968 258.914 65.7062C257.867 64.8155 257.172 63.5815 256.952 62.225C256.732 60.8684 257.002 59.4779 257.714 58.3022C258.425 57.1266 259.532 56.2426 260.836 55.8085V51.5422Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M260.601 51.3074H264.727V55.6416C266.014 56.1108 267.104 57.0057 267.815 58.1805C268.556 59.4038 268.837 60.8507 268.608 62.2623C268.379 63.6739 267.656 64.958 266.566 65.8847C265.477 66.8114 264.094 67.3203 262.664 67.3203C261.234 67.3203 259.851 66.8114 258.762 65.8847C257.673 64.958 256.949 63.6739 256.72 62.2623C256.491 60.8507 256.772 59.4038 257.513 58.1805C258.224 57.0057 259.314 56.1108 260.601 55.6416V51.3074ZM261.071 51.7767V55.9775L260.91 56.0309C259.659 56.4474 258.597 57.2956 257.914 58.4235C257.232 59.5515 256.972 60.8857 257.183 62.1872C257.394 63.4888 258.062 64.6728 259.066 65.5273C260.07 66.3818 261.346 66.851 262.664 66.851C263.983 66.851 265.258 66.3818 266.262 65.5273C267.266 64.6728 267.934 63.4888 268.145 62.1872C268.356 60.8857 268.097 59.5515 267.414 58.4235C266.731 57.2956 265.669 56.4474 264.418 56.0309L264.257 55.9775V51.7767H261.071Z" fill="#B7BBCE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M266.163 58.6665C266.674 59.3158 266.992 60.0958 267.081 60.9174C267.169 61.7389 267.025 62.5689 266.664 63.3122C266.303 64.0556 265.741 64.6824 265.04 65.121C264.34 65.5595 263.53 65.7921 262.704 65.7921C261.878 65.7921 261.068 65.5595 260.368 65.121C259.667 64.6824 259.104 64.0556 258.743 63.3122C258.383 62.5689 258.238 61.7389 258.327 60.9174C258.416 60.0958 258.734 59.3158 259.245 58.6665H266.163Z" fill="#4175BA"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M93.3221 139.931C111.452 126.753 122.468 110.542 122.139 89.483L93.3221 79.8335L64.3737 89.6003C63.6979 111.908 75.8864 127.325 93.3221 139.931Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M109.42 90.9473H76.4682C75.4813 90.9546 74.5371 91.3503 73.8397 92.0486C73.1423 92.7468 72.7478 93.6916 72.7417 94.6785V121.825C72.7478 122.811 73.1423 123.756 73.8397 124.455C74.5371 125.153 75.4813 125.548 76.4682 125.556H109.42C110.412 125.556 111.363 125.163 112.067 124.464C112.77 123.765 113.168 122.816 113.175 121.825V94.6785C113.168 93.6867 112.77 92.7377 112.067 92.0387C111.363 91.3396 110.412 90.9472 109.42 90.9473Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.4682 90.8135H109.42C110.447 90.8135 111.432 91.2198 112.161 91.9438C112.889 92.6677 113.302 93.6505 113.308 94.6776L113.308 94.6784V121.825L113.308 121.825C113.302 122.852 112.889 123.835 112.161 124.559C111.432 125.283 110.447 125.69 109.42 125.69H76.4682L76.4672 125.69C75.4452 125.682 74.4672 125.272 73.745 124.549C73.0228 123.826 72.6143 122.847 72.6079 121.825L72.6079 121.825V94.6776C72.6143 93.6556 73.0228 92.6771 73.745 91.954C74.4672 91.2309 75.4452 90.8211 76.4672 90.8135L76.4682 90.8135ZM76.4687 91.081C75.5172 91.0882 74.6067 91.4698 73.9343 92.143C73.2618 92.8163 72.8815 93.7273 72.8754 94.6789V121.824C72.8815 122.776 73.2618 123.687 73.9343 124.36C74.6066 125.033 75.5169 125.415 76.4682 125.422H109.42C110.376 125.422 111.294 125.044 111.972 124.369C112.651 123.695 113.035 122.781 113.041 121.824C113.041 121.824 113.041 121.824 113.041 121.824V94.6793C113.041 94.6791 113.041 94.6789 113.041 94.6787C113.035 93.7225 112.651 92.8075 111.972 92.1335C111.294 91.4594 110.376 91.081 109.42 91.081H76.4687Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M83.5526 76.6369C86.021 74.1685 89.3689 72.7817 92.8598 72.7817C96.3507 72.7817 99.6986 74.1685 102.167 76.6369C104.525 78.9945 105.896 82.1544 106.014 85.4748H106.097V91.1068H105.159V86.4135H105.084V85.9442C105.084 82.7022 103.796 79.5931 101.503 77.3007C99.2109 75.0083 96.1018 73.7204 92.8598 73.7204C89.6179 73.7204 86.5087 75.0083 84.2163 77.3007C81.9239 79.5931 80.6361 82.7022 80.6361 85.9442V86.4135H80.6032V91.1068H79.6646V85.4748H79.7058C79.8241 82.1544 81.195 78.9945 83.5526 76.6369Z" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M92.2003 109.007V114.583C92.2003 114.85 92.3067 115.107 92.4959 115.296C92.6851 115.485 92.9418 115.592 93.2094 115.592C93.477 115.592 93.7337 115.485 93.9229 115.296C94.1122 115.107 94.2185 114.85 94.2185 114.583V109.007C95.1197 108.762 95.9014 108.199 96.4183 107.421C96.9352 106.644 97.1522 105.705 97.0289 104.779C96.9055 103.854 96.4503 103.004 95.7477 102.389C95.0452 101.774 94.1432 101.435 93.2094 101.435C92.2756 101.435 91.3736 101.774 90.6711 102.389C89.9686 103.004 89.5133 103.854 89.39 104.779C89.2666 105.705 89.4836 106.644 90.0005 107.421C90.5174 108.199 91.2992 108.762 92.2003 109.007Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.5166 102.213C91.2619 101.56 92.2188 101.2 93.2095 101.2C94.2001 101.2 95.157 101.56 95.9024 102.213C96.6477 102.865 97.1307 103.766 97.2615 104.748C97.3924 105.73 97.1622 106.726 96.6138 107.551C96.0988 108.326 95.336 108.9 94.4532 109.182V114.583C94.4532 114.913 94.3222 115.229 94.0889 115.462C93.8557 115.695 93.5393 115.826 93.2095 115.826C92.8796 115.826 92.5633 115.695 92.33 115.462C92.0968 115.229 91.9657 114.913 91.9657 114.583V109.182C91.0829 108.9 90.3202 108.326 89.8051 107.551C89.2567 106.726 89.0266 105.73 89.1574 104.748C89.2883 103.766 89.7713 102.865 90.5166 102.213ZM92.2004 109.007H92.4351V114.583C92.4351 114.788 92.5167 114.985 92.6619 115.13C92.8071 115.276 93.0041 115.357 93.2095 115.357C93.4148 115.357 93.6118 115.276 93.7571 115.13C93.9023 114.985 93.9839 114.788 93.9839 114.583V108.828L94.1571 108.781C95.0034 108.551 95.7375 108.022 96.2229 107.292C96.7084 106.561 96.9121 105.68 96.7963 104.81C96.6805 103.941 96.2529 103.144 95.5932 102.566C94.9334 101.988 94.0864 101.67 93.2095 101.67C92.3326 101.67 91.4855 101.988 90.8257 102.566C90.166 103.144 89.7385 103.941 89.6226 104.81C89.5068 105.68 89.7105 106.561 90.196 107.292C90.6814 108.022 91.4156 108.551 92.2619 108.781L92.2004 109.007Z" fill="white"/>
|
||||
<path d="M64.5143 47.5951C64.167 44.7228 62.2005 42.7891 60.1213 43.2725C58.0422 43.756 56.6436 46.4781 56.9909 49.3457C57.2631 51.5844 58.5256 53.2552 60.0509 53.6495C60.4889 53.8516 60.9816 53.9022 61.4515 53.7935C61.9214 53.6847 62.3418 53.4227 62.6463 53.0487C63.9933 51.9834 64.7865 49.8338 64.5237 47.5951" fill="#6693CD"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M59.4878 45.7551C59.5882 45.7599 59.6831 45.8029 59.7529 45.8753C59.8227 45.9478 59.8621 46.0441 59.8632 46.1447V46.8862C59.8639 46.9345 59.8547 46.9823 59.8362 47.0269C59.8176 47.0714 59.7901 47.1116 59.7553 47.1451C59.7205 47.1785 59.6793 47.2045 59.634 47.2213C59.5888 47.2381 59.5406 47.2455 59.4924 47.2429C59.3924 47.2371 59.2982 47.1937 59.2286 47.1215C59.159 47.0493 59.1192 46.9536 59.117 46.8534V46.1118C59.1163 46.0636 59.1255 46.0157 59.144 45.9712C59.1626 45.9267 59.1901 45.8864 59.2249 45.853C59.2597 45.8195 59.3009 45.7936 59.3462 45.7767C59.3914 45.7599 59.4396 45.7526 59.4878 45.7551Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M59.4221 47.6748C59.5222 47.6829 59.6158 47.7275 59.6851 47.8003C59.7544 47.873 59.7944 47.9687 59.7975 48.0691V48.7825C59.7989 48.8305 59.7903 48.8783 59.7723 48.9228C59.7542 48.9673 59.7271 49.0076 59.6927 49.0411C59.6583 49.0746 59.6174 49.1007 59.5724 49.1175C59.5274 49.1344 59.4794 49.1418 59.4315 49.1392C59.3309 49.1334 59.2362 49.0902 59.1658 49.0181C59.0955 48.946 59.0547 48.8503 59.0513 48.7496V48.0362C59.0506 47.9878 59.0598 47.9397 59.0783 47.8949C59.0969 47.8502 59.1243 47.8096 59.159 47.7758C59.1937 47.742 59.2349 47.7156 59.2801 47.6983C59.3254 47.6809 59.3737 47.6729 59.4221 47.6748Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M59.4831 49.7915C59.5836 49.7963 59.6784 49.8393 59.7482 49.9117C59.818 49.9841 59.8575 50.0805 59.8586 50.1811V50.8522C59.8593 50.9007 59.8501 50.9487 59.8315 50.9935C59.813 51.0383 59.7856 51.0788 59.7509 51.1126C59.7162 51.1464 59.675 51.1728 59.6297 51.1902C59.5845 51.2076 59.5362 51.2155 59.4878 51.2136C59.3877 51.2077 59.2935 51.1644 59.2239 51.0922C59.1544 51.02 59.1145 50.9243 59.1123 50.8241V50.1482C59.1116 50.1 59.1208 50.0521 59.1394 50.0076C59.158 49.963 59.1855 49.9228 59.2203 49.8893C59.255 49.8559 59.2963 49.83 59.3415 49.8131C59.3867 49.7963 59.4349 49.7889 59.4831 49.7915Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.8676 45.6943C60.9921 45.6943 61.1115 45.7438 61.1995 45.8318C61.2875 45.9198 61.337 46.0392 61.337 46.1637V46.7738C61.3419 46.8367 61.3332 46.8999 61.3113 46.9591C61.2895 47.0183 61.2551 47.072 61.2105 47.1166C61.1659 47.1612 61.1121 47.1956 61.0529 47.2175C60.9938 47.2393 60.9305 47.2481 60.8676 47.2431C60.7454 47.2364 60.6299 47.1848 60.5433 47.0982C60.4567 47.0116 60.4051 46.8961 60.3983 46.7738V46.1965C60.3934 46.1336 60.4021 46.0704 60.424 46.0112C60.4458 45.952 60.4802 45.8983 60.5248 45.8537C60.5694 45.8091 60.6232 45.7747 60.6824 45.7528C60.7415 45.731 60.8048 45.7223 60.8676 45.7272" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.8535 47.6325C60.9758 47.6392 61.0913 47.6908 61.1779 47.7774C61.2645 47.864 61.3161 47.9795 61.3228 48.1018V48.5711C61.3278 48.634 61.319 48.6972 61.2972 48.7564C61.2753 48.8156 61.2409 48.8694 61.1963 48.914C61.1517 48.9586 61.098 48.993 61.0388 49.0148C60.9796 49.0367 60.9164 49.0454 60.8535 49.0405C60.7312 49.0337 60.6157 48.9821 60.5291 48.8955C60.4425 48.8089 60.3909 48.6934 60.3842 48.5711V48.0783C60.3792 48.0154 60.388 47.9522 60.4098 47.8931C60.4316 47.8339 60.466 47.7801 60.5107 47.7355C60.5553 47.6909 60.609 47.6565 60.6682 47.6347C60.7274 47.6128 60.7906 47.6041 60.8535 47.609" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.8254 49.7211C60.9499 49.7211 61.0693 49.7705 61.1573 49.8585C61.2453 49.9465 61.2948 50.0659 61.2948 50.1904V50.7677C61.2948 50.8922 61.2453 51.0115 61.1573 51.0996C61.0693 51.1876 60.9499 51.237 60.8254 51.237C60.7031 51.2303 60.5876 51.1787 60.501 51.0921C60.4144 51.0055 60.3628 50.89 60.3561 50.7677V50.1904C60.3511 50.1275 60.3599 50.0643 60.3817 50.0051C60.4036 49.9459 60.438 49.8922 60.4826 49.8476C60.5272 49.803 60.5809 49.7686 60.6401 49.7467C60.6993 49.7249 60.7625 49.7161 60.8254 49.7211Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M62.3601 45.5628C62.5113 45.5699 62.6542 45.6337 62.7604 45.7416C62.8666 45.8495 62.9281 45.9935 62.9326 46.1448V46.6705C62.9346 46.7435 62.9216 46.8162 62.8944 46.884C62.8672 46.9518 62.8264 47.0134 62.7745 47.0648C62.7226 47.1163 62.6607 47.1565 62.5927 47.1831C62.5246 47.2098 62.4519 47.2222 62.3788 47.2196C62.2272 47.2114 62.0842 47.1466 61.9781 47.0379C61.8721 46.9292 61.8107 46.7847 61.8062 46.6329V46.1073C61.8049 46.0346 61.8184 45.9624 61.8459 45.8952C61.8734 45.8279 61.9143 45.7669 61.9661 45.716C62.0179 45.665 62.0796 45.6252 62.1473 45.5989C62.2151 45.5725 62.2874 45.5603 62.3601 45.5628Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M62.4915 47.6138C62.6427 47.6208 62.7857 47.6846 62.8919 47.7925C62.998 47.9004 63.0595 48.0444 63.0641 48.1957V48.5102C63.0661 48.5832 63.0531 48.6559 63.0259 48.7237C62.9987 48.7916 62.9579 48.8531 62.906 48.9046C62.8541 48.956 62.7922 48.9963 62.7241 49.0229C62.6561 49.0495 62.5833 49.0619 62.5103 49.0593C62.3595 49.0534 62.2165 48.9906 62.1103 48.8835C62.004 48.7763 61.9423 48.6329 61.9377 48.482V48.1817C61.9357 48.1086 61.9487 48.0359 61.9759 47.9681C62.0031 47.9003 62.0439 47.8388 62.0958 47.7873C62.1477 47.7359 62.2096 47.6956 62.2776 47.669C62.3457 47.6424 62.4185 47.63 62.4915 47.6325" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M62.3601 49.7071C62.5112 49.713 62.6543 49.7767 62.7599 49.885C62.8656 49.9932 62.9257 50.1378 62.928 50.289V50.8428C62.9293 50.9159 62.9157 50.9885 62.8879 51.0561C62.8602 51.1237 62.8188 51.1849 62.7665 51.2359C62.7142 51.2869 62.652 51.3266 62.5837 51.3527C62.5154 51.3787 62.4425 51.3905 62.3695 51.3873C62.2184 51.3813 62.0753 51.3176 61.9697 51.2094C61.864 51.1011 61.8039 50.9565 61.8016 50.8053V50.2515C61.8003 50.1784 61.8139 50.1058 61.8417 50.0382C61.8694 49.9707 61.9108 49.9095 61.9631 49.8585C62.0154 49.8074 62.0776 49.7677 62.1459 49.7417C62.2142 49.7156 62.2871 49.7038 62.3601 49.7071Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M59.0278 45.5581C59.1283 45.5629 59.2231 45.6059 59.2929 45.6783C59.3627 45.7507 59.4022 45.8471 59.4033 45.9477V46.6845C59.4039 46.733 59.3947 46.781 59.3762 46.8258C59.3577 46.8706 59.3303 46.9111 59.2956 46.9449C59.2609 46.9787 59.2196 47.0051 59.1744 47.0225C59.1292 47.0399 59.0809 47.0478 59.0325 47.0459C58.9316 47.04 58.8367 46.996 58.767 46.9228C58.6974 46.8496 58.658 46.7527 58.657 46.6517V45.9148C58.6563 45.8666 58.6655 45.8187 58.6841 45.7742C58.7026 45.7296 58.7302 45.6894 58.7649 45.6559C58.7997 45.6225 58.841 45.5965 58.8862 45.5797C58.9314 45.5629 58.9796 45.5555 59.0278 45.5581Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M58.9575 47.4778C59.0576 47.4837 59.1518 47.527 59.2214 47.5992C59.2909 47.6714 59.3308 47.7671 59.333 47.8674V48.5854C59.3337 48.6337 59.3245 48.6816 59.3059 48.7261C59.2873 48.7706 59.2598 48.8109 59.225 48.8443C59.1903 48.8778 59.149 48.9037 59.1038 48.9205C59.0586 48.9374 59.0104 48.9447 58.9622 48.9421C58.8621 48.9363 58.7679 48.8929 58.6983 48.8207C58.6288 48.7486 58.5889 48.6528 58.5867 48.5526V47.8392C58.5847 47.7908 58.5928 47.7425 58.6106 47.6974C58.6283 47.6523 58.6553 47.6115 58.6897 47.5774C58.7242 47.5434 58.7654 47.517 58.8107 47.4998C58.856 47.4826 58.9044 47.4752 58.9528 47.4778" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M59.0186 49.5896C59.1183 49.5966 59.2119 49.6402 59.2813 49.7122C59.3506 49.7842 59.3908 49.8793 59.3941 49.9792V50.655C59.3954 50.703 59.3868 50.7508 59.3688 50.7953C59.3508 50.8399 59.3237 50.8802 59.2893 50.9137C59.2549 50.9472 59.2139 50.9732 59.1689 50.9901C59.1239 51.007 59.076 51.0143 59.028 51.0117C58.9271 51.007 58.8317 50.9642 58.7612 50.8918C58.6906 50.8195 58.6501 50.7232 58.6478 50.6222V49.951C58.6465 49.9028 58.6551 49.8548 58.6731 49.8101C58.6911 49.7653 58.7181 49.7247 58.7524 49.6909C58.7867 49.657 58.8277 49.6305 58.8726 49.6131C58.9176 49.5957 58.9657 49.5877 59.0139 49.5896" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.403 45.4926C60.5275 45.4926 60.6469 45.542 60.7349 45.63C60.8229 45.718 60.8724 45.8374 60.8724 45.9619V46.5392C60.8773 46.6021 60.8686 46.6653 60.8467 46.7245C60.8249 46.7836 60.7905 46.8374 60.7459 46.882C60.7013 46.9266 60.6475 46.961 60.5883 46.9828C60.5292 47.0047 60.4659 47.0134 60.403 47.0085C60.2808 47.0017 60.1653 46.9501 60.0787 46.8635C59.9921 46.7769 59.9405 46.6614 59.9337 46.5392V45.9619C59.9288 45.899 59.9375 45.8358 59.9594 45.7766C59.9812 45.7174 60.0156 45.6637 60.0602 45.6191C60.1048 45.5744 60.1586 45.54 60.2178 45.5182C60.2769 45.4964 60.3402 45.4876 60.403 45.4926Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.3936 47.4355C60.5181 47.4355 60.6375 47.485 60.7255 47.573C60.8135 47.661 60.863 47.7804 60.863 47.9049V48.3742C60.863 48.4987 60.8135 48.6181 60.7255 48.7061C60.6375 48.7941 60.5181 48.8435 60.3936 48.8435C60.2714 48.8368 60.1559 48.7852 60.0693 48.6986C59.9827 48.612 59.9311 48.4965 59.9243 48.3742V47.9049C59.9243 47.7804 59.9738 47.661 60.0618 47.573C60.1498 47.485 60.2692 47.4355 60.3936 47.4355Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.3656 49.5239C60.4878 49.5307 60.6033 49.5823 60.6899 49.6689C60.7765 49.7555 60.8281 49.871 60.8349 49.9933V50.5705C60.8364 50.6315 60.8251 50.6921 60.8017 50.7485C60.7783 50.8048 60.7434 50.8556 60.6992 50.8976C60.6549 50.9396 60.6024 50.9719 60.5449 50.9924C60.4875 51.0128 60.4264 51.021 60.3656 51.0164C60.2411 51.0164 60.1217 50.967 60.0337 50.8789C59.9457 50.7909 59.8962 50.6716 59.8962 50.5471V49.9698C59.8921 49.9071 59.9014 49.8442 59.9235 49.7854C59.9456 49.7266 59.98 49.6732 60.0245 49.6287C60.0689 49.5843 60.1223 49.5499 60.1812 49.5277C60.24 49.5056 60.3029 49.4963 60.3656 49.5005" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M61.9001 45.3658C62.0513 45.3728 62.1943 45.4366 62.3004 45.5445C62.4066 45.6524 62.4681 45.7964 62.4727 45.9477V46.4734C62.4747 46.5466 62.4616 46.6195 62.434 46.6874C62.4065 46.7554 62.3652 46.8168 62.3127 46.868C62.2603 46.9191 62.1977 46.9589 62.1291 46.9846C62.0605 47.0104 61.9873 47.0217 61.9142 47.0178C61.7634 47.0107 61.621 46.9467 61.5156 46.8387C61.4102 46.7307 61.3497 46.5867 61.3463 46.4358V45.9102C61.3449 45.8371 61.3586 45.7645 61.3863 45.6969C61.4141 45.6293 61.4554 45.5682 61.5078 45.5171C61.5601 45.4661 61.6223 45.4264 61.6906 45.4003C61.7589 45.3743 61.8318 45.3625 61.9048 45.3658" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M62.0317 47.4166C62.1833 47.4225 62.3269 47.486 62.4333 47.5942C62.5397 47.7023 62.6009 47.8469 62.6043 47.9986V48.313C62.6056 48.3863 62.592 48.4591 62.5643 48.5269C62.5366 48.5947 62.4953 48.6562 62.4431 48.7076C62.3908 48.759 62.3286 48.7992 62.2603 48.8257C62.192 48.8523 62.1191 48.8647 62.0458 48.8621C61.8942 48.8562 61.7506 48.7927 61.6442 48.6846C61.5379 48.5764 61.4767 48.4318 61.4732 48.2802V47.9657C61.4719 47.8924 61.4855 47.8197 61.5133 47.7518C61.541 47.684 61.5822 47.6225 61.6345 47.5711C61.6867 47.5197 61.7489 47.4795 61.8172 47.453C61.8855 47.4264 61.9585 47.414 62.0317 47.4166Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M61.8955 49.51C62.0467 49.517 62.1897 49.5809 62.2959 49.6888C62.402 49.7967 62.4635 49.9407 62.4681 50.092V50.6458C62.4688 50.7187 62.4547 50.7909 62.4267 50.8582C62.3987 50.9255 62.3573 50.9864 62.3051 51.0373C62.2529 51.0882 62.191 51.128 62.123 51.1542C62.055 51.1805 61.9824 51.1928 61.9096 51.1902C61.7584 51.1832 61.6154 51.1193 61.5092 51.0114C61.4031 50.9035 61.3416 50.7596 61.337 50.6083V50.0591C61.3357 49.9865 61.3492 49.9143 61.3767 49.847C61.4041 49.7798 61.4451 49.7188 61.4969 49.6679C61.5487 49.6169 61.6103 49.5771 61.6781 49.5507C61.7458 49.5244 61.8182 49.5121 61.8908 49.5147" fill="white"/>
|
||||
<path d="M27.4512 60.3843C27.4512 60.3843 37.1898 70.9443 40.4751 72.5072C43.7605 74.07 42.3525 60.619 43.7605 57.1647C45.1685 53.7104 47.1115 52.1898 46.905 53.2223C46.6985 54.2548 46.3042 56.1603 46.3042 56.1603C46.3042 56.1603 49.9697 58.0752 48.0736 60.9897C46.1775 63.9043 47.7357 63.5523 47.7357 63.5523C47.7357 63.5523 53.5413 81.3212 43.1738 82.2552L27.4512 60.3843Z" fill="#DBDBDC"/>
|
||||
<path d="M25.3017 141.349H8.34472L0 174.554L14.9107 178.825L12.6485 176.553L25.3017 141.349Z" fill="#1F3563"/>
|
||||
<path d="M43.127 176.394L42.2118 144.46L25.3394 138.655L31.3046 178.825H46.3091L43.127 176.394Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.3879 179.177H1.21094V178.473H49.3879V179.177Z" fill="#B7BBCE"/>
|
||||
<path d="M34.3974 44.3472L35.0217 44.2346C35.0217 44.2346 34.2754 43.3992 34.7588 39.4568C35.2422 35.5144 29.5586 34.4396 26.4657 37.861C21.8897 42.9158 25.0108 54.94 25.0108 54.94H33.5151C33.5151 54.94 32.0273 49.89 32.0273 48.1817C32.0273 48.1817 29.8684 48.5102 28.742 47.2946C34.7541 48.7965 34.374 44.3472 34.374 44.3472" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.6046 42.6297C32.4362 42.6297 32.2746 42.6963 32.155 42.8149L31.8245 42.4817C32.0319 42.2759 32.3123 42.1604 32.6046 42.1604C32.8968 42.1604 33.1772 42.2759 33.3847 42.4817L33.0541 42.8149C32.9346 42.6963 32.773 42.6297 32.6046 42.6297Z" fill="white"/>
|
||||
<path d="M33.5104 44.8965C33.3476 45.0584 33.1274 45.1493 32.8979 45.1493C32.6683 45.1493 32.4481 45.0584 32.2854 44.8965H33.5104Z" fill="#0B4B9B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.7168 44.6616H34.0787L33.6758 45.0626C33.4691 45.2683 33.1893 45.3838 32.8977 45.3838C32.6061 45.3838 32.3264 45.2683 32.1197 45.0626L31.7168 44.6616Z" fill="#0B4B9B"/>
|
||||
<path d="M35.9274 40.6255H29.4975C29.4975 40.6255 27.3339 45.2953 28.1505 49.5897L18.9751 48.4493C18.9751 48.4493 19.0267 34.0407 27.2166 33.5714C35.4064 33.1021 35.9274 40.6114 35.9274 40.6114" fill="#DBDBDC"/>
|
||||
<path d="M25.7193 50.7912C17.98 52.0349 21.5469 76.4355 21.5469 76.4355H42.9297C41.5452 57.634 33.4586 49.5474 25.7193 50.7912Z" fill="white"/>
|
||||
<path d="M42.9298 76.4354C41.7518 68.1094 28.7044 73.4739 28.7044 73.4739L21.547 76.4354L1.21558 142.517L46.3137 149.05C46.3137 149.05 44.1078 84.7519 42.9298 76.4307" fill="white"/>
|
||||
<path d="M40.6677 69.7195L28.7044 63.0737C28.7044 63.0737 28.2022 68.5274 39.6586 75.1637C39.6586 75.1637 45.7224 75.0746 40.6677 69.7195Z" fill="#DBDBDC"/>
|
||||
<path d="M58.1924 53.0157C57.6386 51.6687 56.8219 49.66 56.2681 51.7532C56.0021 52.8755 55.5652 53.9503 54.9728 54.94C54.9728 54.94 54.5034 53.776 54.0763 54.0529C53.6493 54.3298 54.1421 56.3996 54.1421 56.3996L45.9898 63.2471L39.0014 56.4231L27.4746 64.871C27.4746 64.871 30.3845 67.9874 42.0568 73.319C53.729 78.6506 57.9436 57.831 57.9436 57.831C57.9436 57.831 58.7462 54.3392 58.1924 52.9922" fill="white"/>
|
||||
<path d="M33.745 52.5231C33.6759 52.1997 33.5115 51.9044 33.2732 51.6753C33.0348 51.4461 32.7333 51.2935 32.4074 51.2371L24.1472 49.8291L23.415 52.6451L33.9891 53.6823L33.745 52.5231Z" fill="#DBDBDC"/>
|
||||
<path d="M26.4516 53.4523C23.5558 56.0196 24.4429 61.7454 28.4322 66.2416L38.9077 56.9629C34.9184 52.462 29.3427 50.8898 26.4516 53.4523Z" fill="white"/>
|
||||
<path d="M53.5508 52.9314C53.5883 52.0209 54.7522 53.3398 54.7522 53.3398C54.7522 53.3398 54.9024 48.3602 56.8642 50.5238C59.4831 53.4008 58.0141 57.3807 58.0141 57.3807L54.7288 56.7143C54.1937 56.2449 53.5132 53.8466 53.5461 52.9596" fill="#4071B7"/>
|
||||
<path d="M47.806 61.0414C48.9653 60.6378 48.496 58.3991 48.496 58.3991C49.5285 56.3762 46.4403 55.4376 46.4403 55.4376C46.4403 55.4376 47.379 53.7245 46.8721 52.9032C46.3652 52.0818 44.4269 55.5971 43.8449 57.1553C43.7275 57.4651 42.4697 59.7742 43.1503 60.8114C43.568 61.445 44.3471 61.9425 45.3749 63.0736L47.806 61.0414Z" fill="#4071B7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.9785 63.1609L38.7807 56.124L38.4526 56.4596L45.9544 63.7937L54.2742 56.8142L53.9726 56.4546L45.9785 63.1609Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_501_29674">
|
||||
<rect width="320" height="190.666" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 39 KiB |
Loading…
Add table
Reference in a new issue