app-MAIL-temp/static/assets/images/flags/hr.svg
Son NK c18d9f5280 create BaseForm to enable CSRF
register page

redirect user to dashboard if they are logged in

enable csrf for login page

Set models more strict

bootstrap developer page

add helper method to ModelMixin, remove CRUDMixin

display list of clients on developer index, add copy client-secret to clipboard using clipboardjs

add toastr and use jquery non slim

display a toast when user copies the client-secret

create new client, generate client-id using unidecode

client detail page: can edit client

add delete client

implement /oauth/authorize and /oauth/allow-deny

implement /oauth/token

add /oauth/user_info endpoint

handle scopes: wip

take into account scope: display scope, return user data according to scope

create virtual-domain, gen email, client_user model WIP

create authorize_nonlogin_user page

user can choose to generate a new email

no need to interfere with root logger

log for before and after request

if user has already allowed a client: generate a auth-code and redirect user to client

get_user_info takes into account gen email

display list of clients that have user has authorised

use yk-client domain instead of localhost as cookie depends on the domain name

use wtforms instead of flask_wtf

Dockerfile

delete virtual domain

EMAIL_DOMAIN can come from env var

bind to host 0.0.0.0

fix signup error: use session as default csrf_context

rename yourkey to simplelogin

add python-dotenv, ipython, sqlalchemy_utils

create DB_URI, FLASK_SECRET. Load config from CONFIG file if exist

add shortcuts to logging

create shell

add psycopg2

do not add local data in Dockerfile

add drop_db into shell

add shell.prepare_db()

fix prepare_db

setup sentry

copy assets from tabler/dist

add icon downloaded from https://commons.wikimedia.org/wiki/File:Simpleicons_Interface_key-tool-1.svg

integrate tabler - login and register page

add favicon

template: default, header. Use gravatar for user avatar url

use default template for dashboard, developer page

use another icon

add clipboard and notie

prettify dashboard

add notie css

add fake gen email and client-user

prettify list client page, use notie for toast

add email, name scope to new client

display client scope in client list

prettify new-client, client-detail

add sentry-sdk and blinker

add arrow, add dt jinja filter, prettify logout, dashboard

comment "last used" in dashboard for now

prettify date display

add copy email to clipboard to dashboard

use "users" as table name for User as "user" is reserved key in postgres

call prepare_db() when creating new db

error page 400, 401, 403, 404

prettify authorize_login_user

create already_authorize.html for user who has already authorized a client

user can generate new email

display all other generated emails

add ENV variable, only reset DB when ENV=local

fix: not return other users gen emails

display nb users for each client

refactor shell: remove prepare_db()

add sendgrid

add /favicon.ico route

add new config: URL, SUPPORT_EMAIL, SENDGRID_API_KEY

user needs to activate their account before login

create copy button on dashboard

client can have multiple redirect uris, in client detail can add/remove redirect-uri,

use redirect_uri passed in /authorize

refactor: move get_user_info into ClientUser model

dashboard: display all apps, all generated emails

add "id" into user_info

add trigger email button

invalidate the session at each new version by changing the secret

centralize Client creation into Client.create_new

user can enable/disable email forwarding

setup auto dismiss alert: just add .alert-auto-dismiss

move name down in register form

add shell.add_real_data

move blueprint template to its own package

prettify authorize page for non-authenticated user

update readme, return error if not redirect_uri

add flask-wtf, use psycopg2-binary

use flask-wtf FlaskForm instead of Form

rename email -> email_utils

add AWS_REGION, BUCKET, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY to config

add s3 module

add File model, add Client.icon_id

handle client icon update

can create client with icon

display client icon in client list page

add Client.home_url

take into account Client.home_url

add boto3

register: ask name first

only show "trigger test email" if email forwarding is enabled

display gen email in alphabetical order, client in client.name alphabetical order

better error page

the modal does not get close when user clicks outside of modal

add Client.published column

discover page that displays all published Client

add missing bootstrap.bundle.min.js.map

developer can publish/unpublish their app in discover

use notie for display flash message

create hotmail account

fix missing jquery

add footer, add global jinja2 variable

strengthen model: use nullable=False whenever possible,

rename client_id to oauth_client_id, client_secret to oauth_client_secret

add flask-migrate

init migrate

1st migrate version

fix rename client_id -> oauth_client_id

prettify UI

use flask_migrate.upgrade() instead of db.create_all()

make sure requirejs.config is called for all page

enable sentry for js, use uppercase for global jinja2 variables

add flask-admin

add User.is_admin column

setup flask admin, only accessible to admin user

fix migration: add server_default

replace session[redirect_after_login] by "next" request args

add pyproject.toml: ignore migrations/ in black

add register waiting_activation_email page

better email wording

add pytest

add get_host_name_and_scheme and tests

example fail test

fix test

fix client-id display

add flask-cors

/user_info supports cors, add /me as /user_info synonym

return client in /me

support implicit flow

no need to use with "app.app_context()"

add watchtower to requirement

add param ENABLE_CLOUDWATCH, CLOUDWATCH_LOG_GROUP, CLOUDWATCH_LOG_STREAM

add cloudwatch logger if cloudwatch is enabled

add 500 error page

add help text for list of used client

display list of app/website that an email has been used

click on client name brings to client detail page

create style.css to add additional style, append its url with the current sha1 to avoid cache

POC on how to send email using postfix

add sqlalchemy-utils

use arrow instead of datetime

add new params STRIPE_API, STRIPE_YEARLY_SKU, STRIPE_MONTHLY_PLAN

show full error in local

add plan, plan_expiration to User, need to create enum directly in migration script, cf https://github.com/sqlalchemy/alembic/issues/67

reformat all html files: use space instead of tab

new user will have trial plan for 15 days

add new param MAX_NB_EMAIL_FREE_PLAN

only user with enough quota can create new email

if user cannot create new gen email, pick randomly one from existing gen emails. Use flush instead of commit

rename STRIPE_YEARLY_SKU -> STRIPE_YEARLY_PLAN

open client page in discover in a new tab

add stripe

not logging /static call: disable flask logging, replace by after_request

add param STRIPE_SECRET_KEY

add 3 columns stripe_customer_id, stripe_card_token, stripe_subscription_id

user can upgrade their pricing

add setting page as coming-soon

add GenEmail, ClientUser to admin

ignore /admin/static logging

add more fake data

add ondelete="cascade" whenever possible

rename plan_expiration -> trial_expiration

reset migration: delete old migrations, create new one

rename test_send_email -> poc_send_email to avoid the file being called by pytest

add new param LYRA_ANALYTICS_ID, add lyra analytics

add how to create new migration into readme

add drift to base.html

notify admin when new user signs up or pays subscription

log exception in case of 500

use sendgrid to notify admin

add alias /userinfo to user_info endpoint

add change_password to shell

add info on how payment is handled

invite user to retry if card not working

remove drift and add "contact us" link

move poc_send_email into poc/

support getting client-id, client-secret from form-data in addition to basic auth

client-id, client-secret is passed in form-data by passport-oauth2 for ex

add jwtRS256 private and public key

add jwk-jws-jwt poc

add new param OPENID_PRIVATE_KEY_PATH, OPENID_PRIVATE_KEY_PATH

add scope, redirect_url to AuthorizationCode and OauthToken

take into scope when creating oauth-token, authorization-code

add jwcrypto

add jose_utils: make_id_token and verify_id_token

add &scope to redirect uri

add "email_verified": True into user_info

fix user not activated

add /oauth2 as alias for /oauth

handle case where scope and state are empty

remove threaded=False

Use Email Alias as wording

remove help text

user can re-send activation email

add "expired" into ActivationCode

Handle the case activation code is expired

reformat: use form.validate_on_submit instead of request.method == post && form.validate

use error text instead of flash()

display client oauth-id and oauth-secret on client detail page

not display oauth-secret on client listing

fix expiration check

improve page title, footer

add /jwks and /.well-known/openid-configuration

init properly tests, fix blueprint conflict bug in flask-admin

create oauth_models module

rename Scope -> ScopeE to distinguish with Scope DB model

set app.url_map.strict_slashes = False

use ScopeE instead of SCOPE_NAME, ...

support access_token passed as args in /userinfo

merge /allow-deny into /authorize

improve wording

take into account the case response_type=code and openid is in scope

take into account response_type=id_token, id_token token, id_token code

make sure to use in-memory db in test

fix scope can be null

allow cross_origin for /.well-known/openid-configuration and /jwks

fix footer link

center authorize form

rename trial_expiration to plan_expiration

move stripe init to create_app()

use real email to be able to receive email notification

add user.profile_picture_id column

use user profile picture and fallback to gravatar

use nguyenkims+local@gm to distinguish with staging

handle plan cancel, reactivation, user profile update

fix can_create_new_email

create cron.py that set plan to free when expired

add crontab.yml

add yacron

use notify_admin instead of LOG.error

add ResetPasswordCode model

user can change password in setting

increase display time for notie

add forgot_password page

If login error: redirect to this page upon success login.

hide discover tab

add column user.is_developer

only show developer menu to developer

comment out the publish button

set local user to developer

make sure only developer can access /developer blueprint

User is invited to upgrade if they are in free plan or their trial ends soon

not sending email when in local mode

create Partner model

create become partner page

use normal error handling on local

fix migration

add "import sqlalchemy_utils" into migration template

small refactoring on setting page

handle promo code. TODO: add migration file

add migration for user.promo_codes

move email alias on top of apps in dashboard

add introjs

move encode_url to utils

create GenEmail.create_new_gen_email

create a first alias mail to show user how to use when they login

show intro when user visits the website the first time

fix register
2019-07-02 10:20:12 +03:00

1 line
78 KiB
XML
Executable File

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480"><path fill="#171796" d="M0 0h640v480H0z"/><path fill="#fff" d="M0 0h640v320H0z"/><path fill="red" d="M0 0h640v160H0z"/><path d="M320.03 364.15c51.322 0 93.31-41.99 93.31-93.31V159.964H226.72V270.84c0 51.322 41.99 93.31 93.308 93.31z" fill="red"/><path d="M320.03 362.654c50.343 0 91.53-41.19 91.53-91.53V161.76H228.5v109.365c0 50.342 41.188 91.53 91.53 91.53z" fill="#fff"/><g fill="red"><path d="M267.133 165.2H231.91v38.7h35.223zm0 77.4h35.225v-38.7h-35.225zm-35.223 28.31c0 3.513.217 6.98.622 10.39h34.6v-38.7H231.91v28.31zm105.675-28.31h-35.227v38.7h35.227zm0 77.398h35.224V281.3h-35.225zm35.225 21.17A89.19 89.19 0 0 0 392.92 320h-20.11v21.168zm-105.674-21.17h35.224V281.3h-35.224zm-20.144 0a89.168 89.168 0 0 0 20.144 21.194v-21.194h-20.144zm79.114 38.702c3.898-.274 7.73-.8 11.476-1.567v-37.135h-35.224v37.14a87.06 87.06 0 0 0 11.443 1.558c4.103.254 8.204.24 12.304 0z"/><path d="M407.375 281.3c.407-3.422.625-6.9.625-10.426v-28.272h-35.193v38.7h34.568zm-69.79-38.7h35.224v-38.7h-35.225zm0-77.4H302.36v38.7h35.225zM408 203.9v-38.7h-35.19v38.7z"/></g><path d="M409.972 158.83l21.84-49.51-16.64-26.87-27.567 10.207-19.355-22.125-25.504 14.616-22.742-18.626-22.74 18.626-25.505-14.616L252.4 92.655l-27.57-10.206-16.643 26.875L230 158.843c27.485-12.44 57.96-19.372 90.005-19.372 32.03 0 62.49 6.927 89.97 19.36z" fill="#fff"/><path d="M253.008 94.842l-.04.047-27.338-10.124-15.3 24.7 5.86 13.325 14.847 33.702a219.67 219.67 0 0 1 34.582-11.962l-12.61-49.686z" fill="#0093dd"/><path d="M251.435 119.268a13.258 13.258 0 0 1 1.533 6.2c0 7.36-6.002 13.363-13.362 13.363-6.486 0-11.917-4.662-13.116-10.807 2.308 4.08 6.69 6.844 11.694 6.844 7.395 0 13.428-6.03 13.428-13.43 0-.738-.06-1.463-.177-2.172z" fill="#fff" stroke="#000" stroke-width=".28"/><path d="M227.59 113.915l.93-4.794-3.677-3.215-.17-.15.213-.072 4.618-1.59.945-4.794.044-.22.17.145 3.686 3.207 4.623-1.58.216-.072-.046.22-.932 4.796 3.68 3.216.17.147-.215.072-4.618 1.593-.947 4.793-.045.22-.168-.148-3.687-3.204-4.623 1.578-.216.073z"/><path d="M233.64 107.59l3.447 3.007 4.315-1.485zm.027-.15l7.766 1.517-3.436-3.004zm-8.337-1.634l7.764 1.52-3.448-3.006zm7.735 1.674l-7.765-1.52 3.436 3.002zm.435-.293l5.198-5.964-4.32 1.474zm-5.584 6.405l5.2-5.964-4.328 1.484zm5.318-5.862l-5.2 5.964 4.32-1.474zm5.583-6.405l-5.2 5.964 4.328-1.484zm-5.619 5.881l-2.566-7.483-.884 4.48zm2.756 8.038l-2.566-7.483-.88 4.49zm-2.419-7.534l2.566 7.484.885-4.478zm-2.755-8.04l2.565 7.487.88-4.49z" fill="#f7db17"/><path d="M297.5 87.406l-.047.038-25.29-14.493-19.155 21.892 12.61 49.686a219.78 219.78 0 0 1 36.117-6.033l-4.237-51.09z" fill="#171796"/><path d="M262.49 132.196a232.25 232.25 0 0 1 38.195-6.38l-1.07-12.913a245.548 245.548 0 0 0-40.315 6.732l3.187 12.56zm-6.34-24.971a257.957 257.957 0 0 1 42.405-7.082l-1.052-12.678a270.72 270.72 0 0 0-44.483 7.43l3.13 12.33z" fill="red"/><g transform="translate(-160) scale(.00237)"><path d="M212105 36890l-23 13-9517-7794-9497 7778 1788 21560c2543-210 5113-322 7709-322 2608 0 5190 113 7744 325l1795-21560z" fill="#0093dd"/><g id="a"><path d="M202545 46585c-18-2-44 10-69 45-186 250-359 469-545 720-195 61-242 180-167 348-261-26-291 193-302 432-250-379-522-482-814-307-11-230-187-338-439-392-180-10-319-65-436-145-60-42-110-64-170-106-126-88-226-5-172 74 267 434 535 868 802 1302-14 80 6 151 88 204 47 133 93 265 140 397-11 38-21 75-32 113-221-105-443-118-664-133-170-8-287-50-361-137-54-63-91-26-92 82-3 534 162 1014 599 1492-231 4-462 11-694 21-79 6-95 39-73 104 126 304 339 579 822 766-208 112-327 285-357 520-9 224-75 382-212 455-60 32-81 65-24 106 253 185 565 193 895 112-157 270-226 553-198 850 208 56 412 15 614-52-29 61-44 175-52 309-7 115-41 229-104 343-32 33-65 84 4 102 336 91 648 52 915-47 0 243 2 487 76 727 18 58 70 102 125 26 155-214 322-396 527-517 31 90 75 168 156 215 96 55 147 170 153 343 0 30-2 60 35 90 149 7 514-380 589-597 206 121 284 246 439 461 55 76 99 29 128-25 62-243 67-481 66-724 267 99 579 138 915 47 69-19 36-70 4-102-62-114-105-250-113-365-9-133-14-226-43-287 202 68 405 108 614 52 29-297-53-579-211-850 330 80 655 73 908-112 57-41 35-74-24-106-136-73-203-231-212-455-30-235-149-409-357-520 483-187 696-463 822-766 22-66 6-99-73-104-231-10-480-24-711-27 437-478 606-961 604-1495-1-108-38-146-92-82-74 87-179 137-348 146-222 15-435 24-656 128-11-38-21-75-32-113 46-132 106-260 153-393 82-53 102-123 88-204 267-434 513-868 781-1302 54-79-46-162-171-74-60 42-110 64-170 106-117 80-257 134-437 145-251 54-417 167-428 397-293-175-564-73-814 307-11-239-41-457-302-432 75-168 17-291-178-352-186-250-458-470-644-720-31-35-51-47-69-45z"/><g fill="#f7db17"><path d="M205075 47978c-51-26-124 17-162 95s-33 170 19 196c40 20 84-6 119-56l22-36c2-3 4-6 5-9 38-78 49-163-2-188zm-5008 0c52-26 124 17 162 95s39 165-13 191-103-24-141-102-60-158-9-184zm4539 905c-32 0-59 27-59 59s26 59 59 59 59-26 59-59c0-32-26-59-59-59zm-4032 0c-32 0-59 26-59 59 0 32 26 59 59 59s59-26 59-59-26-59-59-59zm4294-304c-754-91-1506-133-2260-133s-1509 41-2269 115c-26 8-21 90 14 86 756-73 1507-113 2256-113 743 0 1485 40 2228 129 39 4 54-80 32-84z"/><path d="M200319 48495c768-75 1530-117 2289-116 754 0 1507 42 2261 133l111-184c-32 10-62 9-90-5-76-38-92-161-36-274 56-114 164-175 240-138 39 19 62 62 68 114l446-739c-204 130-328 214-581 252-281 41-409 139-368 307 38 156-57 133-201 54-314-171-541 71-652 353-73 186-159 181-168-13-4-70 0-131-7-200-21-223-89-286-216-224-161 78-175 25-137-58 28-60 86-128 66-221-9-67-66-92-151-98-182-244-467-483-649-727-182 244-374 483-556 727-86 5-142 30-152 98-20 93 52 157 80 217 38 82 23 135-137 57-127-61-186-3-207 220-7 69-10 139-13 209-9 194-95 199-168 13-111-282-352-524-667-353-145 79-203 102-182-54 23-172-107-266-388-307-253-37-377-122-581-252l419 682c12-25 29-45 53-57 76-38 184 24 240 138 56 113 40 237-36 274-10 5-21 8-32 10l100 163zm4389 911c-7 3-7 4-24 11-46 19-80 66-134 124-57 60-128 125-211 188-12 10-25 19-44-6s-7-35 6-44c80-62 149-124 204-182 30-32 56-63 77-92-95-11-190-21-284-30-79 24-157 55-222 95-59 35-107 77-137 125-8 14-16 27-44 11-27-16-19-30-11-44 35-58 91-107 158-147 33-20 69-38 106-54-107-9-214-18-321-25-22 13-42 29-61 47-20 19-39 42-56 67-9 13-18 26-44 8s-18-31-8-44c19-29 41-54 64-77l9-9c-80-5-161-10-241-14-2 2-5 5-8 7-21 18-40 38-55 59s-28 43-38 67c-6 15-12 29-41 18-29-12-23-26-17-41 12-29 27-55 45-81 8-11 18-22 27-33-115-5-230-9-344-12-4 5-9 8-14 11-25 15-47 32-66 51s-35 40-48 63c-8 14-16 28-43 12-28-16-20-29-12-43 16-28 35-54 59-77 7-7 14-13 21-19-122-2-244-4-365-4-120 0-240 1-360 3 8 7 15 13 22 20 23 23 42 49 59 77 8 14 16 27-12 43s-35 2-44-12c-13-23-29-44-48-63s-41-36-66-51c-6-3-12-7-15-12-115 2-230 6-345 11 11 11 20 23 29 35 19 25 33 52 45 81 6 15 12 29-17 41s-35-3-41-18c-9-24-22-46-38-67-15-21-34-41-55-59-4-3-7-6-10-10-81 4-162 8-243 13 4 4 9 8 13 12 24 23 45 48 64 77 9 13 18 26-8 44s-35 5-44-8c-18-26-36-48-56-67s-41-35-64-49c-1-1-3-2-5-3-110 7-220 14-330 23 43 18 85 38 122 61 67 40 124 89 158 147 8 14 16 27-11 44-27 16-35 3-44-11-29-48-78-90-137-125-72-44-159-77-246-102h-2c-90 7-179 15-268 24 22 33 51 68 86 106 55 58 124 120 204 182 13 9 25 19 6 44s-32 15-44 6c-83-64-155-128-211-188-37-38-99-111-135-140-196-90-354-127-575-147-153-14-318-9-458-79 36 85 75 164 126 229 53 68 120 121 209 147 8 2 21 16 22 25 28 157 84 286 169 386 52 60 114 110 188 149-75-81-132-166-172-251-67-142-90-286-77-420 1-16 3-32 34-29 32 3 30 19 29 35-11 123 9 256 72 387 56 118 159 237 291 346 24 19 0 63-29 55-154-44-290-123-383-231-89-104-149-237-180-397-94-32-165-90-222-164-47-60-85-131-118-205 28 428 182 801 456 1137 61 75 165 182 255 216 92 35 95 100-20 101-34 1-69 1-105 1 84 31 164 66 233 105 127 73 217 162 224 273 1 16 2 32-29 34-32 2-33-14-34-29-6-86-82-160-192-223-113-65-259-117-402-160-154 0-312-1-459 3 39 28 80 57 131 84 82 44 188 86 343 122 89 21 166 52 233 91 71 42 130 93 177 150 10 12 20 25-5 45s-34 8-45-5c-42-52-95-98-159-135-61-36-133-64-216-84-161-38-272-81-358-128-75-40-131-82-184-123 180 393 450 573 835 689 23 7 43 13 61 19 3 1 6 1 9 2 86 21 175 40 266 55 92 15 166 28 261 37 16 1 32 3 29 34-3 32-19 30-34 29-99-9-174-22-266-38-58-10-115-21-171-33-26 6-64 9-107 12-232 14-420 225-435 494 0 5 0 11-1 16 88-80 179-157 273-212 117-68 239-103 364-69 15 4 31 8 22 39-8 31-23 27-39 22-106-28-212 3-316 63-108 63-213 158-315 253-24 147-82 285-205 377 61 34 104 65 163 45 86-39 172-78 261-108 91-31 184-52 282-57 16-1 32-1 33 31s-14 32-31 33c-91 4-179 24-264 53-75 26-149 58-222 91 221 47 460-1 667-79 60-22 105-42 133-41 51-30 112-53 172-79 66-28 132-51 182-57 16-2 32-4 35 28 4 32-12 33-28 35-112 13-127 21-222 79 0 21-66 57-126 96-36 24-70 52-87 67-95 86-144 181-188 287-29 70-52 145-68 224 55-108 121-211 201-303 94-108 208-201 345-265 14-7 29-13 42 15 13 29-1 35-15 42-129 60-236 147-324 250-90 103-161 222-219 345-31 64-8 1-42 86 110-122 212-224 323-307 132-100 283-157 418-133 15 3 31 6 26 37s-21 28-37 26c-116-21-250 32-369 121-121 92-244 223-366 361 184 26 366-26 542-85 91-30 183-135 239-152 19-24 38-46 57-67 33-37 67-71 102-100 12-10 24-20 45 4s8 34-4 45c-33 28-65 60-96 94-32 35-62 73-92 113-6 8-13 17-24 16-60 70-151 162-172 240-57 210-25 370-122 576 71-38 128-81 175-134 53-60 94-135 128-230 37-104 95-195 167-270 75-77 165-136 261-172 15-5 30-11 41 19s-4 35-19 41c-87 32-169 86-238 157-66 68-119 151-153 247-37 102-81 183-141 250-44 50-95 91-156 127 52-3 78-10 121-7 79-6 211-66 279-119 66-51 116-120 154-206 6-15 13-29 42-16s23 27 16 42c-42 96-99 174-173 231-56 43-121 75-196 93 161-5 311-42 467-100 65-24 87-168 127-208 32-58 66-112 105-158 47-56 101-101 164-127 15-6 29-12 41 18 12 29-3 35-17 41-52 21-98 60-139 108-36 42-68 93-98 147 10 73-51 228-53 305-7 205-2 409 53 612 53-71 107-134 162-192 0-5 0-10 1-15 18-106 33-219 40-332 7-112 7-223-6-329-2-16-4-32 27-35 32-4 34 12 35 28 14 111 14 226 7 340-6 90-16 180-30 269 54-51 53-51 77-103 37-80 59-159 67-237 9-80 5-157-13-230-4-15-7-31 24-38s35 8 38 24c19 80 25 165 14 252-8 65-24 132-49 199 56-42 114-82 178-122-4-75-5-153-3-227 2-68 7-134 18-190 4-20 7-40 47-33s37 27 33 48c-9 50-14 111-16 177-2 78 0 162 4 243 5 82 49 185 125 230 103 62 158 163 186 274 16-145 17-280 3-400-17-143-55-267-114-368-8-14-16-27 12-44 27-16 35-2 43 12 63 110 104 241 122 393 17 146 13 310-13 488 102-82 381-258 352-594-7-27-16-52-28-75-7-14-14-28 14-42s35 0 42 14c17 33 30 69 39 110 5 24 8 49 11 76 13-7 45-43 51-39 24 16 58 38 80 54-21-60-35-120-42-178-10-87-5-172 14-252 4-15 7-31 38-24s27 23 24 38c-18 73-22 151-13 230 9 77 31 157 67 237 4 8 8 16 5 25 24 21 47 42 70 65-13-84-22-170-28-255-8-115-7-230 7-341 2-16 4-32 35-28s29 20 27 35c-13 106-13 217-6 329 7 113 22 225 40 332 1 2 1 5 1 7 54 59 95 120 152 196 55-203 73-407 66-612-2-76-69-227-65-302-30-55-63-107-100-151-41-49-87-87-139-108-15-6-29-12-18-41 12-29 27-24 41-18 62 26 117 71 164 127 38 45 72 98 103 154 57 7 78 179 143 212 154 57 298 94 453 100-75-19-140-50-195-93-74-57-131-135-173-231-6-15-13-29 16-42s35 2 42 16c38 86 88 156 154 206 85 66 289 124 400 127-61-37-113-78-157-128-59-67-104-148-141-250-34-95-87-179-153-247-68-71-150-124-238-157-15-6-29-11-19-41 11-29 26-24 41-19 96 36 186 94 261 172 72 74 130 166 167 270 34 95 75 169 128 230 47 54 105 98 177 135-98-207-66-367-122-577-35-129-232-277-193-320 45-51 133 88 248 127 175 59 357 111 540 85-122-138-244-269-366-361-119-90-237-140-352-120-16 3-31 6-37-26-5-31 10-34 26-37 135-24 269 32 401 132 111 84 201 175 311 298-18-47 0-14-30-77-59-123-130-241-220-345-89-102-196-189-324-250-14-7-28-13-15-42 13-28 28-22 42-15 137 65 251 157 345 265 81 93 147 198 203 307-15-81-39-157-68-227-44-106-93-201-188-287-62-56-209-140-208-179-29-15-33-11-63-24-61-26-121-46-164-52-16-2-32-4-28-35 4-32 19-30 35-28 50 6 115 28 182 56 33 14 66 43 98 60 53 4 139 47 208 74 206 78 446 126 666 79-73-33-147-65-223-91-85-29-172-49-264-53-16-1-32-1-31-33s17-31 33-31c98 4 191 26 282 57 89 30 175 69 261 108 59 27 101-7 163-45-123-92-181-230-205-376l-2-2c-102-95-207-190-315-253-104-60-210-91-316-63-15 4-31 8-39-22-8-31 7-35 22-39 125-33 247 1 364 69 94 55 186 132 274 213 0-6-1-11-1-17-15-270-203-480-435-494-78-5-189 21-186-32 4-59 97-44 234-86 385-116 655-296 836-690-54 41-110 83-186 124-86 47-198 91-358 128-82 19-154 48-216 84-64 38-117 84-159 135-10 12-20 25-45 5s-14-32-5-45c47-57 106-108 177-150 67-39 145-70 233-91 155-36 261-78 343-122 51-27 92-55 131-84-148-4-305-3-459-3-143 44-289 96-402 160-110 63-186 136-192 223-1 16-2 32-34 29-32-2-31-18-29-34 8-111 97-200 224-273 69-39 149-74 233-105-35 0-70 0-104-1-116-2-112-66-20-101 90-34 190-141 251-216 271-334 412-714 456-1130-33 72-69 140-115 198-57 73-128 131-222 164-31 160-91 293-180 397-92 108-216 185-369 230-29 8-52-35-29-55 132-109 221-226 278-344 62-131 83-264 72-387-1-16-3-32 29-35 31-3 33 13 34 29 12 134-10 278-78 420-40 85-97 170-172 251 73-39 136-89 187-149 85-100 141-229 170-386 1-8 14-22 22-25 89-27 155-79 209-147 51-65 90-143 126-228-140 69-304 64-457 78-213 19-369 68-554 152z"/><path d="M204649 49231c-680-88-1359-113-2041-114-684 0-1369 40-2058 112-20 6-15 33-14 46 2 28 37 35 121 27 643-60 1285-93 1932-93 674 0 1351 21 2038 102 33 9 77-85 22-81z"/><path d="M200570 49160c683-71 1362-110 2038-110 675 0 1349 40 2025 127l31-127c-17 9-37 15-58 15-67 0-123-55-123-123s55-123 123-123c51 0 94 31 113 75l60-170c-724-84-1446-122-2171-122-729 0-1459 38-2193 107l58 164c22-32 59-54 101-54 68 0 123 55 123 123s-55 123-123 123c-12 0-25-2-36-6l33 94-2 7zm3067-416c-68 0-123 55-123 123s55 123 123 123 123-55 123-123-55-123-123-123zm0 64c-33 0-59 27-59 59s26 59 59 59c32 0 59-27 59-59s-26-59-59-59zm-1082-91c-67 0-123 55-123 123s55 123 123 123 123-55 123-123-55-123-123-123zm0 64c-32 0-59 26-59 59s26 59 59 59 59-26 59-59c0-32-26-59-59-59zm-1064-40c-68 0-123 55-123 123s55 123 123 123c67 0 123-55 123-123s-55-123-123-123zm0 64c-33 0-59 26-59 59s26 59 59 59c32 0 59-26 59-59 0-32-26-59-59-59z" fill-rule="evenodd"/></g><path d="M202601 47974c-14-68-49-129-100-175-51-47-116-78-187-88-33-4-39-58-7-68 60-20 114-67 157-133 45-69 79-157 95-256 5-34 64-35 69-1 15 84 51 153 97 208 55 66 125 112 193 138 31 12 25 63-8 68-59 9-105 42-141 87-50 62-81 145-100 221-8 33-62 31-69-2zm33-118c20-52 47-103 81-146 28-34 60-64 99-84-51-30-100-70-143-120-28-34-53-73-73-116-19 59-45 112-75 158-31 47-67 86-108 116 50 19 95 47 134 82 34 31 63 68 85 110zm799 5115l-515 206c-17 7-35 14-48-21-14-34 4-41 21-48l515-206c17-7 35-14 48 21 14 34-4 41-21 48zm59-326l-604 328c-16 9-33 18-51-15s-1-42 15-51l604-328c16-9 33-18 51 15s1 42-15 51zm-1826-65l604 328c16 9 33 18 15 51s-34 24-51 15l-604-328c-16-9-33-18-15-51s34-24 51-15zm51 322l515 206c18 7 35 14 21 48-14 35-31 28-49 21l-515-206c-17-7-34-14-21-48 14-35 31-28 48-21zm224 434c137 33 261 48 358 31 88-16 155-60 191-146v-493c-107-1-212-15-303-41-109-31-170-98-201-178-41-107-27-235-4-329 5-18 9-36 45-27s32 27 27 45c-20 82-33 194 1 284 23 60 69 110 152 133 91 25 198 38 307 38 107 0 214-13 304-40 82-24 148-69 192-123s65-117 57-176c-5-36-24-62-49-80-34-24-82-35-128-37-47-2-94 7-142 16-25 5-50 9-77 13-19 2-37 5-42-32s14-40 32-42c23-3 48-8 73-12 52-10 105-20 159-18 60 2 121 18 168 51 42 29 72 72 80 131 11 80-16 163-73 233-53 65-131 119-229 147-83 24-178 38-274 42v483c3 5 3 11 2 16 37 82 102 125 188 141 97 18 221 2 358-31 18-5 36-9 45 27 8 37-9 41-28 45-146 35-279 51-388 32-92-17-165-58-215-132-49 74-124 115-215 132-109 20-242 4-388-32-18-4-37-8-28-45 8-36 27-32 45-27zm356 210l402-9c19 0 38-1 38 37 1 38-18 38-37 38l-402 9c-19 0-37 1-38-37s18-38 37-38zm593-3082c151-125 293-227 423-297 133-72 254-111 359-106 19 1 37 1 36 39-1 37-20 37-39 36-92-4-200 32-322 97-125 67-263 166-410 289-14 12-29 24-53-5s-9-41 5-53zm-605 56c-141-130-298-240-445-314-139-71-268-108-363-100-19 2-37 4-40-34-4-37 15-39 34-40 110-10 252 31 404 107 152 77 315 191 461 325 14 13 28 25 2 53-25 27-39 15-53 2zm-213 1004c37-83 83-155 136-219 53-63 112-119 174-170 14-12 29-24 52 5 24 29 9 41-5 53-59 48-114 101-164 160-49 59-91 125-125 201-8 17-15 34-49 19s-27-32-19-49zm371-1734c49 66 88 139 114 223 26 82 40 175 39 279 5 80 6 165-7 249-13 86-42 170-97 246-43 60-101 97-165 113-53 13-109 10-164-7 29 100 51 208 6 308-8 18-33 27-51 18-43-22-86-43-128-62s-84-36-127-51l-1-1c-95-37-173-73-236-112-65-39-115-80-150-124l1 2c-44-49-72-106-88-170-14-55-20-114-22-174-72-39-138-78-194-116-64-43-118-87-161-131-13-14-26-27 1-53s40-12 53 1c39 40 89 80 150 121 60 40 128 81 204 121 124 13 247 51 370 109 106 50 211 115 317 192 13 7 19 16 27 20 8 6 16 13 25 19 51 22 104 28 152 16 47-11 90-39 122-84 48-66 72-139 84-214 12-77 11-157 6-234v-2c1-97-12-183-35-258-24-76-58-142-102-201-11-15-22-30 7-52s41-7 52 7zm-375 1047c-104-77-207-141-311-190-105-49-210-83-314-98 2 48 8 93 18 135 13 52 35 99 71 138l1 1c30 37 73 72 130 107 60 36 134 71 225 106l-1-1c45 16 89 34 133 54 31 14 61 28 93 44 19-83-10-179-37-267-2-8-5-15-9-29zm776-1003c-44 59-79 125-102 201-24 76-36 161-35 258v2c-5 77-6 158 6 234 12 75 37 148 84 214 32 45 75 72 122 84 48 12 101 6 152-16 8-6 17-13 25-19 6-4 13-12 27-20 105-77 211-143 317-192 123-58 246-95 370-109 75-40 144-80 204-121s111-81 149-121c13-13 26-27 53-1s14 39 0 53c-43 44-97 88-161 131-57 38-122 77-194 116-2 61-8 119-22 174-16 63-44 121-88 170l1-2c-35 44-85 85-150 124-63 38-141 75-237 112l-1 1c-43 15-85 32-127 51-43 19-85 40-128 62-18 9-43 0-51-18-45-100-23-208 6-308-55 18-111 20-164 7-64-15-122-53-165-113-55-76-84-160-97-246-13-85-12-169-7-249-1-104 13-196 39-279 26-84 65-158 114-223 11-15 22-30 52-7 30 22 19 37 7 52zm940 715c-105 15-209 49-314 98-104 49-207 113-311 190-4 13-6 21-8 29-27 88-56 184-37 267 31-15 62-30 93-44 44-20 87-38 133-54l-1 1c91-35 165-70 225-106 58-34 100-70 131-107l1-1c35-39 57-86 71-138 11-42 16-87 19-135z"/><path d="M203459 50602c-119 0-216 97-216 216s97 217 216 217 216-97 216-217c0-119-97-216-216-216zm0 69c-81 0-147 66-147 147s66 147 147 147 147-66 147-147-66-147-147-147zm0 60c-48 0-87 39-87 87s39 87 87 87 87-39 87-87-39-87-87-87zm-1697-124c119 0 217 97 217 216s-97 217-217 217c-119 0-216-97-216-217 0-119 97-216 216-216zm0 69c81 0 147 66 147 147s-66 147-147 147-147-66-147-147 66-147 147-147zm0 60c48 0 87 39 87 87s-39 87-87 87-87-39-87-87 39-87 87-87z" fill-rule="evenodd"/></g><use height="100%" width="100%" xlink:href="#a" transform="rotate(-2.173 -55532.79 156275.842)"/><use height="100%" width="100%" xlink:href="#a" transform="rotate(2.18 459865.852 156275.76)"/></g><path d="M387.186 94.883l-.06.02-19.197-21.94-25.24 14.466-4.258 51.097a219.715 219.715 0 0 1 36.12 6.045l12.63-49.687z" fill="#171796"/><path d="M347.668 98.03c.877-.213 1.742-.258 2.58.256.37.152.646.346.816.595.39-.3.785-.582 1.195-.824.575-.426 1.163-.803 1.795-1.014.906-.46 1.81-.732 2.714-.815.957-.164 1.92-.173 2.876-.116.8.048 1.572.268 2.31.693.667.33 1.333.666 2 .997.707.394 1.414.75 2.12 1.048.896.353 1.903.472 2.977.512.526.02 1.043.02 1.55-.116.41-.11.666.15.213.43-3.318 2.035-5.918.224-8.136-.587.813.55 1.528 1.12 2.133 1.7.844.813 1.787 1.637 3.455 2.398 1.012.46 2.114.822 3.53.834.478.004.995-.015 1.554-.107.282-.045.403-.02.408.128.004.1-.022.3-.19.41-.856.574-1.66.726-2.56.783-1.71.11-3.54-.453-5.214-1.35-1.34-.722-2.242-1.6-3.308-2.385-1.064-.785-1.984-1.22-2.972-1.43-.974-.208-2.03-.184-2.918.09.266.053.49.178.628.337.458.27 1.046.39 1.896.486.444.053.306.36-.376.726-.41.53-.944.813-1.652.744-.977.647-1.325.256-1.652-.168-.04.268-.12.53-.235.785a.602.602 0 0 1-.014.426c.156.242.232.477.18.735.026.137.07.27.218.393.205.186.335.4.36.66.004.173.1.315.236.443.2.164.4.308.6.553.59.213.862.666.96 1.25.445.145.63.468.718.852.253.106.485.234.618.46.91.002 1.8.002 2.63.09.78.083 1.416.568 1.985 1.2.383.058.772.077 1.17-.013.41-.18.844-.318 1.316-.358.78-.066 1.56-.107 2.306.07.503.122.897.39 1.22.755.464.528 1.18.457 1.79.197.83-.355 1.52-.343 2.37.03a2.33 2.33 0 0 1 1.086-.17c.31-.335.64-.418.98-.428.55-.02.952.066.848.775-.03.192-.143.377-.287.443-.254.548-.737.71-1.35.657-.067.377-.22.656-.468.836.28.87.01 1.22-.634 1.207-.135.25-.336.407-.68.358a1.38 1.38 0 0 1-.872.514c.038.227.135.334.296.578.44.664-.22.932-.822.94.154.44.173.878.118 1.316.614.372.697.764.13 1.15.415.725.254 1.258-.523 1.647-.012.405-.052.813-.322 1.04-.184.157-.45.185-.274.48.315.52.246 1.18-.22 1.198-.1-.008-.19.006-.197.165 0 .054-.05.11-.14.163-.56.3-1.084.645-1.565 1.04-.072.048-.143.08-.214.017-.35.764-1.004 1.54-1.727 2.318-.11.574-.436.963-.974 1.164a.41.41 0 0 1-.32.327c.3.334.414.657.123.974-.358.39-.83.773-1.3.894-1.004.256-1.632.208-2.035-.176-.355-.34-.216-.595.01-.7-.62.048-.745-.28-.728-.715.036-.217.11-.188.327-.18.337.008.64-.174.958-.278.123-.21.284-.39.483-.54.11-.702.555-1.09 1.157-1.32.485-.186.95-.655 1.4-1.262l.835-1.434a1.237 1.237 0 0 1-.254-.76 1.478 1.478 0 0 1-.557-.517c-.437-.032-.617-.23-.68-.5a1.1 1.1 0 0 1-.328-.044c-.214.138-.43.26-.697.247a6.86 6.86 0 0 1-1.09.91c-.13.36-.39.505-.704.55-.895.106-1.43 1.223-1.924 1.678-.2.148-.322.408-.41.72-.042.59-.144 1.05-.466 1.058-.29-.012-.335-.043-.344-.073a1.186 1.186 0 0 0-.377.016c.24.267.28.6.056.895-.223.29-.543.38-.85.4-.638.043-1.155-.014-1.634-.208-.457-.188-.512-.46-.498-.726-.33-.155-.395-.31-.36-.465.045-.2.228-.3.458-.237.2-.095.398-.16.597-.197.577-.622 1.172-1.158 1.826-1.407a2.97 2.97 0 0 1 .68-.614c.076-.56.444-1 .894-1.41.04-.202.106-.406.22-.608-.026-.12.007-.177.01-.29-.183-.34-.292-.748-.157-1.087a1.314 1.314 0 0 1-.05-.54c-1.075.64-1.407.422-1.53-.097-.394.33-.76.483-1.024.01-.383.113-.767.24-1.148.09-.25.097-.5.184-.787.203-.116.23-.273.46-.484.69-.01.484-.18.968-.49 1.45a9.272 9.272 0 0 1-.696 1.55.985.985 0 0 1-.107.5c.083.594-.116.883-.443 1.03a2.41 2.41 0 0 1-.417.72c-.01.08-.017.16-.026.237.13.35.153.7-.203 1.05-.287.18-.592.37-.896.52-.357.175-.69.092-.99-.017-.528-.19-.488-.375-.42-.555a.644.644 0 0 1-.52-.007c-.128-.08-.21-.163-.337-.246-.114-.207-.154-.394.123-.54.35-.155.586-.27.86-.55.095-.214.216-.375.387-.418.166-.388.37-.65.647-.723.204-.48.422-1.01.68-1.47.09-.14.157-.285.114-.443-.005-.13.005-.254.114-.328.06-.053.17-.1.033-.174a1.36 1.36 0 0 1 .164-1.154c.28-.422.593-1.44.297-1.94-.054-.28-.108-.6-.073-.863-.102-.006-.178.008-.28-.063-.227-.14-.417-.007-.59.246-.125.318-.25.598-.376.598-.118.82-.52 1.458-.94 1.622-.098.377-.16.753-.107 1.13.043.41 0 .69-.19.737-.208.05-.403.172-.523.506a1.05 1.05 0 0 0-.074.337c.29.3.202.67-.076.946-.625.615-1.403.525-2.225.283-.595-.235-.74-.483-.68-.737-.844-.07-.676-.718.023-.912.752-.21 1.36-.693 1.86-1.38.046-.815.233-1.37.672-1.457.042-.5.2-.95.41-1.377.22-.387.355-.81.277-1.328-.467-.29-.486-.592-.057-.9.142-.083.126-.168-.05-.254-.284-.028-.25-.3-.23-.557-.012-.13-.08-.2-.206-.202-.63-.093-.474-.35-.204-.63.114-.13.19-.318.07-.394-.096-.062-.162-.278-.183-.467-.387-.292-.22-.59 0-.877-.22-.185-.32-.455-.35-.77-.72-.03-.987-.396-.598-.927a3.38 3.38 0 0 1 .63-.647c.165-.268.324-.536.245-.803-.206-.524.453-.92 1.017-1.328a.88.88 0 0 1-.123-.41c-.32-.305-.238-.59.113-.86a1.064 1.064 0 0 1-.13-.417c-.79.156-.785-.315-.418-1.074-.457-.263-.33-.73.5-1.44a.953.953 0 0 1 .09-.378 1.92 1.92 0 0 0-1 .304c-.315.206-.628.18-.943.05a1.496 1.496 0 0 0-.417-.41.622.622 0 0 1-.22-.63c-.93.05-1.107-.636-.55-1.04.31-.248.538-.506.623-.788.25-.638.784-1.07 1.303-1.517 0-.182.042-.365.1-.55-.23-.154-.473-.265-.74-.286a1.176 1.176 0 0 0-.572-.64c-.173-.103-.23-.2-.123-.435-.493-.44-.37-.71-.244-.962z"/><g fill="#f7db17"><path d="M364.524 121.963a1.37 1.37 0 0 1-.176.007 8.45 8.45 0 0 1-.79.696c-.23-.265-.572.027-.238.188l-.17.118c-.11.29-.21.413-.532.462-.05.007-.1.017-.15.03a2.953 2.953 0 0 1 .015-.36 3.48 3.48 0 0 1 .07-.42c.004-.027.01-.05-.04-.063-.05-.01-.056.016-.06.042a3.875 3.875 0 0 0-.074.433 2.75 2.75 0 0 0-.015.396c-.813.262-1.283 1.108-1.837 1.71-.24.206-.36.49-.448.79-.047.158-.064.886-.228.897-.078.003-.16 0-.248 0-.088-.132-.207-.135-.356-.01-.34-.006-.7-.01-1 .04-.206.222.36.14.66.324.14.084.198.247.143.475-.276.66-1.824.447-2.338.175-.24-.126-.25-.27-.24-.476.107 0 .216-.008.325-.024.185-.026.368-.08.548-.183.05-.028.102-.056.045-.158-.057-.103-.11-.075-.16-.046a1.25 1.25 0 0 1-.463.154 2.57 2.57 0 0 1-.486.016c-.013 0-.028-.002-.04 0-.09-.052-.158-.114-.12-.168.038-.052.187.005.215.014.24-.11.448-.182.707-.232.545-.583 1.1-1.13 1.85-1.432.226-.27.47-.483.764-.677.104-.65.42-.997.89-1.428.058-.268.124-.46.257-.695-.03-.15-.007-.244 0-.395-.18-.342-.287-.638-.145-1.02-.088-.277-.076-.464-.042-.72a.35.35 0 0 0-.003-.144 6.223 6.223 0 0 1 .848-.574c-.02.256-.01.524.04.803l-.003.003a1.28 1.28 0 0 0-.197.263.53.53 0 0 0-.073.277c0 .026 0 .052.052.05.05 0 .05-.026.05-.052a.43.43 0 0 1 .06-.225c.043-.08.107-.16.183-.24a.105.105 0 0 0 .02-.026c.248-.007.492-.14.736-.336.22-.18.44-.412.658-.656-.002.356-.005.71-.01 1.067-.213.19-.395.422-.538.705-.01.023-.023.045.022.068.047.024.06 0 .068-.023a2.27 2.27 0 0 1 .49-.65h.008c.052 0 .052-.026.052-.052v-.002a3.17 3.17 0 0 1 .917-.526c-.045.312-.066.618-.01.912.058.322.21.626.518.89.004.006.012.008.02.01z"/><path d="M349.043 112.947c.04-.073.142-.168.175-.16l.02-.006c.11-.207.227-.402.348-.577a3.98 3.98 0 0 1 .497-.6c.02-.02.038-.035.074 0 .035.038.016.055 0 .074a3.91 3.91 0 0 0-.486.583 5.82 5.82 0 0 0-.34.57c.035.046.052.12.033.172.035.324.078.507.223.694a.202.202 0 0 1 .05-.033c.06-.145.14-.273.24-.386a1.65 1.65 0 0 1 .45-.35c.125-.103.224-.207.305-.316.08-.106.145-.215.19-.327.01-.023.02-.047.07-.028.046.02.037.045.027.07-.05.12-.116.236-.2.35a2.056 2.056 0 0 1-.328.334l-.01.003c-.17.093-.313.202-.427.33a1.247 1.247 0 0 0-.21.327c.075.054.108.204.037.3-.216.31-.472.492-.07.757a.635.635 0 0 0 .19.512c.093.096.084.435-.144.68-.213.215-.05.158.17.184l.05.017v-.002c.08-.156.176-.296.28-.426a4.34 4.34 0 0 1 .327-.363c.16-.157.285-.328.375-.5.087-.17.14-.342.15-.508 0-.026 0-.052.056-.048.052.003.05.03.047.055a1.41 1.41 0 0 1-.16.55c-.095.18-.227.36-.393.522a3.78 3.78 0 0 0-.318.354 2.6 2.6 0 0 0-.27.41c.267.16.182.45.222.715.052.008.097.02.137.04a.029.029 0 0 1 .01-.015l.155-.246.247-.393c.014-.02.028-.045.07-.016.046.03.032.05.017.072l-.247.39-.157.248a.052.052 0 0 1-.007.01c.163.134.175.376-.027.56-.396.3-.284.392.086.63.046.347.048.627-.027.923l.004.026c.01.096.017.196.024.293l.025.296c.002.025.004.05-.048.056-.052.005-.054-.02-.057-.047l-.023-.298a.644.644 0 0 1-.005-.075c-.02.045-.038.092-.062.142-.265.58-.54 1.053-.6 1.705-.637.152-.542.78-.578 1.335-.502.677-1.085 1.22-1.893 1.49-.153.05-.52.14-.556.332-.005.07.247.218.408.13.445-.426.668-.19.156.247-.04.082-.007.174.08.252.463.415 1.608.55 2.13.22.385-.24.587-.506.25-.874.022-.52.225-1.03.775-1.178.064-.118.045-.338.017-.46-.052-.452.02-.855.13-1.29.02-.055.06-.1.15-.124.208-.043.61-.647.734-1.228.03-.125.05-.256.074-.386.033-.202.11-.237.213-.12.098-.13.096-.207.155-.357.213-.31.52-.56.882-.383a3.036 3.036 0 0 1-.176-.832 2.7 2.7 0 0 1 .115-1.03c.014-.05.03-.098.11-.087.103-.246.205-.49.31-.737l.312-.742c.01-.023.02-.047.067-.028.047.02.038.045.028.07l-.313.74-.31.735c.044.034.03.077.016.12a2.515 2.515 0 0 0-.102.943c.023.346.11.68.237.953.012.026.027.052.022.078.17.1.168.123.16.35-.004.18.02.354.063.567.34.627-.014 1.674-.344 2.198a1.09 1.09 0 0 0-.134.834c.204.197.07.4-.11.538-.013.048 0 .102.003.15.018.204-.055.374-.162.542-.277.5-.49 1.034-.713 1.558-.403.11-.486.346-.647.722-.235.067-.26.135-.358.35a2.71 2.71 0 0 1-.875.594c-.286.13-.01.256.192.393.183.134.422-.16.572-.382.162-.247.328-.174.22.018a1.95 1.95 0 0 0-.214.674c-.062.17.587.3.7.305.395.02.892-.367 1.203-.564.257-.262.217-.492.103-.812l.002-.02a1.97 1.97 0 0 1-.476-.048 3.432 3.432 0 0 1-.56-.185c-.024-.01-.048-.02-.03-.07.02-.046.046-.037.07-.027.185.075.363.14.543.177.15.033.303.05.467.045l.026-.25a2.7 2.7 0 0 0 .46-.804c.438-.207.44-.42.38-.89.098-.19.12-.3.112-.516a9.93 9.93 0 0 0 .723-1.597c.347-.46.513-.894.473-1.44.03-.214.11-.335.265-.328a3.82 3.82 0 0 0 .308-.505.46.46 0 0 0 .057.005.081.081 0 0 1 0-.038c.03-.126.062-.237.105-.33a.798.798 0 0 1 .142-.225.918.918 0 0 0 .07-.455 1.107 1.107 0 0 0-.153-.443.492.492 0 0 1-.116-.185c-.02-.074-.006-.148.067-.22.02-.02.038-.037.074 0s.02.056 0 .072c-.042.04-.05.078-.037.116a.456.456 0 0 0 .097.15l.005.01c.092.158.154.322.17.49a1.01 1.01 0 0 1-.083.514c0 .002-.01.014-.01.017a.722.722 0 0 0-.13.2 1.69 1.69 0 0 0-.097.308l-.004.02c.245 0 .46-.077.695-.193l.014-.014c.118-.094.243-.238.348-.428.087-.16.158-.353.2-.576.003-.026.008-.05.06-.043.05.01.045.036.043.06a2.035 2.035 0 0 1-.21.61c-.08.148-.175.27-.27.364.38.114.708.002 1.07-.11-.053-.506-.046-.893.008-1.196.06-.33.17-.56.31-.736.017-.022.03-.04.074-.01.04.034.026.052.01.074-.13.163-.235.38-.29.692-.052.29-.06.66-.01 1.147.003-.002.01-.002.018-.005.15.26.232.446.542.244.114-.076.233-.15.327-.25.035-.04.023-.06.05-.09.298-.316.596-.61.893-.87.298-.264.597-.49.895-.67.022-.016.045-.03.072.015.026.046.004.058-.017.072a6.45 6.45 0 0 0-.882.66c-.252.222-.506.468-.76.734.015.045.022.123.03.242.025.35.09.56.59.37.28-.107.307-.12.566-.273a1.34 1.34 0 0 1 .305-.157 7.99 7.99 0 0 1 .49-.358c.158-.106.32-.203.478-.29.026-.188.07-.373.13-.55.155-.456.413-.878.738-1.276l.016-.014c.27-.147.49-.32.666-.517.178-.197.31-.417.41-.656.01-.024.02-.048.07-.03.046.02.037.046.027.07-.104.25-.244.48-.426.685a2.525 2.525 0 0 1-.69.535c-.314.39-.565.797-.712 1.235a2.69 2.69 0 0 0-.116.474c.01.003.02.012.028.03.024.048 0 .06-.02.07-.008.002-.015.007-.022.012a2.81 2.81 0 0 0 .023.805c.222-.007.445-.13.67-.312.24-.194.483-.462.725-.734.002-.007.002-.012.01-.017a1.7 1.7 0 0 1 .234-.503.95.95 0 0 1 .397-.327c.024-.01.048-.022.07.028.018.048-.003.057-.03.07a.862.862 0 0 0-.355.29 1.66 1.66 0 0 0-.225.49c-.002.368-.007.738-.01 1.108.012-.01.027-.02.038-.03.273-.212.586-.368.925-.492.035-.014.076.02.068.057-.052.333-.08.663-.026.966.052.284.18.55.436.787a2.78 2.78 0 0 1 .48-.628c.096-.097.196-.188.3-.273.076-.07.152-.14.225-.21l.228-.212c.02-.02.04-.035.074.003.036.038.017.057-.002.073l-.228.21-.227.212-.003.002c-.097.08-.19.162-.28.252.003.097.008.192.013.29l.004.155c.22.06.35.062.573.057.073.438.11.507.493.517a3.244 3.244 0 0 1 .014-.457c.02-.17.054-.336.114-.493.01-.023.018-.047.066-.03.05.018.04.042.03.066a1.89 1.89 0 0 0-.108.467 3.1 3.1 0 0 0-.015.448h.03c.153.314.333.468.655.607.09-.142.157-.284.2-.426a1.37 1.37 0 0 0 .056-.476c-.002-.026-.002-.052.048-.054.052-.002.054.02.057.047.01.17-.01.342-.062.512-.05.17-.134.338-.248.506-.01.015-.02.03-.035.03.014.18.045.316.11.454a3.02 3.02 0 0 1 .153-.3c.078-.136.168-.26.277-.368.02-.02.036-.036.073 0 .036.035.02.054 0 .073-.1.1-.184.22-.26.348a3.984 3.984 0 0 0-.183.363c.036.062.08.123.133.194-.607 1.04-1.256 2.482-2.453 2.956-.62.244-.89.56-1.012 1.22-.232.18-.398.363-.55.614-.403.135-.763.337-1.2.318 0 .282.093.405.375.407.538-.27.66-.32.707-.282.066.057-.076.444-.522.756-.068.042-.066.068-.026.14.376.59 1.364.378 1.895.24.38-.1 1.064-.55 1.254-.93.072-.176-.093-.4-.26-.586-.758.116-.613-.61.04-.308.22-.066.247-.07.31-.313.58-.225.82-.47.954-1.092.586-.63 1.173-1.28 1.595-2.035.115-.142.184-.394.15-.524a1.07 1.07 0 0 0 .2-.42c.038-.153.062-.302.057-.454 0-.026-.003-.052.05-.054.052-.002.052.024.054.05.006.16-.018.32-.058.48a4.48 4.48 0 0 1-.12.37c.037.095.056.16.14.136.506-.408 1.018-.695 1.565-1.034.038-.232.188-.346.417-.355.093 0 .126-.027.16-.113.127-.32-.034-.54-.188-.805-.142-.396.11-.49.365-.68.266-.197.247-.72.257-1.02h.002l-.03-.154a2.623 2.623 0 0 0-.092-.32c-.01-.023-.016-.05.03-.066.05-.017.058.007.068.033.04.116.07.225.094.332.01.043.017.085.026.126.254-.13.52-.282.62-.564.087-.314-.084-.61-.236-.876a9.567 9.567 0 0 1-.595.256c-.023.01-.047.02-.066-.028-.02-.048.004-.06.028-.067a10.22 10.22 0 0 0 .687-.303 1.29 1.29 0 0 0 .313-.263c.182-.264-.308-.5-.48-.608 0-.007.003-.014.003-.02l-.736-.68c-.02-.016-.038-.035-.002-.073.036-.04.054-.022.073-.003l.683.626c.038-.387.043-.756-.078-1.14-.038-.124-.083-.244-.126-.365a1.116 1.116 0 0 1-.48-.398 1.037 1.037 0 0 1-.157-.496c-.003-.026-.003-.052.05-.057.052-.002.052.024.056.05.012.16.052.313.14.446.088.135.22.253.413.35.206.107.64.053.89-.068.35-.197-.106-.595-.213-.83-.076-.168-.094-.34-.128-.52.03-.006.062-.013.095-.018a1.044 1.044 0 0 0-.14-.147.602.602 0 0 0-.187-.113c-.024-.01-.05-.017-.03-.067.016-.05.042-.04.066-.03a.71.71 0 0 1 .22.132c.065.057.127.126.186.206a.875.875 0 0 0 .102-.02c.344-.067.533-.26.742-.506a3.597 3.597 0 0 0-.374-.386 10.09 10.09 0 0 0-.427-.36c-.02-.017-.04-.034-.008-.074.033-.04.052-.024.073-.007.147.12.294.24.432.365.14.128.272.263.393.41.012.014.024.028.014.047.315.03.368-.035.526-.317a1.53 1.53 0 0 0-.19-.41 2.5 2.5 0 0 0-.314-.386c-.02-.02-.036-.038 0-.074.038-.036.056-.017.073 0 .122.128.236.263.326.403.09.137.16.28.202.434.147.002.305.01.43-.067.276-.163.044-.75-.028-.98.005 0 .008-.003.012-.008a2.762 2.762 0 0 0-.11-.07c-.063-.04-.13-.08-.193-.122-.022-.014-.044-.028-.018-.07.03-.046.05-.032.07-.018l.196.124.142.09c.02-.017.043-.034.064-.05.2-.16.273-.375.334-.597.095-.343.114-.19.512-.25.43-.067.66-.114.915-.616.133-.067.2-.124.225-.287.043-.296.02-.448-.32-.474-.474-.038-.763.057-1.083.37l.128.194c.014.02.028.043-.014.073s-.056.007-.07-.014l-.12-.185c-.433-.04-.78.027-1.18.18l-.122-.05c.085.113.15.222.2.33.07.15.105.295.11.432 0 .026.003.053-.05.055-.052.002-.052-.024-.054-.05a1.036 1.036 0 0 0-.1-.396 1.842 1.842 0 0 0-.298-.442l-.003-.002a2.62 2.62 0 0 0-.96-.176c.053.053.107.105.16.154.068.067.137.133.203.2.02.018.038.035 0 .073-.035.038-.054.02-.073 0a7.742 7.742 0 0 1-.204-.2 6.458 6.458 0 0 1-.205-.198l-.02-.022a2.72 2.72 0 0 0-.85.22c-.192.08-.388.142-.58.178.142.137.263.29.357.467.1.18.176.38.226.6.004.025.01.05-.038.06-.05.013-.057-.013-.062-.037a2.147 2.147 0 0 0-.216-.574 1.89 1.89 0 0 0-.353-.455c-.015-.012-.027-.026-.022-.045a1.78 1.78 0 0 1-.526.003l.21.348c.013.024.022.047-.023.07-.048.02-.06 0-.07-.025l-.194-.408a1.446 1.446 0 0 1-.474-.187c.05.187.088.39.116.602.038.282.062.583.07.9 0 .027 0 .053-.05.053-.053 0-.053-.026-.053-.05a7.85 7.85 0 0 0-.066-.89 4.7 4.7 0 0 0-.15-.71 1.662 1.662 0 0 1-.214-.2 2.1 2.1 0 0 0-.57-.442.95.95 0 0 1-.21.728c-.014.02-.028.04-.07.01-.04-.034-.027-.053-.01-.074a.846.846 0 0 0 .175-.72 3.13 3.13 0 0 0-1.05-.254 5.312 5.312 0 0 1 .55.872c.145.122.224.27.27.43.04.16.05.33.058.502 0 .025.002.05-.05.054-.052.002-.052-.024-.054-.05a2.087 2.087 0 0 0-.055-.48.714.714 0 0 0-.243-.38.09.09 0 0 1-.014-.017 5.64 5.64 0 0 0-.268-.476 4.61 4.61 0 0 0-.33-.454l-.004-.005c-.124-.006-.25-.01-.376-.006.022.028.043.057.062.087a.577.577 0 0 1 .085.248c.004.026.006.052-.046.057-.052.005-.055-.02-.057-.048a.498.498 0 0 0-.07-.203.675.675 0 0 0-.112-.138c-.26.007-.52.03-.768.05.26.334.47.68.63 1.036.18.395.3.803.37 1.225.005.026.01.052-.043.06-.05.01-.054-.017-.06-.044a4.793 4.793 0 0 0-.362-1.2 5.12 5.12 0 0 0-.66-1.068l-.04.003c-.2.02-.404.06-.598.116.087.054.163.11.23.163.09.074.16.147.222.22.017.022.033.04-.007.074-.04.034-.058.016-.074-.006a1.573 1.573 0 0 0-.21-.208 2.403 2.403 0 0 0-.298-.204 4.91 4.91 0 0 0-.308.11c-.057.023-.11.044-.168.06.175.126.344.264.505.418.194.187.377.398.54.642.014.02.03.043-.014.07-.043.03-.057.008-.073-.013a3.796 3.796 0 0 0-.524-.627 4.668 4.668 0 0 0-.564-.457c-.214.047-.43.06-.645.052.133.263.25.528.337.796.094.29.16.58.182.877.003.027.005.053-.047.058-.053.005-.056-.02-.058-.048-.02-.29-.085-.57-.178-.853a6.224 6.224 0 0 0-.358-.834 7.972 7.972 0 0 1-.396-.043c.076.242.143.49.2.745.066.298.12.604.16.914.003.025.005.052-.044.06-.052.006-.055-.02-.06-.046a9.248 9.248 0 0 0-.158-.906 9.28 9.28 0 0 0-.22-.81c-.375-.406-.79-.8-1.297-1.012a1.704 1.704 0 0 1 .374 1.123c0 .026 0 .052-.05.05-.053 0-.053-.03-.05-.053a1.633 1.633 0 0 0-.12-.67 1.676 1.676 0 0 0-.352-.525 1.953 1.953 0 0 0-.358-.07 15.624 15.624 0 0 0-1-.067c.256.232.457.445.438.704-.002.025-.005.05-.057.046-.052-.005-.05-.03-.047-.057.016-.24-.22-.456-.498-.702-.2-.007-.4-.01-.6-.012.11.11.204.223.28.334.105.152.178.303.214.455v.007c.02.235.078.44.182.612.102.168.25.298.45.39.024.013.048.022.026.07-.02.047-.045.037-.068.025-.22-.1-.382-.247-.496-.432a1.51 1.51 0 0 1-.196-.65 1.255 1.255 0 0 0-.197-.416 2.675 2.675 0 0 0-.344-.396c-.22 0-.442-.003-.665-.003.093.264.157.534.202.81.052.335.076.68.083 1.027 0 .026 0 .052-.052.052-.053 0-.053-.026-.053-.05a7.143 7.143 0 0 0-.08-1.014 4.475 4.475 0 0 0-.21-.825h-.06a1.003 1.003 0 0 0-.49-.438.604.604 0 0 1-.107.282c-.012.02-.03.043-.072.014-.042-.027-.028-.048-.014-.07a.495.495 0 0 0 .09-.27c-.033-.014-.07-.028-.106-.045-.107-.446-.207-.63-.562-.782-.003.123-.01.25-.033.38-.028.163-.08.326-.177.483-.014.02-.03.045-.07.016-.046-.028-.032-.05-.018-.07.09-.146.138-.295.164-.444.022-.135.03-.273.03-.405l-.062-.022c-.095-.622-.21-.97-.856-1.217.007.08.01.164.005.247-.007.14-.033.282-.09.43-.01.022-.02.048-.066.03-.047-.02-.037-.043-.03-.067.052-.135.076-.268.083-.398a1.9 1.9 0 0 0-.02-.368c-.137-.156-.333-.305-.502-.47a2.28 2.28 0 0 1-.09.686 3.06 3.06 0 0 1-.385.834c-.014.022-.028.045-.07.017-.046-.028-.032-.05-.018-.07a3 3 0 0 0 .375-.807 2.2 2.2 0 0 0 .08-.773 1.04 1.04 0 0 1-.177-.26l-.015.033-.075.17c-.012.024-.022.048-.07.03-.047-.022-.037-.046-.028-.07l.076-.17.06-.138c-.005-.03-.01-.058-.012-.09-.02-.198-.127-.352-.272-.482l-.002-.002a1.482 1.482 0 0 1-.25.476c-.018.02-.032.04-.075.01-.04-.034-.023-.053-.008-.074.07-.09.125-.18.168-.268.035-.076.06-.15.08-.23a.962.962 0 0 1-.15-.246.796.796 0 0 1-.1.17c-.05.067-.115.13-.195.197-.02.018-.04.034-.074-.006-.032-.04-.01-.057.01-.073.072-.06.13-.118.174-.177a.65.65 0 0 0 .097-.176c.034-.092.046-.033.015-.182.055-.294-.054-.47-.21-.713a.07.07 0 0 1 .01-.02.89.89 0 0 0-.316.084 2.76 2.76 0 0 0-.456.265c-.022.015-.043.03-.072-.013-.03-.043-.01-.057.015-.07a3.16 3.16 0 0 1 .47-.274.9.9 0 0 1 .4-.092.37.37 0 0 0 .01-.227c-.473.176-.847.26-1.148.278a1.64 1.64 0 0 1-.76-.116c-.023-.01-.047-.02-.026-.068.02-.048.045-.038.07-.03.186.082.412.13.71.11.296-.02.66-.1 1.13-.275-.002-.003-.002-.008-.004-.013.085-.19.154-.374.2-.56a1.705 1.705 0 0 1-.5.04h-.032c-.026 0-.052-.004-.052-.053 0-.053.028-.053.052-.053h.033c.177.004.352.01.525-.048.012-.062.02-.124.03-.185.027-.206.27-.256.44-.07.142.15.272.312.412.378.284.135.604.014.834-.17l-.21-.07c-.026-.007-.05-.016-.033-.063.016-.05.04-.043.064-.034.09.03.18.057.27.088a.947.947 0 0 0 .063-.064c.587.05.97-.073 1.346-.453a6.927 6.927 0 0 1-.892-.03c-.285-.035-.52-.092-.692-.177-.024-.012-.048-.024-.024-.07.024-.046.047-.034.07-.022.16.08.385.136.658.167.277.03.604.04.976.028h.005c.034-.038.067-.078.103-.12.16-.067.322-.14.44-.273-.685-.074-1.336-.21-1.95-.53-.16-.177-.41-.276-.678-.345-.498-.06-.938.062-1.344.273-.105-.1-.188-.19-.293-.287-.156-.02-.303-.102-.46-.12-.208-.025-.426.016-.635-.008-.026-.002-.052-.005-.045-.057.005-.052.03-.05.057-.045.21.024.427-.017.635.007.2.024.393.112.594.135.673-.253 1.23-.393 1.71-.372a5.68 5.68 0 0 1 1.73-.218.102.102 0 0 1-.022-.02c-.07-.068-.036-.103 0-.136.315-.32.39-.615.287-.88-.106-.276-.39-.534-.786-.77-.422.047-.827-.067-1.275-.017a3.95 3.95 0 0 0-.826.182c.226.08.422.213.583.403.2.235.342.555.418.957.01.048.016.098-.08.114-.094.018-.103-.032-.112-.08-.07-.366-.197-.656-.375-.866-.187-.268-.616-.373-.75-.427-.45.045-.89.095-1.274.194-.29.075-.543.177-.737.328.29-.06.59-.05.85.08.25.124.46.356.593.733.017.046.03.094-.06.125-.094.03-.11-.015-.125-.062-.11-.325-.286-.52-.492-.62-.41-.205-1.257-.027-1.614.238a4.23 4.23 0 0 0-.625.594c-.038.045-.078.088-.166.012-.088-.08-.05-.12-.01-.164.216-.244.434-.46.66-.626.217-.16.442-.277.674-.33.237-.264.588-.423.993-.527.396-.103.85-.156 1.308-.2-.135-.273-.308-.437-.507-.524-.213-.095-.457-.11-.723-.083-.552.19-1.042.486-1.514.82.044 0 .086 0 .127.002.14.01.265-.012.38.033.046.017.094.033.06.126-.04.11-.346.043-.452.035a1.352 1.352 0 0 0-.4.037c-.022.005-.046.012-.067.005-.576.356-.988.716-1.467 1.12l-.08.03c-.426-.017-.72.042-.896.175-.158.12-.17.31-.14.566-.073.24-.165.503-.19.782-.5.43-1.056.858-1.314 1.484a1.42 1.42 0 0 1-.275.487.538.538 0 0 1 .25.097c.022.02.044.038.063.062.01-.107.028-.213.054-.315.036-.146.088-.28.156-.39.015-.02.03-.043.072-.014.045.028.03.05.016.07a1.2 1.2 0 0 0-.144.36c-.04.164-.062.345-.067.51-.002.053-.097.057-.104.005a.287.287 0 0 0-.11-.2.52.52 0 0 0-.27-.086c-.107.117-.228.22-.35.318-.1.08-.193.168-.215.3-.014.226.266.266.53.283.606.036.124.38.456.68.162.112.312.242.425.4.23.084.373.065.53-.006.03-.41-.006-.62.174-.62h.018a.768.768 0 0 1 .18-.386c.017-.02.034-.04.074-.007.04.033.024.052.007.073a.807.807 0 0 0-.122.204.75.75 0 0 0-.043.17c.03.062.024.183.022.4.343-.17.656-.212 1.007-.23.657-.767.936-.572.36-.013l-.092.176a1.4 1.4 0 0 0-.185.602c-.168.147-.993.825-.685 1.076.216-.03.35-.02.268.14-.102.216-.41.664-.308.91.038.09.17.08.3.05.01-.01.02-.017.03-.026a6.2 6.2 0 0 0 .656-.61 3.8 3.8 0 0 0 .566-.795c.02-.043.043-.083.104-.07a9.07 9.07 0 0 1 .226-.708c.087-.244.187-.49.293-.737.017-.035.067-.042.09-.01.09.13.178.226.266.287a.393.393 0 0 0 .232.083.42.42 0 0 0 .232-.078c.086-.06.17-.15.26-.272.013-.022.03-.043.072-.012.042.03.028.05.01.073a1.18 1.18 0 0 1-.283.296.49.49 0 0 1-.292.097.504.504 0 0 1-.29-.105 1.134 1.134 0 0 1-.238-.24c-.093.217-.178.432-.256.648-.087.24-.163.48-.23.72.055.046.032.088.01.13-.17.32-.38.598-.602.842-.18.2-.372.375-.56.533.027.177.072.343.153.513.36-.308.693-.62.987-.943.294-.325.55-.66.75-1.007.015-.02.027-.045.072-.02.044.027.03.05.018.072a5.98 5.98 0 0 1-.35.53c.023.034.004.048-.015.065-.038.03-.06.154-.07.313-.013.215 0 .483.025.675.002.026.007.052-.045.06-.052.007-.055-.02-.06-.046-.025-.2-.037-.476-.025-.694.002-.057.01-.11.016-.156-.078.092-.16.184-.242.277a11.547 11.547 0 0 1-1.014.966c.01.02.02.038.033.057-.316.23-.575.31-.22.618.12-.084.238-.17.356-.255l.38-.272c.02-.014.042-.03.073.012.03.042.01.056-.013.073l-.38.273-.37.264a.623.623 0 0 0 .09.362.528.528 0 0 1 .08-.007l.796-.58c.02-.016.043-.03.073.013.03.042.01.057-.012.073-.255.187-.514.375-.772.562a.714.714 0 0 1-.093.118c-.26.188-1.17.75-1.074 1.138v.002c.218-.06.436-.137.644-.244.216-.11.427-.26.626-.464.02-.02.036-.036.074 0 .035.035.02.054 0 .073a2.544 2.544 0 0 1-.65.482v.01l-.004.106c-.003.036-.003.072-.005.107-.002.026-.002.052-.054.05-.052-.002-.05-.03-.05-.055.003-.035.003-.07.005-.106.004-.02.004-.04.004-.06a3.62 3.62 0 0 1-.562.202c.078.367-.114.683-.31.998-.112.09-1.022.827-.643 1.047a.98.98 0 0 0 .33.087z"/><path d="M349.455 100.128c-.19-.114-.434-.254-.67-.3a1.44 1.44 0 0 0-.505-.563c-.176-.114-.176-.104-.11-.23.2-.02.283-.076.285-.13a.897.897 0 0 1 .27.043.4.4 0 0 1 .202.14c.016.02.03.042.073.01s.026-.053.01-.075a.542.542 0 0 0-.252-.175 1.023 1.023 0 0 0-.37-.047c-.01 0-.02 0-.03.005a.743.743 0 0 0-.332-.054c-.135-.127-.25-.276-.194-.46.007.006.02.008.03.01.107.03.207.062.292.102.083.036.152.08.2.133.016.02.035.038.073.002.038-.035.02-.054.004-.073a.744.744 0 0 0-.23-.16 2.052 2.052 0 0 0-.226-.082c.782-.16 1.48-.147 2.18.268.368.152.54.327.74.597l-.2.17c-.457-.013-.793.05-1.004.212-.19.14-.228.397-.235.653z"/></g><path d="M365.002 121.77c-.154.095-.28.162-.438.188a.072.072 0 0 0 .02-.02c.1-.19.22-.36.352-.51.017-.02.036-.04.052-.06l.007.19.007.215zm1.96 4.196a2.3 2.3 0 0 1-.376.428 3.99 3.99 0 0 1-.477.363c-.022.014-.046.03-.074-.014-.03-.043-.007-.057.014-.07.166-.11.322-.23.464-.354.14-.127.264-.262.36-.41.015-.023.03-.044.074-.016.043.03.03.05.014.072zm1.298-1.546c-.068.1-.132.2-.198.3-.014.023-.028.044-.073.015-.044-.028-.03-.05-.016-.07.067-.1.13-.202.197-.302.015-.02.03-.042.075-.014.042.028.028.05.014.073zm-.707-.1a1.11 1.11 0 0 1-.183.423c-.095.13-.235.246-.436.338-.024.013-.047.023-.07-.025-.02-.047.004-.06.027-.068a.987.987 0 0 0 .397-.306.972.972 0 0 0 .166-.383c.005-.026.012-.05.062-.038.05.01.045.035.038.06zm1.27-1.55a.934.934 0 0 0-.138.178 1.15 1.15 0 0 0-.1.22c-.01.022-.016.048-.066.032-.05-.017-.043-.043-.034-.067a1.136 1.136 0 0 1 .26-.433c.02-.02.037-.036.074 0 .036.035.02.054 0 .073zm1.037.103c-.044.147-.087.296-.14.443-.056.152-.122.3-.207.45-.015.02-.027.045-.072.02-.044-.027-.032-.05-.018-.072.083-.145.145-.29.2-.43.052-.146.094-.293.14-.44.006-.026.014-.05.063-.035.05.013.043.037.036.063zm-.47-6.075c.322.474.393.963.405 1.453a7.29 7.29 0 0 1 .125-.534c0-.003.007-.017.007-.017.135-.19.22-.38.263-.567.043-.188.043-.377.01-.565-.005-.026-.01-.05.042-.06.05-.008.057.018.062.044.036.2.036.405-.01.607a1.68 1.68 0 0 1-.272.596c-.088.33-.152.66-.213.993l-.013.06c-.01.05-.104.043-.104-.01 0-.037 0-.072.002-.11.007-.62.014-1.24-.386-1.828-.016-.02-.032-.042.013-.073.043-.03.06-.008.073.013zm-.79 1.017l-.012.12c-.002.04-.007.08-.01.12-.002.026-.004.052-.056.047-.052-.005-.05-.03-.048-.057.003-.04.008-.08.01-.12.002-.04.007-.08.012-.12.002-.025.005-.052.057-.047.052.005.05.03.047.057zm-.22 1.379c.08.263.142.53.187.806.03.187.05.377.06.57a.983.983 0 0 1 .07-.1c.086-.107.2-.2.334-.278.023-.014.046-.026.073.02.026.044.004.058-.02.07a1.048 1.048 0 0 0-.303.254.704.704 0 0 0-.147.322c-.01.052-.104.043-.104-.01a5.054 5.054 0 0 0-.065-.83 5.904 5.904 0 0 0-.183-.793c-.007-.026-.016-.05.034-.064.05-.013.057.01.064.034zm1.1.493a3.564 3.564 0 0 1 .064 1.19c-.003.027-.008.053-.06.046-.052-.007-.047-.033-.045-.06.02-.177.027-.362.018-.556a3.603 3.603 0 0 0-.08-.597c-.005-.027-.012-.05.04-.063.05-.012.057.014.06.04zm.943-.175c.035.194.054.384.045.566a1.47 1.47 0 0 1-.12.53 1.19 1.19 0 0 0-.037.584c.034.2.11.398.2.6.012.024.022.047-.026.07-.047.02-.06-.004-.07-.027a2.54 2.54 0 0 1-.207-.624 1.298 1.298 0 0 1 .04-.636l.003-.005a1.36 1.36 0 0 0 .11-.496 2.25 2.25 0 0 0-.044-.543c-.005-.025-.01-.05.043-.058.05-.01.055.016.06.042zm.455-1.564c-.024.097-.048.197-.074.296-.024.097-.047.197-.073.296-.004.026-.01.05-.06.038-.05-.012-.046-.038-.04-.064l.075-.296c.023-.097.047-.197.073-.296.007-.026.012-.05.064-.038.05.012.045.038.038.064zm-.468-2.598c.03.09.055.18.084.27.007.027.014.05-.036.064-.05.017-.057-.01-.064-.033-.028-.09-.054-.18-.083-.27-.008-.025-.015-.05.034-.063.05-.014.057.01.064.033zm.24-1.974c.002.123.002.247-.007.775a.773.773 0 0 0-.235.383 1.38 1.38 0 0 0-.007.585c.006.026.01.052-.04.062-.054.01-.058-.017-.063-.043a1.423 1.423 0 0 1 .01-.63.862.862 0 0 1 .265-.432l-.02-.33c-.004-.122-.004-.246-.006-.367 0-.026 0-.052.052-.052s.052.026.052.052zm-1.96-.686c.303.198.564.418.744.68.183.262.287.563.275.92a.053.053 0 0 1-.074.044c-.17-.074-.344-.147-.515-.22.115.736.087 1.324-.074 1.774-.17.477-.486.8-.937.986a.052.052 0 0 1-.07-.064c.088-.28.14-.56.162-.84.02-.278.01-.558-.038-.835-.005-.026-.01-.053.043-.06.052-.01.057.017.06.043.046.287.06.576.037.863-.02.252-.062.5-.133.754a1.5 1.5 0 0 0 .776-.88c.16-.452.185-1.054.057-1.817-.007-.04.036-.073.07-.057l.53.228c-.005-.3-.1-.555-.256-.78-.173-.25-.422-.46-.716-.652-.02-.014-.042-.028-.013-.073.028-.043.05-.028.07-.014zm5.13-1.01l-.04.1c-.016.034-.028.07-.042.103-.01.024-.02.047-.066.028-.048-.018-.038-.04-.03-.065.016-.033.03-.07.044-.102.014-.033.026-.07.04-.102.01-.022.02-.046.067-.027.047.02.038.042.028.066zm-1.205-.027c.1.04.18.095.246.16a.83.83 0 0 1 .16.224c.012.024.024.047-.02.07-.05.022-.06 0-.07-.023a.78.78 0 0 0-.14-.196.592.592 0 0 0-.213-.138c-.024-.01-.047-.02-.03-.066.02-.048.044-.038.068-.03zm-1.792.514c.13.145.216.313.26.505.046.187.053.396.03.62-.003.025-.005.05-.058.046-.052-.005-.05-.03-.045-.057.022-.212.017-.41-.026-.584a1.034 1.034 0 0 0-.237-.458c-.016-.018-.035-.037.005-.073.038-.036.057-.014.073.005zm-6.055.583l-.022.204-.02.204c0 .026-.003.052-.055.047-.052-.004-.05-.03-.044-.056l.02-.205.02-.204c.002-.025.005-.05.057-.046.052.004.05.03.047.056zm1.122-.592c.03.097.058.194.09.29l.025.09c.007.025.014.05-.036.063-.05.015-.058-.008-.065-.034l-.026-.088-.088-.292c-.007-.023-.015-.05.035-.064.05-.014.057.01.064.036zm2.305 1.547c.012.043.02.086.02.126a1.11 1.11 0 0 1 0 .127c0 .026-.004.052-.056.047-.053-.005-.05-.03-.048-.057a.837.837 0 0 0 0-.11.552.552 0 0 0-.02-.108c-.006-.027-.013-.05.036-.065.05-.014.057.012.064.038zm.795-1.753c.05.05.082.104.094.156a.234.234 0 0 1-.024.168c-.012.024-.026.048-.07.022-.046-.024-.034-.048-.023-.07a.14.14 0 0 0 .015-.1.25.25 0 0 0-.067-.108c-.02-.02-.035-.035 0-.073.036-.036.055-.02.074 0zm-5.5.278a.934.934 0 0 0 .254.663c.12.137.182.272.216.41.033.135.035.267.042.398 0 .027.003.053-.05.055-.052.003-.052-.023-.054-.05-.005-.127-.01-.255-.038-.38a.86.86 0 0 0-.192-.366 1.054 1.054 0 0 1-.216-.347 1.126 1.126 0 0 1-.066-.39c0-.025 0-.05.052-.05s.052.025.052.05zm2.226 1.497c.123.23.192.455.218.682.028.225.014.454-.026.694-.045.277.014.547.166.8.14.238.36.463.644.672a2.86 2.86 0 0 1-.128-.9c.015-.34.12-.67.358-.98.102-.133.17-.27.218-.41.05-.14.076-.282.095-.42.003-.025.008-.05.058-.044.052.004.047.03.045.057-.02.145-.047.292-.097.44a1.52 1.52 0 0 1-.235.438 1.587 1.587 0 0 0-.335.922c-.015.324.056.66.165 1.007.015.045-.04.083-.078.06-.358-.243-.63-.508-.798-.79a1.256 1.256 0 0 1-.178-.87c.038-.23.05-.45.024-.666a1.81 1.81 0 0 0-.207-.643c-.012-.022-.026-.045.022-.07.045-.025.06-.002.07.022zm-.894 1.367c0 .247-.068.493-.192.74a3.387 3.387 0 0 1-.377.578c.08-.03.16-.062.237-.1a2.212 2.212 0 0 0 .7-.497c.097-.1.194-.216.294-.353.014-.022.03-.043.073-.012.043.03.026.052.012.073a3.59 3.59 0 0 1-.305.365 2.48 2.48 0 0 1-.27.242 24.48 24.48 0 0 1 .07.34c.004.027.01.05-.04.063-.05.012-.058-.014-.063-.04l-.038-.183a1.542 1.542 0 0 0-.024-.114 2.21 2.21 0 0 1-.37.21c-.14.068-.28.117-.42.17-.046.016-.09-.045-.058-.083.2-.237.367-.472.484-.707.116-.232.182-.462.182-.692 0-.026 0-.052.052-.052s.052.026.052.052zm-1.088-.087v.234c0 .027 0 .053-.052.053s-.052-.026-.052-.052v-.233c0-.026 0-.053.052-.053s.052.027.052.053z"/><path d="M363.052 113.675c.142.348.18.673.126.976a1.85 1.85 0 0 1-.413.852l-.007.007a1.89 1.89 0 0 0-.474.63c-.078.16-.137.334-.182.516.056-.078.113-.152.182-.22.135-.138.296-.244.51-.304.218-.12.424-.253.616-.403.194-.152.374-.318.54-.505.017-.02.036-.038.074-.005s.02.052.004.073c-.17.192-.355.363-.554.517-.2.154-.41.292-.635.415l-.013.005a1.026 1.026 0 0 0-.47.277 2.287 2.287 0 0 0-.322.443c-.026.043-.104.014-.095-.036.053-.293.13-.57.25-.822.118-.25.28-.474.497-.66.204-.252.34-.518.39-.802.048-.285.013-.59-.122-.92-.01-.023-.02-.047.028-.07.048-.017.06.006.07.03zm2.211 3.545c-.033.095.036.183.175.363l.095.123c.188.25.256.53.26.827.006.29-.05.59-.106.882-.01.05-.094.047-.102-.003a1.79 1.79 0 0 0-.386-.86 3.432 3.432 0 0 0-.79-.692c-.02-.014-.043-.028-.014-.073.028-.043.05-.03.07-.015.323.216.603.45.814.716.16.202.282.42.353.66a3.4 3.4 0 0 0 .06-.612 1.28 1.28 0 0 0-.24-.766c-.036-.05-.067-.088-.093-.12-.163-.212-.24-.314-.192-.46.01-.024.017-.05.067-.034.05.017.04.043.033.067zm.943-.06c.038.04.08.08.116.122.038.04.08.08.117.123.018.02.034.038-.004.074-.038.034-.057.015-.073-.004-.038-.04-.078-.08-.116-.123-.038-.04-.08-.08-.116-.123-.016-.02-.035-.038.003-.074.038-.035.057-.016.073.003zm1.157.37c-.074.233-.145.463-.216.695-.073.232-.144.462-.218.694-.008.026-.015.05-.065.033-.05-.015-.042-.04-.033-.064.074-.234.145-.463.216-.696.073-.232.144-.462.218-.694.007-.026.014-.05.064-.036.05.017.042.04.033.067zm.654 3.88a.242.242 0 0 0 0 .173c.01.024.02.05-.03.067-.048.02-.058-.005-.067-.03a.347.347 0 0 1 0-.25c.01-.026.02-.05.066-.03.05.018.04.042.03.066zm-.687-1.14c-.03.12-.064.245-.095.365-.03.124-.062.244-.095.368-.007.026-.014.05-.064.038-.05-.014-.045-.037-.038-.063.03-.124.064-.244.095-.368.03-.122.064-.245.095-.366.007-.026.012-.05.064-.038.05.012.045.038.038.064zm-.99-.004l.09.09c.018.02.035.035 0 .073-.04.035-.058.018-.074 0l-.09-.09c-.02-.02-.036-.036 0-.074.038-.036.056-.02.073 0zm-1.165-.556a7.324 7.324 0 0 1-.073.205c-.024.07-.047.137-.074.206-.01.025-.016.05-.066.032-.047-.017-.04-.043-.03-.066a5.08 5.08 0 0 1 .073-.207 5.08 5.08 0 0 1 .073-.207c.01-.026.017-.05.067-.033s.04.043.033.066zm-1.665 1.76a.693.693 0 0 0-.138.222 1.29 1.29 0 0 0-.062.252c-.005.026-.01.052-.06.042-.05-.01-.046-.033-.042-.06.017-.09.036-.18.07-.27a.77.77 0 0 1 .155-.255c.017-.018.036-.037.074 0 .038.034.02.053.002.072zm-4.77 4.67a.663.663 0 0 1-.1.16 1.098 1.098 0 0 1-.16.154c-.02.016-.04.033-.073-.01-.033-.04-.012-.057.007-.073a.817.817 0 0 0 .23-.272c.012-.023.02-.047.068-.028.048.02.036.045.026.07zm.747-.395a.352.352 0 0 1-.1.135.612.612 0 0 1-.163.093c-.026.01-.05.02-.066-.03-.02-.05.007-.06.03-.068a.427.427 0 0 0 .13-.073.285.285 0 0 0 .075-.097c.01-.024.02-.048.068-.026.05.02.037.044.027.067zm.991-.605a.48.48 0 0 1-.062.086.524.524 0 0 1-.106.085c-.022.016-.045.03-.07-.015-.027-.045-.006-.06.018-.07a.38.38 0 0 0 .135-.134c.014-.02.026-.044.07-.016.046.026.032.048.02.07zm1.492-3.877c-.05.14-.082.278-.094.415a1.4 1.4 0 0 0 .024.41c.005.026.012.05-.038.062-.05.012-.057-.014-.06-.04a1.397 1.397 0 0 1-.028-.444c.015-.147.048-.294.098-.438.01-.026.016-.05.066-.033.05.016.04.042.033.066zm1.013-10.316a.872.872 0 0 1-.09.343 1.4 1.4 0 0 1-.235.337c-.016.02-.035.038-.073.002-.038-.036-.02-.055-.002-.074.094-.104.168-.21.218-.31a.768.768 0 0 0 .08-.304c0-.026 0-.052.053-.05.053.003.05.03.05.055zm-1.036-.915c.09.156.145.315.176.474.03.156.038.315.028.472 0 .026 0 .052-.053.05-.052-.003-.05-.03-.05-.055a1.76 1.76 0 0 0-.026-.446 1.463 1.463 0 0 0-.163-.443c-.01-.02-.026-.045.02-.07.044-.027.06-.003.07.018zm-1.372 1.702a1.51 1.51 0 0 1-.405-.417.653.653 0 0 1-.095-.437c.005-.026.01-.05.06-.042.052.01.047.033.042.06-.02.122.01.243.08.366.077.128.202.256.377.387.022.015.043.032.012.074-.03.043-.052.026-.073.012zm1.519 2.581v.225c0 .026 0 .052-.052.052s-.052-.026-.052-.052v-.225c0-.026 0-.053.052-.053s.052.027.052.053zm-1.941-1.955c.306.288.49.637.586 1.023.06.24.086.493.09.76.004 0 .008-.004.013-.004.138-.048.244-.17.318-.368.08-.21.12-.498.126-.865a.11.11 0 0 1 .007-.026 1.9 1.9 0 0 0 .22-.535 3.49 3.49 0 0 0 .084-.543c.004-.045.066-.064.095-.026.177.252.334.512.455.792.12.28.2.576.232.898 0 .026.004.052-.05.057-.05.005-.053-.02-.055-.047a2.905 2.905 0 0 0-.223-.865 3.868 3.868 0 0 0-.363-.656 2.897 2.897 0 0 1-.072.417 1.94 1.94 0 0 1-.225.553c-.007.375-.05.67-.13.887-.086.23-.214.372-.382.43-.016.003-.03.008-.044 0-.002.13-.01.26-.02.392 0 .026-.004.052-.056.048-.052-.005-.05-.03-.047-.057.035-.432.026-.842-.07-1.21a1.977 1.977 0 0 0-.556-.975c-.02-.017-.038-.036-.002-.074.035-.038.054-.02.073-.002zm1.137 4.865c-.02.137-.042.272-.063.41-.02.135-.043.272-.064.408-.002.026-.007.052-.06.042-.05-.007-.047-.033-.042-.06l.065-.407c.02-.137.043-.272.064-.41.004-.026.006-.05.058-.042.05.01.048.033.043.06zm-2.184.927l.057.31c.004.026.01.05-.043.06-.05.01-.057-.017-.062-.043l-.056-.312c-.005-.026-.01-.05.042-.06.05-.01.057.018.06.044zm1.889-2.508a2.27 2.27 0 0 1-.16.597c-.082.193-.196.38-.345.558l-.002.003a1.127 1.127 0 0 0-.306.636 1.8 1.8 0 0 0 .064.685c.007.027.012.05-.038.065-.05.012-.057-.012-.064-.038a1.89 1.89 0 0 1-.066-.723c.03-.24.13-.472.33-.692a2.1 2.1 0 0 0 .33-.53 2.1 2.1 0 0 0 .152-.57c.003-.026.008-.052.057-.045.052.007.048.033.045.06zm-.493-.734c.035.2.005.395-.078.594a2.22 2.22 0 0 1-.387.58l-.004.003a1.83 1.83 0 0 0-.403.48c-.1.172-.173.35-.247.53-.01.024-.02.047-.07.028-.046-.02-.037-.042-.027-.066.073-.183.15-.366.254-.544.104-.177.237-.348.42-.505.163-.18.288-.363.366-.546a.915.915 0 0 0 .07-.533c-.003-.025-.008-.05.044-.06.05-.01.057.016.062.042zm-2.412 1.144c.058.398-.003.74-.153 1.038-.147.3-.38.555-.668.785-.02.016-.04.033-.074-.01-.034-.04-.012-.057.01-.073.274-.22.5-.467.64-.75.14-.28.198-.6.144-.978-.003-.026-.008-.052.045-.06.052-.006.054.02.06.046zm-3.077 1.704c.03.062.06.123.088.185.034.066.065.13.095.197.012.023.022.047-.023.068-.048.022-.06 0-.07-.023-.03-.067-.063-.13-.094-.197-.028-.062-.06-.123-.088-.182-.01-.024-.02-.048.024-.07.048-.02.06 0 .07.025zm-1.221.024a2.69 2.69 0 0 0 .074.69c.06.222.154.438.31.644l.005.01c.08.158.124.317.155.478.02.12.036.237.043.356.15-.16.263-.32.346-.488a1.44 1.44 0 0 0 .15-.605c0-.026 0-.052.05-.05.053 0 .053.027.05.053a1.549 1.549 0 0 1-.158.647c-.102.208-.25.407-.448.6-.03.03-.085.01-.087-.036a3.252 3.252 0 0 0-.047-.457 1.762 1.762 0 0 0-.142-.448 1.94 1.94 0 0 1-.324-.677 2.703 2.703 0 0 1-.078-.718c0-.027 0-.053.052-.053s.052.026.052.053zm.166 4.168a2.63 2.63 0 0 1 .18-.766c.01-.022.02-.046.067-.027.05.02.038.042.03.066a2.524 2.524 0 0 0-.173.732c-.002.027-.002.053-.056.048-.053-.003-.05-.03-.048-.055zm-.142 1.162c.02-.154.043-.308.064-.462.002-.026.007-.052.06-.045.05.007.047.033.044.06-.02.153-.042.307-.064.46-.002.027-.007.053-.06.046-.05-.006-.046-.032-.044-.058zm-.799 1.946c.076-.076.15-.166.218-.266.07-.102.138-.213.204-.33.01-.023.025-.044.07-.02.045.026.033.047.02.07a4.037 4.037 0 0 1-.21.34c-.073.104-.15.2-.232.28-.02.018-.038.035-.073 0-.036-.036-.017-.055 0-.074zm-1.154-6.53v.192c0 .026 0 .053-.052.053-.05 0-.05-.027-.05-.053v-.192c0-.026 0-.052.05-.052.053 0 .053.026.053.052zm-1.953 4.499a2.863 2.863 0 0 0-.01-.142l-.01-.145c0-.026 0-.052.05-.055.053-.002.056.022.056.05l.01.142c0 .048.004.095.01.143 0 .026 0 .052-.05.054-.053.002-.056-.02-.056-.05zm4.904-8.001c-.1.343-.178.7-.17 1.007.004.296.087.543.3.68.25.16.358.403.462.638.007.015.012.03.02.043.03-.116.056-.24.068-.362.017-.15.017-.298-.005-.43-.006-.027-.01-.053.042-.062.05-.01.057.016.06.042.023.142.023.3.006.46-.02.178-.06.358-.11.514-.015.043-.077.048-.096.007a5.946 5.946 0 0 1-.078-.17c-.097-.22-.2-.447-.424-.592-.247-.158-.344-.436-.35-.765-.006-.318.072-.685.174-1.038.007-.026.014-.05.064-.036.05.013.043.037.036.063zm-.344-1.311a2.52 2.52 0 0 1-.02.763 4.006 4.006 0 0 1-.233.76 2.41 2.41 0 0 0-.166 1c.017.34.105.676.26.996.013.024.025.048-.022.07-.048.023-.06 0-.07-.025a2.537 2.537 0 0 1-.1-2.078 3.8 3.8 0 0 0 .227-.743c.045-.238.054-.475.02-.73-.002-.027-.006-.053.046-.06.05-.007.055.02.06.045zm-2.277 3.242a.79.79 0 0 0-.06.47c.03.158.097.32.195.48.014.022.026.046-.017.072-.044.025-.058.003-.07-.02a1.504 1.504 0 0 1-.206-.517.876.876 0 0 1 .066-.53c.012-.022.02-.046.07-.025.046.022.034.045.025.07zm-.993-.355c.016.092.02.2.01.31a.858.858 0 0 1-.07.27v.003a.397.397 0 0 0-.038.263c.02.092.067.185.13.28.015.02.03.042-.014.073-.042.032-.056.01-.073-.013a.852.852 0 0 1-.147-.318.484.484 0 0 1 .047-.333.76.76 0 0 0 .062-.234c.01-.098.005-.197-.01-.282-.004-.025-.01-.052.043-.06.052-.008.057.018.06.044zm5.806-8.602a2.318 2.318 0 0 0 .313 1.468c.013.02.025.045-.02.07-.045.027-.057.003-.07-.018a2.59 2.59 0 0 1-.288-.723 2.33 2.33 0 0 1-.038-.806c.002-.025.005-.05.057-.044.053.005.05.03.046.057zm-.728.705c.136.24.252.497.34.78.087.282.146.592.168.936.002.027.002.053-.05.055-.052.003-.052-.024-.055-.05a3.77 3.77 0 0 0-.492-1.668c-.01-.024-.026-.045.02-.07.044-.027.06-.004.07.018zm-3.608.111c-.347.496-.5.898-.527 1.247-.03.346.064.635.2.903l.004.007c.094.275.137.547.13.822a2.58 2.58 0 0 1-.16.82c-.008.026-.015.05-.065.03-.05-.015-.04-.042-.03-.065.094-.263.146-.524.153-.787a2.25 2.25 0 0 0-.123-.782 1.7 1.7 0 0 1-.21-.954c.03-.365.186-.787.546-1.3.015-.02.03-.042.074-.013.042.03.028.052.012.073zm3.364-1.426c.03.15.017.305-.052.457-.06.14-.168.272-.327.398a.81.81 0 0 0-.3.486c-.044.202-.034.437.016.7.005.026.01.052-.042.062-.05.01-.057-.017-.062-.043-.05-.278-.06-.525-.01-.74a.913.913 0 0 1 .335-.546.986.986 0 0 0 .297-.357c.06-.13.07-.266.045-.394-.004-.026-.01-.05.04-.06.05-.01.058.015.062.04zm-3.562.305c.07.22.07.436.007.652-.062.213-.19.424-.385.63l-.004.005a1.21 1.21 0 0 0-.37.576 2.87 2.87 0 0 0-.115.737c-.003.026-.003.052-.055.05-.052-.003-.05-.03-.05-.055a3.04 3.04 0 0 1 .12-.763c.075-.237.198-.45.4-.62.182-.195.3-.392.36-.59a1.01 1.01 0 0 0-.007-.59c-.007-.027-.017-.05.033-.065.05-.014.057.01.064.036zm2.038.107a.763.763 0 0 0 0 .232c.012.074.04.145.088.213.014.022.03.043-.014.074-.043.03-.057.01-.074-.013a.628.628 0 0 1-.104-.254.816.816 0 0 1 0-.263c.002-.026.007-.052.06-.045.052.007.047.033.044.06zm-.097-.536a.853.853 0 0 0-.43.4c-.1.188-.16.43-.18.726.013.014.02.026.02.036.1.135.168.296.21.476.048.197.065.42.058.66 0 .027 0 .053-.054.05-.052 0-.05-.028-.05-.05a2.423 2.423 0 0 0-.054-.636c-.038-.16-.097-.3-.18-.42-.386.36-.576.758-.588 1.192-.014.453.164.946.505 1.472.013.02.028.045-.015.073-.043.03-.057.005-.07-.016-.354-.546-.537-1.058-.523-1.532.015-.467.218-.894.638-1.278v-.002c.016-.325.08-.59.192-.8a.955.955 0 0 1 .483-.447c.024-.008.048-.018.07.03.018.047-.006.06-.03.07zm-.578-.749c-.005.043-.01.076-.012.112-.026.245-.052.522-.24.69a.83.83 0 0 0-.217.318 1.61 1.61 0 0 0-.088.39c-.002.025-.005.05-.057.044-.05-.005-.046-.03-.044-.06a1.71 1.71 0 0 1 .095-.414.92.92 0 0 1 .245-.358c.156-.14.185-.398.206-.623a2.69 2.69 0 0 0 .013-.114c.002-.026.007-.052.06-.045.05.007.047.033.044.06zm5.662 6.041c.062.128.11.26.144.396.035.135.05.275.044.42 0 .026-.002.052-.054.05-.053-.003-.05-.03-.05-.055a1.433 1.433 0 0 0-.038-.392c-.03-.126-.08-.25-.14-.375-.012-.023-.02-.047.026-.068.048-.022.057 0 .07.023zm.016 1.858c.046.214.048.432.01.65-.038.218-.12.44-.237.666l-.24.562c-.01.023-.02.047-.068.028-.048-.02-.038-.045-.03-.07.082-.186.16-.376.24-.563l.003-.006a2.15 2.15 0 0 0 .23-.635 1.606 1.606 0 0 0-.008-.612c-.005-.026-.01-.052.04-.062.05-.012.057.014.06.04zm-1.18-1.73c.34.377.56.775.664 1.195.106.42.095.86-.033 1.32-.007.027-.015.05-.064.037-.05-.015-.043-.038-.036-.064.123-.444.135-.866.033-1.268-.102-.403-.315-.787-.642-1.152-.017-.02-.033-.038.005-.074s.057-.015.073.004zm-.103 2.086a5.328 5.328 0 0 1-.867 1.322 2.52 2.52 0 0 0-.54.94c-.014.046-.104.03-.1-.02a1.453 1.453 0 0 0-.05-.47 1.866 1.866 0 0 0-.21-.47c-.19-.278-.27-.56-.256-.84.017-.28.128-.557.327-.834.114-.194.195-.39.252-.585a2.39 2.39 0 0 0 .092-.588c0-.026.002-.052.055-.05.052.002.05.028.05.054a2.61 2.61 0 0 1-.36 1.224l-.003.005c-.188.262-.294.523-.308.78-.015.262.064.52.24.78v.003c.1.166.174.332.222.5.02.08.038.157.047.235a2.65 2.65 0 0 1 .47-.728 4.92 4.92 0 0 0 .496-.65c.14-.217.256-.433.355-.648.013-.024.023-.048.07-.026.047.02.036.045.026.068zm-3.094-.995c-.007.258.017.5.07.727.05.225.136.436.255.63.015.022.027.046-.016.072-.045.028-.057.004-.07-.017a2.254 2.254 0 0 1-.27-.66 2.994 2.994 0 0 1-.07-.753c0-.026.003-.053.052-.05.052.002.052.028.05.052zm-1.761.943v.302c0 .027 0 .053-.052.053s-.052-.026-.052-.052v-.303c0-.026 0-.052.053-.052.052 0 .052.026.052.052zm.583-1.61c.005.178-.02.35-.073.517a1.437 1.437 0 0 1-.273.474c-.016.02-.033.042-.073.006-.042-.033-.023-.052-.006-.073.118-.14.2-.287.25-.44a1.37 1.37 0 0 0 .07-.482c0-.025-.002-.052.05-.052.052 0 .052.027.052.05zm-1.585 3.124c-.285-.708-.353-1.27-.282-1.727.072-.463.285-.813.565-1.1.187-.192.35-.382.457-.62.107-.236.157-.52.12-.904-.004-.026-.006-.052.046-.057.052-.005.052.02.057.047.038.403-.014.704-.128.958-.11.252-.282.45-.476.65a1.87 1.87 0 0 0-.535 1.043c-.07.44 0 .986.277 1.676.01.022.02.046-.028.065-.048.02-.06-.005-.07-.028zm-.915-1.164a.72.72 0 0 0-.045.344c.012.114.054.23.125.346.015.022.03.045-.016.07-.045.03-.057.006-.07-.015a.942.942 0 0 1-.14-.39.83.83 0 0 1 .05-.39c.01-.024.02-.047.067-.03.05.018.037.042.03.066zm4.498-3.194c.187.263.296.535.318.82.02.284-.043.578-.204.884-.012.02-.024.045-.07.02-.046-.022-.032-.046-.02-.068.15-.286.213-.56.192-.827a1.51 1.51 0 0 0-.3-.768c-.015-.02-.03-.042.013-.073.043-.03.057-.01.073.012zm1.406-1.1a2.402 2.402 0 0 1 .07 1.67c-.014.048-.1.04-.1-.013a1.784 1.784 0 0 0-.162-.702 1.523 1.523 0 0 0-.43-.534c-.018-.017-.04-.034-.007-.074.034-.04.053-.024.074-.007.2.16.353.35.457.57.064.136.112.283.14.44.03-.173.045-.346.038-.52a2.25 2.25 0 0 0-.175-.79c-.01-.025-.02-.048.028-.07.048-.02.06.005.07.03zm.834-1.14c.185.183.315.424.396.723.078.293.106.64.092 1.035v.002a2.02 2.02 0 0 0-.007.484.95.95 0 0 0 .137.41c.015.022.03.046-.014.074-.045.03-.06.005-.073-.017a1.06 1.06 0 0 1-.154-.455 2.28 2.28 0 0 1 .007-.507v.003a3.518 3.518 0 0 0-.088-1.005 1.478 1.478 0 0 0-.367-.676c-.02-.02-.038-.035 0-.073.035-.038.054-.02.073 0zm-2.214-.22c-.12.147-.194.32-.23.512-.035.194-.03.407.005.64.005.026.01.05-.043.06-.05.008-.054-.018-.06-.044a2.023 2.023 0 0 1-.004-.675c.038-.21.12-.397.252-.56.016-.02.033-.04.073-.008.04.034.024.052.007.074zm-4.339 2.922a1.98 1.98 0 0 1-.346 1.07 2.485 2.485 0 0 1-.8.705c-.023.014-.046.026-.072-.02-.027-.044-.005-.056.018-.07.31-.182.576-.4.768-.675.193-.273.312-.605.33-1.015 0-.026.003-.052.055-.05.052.003.05.03.05.055zm-.113-1.493c.025.16.016.317-.02.474a2.172 2.172 0 0 1-.175.466c-.012.023-.024.045-.07.023-.047-.024-.035-.048-.023-.07.076-.15.135-.298.168-.442.034-.145.043-.287.022-.437-.003-.025-.007-.05.045-.058.052-.007.057.02.06.045zm2.94-.215v.146l.05.763.005.068c.002.026.002.052-.048.057h-.016c-.006.01-.018.014-.042.014-.052 0-.052-.027-.052-.053v-.844l-.014-.206c-.003-.026-.005-.052.047-.057.05-.002.054.022.056.048v.016c.012.01.012.026.012.043zm.71-1.31c-.21.252-.293.496-.297.736-.005.24.068.478.177.715.247.397.327.79.3 1.186-.022.394-.153.785-.326 1.176-.012.024-.02.047-.07.026-.046-.02-.034-.045-.025-.07.17-.378.293-.76.317-1.14a1.848 1.848 0 0 0-.287-1.127l-.002-.004c-.116-.25-.195-.504-.19-.765.005-.262.097-.528.32-.8.017-.02.033-.04.074-.007.04.033.023.052.007.073zm-4.56-8.128c.345-.263.68-.412 1.035-.45.35-.036.713.04 1.106.225.132-.003.262-.003.392-.005.133-.002.268-.005.4-.005.027 0 .053 0 .053.052s-.026.052-.052.052c-.135.002-.268.004-.4.004-.12.003-.24.003-.36.005l-.008.008c-.422.372-.782.576-1.102.642a1.06 1.06 0 0 1-.872-.19c-.025-.018-.05-.037-.016-.09.036-.05.064-.035.09-.016a.96.96 0 0 0 .773.168c.28-.06.597-.232.97-.547-.342-.15-.655-.21-.956-.178-.326.033-.643.176-.968.424-.026.02-.052.04-.09-.01-.038-.053-.014-.072.012-.09z"/><path d="M351.64 100.993a.26.26 0 0 1 .26.26.26.26 0 0 1-.26.26.26.26 0 0 1-.26-.26.26.26 0 0 1 .26-.26zm1.794 1.577c.188-.098.332-.203.453-.31.12-.106.213-.215.294-.324.015-.02.032-.043.074-.012.043.03.027.052.012.074a2.265 2.265 0 0 1-.308.343c-.125.113-.277.22-.474.32-.023.013-.047.025-.07-.02-.022-.045 0-.06.023-.07zm3.7-1.532a.522.522 0 0 1 .29.002.766.766 0 0 1 .28.154c.018.017.04.033.006.074-.033.04-.052.023-.074.007a.666.666 0 0 0-.24-.133.463.463 0 0 0-.236-.002c-.026.007-.05.014-.064-.038-.014-.05.012-.057.036-.064zm-2.116.085a.852.852 0 0 1 .38-.426c.172-.09.387-.128.65-.105.027.003.053.005.048.057-.005.05-.03.05-.057.047-.245-.022-.442.01-.593.092a.728.728 0 0 0-.335.376c-.01.024-.02.047-.068.026-.048-.02-.038-.045-.026-.07zm.242.347a.423.423 0 0 1 .115-.24.558.558 0 0 1 .268-.147c.026-.007.05-.014.064.035.014.05-.012.057-.035.064a.445.445 0 0 0-.218.12.346.346 0 0 0-.088.184c-.005.026-.01.05-.06.042-.05-.007-.047-.033-.042-.06zm-3.522 1.17c-.057.09-.11.182-.147.282a.823.823 0 0 0-.047.332c.003.026.005.052-.047.054-.052.003-.055-.02-.057-.047a.944.944 0 0 1 .05-.374c.04-.11.096-.208.157-.303.015-.02.03-.045.072-.017.044.03.03.05.015.072zm1.009.453v.156c0 .025 0 .05-.052.05s-.052-.025-.052-.05v-.157c0-.026 0-.053.052-.053s.052.027.052.053zm-.657-1.128a.96.96 0 0 0 .31.06c.105 0 .212-.015.316-.04.026-.004.05-.01.062.04.012.05-.014.056-.038.063a1.4 1.4 0 0 1-.34.04.995.995 0 0 1-.347-.066c-.026-.01-.05-.02-.03-.067.018-.05.042-.038.065-.03zm.65-1.895a.318.318 0 0 0-.21.065.377.377 0 0 0-.13.19c-.006.026-.013.05-.063.035-.05-.014-.043-.04-.035-.064a.49.49 0 0 1 .168-.242.43.43 0 0 1 .272-.085c.026 0 .053 0 .053.05 0 .053-.027.053-.053.053zm-1.05.108a.796.796 0 0 0-.187.11.254.254 0 0 0-.083.112c-.01.026-.017.05-.066.033-.05-.016-.04-.04-.034-.066.02-.06.06-.11.117-.16a.863.863 0 0 1 .215-.127c.024-.01.048-.02.067.03.02.046-.004.058-.03.068zm-.647.018a.82.82 0 0 0-.163.147.67.67 0 0 0-.107.183c-.01.024-.017.05-.066.03-.048-.016-.04-.042-.03-.066a.737.737 0 0 1 .122-.213.9.9 0 0 1 .184-.168c.02-.015.043-.03.073.013s.01.057-.014.073zm-.833.666a1.702 1.702 0 0 0-.378.392c-.014.02-.03.042-.073.01-.044-.03-.028-.05-.013-.072.06-.083.123-.16.19-.228.066-.068.137-.13.21-.184.022-.017.043-.03.074.01.032.042.01.056-.01.072zm.084.918c-.05.054-.1.11-.15.16l-.15.162c-.017.02-.036.038-.074.002-.038-.035-.022-.054-.003-.073l.15-.16.15-.16c.018-.02.037-.04.075-.004.038.036.02.055.002.074zm-.841.244v.322c0 .026 0 .052-.052.052-.05 0-.05-.026-.05-.052v-.322c0-.026 0-.052.05-.052.053 0 .053.026.053.052zm1.077 1.416c-.015.176-.032.352-.05.53 0 .016 0 .033-.003.05-.003.025-.005.05-.057.047-.052-.005-.05-.03-.048-.057.003-.017.003-.033.005-.05l.05-.528c.002-.027.005-.053.057-.048.052.005.05.03.047.057zm-.632-.468c-.002.114-.007.23-.01.343 0 .026-.004.053-.056.05-.052-.002-.05-.028-.05-.052.003-.116.007-.23.012-.346 0-.026.002-.052.055-.05.05.003.048.03.048.055zm-.588-4.489a.73.73 0 0 1 .467.467c.01.026.017.05-.033.066-.05.017-.057-.01-.066-.033a.65.65 0 0 0-.156-.254.696.696 0 0 0-.25-.152c-.023-.01-.047-.02-.03-.067.02-.048.043-.04.066-.03zm5.162 6.731c.1.225.155.45.157.673.004.225-.04.45-.136.675-.01.024-.02.048-.067.03-.047-.02-.037-.046-.028-.07a1.547 1.547 0 0 0-.022-1.266c-.012-.023-.022-.047.026-.068.047-.022.06.002.068.026zm-1.682 1.946c.073-.254.18-.474.303-.676.123-.2.263-.384.403-.564.16-.21.268-.436.325-.668a1.82 1.82 0 0 0 .02-.76c-.005-.025-.01-.048.042-.058.05-.01.057.017.06.043.047.26.045.533-.02.8-.06.247-.17.49-.343.71a6.316 6.316 0 0 0-.397.554c-.118.195-.223.41-.29.65-.008.026-.016.05-.065.036-.05-.014-.043-.038-.036-.064zm-2.164-.572a.718.718 0 0 1 .16-.25.902.902 0 0 1 .262-.186c.024-.012.047-.02.07.024.02.047 0 .06-.027.07a.795.795 0 0 0-.234.162.573.573 0 0 0-.135.216c-.01.024-.018.05-.066.03-.047-.016-.04-.042-.03-.066zm-.42-.151c.08-.105.162-.202.254-.287.095-.088.202-.16.325-.21.023-.01.047-.02.066.027.02.05-.004.06-.03.067a.967.967 0 0 0-.29.19 2.06 2.06 0 0 0-.243.274c-.017.022-.03.043-.073.01-.043-.03-.026-.052-.01-.074zm2.244-2.223c.09.04.174.06.257.06a.826.826 0 0 0 .242-.03c.025-.007.048-.014.063.036.014.05-.012.057-.036.064a.794.794 0 0 1-.57-.036c-.022-.01-.046-.02-.025-.068.02-.048.045-.036.07-.026zm-1.118-.144c.026-.032.052-.06.078-.09l.01-.013c.017-.02.035-.038.073-.005.038.036.022.055.005.074l-.01.012c-.025.03-.05.06-.08.09-.017.02-.033.038-.073.005-.038-.034-.022-.055-.005-.074zm24.136 6.962c.05.055.093.112.13.173.036.062.065.126.088.194.01.026.017.05-.033.063-.05.017-.057-.01-.066-.033a.76.76 0 0 0-.078-.173.796.796 0 0 0-.118-.154c-.016-.02-.035-.038.003-.073.038-.036.057-.017.073.002zm-26.795 12.575c.114.105.232.2.363.266a.95.95 0 0 0 .43.104c.027 0 .053 0 .053.052 0 .05-.027.05-.053.05-.178 0-.334-.044-.48-.115-.14-.07-.267-.17-.385-.28-.02-.016-.038-.035-.002-.073.035-.038.054-.02.073-.002z"/><g fill="red"><path d="M368.9 99.6a8.222 8.222 0 0 0 1.655-.08c-.52.378-1.187.63-1.905.75a.77.77 0 0 0 .27-.34.426.426 0 0 0-.02-.33zm-1.42-.148c.385.064.786.11 1.182.135.004.01.012.017.016.026.064.088.083.173.055.256-.033.094-.123.194-.27.296-.04.028-.08.057-.024.135a5.63 5.63 0 0 1-1.215.022.177.177 0 0 0 .04-.033c.145-.153.238-.31.264-.473a.627.627 0 0 0-.05-.362zm-10.49-3.014c.668-.088 1.348-.11 2.04-.093a.985.985 0 0 1 .5.406c.114.2.154.46.107.785-.007.047-.014.097.083.11.097.013.104-.037.11-.084.05-.37.003-.67-.132-.907a1.046 1.046 0 0 0-.256-.294c.062.002.124.004.185.01.797.042 1.415.27 2.107.613a.118.118 0 0 1 .017.02c.148.153.197.312.174.475-.026.173-.13.36-.296.552-.03.038-.064.074.01.138.075.064.108.026.14-.012.186-.22.31-.44.34-.652a.696.696 0 0 0-.035-.348c.583.29 1.175.566 1.75.87.013.007.025.01.037.02 0 .01.004.025.01.036a.484.484 0 0 1-.053.425c-.088.125-.247.234-.476.32-.045.016-.09.033-.056.125.033.09.08.074.125.057.27-.103.46-.233.568-.394a.63.63 0 0 0 .107-.453c.38.206.763.42 1.154.607v.002c.07.138.082.26.027.375-.057.12-.19.234-.4.338-.043.022-.088.043-.045.13.042.09.087.067.13.046.254-.125.415-.27.49-.43a.544.544 0 0 0 .043-.346c.135.06.273.116.413.168a8.1 8.1 0 0 0 1.32.35.466.466 0 0 1 .11.377.736.736 0 0 1-.212.368c-.033.035-.066.068.002.137a.27.27 0 0 0 .03.026c-1.48-.15-2.798-.86-4.177-1.393-.163-.064-.33-.126-.492-.19-.51-.192-1.024-.453-1.536-.66a.16.16 0 0 0-.066-.034c-.036-.012-.07-.024-.105-.033-.02-.01-.044-.017-.065-.027.002.003.007.005.01.008a8.477 8.477 0 0 0-1.418-.33 6.112 6.112 0 0 0-1.626-.018l-.09-.014c.05-.292.01-.548-.134-.77a1.25 1.25 0 0 0-.47-.415z"/><path d="M354.565 97.09a8.688 8.688 0 0 1 2.074-.603c.32.128.534.285.655.47.116.182.145.395.104.642a4.197 4.197 0 0 0-1.84.225c-.156-.33-.367-.53-.614-.638a1.243 1.243 0 0 0-.38-.1zm7.458 3.772a9.414 9.414 0 0 0-.56-.334 6.92 6.92 0 0 0-3.037-.86c.01-.007.016-.017.026-.024.377-.384.46-.746.332-1.085-.1-.264-.33-.508-.647-.73.355-.018.684.004 1.054.056.523.073 1.198.25 1.814.497.152.332.195.624.128.87-.07.26-.263.474-.576.652-.042.024-.085.047-.038.133.048.085.09.06.133.035.364-.204.586-.46.67-.772.063-.24.044-.51-.062-.812.417.187.794.41 1.057.654.343.237.682.476 1.014.727.002.42-.122.66-.326.786-.215.13-.523.147-.874.112-.047-.005-.097-.01-.107.087v.005z"/><path d="M364.052 102.39c-.616-.482-1.218-.985-1.865-1.42.358.03.678 0 .92-.143.234-.145.388-.396.414-.806.387.3.76.615 1.113.954.177.168.355.334.538.498 0 .002.003.004.003.01.043.15.057.28.045.39a.46.46 0 0 1-.11.263.547.547 0 0 1-.274.154c-.173.05-.398.058-.675.028-.046-.005-.094-.01-.106.073z"/><path d="M366.178 103.79c-.213-.11-.417-.223-.614-.34-.472-.28-.915-.6-1.348-.933.265.02.488.007.668-.043a.75.75 0 0 0 .365-.21c.09-.1.143-.224.16-.375a.922.922 0 0 0-.002-.215c.424.363.87.7 1.35.993.252.154.505.3.757.434-.003.017 0 .033.002.052.03.195-.078.318-.277.396-.233.092-.58.13-.974.154-.045.002-.088.005-.093.08z"/><path d="M368.448 104.68a11.886 11.886 0 0 1-2.054-.782c.365-.026.687-.068.92-.16.262-.105.414-.266.404-.524a10.8 10.8 0 0 0 1.273.55c.077.168.082.305.01.42-.085.143-.272.262-.504.364-.045.02-.09.04-.05.128v.002z"/><path d="M373.18 104.2c.06-.01.44-.11.243.035-1.394.912-3.162.91-4.828.48.26-.115.47-.255.576-.43a.57.57 0 0 0 .058-.443c.53.173 1.07.296 1.624.367a.376.376 0 0 1-.088.252c-.088.11-.237.216-.48.323-.046.02-.09.038-.05.128.037.09.082.07.127.05.276-.12.454-.25.558-.38a.55.55 0 0 0 .13-.353 8.963 8.963 0 0 0 2.133-.033zm-9.638 24.005c-.104.11-.19.23-.277.372-.405.135-.763.337-1.2.318 0 .282.093.405.375.407.538-.27.66-.32.707-.282.066.057-.076.444-.522.756-.068.043-.066.07-.026.14.376.59 1.364.38 1.895.24.38-.1 1.064-.55 1.254-.93.072-.172-.093-.4-.26-.585-.42.065-.563-.13-.497-.264-.443-.157-.936-.19-1.45-.17zm-15.152-4.775c-.307.25-.65.45-1.05.583-.153.05-.52.14-.556.33-.005.07.247.22.408.132.445-.427.668-.19.156.246-.04.084-.007.177.08.255.463.415 1.608.55 2.13.22.385-.24.587-.507.25-.874a1.74 1.74 0 0 1 .026-.246l-.637-.064-.39-.227-.416-.353zm9.974 3.47c-.038.004-.078.01-.116.016-.206.223.36.14.66.325.14.084.198.247.143.475-.276.66-1.824.447-2.338.175-.24-.126-.25-.27-.24-.476.107 0 .216-.008.325-.024.185-.026.368-.08.548-.183.05-.028.102-.06.045-.158-.057-.103-.11-.075-.16-.046a1.294 1.294 0 0 1-.463.154 2.57 2.57 0 0 1-.486.016h-.04c-.09-.052-.158-.114-.12-.168.038-.052.187.005.215.014.24-.11.448-.182.707-.232.035-.036.068-.074.104-.11.47.04.922.112 1.22.22zm-7.154-.406c-.096.057-.13.137-.198.287-.27.273-.528.437-.874.593-.287.13-.01.256.192.394.182.135.422-.16.57-.382.164-.246.33-.173.224.02-.12.21-.204.513-.216.672-.062.17.588.3.7.306.395.02.893-.367 1.203-.564.26-.264.22-.494.105-.814l.003-.02a1.97 1.97 0 0 1-.477-.05 3.432 3.432 0 0 1-.558-.184c-.024-.01-.047-.02-.028-.068.01-.03.026-.038.042-.036l-.682-.156zm2.77-26.378c.11-.005.218-.01.324.002.202.024.394.112.595.135.672-.253 1.23-.393 1.71-.372a5.68 5.68 0 0 1 1.728-.217.076.076 0 0 1-.02-.02c-.07-.067-.037-.103 0-.136.314-.32.387-.614.285-.88-.104-.274-.388-.533-.784-.77-.423.048-.828-.066-1.276-.016a4.06 4.06 0 0 0-.825.183c.224.08.42.213.582.403.2.235.34.555.417.958.01.047.016.094-.08.113-.094.02-.103-.03-.113-.078-.068-.368-.196-.657-.374-.868-.187-.268-.616-.372-.75-.427-.45.045-.89.095-1.274.194-.29.073-.544.175-.738.327.29-.062.59-.05.85.08.25.123.46.356.593.732.017.044.03.092-.062.123-.092.03-.11-.015-.123-.062-.11-.324-.287-.518-.493-.62-.41-.204-1.256-.026-1.614.24a4.23 4.23 0 0 0-.623.592c-.02.026-.045.05-.073.052.767.052 1.54.093 2.137.332zm-2.278-.434c-.017-.042.012-.073.038-.104.216-.244.434-.46.66-.626.217-.16.442-.277.674-.332.237-.263.588-.42.996-.526.395-.102.848-.154 1.305-.2-.135-.27-.308-.435-.507-.523-.213-.093-.46-.108-.723-.082-.552.19-1.042.486-1.514.82.044 0 .086 0 .127.003.14.01.265-.01.38.034.05.017.094.033.06.126-.04.11-.346.042-.452.035a1.352 1.352 0 0 0-.4.038c-.024.005-.046.012-.067.005-.495.306-.87.616-1.27.955.303.107.54.232.694.38z"/></g><g><path d="M409.028 156.5l20.742-47.013-15.3-24.705-27.287 10.103-12.63 49.687a219.388 219.388 0 0 1 34.472 11.93z" fill="#0093dd"/><path d="M382.576 113.013a251.716 251.716 0 0 1 39.59 13.704l-8.003 18.147a231.952 231.952 0 0 0-36.474-12.623z" fill="#fff"/><path d="M415.45 141.95l5.347-12.12a248.557 248.557 0 0 0-39.055-13.518l-3.152 12.398a235.895 235.895 0 0 1 37.045 12.822l-.185.417z" fill="red"/><path d="M385.59 125.755c.358-.226.74-.17 1.124-.11.31-.116.668-.156 1.057-.142.167-.09.36-.154.577-.194.116-.09.12-.188.016-.293a.62.62 0 0 1-.158-.353c-.616-.357-.844-.903-1.08-1.443-.35-.09-.513-.21-.55-.343-.17-.016-.34-.033-.508-.052-.8.088-1.005-.17-1.29-.38-.236-.08-.443-.21-.575-.46l-.263-.33c-.22-.278-.153-.645.176-.624.233.027.463.027.676-.065.25-.112.62-.11.903-.086.334-.02.545-.235.87-.54-.003-.13-.003-.257-.005-.387-.052-.14.014-.202.2-.183a.98.98 0 0 1 .866.508c.505.087.903.33 1.17.753.672.004 1.125.257 1.18.506.04.182-.157.39-.46.614.002.045.004.092.004.137.18.157.3.313.36.467.377.145.737.34 1.074.623.96-.11 2.578.586 4.766 1.982a18.58 18.58 0 0 1 4.12 1.217c.28.01.558.017.836.026 2.372-.35 4.67-.08 6.804 1.55.806.097 1.53.35 2.228.64.52.213 1.047.296 1.58.346a7.93 7.93 0 0 1 2.605.698c.974.218 1.884.524 2.448 1.206.402.484.305.93-.205 1.114-.308.65-.922.678-1.84.358-.634.116-1.33-.39-1.964-.867-.878-.283-1.686-.79-2.485-1.33-.415-.31-.834-.508-1.242-.596-.32-.068-.606-.113-.798 0-.095.057-.083.09 0 .16.222.186.38.466.43.803.044.296-.004.637.013 1 .02.38.25.66.633.896.264.16.576.33 1.03.395.215.043.276.17.27.332.12.578.232 1.16.443 1.685.06.15.173.22.343.346.586.423.282.895-.25.997-.468.412-.87.69-1.35.798-.38.128-.538-.028-.666-.215a.483.483 0 0 1-.443-.247c-.467-.343-.068-.94 1.048-.685.024-.13.118-.17.213-.168-.066-.29-.104-.61.02-.912-.098-.064-.183-.145-.328-.192-.403-.128-.784-.313-1.085-.595-.572-.537-1.465-.988-2.325-1.44-.71-.036-1.24-.363-1.797-.64l-.754-.01c-.22-.073-.4.003-.534.16-.223.272-.48.227-.787.19-.35-.04-.707-.013-1.058-.018-.173.043-.343.097-.53.1-.396-.022-.783-.026-1.046.194-.218.23-.436.213-.654.128a.978.978 0 0 1-.35-.242c-.276-.057-.453-.125-.513-.208-.463-.13-.593-.26-.572-.39-.614-.148-.322-.632.076-.648.47-.02.898.07 1.358.135.386.11.863.046 1.178-.24.204-.184.28-.342.53-.48-.795-.052-1.38-.192-1.812-.464-1.16-.733-2.09-.91-2.83-.29-.197.112-.35.157-.562.076a1.063 1.063 0 0 0-.583-.028c-.42.095-.834.043-1.253-.11a4.09 4.09 0 0 1-1.84.063c-.518.272-.898.303-1.14.094a8.548 8.548 0 0 1-.646-.397c-.33-.05-.472-.132-.486-.242-.422-.046-.474-.2-.472-.368-.175-.202-.11-.356.066-.486.313-.13.638-.178.998.007.216.102.375.2.505.303.24-.028.446 0 .626.067.133-.21.51-.218.923-.195.206-.137.452-.234.768-.263-.01-.05-.018-.1-.026-.147-.414-.11-.628-.41-.834-.713-.637-.012-1.095-.28-1.55-.56-.374.032-.675-.092-.967-.267-.237.02-.5.028-.75-.036a2.55 2.55 0 0 1-1.4 0c-.31.03-.56-.002-.815-.026-.29.334-.618.394-.976.223-.197-.25-.476-.413-.83-.506-.267-.087-.35-.204-.398-.33-.327-.2-.26-.4.055-.55.236-.115.532-.136.982.086.147.055.31.093.496.107z"/><path d="M401.218 130.518c-.03-.054-.097-.192-.336-.054-.742-.04-1.57-.03-2.195-.398-.65-.382-1.318-.78-2.036-.752.215-.2.48-.34.788-.422.413-.11.9-.116 1.44-.028.76.123 1.428.27 1.945.465.497.186.848.418 1.002.717a.406.406 0 0 0 .043.047c.2.128.372.258.516.396.11.102.204.208.285.322a2.5 2.5 0 0 1-.715-.043 2.875 2.875 0 0 1-.74-.256z" fill="#fff"/><path d="M402.925 94.71l.042.223.934 4.835-3.713 3.237-.17.15.215.075 4.655 1.61.946 4.834.045.223.17-.15 3.72-3.225 4.663 1.597.217.073-.043-.223-.934-4.837 3.714-3.237.17-.15-.215-.073-4.656-1.612-.945-4.834-.046-.222-.17.15-3.724 3.227-4.66-1.6z"/><path d="M400.65 102.95l3.47-3.024 4.362 1.503zm8.41-1.632l3.482-3.027 4.35 1.506zm7.862-1.368l-3.47 3.024-4.363-1.502zm-8.412 1.635l-3.48 3.024-4.35-1.503zm-5.092-6.429l4.353 1.493.883 4.528zm5.622 6.464l4.36 1.503.872 4.52zm5.114 6.125l-4.354-1.49-.88-4.53zm-5.622-6.465l-4.36-1.5-.873-4.52zm3.022-7.627l.884 4.517-3.482 3.027zm-2.79 8.101l.88 4.53-3.477 3.016zm-2.746 7.494l-.884-4.518 3.48-3.026zm2.789-8.101l-.88-4.53 3.478-3.014z" fill="#f7db17"/></g></svg>