mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 11:31:01 +01:00
c18d9f5280
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
1 line
43 KiB
XML
Executable File
1 line
43 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"><defs><linearGradient id="a"><stop stop-color="#a43907" stop-opacity=".996" offset="0"/><stop stop-color="#fff" offset="1"/></linearGradient><linearGradient id="b" y2="577.14" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="470.9" y1="592.2" x1="444.4"/><linearGradient id="c" y2="552.83" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="520.55" gradientTransform="scale(.94 1.07)" y1="562.51" x1="458.24"/><linearGradient id="d" y2="580.2" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="445.28" y1="578.68" x1="472.38"/><linearGradient id="e" y2="558.12" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="456.44" gradientTransform="scale(.94 1.07)" y1="553.74" x1="517.97"/><linearGradient id="f" y2="369.94" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="646.19" y1="369.94" x1="851.78"/><linearGradient id="g" y2="508.75" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="677.4" gradientTransform="scale(.82 1.22)" y1="507.23" x1="388.53"/><linearGradient id="h" y2="505.86" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="556.8" gradientTransform="scale(.84 1.2)" y1="504.94" x1="579.84"/><linearGradient id="i" y2="514.33" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="558.88" gradientTransform="scale(.82 1.22)" y1="512.01" x1="581.43"/><linearGradient id="j" y2="503.9" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="589.77" gradientTransform="scale(.84 1.2)" y1="517.88" x1="552"/></defs><path fill="#006" d="M0 0h640v480H0z"/><path fill-rule="evenodd" fill="#006" d="M0 0h400v200H0z"/><g stroke-width="1pt"><path d="M0 0v25.562L317.137 228.63h39.92v-25.56L39.918 0H0zm357.056 0v25.56L39.92 228.63H0v-25.562L317.137 0h39.92z" fill="#fff"/><path d="M148.773 0v228.63h59.51V0h-59.51zM0 76.21v76.21h357.056V76.21H0z" fill="#fff"/><path d="M0 91.452v45.726h357.056V91.452H0zM160.675.002v228.627h35.706V0h-35.705zM0 228.63l119.02-76.21h26.61L26.614 228.63H0zM0 0l119.02 76.21H92.405L0 17.042V.002zm211.425 76.21L330.445 0h26.61L238.038 76.21h-26.612zm145.63 152.42l-119.018-76.21h26.613l92.406 59.168v17.04z" fill="#c00"/></g><path d="M670.97 321.56a13.22 13.22 0 0 0-2.03.188c-3.39.59-8.734 11.63-11.69 18.094-4.62 5.644-7.088 10.03-9.03 13.28-.755 1.263-1.92 2.728-1.563 4.407-6.996 1.718-7.344 7.724-7.344 10.06 0 2.48.782 3.72.782 3.72l4.187 7.843.03.094c4.458 9.216 11.058 21.626 14.75 22.656 5.244 1.462 18.822-3.55 29-12.156 16.69 6.875 38.073 12.562 61.97 12.562 23.896 0 45.248-5.69 61.938-12.563 10.18 8.606 23.758 13.618 29 12.156 3.705-1.033 10.324-13.525 14.78-22.75l4.19-7.844s.78-1.24.78-3.72c0-2.338-.377-8.344-7.375-10.062.35-1.678-.776-3.143-1.53-4.406-1.958-3.274-4.42-7.7-9.095-13.406-2.966-6.48-8.29-17.382-11.656-17.97-4.742-.825-14.97 1.58-14.97 2.407 0 .02-.057.45-.062.5l-20.54 19.4c0 .557 1.09 14.594 4.938 27-13.75 5.006-30.626 8.532-50.406 8.532-19.793 0-36.715-3.52-50.47-8.532 3.85-12.406 4.97-26.443 4.97-27l-20.53-19.4c-.005-.05-.063-.48-.063-.5 0-.723-7.83-2.675-12.968-2.593zm5.25 24.094c2.582-.032 5.332 2.095 7.594 4.47-.078.465-.157.943-.25 1.374-.624 2.872-1.696 6.663-3.188 10.625-5.87-3.43-10.66-6.996-14.312-10.312 2.228-2.37 5.806-5.596 9.594-6.124.185-.026.375-.03.563-.03zm147.56 0c.187.002.377.005.563.03 3.788.53 7.397 3.757 9.625 6.126-3.66 3.324-8.457 6.91-14.344 10.344-1.498-3.97-2.563-7.778-3.188-10.656-.094-.432-.172-.907-.25-1.375 2.265-2.38 5.006-4.5 7.594-4.47zm-166 27.375c2.73 2.09 6.296 4.475 10.594 7-1.19.755-2.456 1.316-3.78 1.624-1.766.41-3.622.33-5.5-.063-.588-1.45-1.083-3.274-1.22-5.717a70.286 70.286 0 0 1-.094-2.844zm184.47 0c-.014.877-.068 1.825-.125 2.843-.137 2.443-.6 4.267-1.188 5.72-1.88.392-3.766.47-5.53.06-1.326-.307-2.56-.868-3.75-1.624 4.3-2.525 7.862-4.908 10.593-7z" fill-rule="evenodd" transform="matrix(1.17 0 0 1.17 -389.23 -21.96)" stroke="#fff" stroke-width="10" fill="url(#b)"/><path d="M445.63 595.48s5.625-8.75 10.313-8.125c4.687.625 9.062 6.25 9.375 6.562.312.313 7.187-7.187 6.875-7.5-.313-.312-7.188-16.562-10.938-17.187s-11.847 1.196-11.847 1.82-3.778 24.43-3.778 24.43z" fill-rule="evenodd" transform="matrix(-1.48 0 0 1.54 1073.61 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#b)"/><path d="M433.13 586.11c0 .625 1.875 23.75 10 31.875s21.25 13.125 25.938 11.875c4.687-1.25 15.312-24.687 15.312-24.687s-11.25 11.25-19.687 9.375c-8.438-1.875-13.438-15.938-15-22.813-1.563-6.875-.313-20.313-.313-20.313l-16.25 14.688z" fill-rule="evenodd" transform="matrix(-1.48 0 0 1.54 1073.61 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#c)"/><path d="M445.63 595.48s5.625-8.75 10.313-8.125c4.687.625 9.062 6.25 9.375 6.562.312.313 7.187-7.187 6.875-7.5-.313-.312-7.188-16.562-10.938-17.187s-11.847 1.196-11.847 1.82-3.778 24.43-3.778 24.43z" fill-rule="evenodd" transform="matrix(1.48 0 0 1.54 -99.78 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#d)"/><path d="M433.13 586.11c0 .625 1.875 23.75 10 31.875s21.25 13.125 25.938 11.875c4.687-1.25 15.312-24.687 15.312-24.687s-11.25 11.25-19.687 9.375c-8.438-1.875-13.438-15.938-15-22.813-1.563-6.875-.313-20.313-.313-20.313l-16.25 14.688z" fill-rule="evenodd" transform="matrix(1.48 0 0 1.54 -99.78 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#e)"/><path d="M656.44 338.56c-4.742 5.785-7.274 10.257-9.25 13.562-1.976 3.306-.814 7.906 3.75 14.47 4.92 7.072 45.374 34.718 98.062 34.718 52.69 0 93.142-27.646 98.062-34.72 4.564-6.562 5.695-11.162 3.72-14.468-1.977-3.306-4.478-7.777-9.22-13.562 0 8.677-33.512 40.03-92.562 40.03s-92.562-31.353-92.562-40.03z" fill-rule="evenodd" transform="matrix(1.17 0 0 1.17 -388.04 -20.79)" stroke="#000" stroke-width="1.5" fill="url(#f)"/><path d="M467.82 625.48c.625-.937 7.187-11.875 7.187-11.875l-3.598-2.538c-1.106 3.094-5.153 4.1-5.778 7.85s2.813 7.5 2.188 6.563z" fill-rule="evenodd" transform="matrix(1.48 0 0 1.54 -98.8 -524.06)" stroke="#000" stroke-width="1.16" fill="url(#g)"/><path d="M475 622.98s1.25-5.312-2.812-5.937c-4.063-.625-6.214 2.973-5.625 1.562.654-1.567 3.125-3.125 3.437-8.437.313-5.313-.312-8.125-.312-8.125s1.562-6.876 8.125-5.938c6.562.938 6.875 5.938 6.875 7.813s-.625 2.812-.625 2.812L475 622.98z" fill-rule="evenodd" transform="matrix(1.48 0 0 1.54 -99.78 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#h)"/><path d="M568.3 406.338l1.973 3.453 1.332-.83-.884-2.28.165-.448 2.318-1.446 6.067 10.608-.15.516-1.2.88.546.957 5.777-3.606-.547-.954-1.31.686-.507-.106-6.068-10.61 2.32-1.447.434.072 1.52 1.883 1.335-.833-1.973-3.452-11.148 6.958zm-14.253 8.169l.48.993 1.216-.513.478.155 5.21 10.764-.165.494-1.117.716.48.993 5.687-3.002-.48-.993-1.256.536-.48-.154-2.47-5.108 5.806-3.065 2.47 5.11-.143.482-1.158.737.48.993 5.667-2.99-.48-.993-1.215.514-.478-.154-5.21-10.765.165-.493 1.116-.718-.48-.993-5.665 2.99.48.994 1.256-.535.46.165 2.147 4.44-5.807 3.064-2.148-4.438.165-.494 1.157-.74-.48-.992-5.687 3zm-3.337 9.151l.305 1.066 1.628-.39.432.198 1.275 4.437c-.55.217-.952.368-1.168.435-3.32 1.037-6.004-.613-7.128-4.53-1.093-3.806.24-6.687 3.455-7.692a4.747 4.747 0 0 1 1.89-.21l.434.29 1.072 2.177 1.574-.492-1.06-3.697c-1.735.02-3.334.26-4.758.704-4.787 1.496-7.015 5.44-5.734 9.9 1.3 4.523 5.26 6.7 9.788 5.285 1.574-.493 3.083-1.296 4.575-2.403l-1.454-5.068.257-.413 1.22-.5-.306-1.066-6.298 1.968zm-13.338 12.512l6.428-2.024-.32-1.064-1.473.346-.45-.24-3.483-11.577.253-.412 1.407-.563-.32-1.064-6.428 2.025.32 1.064 1.452-.338.435.196 3.484 11.578-.24.456-1.385.554.32 1.064zm-34.8 5.693l11.316-1.036-.345-4.047-1.433.13-.155 2.432-.243.387-4.888.446-.502-5.88 2.74-.252.322.29.35 1.61 1.242-.115-.447-5.25-1.243.115-.073 1.65-.268.34-2.74.252-.458-5.383 4.194-.384.3.27.484 1.962 1.475-.136-.3-3.55-10.622.97.095 1.11 1.295-.005.364.287 1.028 12.056-.307.392-1.276.23.095 1.108zm-16.845-14.916l.02 1.112 1.228.092.345.357.21 12.053-.332.37-1.225.133.02 1.112 5.985-.104-.02-1.112-1.27-.09-.345-.358-.1-5.72 6.112-.107.1 5.72-.31.37-1.267.134.02 1.113 5.965-.104-.02-1.113-1.23-.092-.343-.357-.21-12.054.33-.37 1.226-.135-.02-1.113-5.965.104.02 1.113 1.272.092.323.358.087 4.97-6.113.108-.087-4.97.332-.37 1.267-.136-.02-1.112-5.985.105zm-12.847-.431l-.038 4.02 1.46.017.36-2.426.342-.29 2.54.03-.117 12.35-.364.36-1.376.095-.01 1.112 6.326.076.01-1.112-1.375-.13-.356-.367.116-12.35 2.54.03.314.3.337 2.434 1.458.017.038-4.018-12.206-.146zm-19.483 12.839l11.06.548.18-4.058-1.402-.07-.456 2.387-.285.35-4.778-.237.258-5.897 2.677.132.275.333.135 1.642 1.215.06.23-5.26-1.214-.06-.278 1.623-.303.302-2.677-.133.236-5.397 4.1.203.256.308.22 2.013 1.442.07.156-3.56-10.38-.514-.05 1.11 1.252.176.316.334-.53 12.088-.345.346-1.262.05-.048 1.11zm-25.347-6.559l5.87 1.98.324-1.06-1.282-.55-.208-.45 3.536-11.518.407-.197 1.35.336.324-1.058-5.87-1.98-.324 1.06 1.262.544.22.41-3.535 11.515-.42.24-1.33-.33-.324 1.06zm-10.438-4.054a11.392 11.392 0 0 0 3.572 1.99c3.22 1.086 5.773-.103 6.563-2.674.39-1.275.12-2.654-.772-3.838-.906-1.21-1.848-1.887-2.33-2.502-.828-1.04-1.18-1.875-.874-2.87.366-1.188 1.514-1.753 2.948-1.27.628.212 1.047.47 1.34.784l.183.396-.355 2.36 1.413.477 1.074-3.5c-1.09-.893-2.247-1.57-3.465-1.98-2.807-.946-5.204.296-5.94 2.694-.326 1.06-.18 2.276.465 3.423.618 1.09 1.43 1.77 2.08 2.466 1.156 1.247 1.625 2.263 1.267 3.43-.366 1.188-1.574 1.735-3.165 1.2a5.534 5.534 0 0 1-1.634-.887l-.155-.41.482-2.698-1.494-.504-1.2 3.912zm-13.266-5.554l9.996 4.997 1.672-3.665-1.265-.632-1.308 2.013-.392.207-4.318-2.158 2.43-5.327 2.42 1.21.13.417-.49 1.567 1.1.55 2.167-4.753-1.1-.55-.858 1.384-.39.155-2.42-1.21 2.223-4.873 3.703 1.85.12.388-.54 1.943 1.3.653 1.468-3.216-9.383-4.69-.458 1.002 1.09.67.166.436-4.977 10.916-.448.18-1.182-.467-.457 1.003zm-1.684-18.191l-5.03-3.466-.585.93.99.82.086.493-6.333 10.065-.466.113-1.11-.63-.585.93 5.03 3.465c1.723 1.187 3.194 1.793 4.835 1.62 2.136-.214 3.957-1.46 5.364-3.695 2.504-3.98 1.8-7.888-2.198-10.643zm-2.098.076l1 .69c2.74 1.886 2.98 4.526.74 8.09s-4.667 4.39-7.407 2.504l-1-.69 6.667-10.594zm40.078 15.69l-.224 1.088 1.167.376.258.383-2.438 11.837-.395.284-1.213-.152-.224 1.088 5.685 1.257.224-1.088-1.207-.382-.25-.426 1.03-4.998.343.075c2.035.45 2.363 1.52 2.553 3.77.104 1.135.08 2.176.945 3.296.398.53 1.088.96 1.956 1.152a13.78 13.78 0 0 0 2.052.27l.22-1.068-.262-.058c-1.35-.298-1.886-.764-2.06-2.08-.153-1.195-.067-2.43-.49-3.546-.317-.813-.917-1.386-1.834-1.845 2.374.037 3.83-.987 4.25-3.03.508-2.467-.83-4.156-3.955-4.847l-6.128-1.355zm3.872 2.18l.928.205c1.954.432 2.772 1.68 2.397 3.502-.422 2.045-1.642 2.75-3.798 2.273-.223-.05-.464-.102-.722-.183l1.194-5.797zm74.094 1.29l.173 1.098 1.33-.11.406.253 1.883 11.943-.3.42-1.294.334.173 1.098 6.265-1.07-.173-1.098-1.373.12-.413-.297-.795-5.042.378-.064c2.244-.383 2.973.482 3.997 2.493.525 1.013.886 1.988 2.18 2.687.602.334 1.466.462 2.422.3a16.52 16.52 0 0 0 2.192-.56l-.17-1.075-.29.05c-1.487.253-2.206.03-2.868-1.122-.598-1.047-.966-2.227-1.81-3.096-.624-.63-1.448-.925-2.552-.99 2.436-.9 3.542-2.423 3.217-4.484-.393-2.488-2.382-3.53-5.827-2.94l-6.755 1.153zm4.757.5l1.022-.175c2.155-.368 3.45.47 3.74 2.306.325 2.063-.66 3.197-3.036 3.603-.244.042-.51.087-.803.114l-.922-5.847z"/><path d="M467.82 625.48c.625-.937 7.187-11.875 7.187-11.875l-3.598-2.538c-1.106 3.094-5.153 4.1-5.778 7.85s2.813 7.5 2.188 6.563z" fill-rule="evenodd" transform="matrix(-1.48 0 0 1.54 1072.67 -524.06)" stroke="#000" stroke-width="1.16" fill="url(#i)"/><path d="M475 622.98s1.25-5.312-2.812-5.937c-4.063-.625-6.214 2.973-5.625 1.562.654-1.567 3.125-3.125 3.437-8.437.313-5.313-.312-8.125-.312-8.125s1.562-6.876 8.125-5.938c6.562.938 6.875 5.938 6.875 7.813s-.625 2.812-.625 2.812L475 622.98z" fill-rule="evenodd" transform="matrix(-1.48 0 0 1.54 1073.61 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#j)"/><path d="M396.85 605.91s-75.43-21.26-74.99-102.14l.58-106.91h148.82l.584 106.3c.44 80.882-74.993 102.76-74.993 102.76z" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.48 0 0 1.54 -99.33 -521.46)" stroke="#fff" stroke-width="3.867" fill="#0072c4"/><g fill-rule="evenodd"><path d="M392.306 128.963c.184 0 1.534-1.282 2.77-2.412 1.727-.864 3.324-2.08 5.08-2.896 1.307-.757 3.89-1.344 5.077-1.93 1.555-.815 2.824-1.752 4.156-3.38.158-2.16.46-3.71.46-6.275 1.837-.885 3.467-1.742 5.078-2.415 2.31-.65 2.812-1.574 5.08-1.93 1.46-.51 3.87-.485 6-.485 2.297 0 3.747 1.633 5.81 2.02 2.447.986 3.59 1.67 5.54 3.38 1.102 1.394 1.788 2.528 3.667 3.578 1.488.763 2.88 1.92 4.617 2.413 1.905 1.105 3.597 1.745 5.077 3.38 1.355.965 1.915 2.397 3.23 3.38 1.526 1.264 2.972 2.403 4.618 3.38 1.978 1.324 3.94 2.33 7.143 2.043 1.697-.1 3.523-.296 5.54.08 2.26 0 4.464-.04 6.464.485 2.355 0 4.26.318 6.463.482 2.064.386 4.168.483 6.463.483 2.002.522 4.205.482 6.464.482h12.926c2.352 0 4.733.096 6.463.484 2.33 0 4.333-.22 6.463-.485 2.507 0 4.42-.46 6.926-.482h7.85c2.014.552 4.59.93 6 1.93 1.848.528 2.768 1.404 4.616 1.932 1.416.726 3.565 1.875 4.617 3.378 1.303 1.363 2.64 3.314 3.693 5.31 1.285 1.855 1.774 3.974 2.77 6.276.528 2.205.895 4.302.923 6.757.502 2.093.464 4.396.464 6.758-.528 2.2-.643 4.65-1.386 6.758-.08 2.356-.55 4.487-.923 6.276-.41 1.975-.894 3.246-.924 5.792v6.758c-.16 2.217-.646 3.845-.922 6.275-1.117 2.108-2.186 4.573-3.23 7.24-1.537 1.072-2.87 2.595-3.694 3.863-.985.61-1.556 1.532-1.386 1.93 1.845.643 1.386 1.927 1.386 4.345.24 1.86.42 4.17.923 6.276.17 2.303.662 3.712 1.385 5.308.728.95.87.483-.924.483-1.334 1.047-2.684.5-3.23-1.448-1.078-1.3-1.432-2.87-1.847-5.31-.255-2.234-.612-4.412-1.385-5.79-.236-2.722-.96-2.694-3.693-2.898-1.3-1.152-3.017-1.45-5.54-1.45-2.513 0-2.724-.255-2.77 2.416v6.758c-.434 1.96-1.387 3.547-1.847 5.31-1.377 1.008-2.093 2.7-3.693 3.86-.762 2.193-1.87 2.574-4.156 2.897-.8-.998-2.102-2.3-2.77-3.378 1.293-2.17 2.422-2.496 3.233-4.827.98-1.922 1.556-3.17 2.306-4.828-.985-1.516-1.87-2.2-2.77-4.345-.76-1.168-1.81-3.68-2.307-5.31-1.517-.527-3.904-.612-5.08-1.448-2.24-.522-2.866 1.93-5.54 1.93h-6.462c-2.858 0-3.572 1.596-6.002 1.45-.714.23-2.445-.103-5.08 0-1.928.67-4.252.48-6.462.48-2.342-.03-4.258-.568-6-.965-2.122-.58-4.232-1.17-6.464-1.447-2.71 0-3.72.216-5.54 1.447-1.44.855-3.528 2.807-5.08 3.862-.655 1.602-.996 4.313-1.846 6.276-.49 1.883-1.288 3.077-1.846 4.828-.625 1.633-1.216 3.314-1.385 5.793-.156 3.253-.867 2.855-2.77 1.93-.793-1.346-2.057-2.827-2.77-4.344.42-2.457.893-3.68.924-6.276-.45-1.874-1.498-1.813-2.77-.483 0 2.528.117 4.477-.924 5.793-.52 1.995-1.356 2.857-2.77 3.862-.69 1.792-2.226 2.612-3.693 3.38-.235-.082 0-.647 0-1.93-1.106-2.208-.08-4.04-.08-6.76.03-2.437-.11-4.052.597-6.275 0-2.34-1.085-4.566-1.44-6.275-.858-1.793-1.353-2.68-3.693-3.38-1.645-.653-4.014-1.537-5.08-2.896-1.34-1.74-2.195-2.454-4.153-3.38-2.124-.77-3.155-1.473-4.616-2.414-1.427-1.574-2.587-2.256-3.232-4.343-.964-1.485-1.13-4.242-1.847-6.277-.157-2.12-.764-4.088-1.384-5.792-.274-2.12-.608-3.67-1.385-5.793-.257-1.984-.83-4.06-1.384-6.273 0-2.362.04-4.667-.462-6.76v-6.757c-.332-1.95-.455-4.807-.923-6.276 0-2.626-.28-4.11-.923-5.793-1.056-1.704-1.142-2.47-2.77-2.895-1.176 1.5-3.114 2.112-5.54 2.415-1.695-.387-4.086-.638-6.002-1.45-1.85-.455-3.117-1.187-4.617-1.93-.82-1.262-1.8-2.69-2.77-3.862-.286-2.52-.836-3.82-.923-6.275 0-1.843.044-.865 1.846-3.38z" fill="#bcbcbc"/><path d="M419.65 146.357l.328-.34c-.742.774-.47.4 1.306-.343.993-.625 2.88-1.727 3.59-2.39.854-.39 2.21-.9 2.938-1.705.91-.97 1.82-1.776 2.938-2.732 1.293-1.097 2.498-1.457 3.918-2.39 1.847-.137 2.516-.928 4.243-.34 1.622.367 2.294.377 3.592-1.025 1.31-.84 2.753-1.654 3.265-3.073v-2.046c-.025 2.23-.427 2.953-1.96 3.753-1.067 1.224-2.398 2.608-2.937 3.756-1.037 1.5-1.257 2.34-2.285 3.072-.844 1.075-2.292 1.644-2.61 3.412.464.813.04 1.258.977 1.366.946.812 1.93.466 3.265 0 1.328-1.537 1.925-2.53 2.612-4.095 1.095-1.497 1.708-2.21 2.284-3.414 1.135-.823 1.856-1.464 2.286-2.73 1.313-.77 2.393-1.578 3.263-2.39.976-.628 1.494-1.138 2.938-1.366-.02 1.833-.29 2.7-.978 3.755-.325 1.9-.26 2.802.326 4.096.938.58.772 1.084 1.306 2.39.532-1.13.802-3.415.98-4.78v-.342c0 1.493.136 3.473-.327 4.438.022 1.99.464 2.878.98 4.437.55.752.938 1.24 1.632 1.707.064-1.97.556-3.267.652-5.12.455 1.43.303 3.32.653 4.778.118 1.607.7 2.852 1.306 4.097.744.46.997 1.813 1.305.683.773-2.402.792-5.03 1.306-7.51.094-1.26.195-3.133.654-4.096l-.653 4.095c.094-1.26.195-3.132.654-4.095v-.34c.305 1.797.593 3.533.653 5.46 0 1.536-.1 3.1.327 4.437 1.086-.503 1.715-1.68 2.285-3.073.87-1.65 1.465-2.382 2.61-3.754l-2.61 3.754c.87-1.65 1.465-2.382 2.61-3.754v-.34c-.18 1.573-.325 3.056-.325 4.777 0 1.574-.018 3.358.326 4.438.385 1.81.91 2.145.98 4.095 0 .95-.124 1.92.327 2.39 1.406.367 1.41-.452 1.632-2.39.017-2.202.58-3.703.65-5.802 0-2.59.367.316.654 1.366.66 1.52.864 2.872.98 4.437 0 .95-.123 1.92.326 2.39 1.26-.523 1.76-1.996 2.612-2.732.65-1.616 1.322-2.33 1.96-3.41 1.69-.355 1.607-1.05 1.63-3.073 0-1.633-.127-3.352.328-4.78.523-1.483 1.016-3.134 1.305-4.436.61-.364 1.27.538 1.63 1.366.716 1.1.654 2.705.654 4.437.314 1.51.942 2.69 1.632 4.096.818 1.577 1.483 2.533 2.285 3.413.344 1.08.327 2.864.327 4.437 1.272-1.445 1.515-3.598 1.632-5.802-.17-1.5-.202-3.368-.653-4.78-.052-1.503-.32-3.055-.653-4.095-1.102-.53-1.276-1-.326-2.39 1.05-.908 2.185-.557 3.918-.34.876.915 1.236 1.405 1.305 3.41 0 1.82.077 3.218.653 4.44.64.982 1.272 1.657 1.63 3.413.502.428.89 1.12 1.634.342.41-1 .65-3.062.98-4.097.318-1.295.893-1.93 1.632-2.39 0 1.9-.022 3.066.653 4.44.638 1.524 1.082 2.097 1.63 3.755.697.485.786 1.53 1.633 2.046.2-1.602.327-3.437.327-5.46v-4.78c.12-1.625.514-2.54.98-3.752 1.05 1.31.98 1.852.98 3.753 1.073-.4 1.253-1.17 1.63-2.387.767-.675.976-.99 1.306.68.23 1.787.665 3.395.98 5.122.67.788 1.447 2.696 2.285 3.414.575.975 1.22 1.92 1.96 2.73.508 1.123.638 1.71 1.958 2.047 0-2.31.077-4.627-.326-6.826 0-1.96-.428-2.66-.653-4.437-.545-1.177-.865-2.912-.654-3.412 1.53 1.517 2.22 2.398 2.938 4.096.766 1.64 1.41 2.743 1.958 4.437.755.648 2.092 2.59 2.612 3.414 1.165 1.04 1.733 2.126 2.938 3.07.623.588 1.94.916 2.285.684-.06-2-.364-3.72-.98-5.46-.02-1.91-.458-2.948-.978-4.096-1.285-1.108-2.26-1.863-2.94-3.414-.505-.432-.604-.755-.653-1.705 1.876 1.552 3.187 2.936 4.57 4.777.936 1.213 1.412 1.763 2.613 2.39.65.73 2.545 1.638 3.916 2.048.823 1.09 1.922 1.718 3.265 2.05l-3.264-2.05c.823 1.09 1.922 1.718 3.265 2.05v.34c-.163-2.135-.947-3.695-1.958-5.462-.85-1.868-1.63-2.56-2.938-3.755-.854-1.352-1.81-2.15-3.264-3.07-.9-1.06-2.25-2.82-2.938-3.415 1.392-.874 3.027.592 4.57 1.366 1.274 1.38 2.465 3.18 3.264 4.095.87 1.753 1.537 2.838 2.94 4.437 1.405.834 2.38 1.66 3.59 2.73 1.87.518 1.124-.166.653-1.706-.647-1.926-.072-1.956 1.305-.682.908.647 1.92 1.725 3.263 2.39.58.752 1.457 1.17 2.286.682.345-.482.326-.427.326-1.024-.687-2.118-1.325-3.767-2.938-4.438-.74-.942-1.942-2.063-2.937-3.072-.65-1-1.408-1.576-1.96-2.73l1.96 2.73c-.65-1-1.408-1.576-1.96-2.73h-.326c1.97.073 2.672.573 4.242 1.366 1.12.408 2.327 1.475 2.94 2.388.635.845 1.655 1.753 2.284 2.73 1.003.773 2.11 1.652 3.265 2.39 1.087 1.425 1.282 2.352 1.307 4.44.626.964.738 2.938.978 4.094-.24 1.877-.882.403-.978-.683-.277-1.507-.85-1.428-1.96-1.023 0 2.062.228 2.626.98 4.096-.204 1.41-.672 2.44-1.306 3.414-.76.454-.925-1.004-1.63-1.707-.076-2.11-.67-2.343-1.96-3.414v1.366c.728 1.457 1.497 2.785 1.632 4.78.504 1.52.653 2.482.653 4.436 0 1.67.027 3.3-.326 4.78 0 1.85-.307 2.645-.328 4.437v9.558c-.25 1.207-.326 2.78-.326 4.436l.326-4.438c-.25 1.208-.326 2.782-.326 4.437v.34c-.62-1.715-1.296-3.267-1.632-5.12-1.058-1.047-1.73-2.126-2.286-3.413-.25-1.464-.406-3.253-.653-4.438-.46-1.203-.947-2.486-1.96-1.706-.4 2.544.106 4.06.98 6.484.513 1.608.457 2.872.98 4.438.757 1.805 1.365 2.064 0 4.095-.673 1.084-1.034 1.427-1.306 2.732-1.208.632-1.51.913-1.632 2.39-.406-1.328-1.393-2.884-1.96-4.438-.584-1.634-1.306-3.313-1.63-4.778-.793-1.143-1.722-2.992-2.613-3.755-.82-1.102-1.997-2.94-2.612-4.095-1.25-1.457-1.526-2.3-2.61-3.07-.28-.683-.612-1.534-1.306-1.025 0 1.632-.13 3.35.326 4.777.33 2.013.91 3.13.98 5.12v3.756c-.785-1.923-1.622-3.64-2.286-5.462-.713-1.018-1.41-3.003-2.285-3.754-.555-1.324-.988-2.422-1.632-3.412-.167-.992-.606-.98-.98-1.707.022 1.935.61 2.613.98 4.095.636 1.3.84 3.48.653 4.096-.823-2.392-1.568-5.008-2.612-7.167-.99-1.402-1.955-3.204-2.61-4.437-.972-1.172-1.97-1.21-2.938-2.048-.882-.437-1.726-.926-2.285-1.707.257 1.8.927 2.924 1.305 4.438.215 1.716.97 3.09 1.306 4.438-.363 2.335-.89-.648-1.306-1.707-.344-1.922-.98-2.99-1.632-4.097-.875-.622-1.67-1.727-2.612-2.39-.916-.367-.653.067-.653 1.366 0 2.112.077 3.507.653 4.78.652 1 .653 2.306.653 4.094-.056 1.68-.325 3.03-.325 4.78V188c-.75-1.45-1.46-2.275-1.96-4.096-1.132-1.55-1.468-2.688-2.285-4.436-.724-.305-1.902-.556-2.61 0 .127 1.727.89 2.487.98 4.436-1.302 1.333-1.067 1.713-1.96-.34-.744-1.557-1.61-1.484-2.61-2.39-1.64-.214-1.12-1.263-1.634-2.73 0-1.315.13-2.642-.326-3.756-1.79 0-2.816-.064-3.917 1.025-.518 1.08-.335 3.033 0 4.436v4.778c-.372 1.196-1.11 1.26-1.306 2.73-.63 1.458-.84 3.066-1.305 4.098-1.163 1.05-.658 1.182-1.306-.683v-10.925c0-1.854.267-2.758.326-4.435-.677-1.415-.86-1.68-2.938-1.707-.506.882-.313 2.52 0 3.414 0 1.654.075 3.23.326 4.436 0 1.813.214 2.912.327 4.438-.062 1.81-.4 3.25-1.306 4.096-1.177.308-.128 1.057-1.305 1.366-1.18-.592-2.568-1.396-3.59-2.39-1.27-.404-2.466-.682-4.244-.682-2.164-.028-2.2-.29-2.938-2.05-.662-1.88-.973-3.514-1.306-5.46-.718-1.598-.886-2.687-1.306-4.437-.548-1.043-1.133-1.83-1.957-2.39-.473 1.726-.917 3.17-.98 5.12-.382.8-.462 2.834-.652 3.754-.655-1.01-.912-2.995-1.305-4.435-.62-2.07-1.148-3.414-3.265-2.73-2.197.027-2.26.09-2.286 2.39.946 1.48 1.956 2.918 2.612 4.094v4.778c0 1.973.115 2.544-1.306 3.072-.54-2.048-1.688-4.003-2.938-5.803-.17-1.392-.6-1.024-1.957-1.024-.91 0-1.837-.128-2.286.34 0 1.19.097 2.842 0 3.074-.788.145-1.106-.008-1.633-.683-.57.993-.14 2.393 0 3.755-.415 1.518-.91 2.905-1.633 3.753-.144-.454-.47-.342 0-.342-2.24-.86-3.993-1.39-5.875-2.045-1.134.146-1.957 1.19-2.613 2.046-1.66.56-2.393 1.002-4.244 1.025-1.776 0-2.64.28-4.244.342-1.155.262-2.662.34-4.244.34-.878-.26-2.41-.268-2.94-.682.675-1.005 1.426-1.513 1.96-3.07.894-.637 1.732-1.452 2.612-2.39.86-.613 1.87-1.883 2.61-2.73.51-1.645 1.21-1.93 2.286-2.732 1.94.076 2.32.692 4.244 1.024 1.88.712 2.92.922 3.918-.34 1.56-.66 2.882-1.69 4.57-2.05 1.307-.653 2.144-1.288 3.264-2.048 1.39-.837 2.05-1.696 3.265-2.73.347-1.392 1.33-2.467.98-4.097-1.767-.462-2.89-.277-3.918.683-1.43 1.177-1.7 1.666-3.265 2.73-1.352.385-1.93.98-3.59 1.366-1.365.476-3.01.342-4.57.342-1.428 0-3.322-.142-4.245.34 1.452-.977 3.197-1.993 4.57-2.39 1.318-.884 1.816-1.332 3.592-1.364.823-1.078 1.673-1.105 1.956-2.73.553-2.02-1.204-1.38-2.61-.684-1.327.244-2.79 1.183-3.918 1.707-1.09.38-2.68.663-4.244.683-.412-.615.322-1.106.653-2.05 1.525-.54 1.77-.738 1.96-2.388-1.73.24-2.39.808-3.92 1.024-1.665.436-3.394.63-5.22.683h-4.572c-1.604-.062-2.47-.342-4.243-.342-1.3-.68-1.306-1.002-1.306-3.072 1.024-1.176 2.02-1.022 3.917-1.022 1.46-.718 2.597-1.1 3.59-1.707 1.183-.254 1.99-.76 1.633-1.364h-4.57c-1.76-.745-.08-1.086.98-1.707 1.587 0 3.225.093 4.243.682 1.963-.076 2.647-.697 4.242-2.05 1.25-1.03 1.864-1.687 3.265-2.388 1.006-1.11 1.956-1.723 2.612-2.73 1.342-1.28 2.23-1.988 2.937-3.072.864-.476 1.392-1.09.98-1.707-2.046.25-2.874.993-4.245 2.048-.796.793-1.57 1.503-2.612 2.048-1.47.874-2.385 1.228-4.242 1.365-1.676 0-2.964-.28-4.57-.34-1.774-.186-.142-.6.325-1.365.686-.48 1.22-1.542.653-2.39-1.365-.475-3.008-.34-4.57-.34h-4.57c-1.725-.067-2.455-.463-3.59-1.025-.353-.958.062-.683 1.305-.683 1.574-.062 2.69-.276 4.245-.683 1.535-.438 1.727-.95 1.958-2.732-1.506 0-3.21.02-4.243-.34h-2.94zm-28.274-7.739c-.287-2.52-.836-3.82-.924-6.275 0-1.843.045-.865 1.847-3.38.182 0 1.532-1.282 2.77-2.412 1.726-.864 3.323-2.08 5.078-2.896 1.307-.757 3.89-1.344 5.077-1.93 1.556-.815 2.825-1.752 4.156-3.38.16-2.16.464-3.71.464-6.275 1.836-.885 3.465-1.742 5.077-2.415 2.312-.65 2.812-1.574 5.08-1.93 1.46-.51 3.872-.485 6-.485 2.298 0 3.747 1.633 5.81 2.02 2.447.986 3.59 1.67 5.54 3.38 1.103 1.394 1.788 2.528 3.668 3.578 1.487.763 2.88 1.92 4.616 2.413.015 1.743.386 1.442-.858 1.442-.132 1.786-.56 1.675-2.286 1.707a8.002 8.002 0 0 1-2.938-2.732c.653-1.773.22 1.435 0 2.048-.84.69-1.338 1.426-2.285.683-.53-1.666-.978-2.817-.978-4.78-.25-2.132-.846-.584-1.307.343-.442 1.72-.24 2.343.326 3.753-1.666 0-2.942-.157-4.245-.34-1.21-.302-2.572.068-3.918.682-1.71 1.073-1.177 1.08-.326 2.39 1.51.444 2.593 1.28 3.92 2.048 1.505-.3 3.08-.635 4.57-1.025 1.555-.54 2.98-.196 4.57 0 .788.414 1.825.497 2.284 1.026 0 1.055.084 2.158-.326 2.73-.68.452-1.324 1.7-2.286 2.047-1.44.825-2.95 1.344-4.57 1.707-2 .076-2.73.515-4.243 1.366-.25 1.725-.753 2.212-2.287 2.73-1.526.667-2.74 1.025-4.57 1.025-.908 0-1.835.13-2.285-.34 1.454-1.66 1.89-2.44 2.612-4.097.282-.69.873-1.134.327-1.707-1.934.076-2.44.063-2.612 2.048-.22 1.798-.91 2.1-2.285 2.73.37-1.664.432-2.943.98-4.436-1.156.262-2.662.34-4.245.34-.99.628-1.4.872-.98 2.05-1.312.456-2.91.175-4.57 0-1.386-.076-.62-.705-1.63-1.366-.663-1.3-1.424-1.616-2.94-1.707-.752.94-2.145 1.33-2.938 2.048-1.43.5-2.34.085-3.59-.683-1.63.05-1.412.576-.98 1.707.622.434-.038.907.98 1.024.938.852 1.74 1.025 3.59 1.025 1.415-.37 2.974-.34 4.57-.34 1.612.05 1.307.43 1.307 2.047-1.054.746-2.59.683-4.245.683-1.576-.196-2.784-.604-3.917-1.024-1.53-.113-2.752-.405-3.918 0-.526.583-2.11.838-.326 1.025.7.66 4.478.342 4.747 1.466.89.99.692 2.29-.83 2.29-.925-.483-1.64-.364-2.286 0-1.086.285-2.377.078-4.274.22 2.477.204-1.8-2.69-2.77-3.862z" fill="#fefefe"/><path d="M401.687 127.25c-.108 0-1.083.677-1.96 1.364-1.433.768-2.965 2.075-3.916 2.73-.748.6-.744.862-1.63 1.026 1.555-.22 2.248-.617 3.59-1.366 1.695-.204 3.338-.564 4.244-1.365.85-.298-.064-1.66-.327-2.39zm15.025-16.05c.187 0 .57 1.067 1.304 1.706.47 1.31.903 2.235.98 3.755.4-1.667 1.084-3.008 1.305-4.778-.507-.9-.54-1.32-1.958-1.365 0 .922.108.32-1.63.682z" fill="#bcbcbc"/><path d="M349.36 417.73c-.494 0 .87-.492 1.326-.663.364-.767.653-1.31 1.326-1.767 1.107.085 1.65.404 2.21 1.104.93.254 1.265.697 2.43.884.434.366 1.02.408 0 .663-.692.367-1.563.443-2.65.443-1.14.082-1.955.333-2.653.663-1.48 0-1.243.05-1.99-1.326z" transform="matrix(1.48 0 0 1.54 -109.52 -520.08)" stroke="#000" stroke-width=".875" fill="#c4c4c2"/><path d="M422.576 111.54v.34c0-.92-.02-.45.327 1.366.54 1.145.653 2.373.653 4.097.857-.64 1.572-1.916 1.96-3.073 0-2.695-.366-2.536-2.94-2.73zm12.084 39.25h.327c-.96 0-.42.06 1.306-1.024 1.117-.778 2.03-1.93 3.592-2.39 1.51-1.24 2.673-1.82 4.242-2.388.766-.367 1.44-1.005 2.286-.34-.243 1.683-.522 2.32-1.96 3.07-.742.973-1.912 1.54-2.936 2.048-1.062.488-2.23.513-2.612 1.707-1.776.817-1.994.68-4.244-.683zm6.205 9.902c.583-.46 2.627-2.592 3.59-3.412 1.09-1.503 2.193-2.653 3.265-3.414.952-1.465 2.17-2.446 2.94-3.755.906-1.147 1.573-2.12 2.61-3.412 0 1.492-.136 3.47.325 4.437 0 2.062-.227 2.626-.978 4.096-.74 1.21-1.294 2.01-2.938 2.732-1.484.822-2.373 1.11-3.592 2.047-.93.597-1.897 1.192-2.94 1.706-.932.42-.504.236-2.283-1.024zm-10.119 7.848h.326c-.96 0-.42.058 1.306-1.025 1.393-1.457 2.503-1.963 4.245-2.73 1.325-.108 2.928-.452 3.917-1.025.79-.146 1.34-.648 1.958 0 1.025 1.45 1.307 1.858-.327 2.73-.78.694-2.158 1.392-3.262 1.708-.815.702-2.43.746-3.918 1.024-1.334 0-2.075.157-2.612-.683l2.612.682c-1.334 0-2.075.157-4.244-.683zm14.034 0v-.342c0 .953-.04.448.653-1.366 1.224-1.91 1.684-2.963 3.265-3.414.74-.936 2.023-1.178 3.59-1.707.59 1.027.137 2.223 0 3.415-.425 1.275-1.59 2.174-2.284 3.073-1.018.723-1.433 1.418-2.938 1.706-1.246 0-.585-.032-2.286-1.365z" fill="#bcbcbc"/><path d="M412.788 124.16c0 .942-.73 1.706-1.632 1.706-.9 0-1.632-.764-1.632-1.707 0-.944.73-1.708 1.632-1.708.902 0 1.632.764 1.632 1.707z"/></g><g stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" stroke="#002b0d" stroke-width="1pt" fill="#005120"><path d="M351.79 479.6h.884c-2.77 0-1.115-.185 3.535 3.535 1.947-1.623 1.924-1.842 3.535.884.93 1.55 1.203-.16 2.65-1.768.7 3.21 1.146 6.578 3.537 3.535 2.73 0 5.59-.227 7.07.884 1.79 3.326 1.205-.563 2.653.885 3.892.467 3.818-3.338 8.057-4.322 2.635 3.293 3.79.76 7.072-.883 2.438.682 4.736 4.38 5.2.785 1.996-3.256 2.17-2.98 3.536 0 1.94 1.748 2.76-.874 4.42-1.767 2.958 1.73 6.258 1.97 10.606.884.736 2.944 2.592 1.667 4.42.883 3.91 1.643 5.273 2.146 9.722 0 2.204-2.604.956.073 2.65 1.768 3.297-1.023 2.387-1.24 6.19-.884 3.82 0 4.13-.093 5.302-2.652 1.92 1.92 2.614 3.304 5.303.884 4.12.12 2.846.52 5.304-.884 1.818 4.026 2.245 1.117 4.42 2.65-1.433 3.632-3.633 5.335-6.188 7.072-1.7 2.816-2.764 5.857-6.188 7.072-2.498 2.548-5.16 4.025-7.955 6.187-3.832.957-8.05.883-12.375.883h-37.12c-2.64 1.32-6.96 1.948-10.608 2.65-4.075 0-8.694.05-11.49-.883-1.895-1.894-5.22-4.01-7.07-6.187-1.875-1.51-1.93-4.46-3.537-6.187-1.48-2.53-1.936-6.486-3.535-8.84V479.6z" transform="matrix(1.48 0 0 1.54 -103 -521.43)"/><path d="M437.52 487.56v.884c0-2.47.11-1.158-1.768 3.535-.38 1.14-1.212 1.407-2.652 1.767m-3.53-2.656h.884c-3.273 3.09-5.476 4.515-6.188 7.955l6.188-7.955c-3.273 3.09-5.476 4.515-6.188 7.955m-7.076-12.365c0 .08-.124 3.153-.884 4.42m-2.646 1.76v.884-.884zm-7.07-5.3h.884-.884c.294 0 .59 0 0 0zm-49.5 0c.422 0 2.16 2.806 4.42 4.42-.563 2.585-1.427 5.577 0 7.954m2.65-7.074c.422 0 2.16 2.807 4.42 4.42l-4.42-4.42c.422 0 2.16 2.807 4.42 4.42v.884c0-2.73-.227-5.59.883-7.072.983 1.663 2.224 4.337 2.652 1.768 4.978-.178 7.38-1.576 10.607-2.65 0 1.3-.21.674.884 1.766m60.104-3.536h.884c-1.667 1.39-2.946 4.222-4.42 6.187m-32.704-8.837h7.07" transform="matrix(1.48 0 0 1.54 -103 -521.43)"/></g><path d="M413.61 239.342c-15.702 0-20.906 16.41-36.61 16.41-.302 0-.588-.024-.883-.035v.993c-.06 11.375.835 21.97 2.466 31.864 14.485-1.058 19.866-16.41 35.028-16.41 15.704 0 20.945 16.446 36.65 16.446s20.943-16.447 36.646-16.447 20.944 16.447 36.648 16.447 20.944-16.447 36.647-16.447c15.123 0 20.52 15.244 34.92 16.373 1.724-10.158 2.635-21.07 2.574-32.784v-.037c-.294.012-.58.037-.883.037-15.702 0-20.906-16.41-36.61-16.41s-20.944 16.41-36.647 16.41-20.944-16.41-36.648-16.41-20.944 16.41-36.647 16.41-20.944-16.41-36.647-16.41zm0 64.064c-12.214 0-18.09 9.902-27.485 14.313a151.431 151.431 0 0 0 11.664 24.836c4.46-3.374 9.202-6.292 15.822-6.292 15.695-.012 20.934 16.4 36.64 16.4 15.705 0 20.945-16.41 36.65-16.41 15.702 0 20.943 16.41 36.646 16.41s20.944-16.41 36.648-16.41c6.472 0 11.15 2.794 15.527 6.07a152.782 152.782 0 0 0 11.7-24.725c-9.244-4.47-15.123-14.203-27.227-14.203-15.703 0-20.944 16.41-36.647 16.41s-20.945-16.41-36.65-16.41c-15.702 0-20.943 16.41-36.646 16.41s-20.944-16.41-36.648-16.41zm73.284 64.052c-15.703 0-20.944 16.448-36.647 16.448-14.85 0-20.347-14.703-34.182-16.3 18.49 20.597 39.458 33.068 53.757 39.92 4.836-3.752 9.844 4.564 17.072 4.564 7.178 0 12.16-8.36 16.963-4.636 14.14-6.885 34.853-19.375 53.242-39.775-13.384 1.956-18.932 16.225-33.558 16.225-15.703 0-20.944-16.447-36.648-16.447z" fill-rule="evenodd" fill="#fff"/><g transform="matrix(1.18 0 0 1.18 -406.92 -18.22)"><path d="M332.54 541.35c1.744-.58 10.173-3.197 10.464-2.907.29.29 16.278 15.697 16.278 15.697l-13.37 2.616-13.372-15.406z" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 31.413c0-.29 6.686-31.127 6.686-31.127m-4.396 31.177c.29-1.744 5.558-31.175 5.558-31.175M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197l4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(1.06 0 0 1.03 276.8 -177.96)" stroke="#512007" stroke-width=".594" fill="none"/><path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 30.223c0-.29 6.686-29.94 6.686-29.94m-3.776 27.62c.29-1.744 4.94-27.614 4.94-27.614m-10.46 27.034c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197l4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(-1.25 0 0 1.76 1290.4 -502.06)" stroke="#512007" stroke-width=".41" fill="none"/><path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 30.223c0-.29 6.686-29.94 6.686-29.94m-3.776 27.62c.29-1.744 4.94-27.614 4.94-27.614m-10.46 27.034c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197l4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(-1.25 0 0 1.3 1321.3 -301.92)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M395.32 572.16c0-.29.872-72.96.872-72.96s2.616-.29 2.616 0-.29 72.67-.58 72.96-3.2.58-2.908 0zm28.49-69.76c0 .582-.582 61.333-.582 61.333l-2.035 2.326.582-63.66h2.035z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M363.06 560.24s2.907 29.94 36.335 29.068 42.73-30.23 42.73-30.23-14.244-.582-14.535-.582c-.29 0-11.627 13.953-26.16 13.662s-19.185-3.78-22.383-6.685c-3.197-2.907-6.104-7.267-6.104-7.267l-16.86-6.686.873 6.395 6.104 2.325zm90.24-3.11c-.29-.872-1.007-3.866-1.007-3.866v-3.488l1.61-3.532s-25.29 3.623-25.29 3.914c0-.335-.156 6.885-.156 6.885l24.843.087z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M448.52 549.78l-.58 6.104h4.068l-.29-6.104h-3.198zm-4.36.29l-.29 6.394 2.615-.29.29-6.104h-2.615zm-4.36 6.39v-4.94l2.616-.873.29 4.94-2.906.873zm-4.95-.28l.582-4.36 2.906.29.29 4.65-3.778-.58zm-5.52 0l.29-3.78 2.908-.29v4.36l-3.198-.29zm-67.44 3.77c.872 0 7.558 1.453 7.558 1.453l6.976 9.302" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M366.84 561.12c.29.29 6.104 19.766 34.01 19.766s34.59-22.09 34.59-22.09" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M439.8 559.37s-13.37 29.068-38.95 27.033c-25.58-2.034-29.65-11.627-31.685-16.568-2.035-4.942-3.197-9.01-3.197-9.01" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M373.23 558.21c.29-1.745.29-54.357.29-54.357l-1.744-.29-.29 53.775 1.744.872zm-41.57-17.15l22.09 10.755-.58 1.453s-21.22-9.883-21.22-10.174c0-.29.29-1.453-.29-2.034z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M341.84 537.86c0 .872 3.198 18.603 3.198 18.603s2.035.29 2.035 0-3.49-18.312-3.49-18.312l-1.743-.29zm20.34.58c1.163 0 20.93-3.197 20.93-3.197l-.292 3.197-19.475 2.035-1.163-2.035z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M365.09 514.32c.58 0 6.976 3.198 9.592 2.326s.872-2.907 1.453-2.907c.582 0 2.616 1.452 3.78.29 1.162-1.163 2.034-4.65 1.453-4.36-.582.29-15.988 5.813-16.278 4.65z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/><path d="M362.48 521.58c1.163.29 23.836-6.104 23.836-6.104s0 2.035-.29 2.035-23.546 6.105-23.546 6.105v-2.035z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M415.09 512.57s1.454 3.488 2.907 2.907 2.907-1.744 2.907-1.744 1.163 2.907 3.197 2.325c2.036-.58 3.2-3.78 3.2-3.78s2.033.583 2.905.292c.873-.29 2.035-4.94 2.035-4.94l-17.15 4.94zm-1.75 28.2c-.29.58 1.454 2.035 2.907 2.035s2.035-2.035 2.325-1.454c.29.583.29 3.2 4.07 2.327s3.78-3.488 3.78-3.488-1.164.87 1.452 1.16c2.616.292 5.232-3.778 4.942-3.778-.29 0-18.894 3.49-19.476 3.198z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/><path d="M363.35 513.15c-.29 1.163.29 2.617.29 2.617l18.894-6.395s.872-1.454 0-1.454-19.475 5.814-19.184 5.232zm25-4.07c.58 0 19.475-6.104 19.475-6.104s.29 2.616 0 2.616-17.73 5.232-17.73 5.232l-1.745-1.744z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M413.34 521.88s-2.907 3.197-2.035 7.557c.872 4.36 2.035 8.14 2.326 8.14s3.49-5.814 6.977-6.105 9.883 3.198 9.883 3.198-.872-6.977-.58-10.174c.29-3.198 5.23-8.72 5.23-8.72l-21.8 6.104z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/><path d="M386.89 516.64s-.58 2.616-.29 2.616 24.707-6.395 24.707-6.395v-1.743l-24.417 5.523z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M355.5 551.82s-5.813-.872-5.523.58c.29 1.454 2.907 2.908 3.198 3.78.29.872-.872 4.07.872 3.78 1.744-.292 3.488-1.455 3.488-2.327s-.29-4.94-.29-4.94l-1.745-.873z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#b6b6b4"/><path d="M387.76 537.28v2.034l20.93-2.906-.582-1.454-20.348 2.326z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M363.06 540.77c.29 0 0 2.616 2.325 2.035 2.326-.582 2.907-2.035 2.907-2.035s.58 3.197 3.78 2.907c3.196-.29 4.94-3.78 4.94-3.78s.29 2.617 2.326 1.745 2.616-2.907 2.616-2.907l-18.313 2.616-.58-.58zm0-17.15s-2.616.872-1.744 6.104 2.907 8.14 3.197 8.14c.29 0 2.616-4.942 6.104-5.814 3.49-.873 9.593 2.616 9.593 2.616s-.582-4.65.29-9.01c.873-4.362 3.78-7.56 3.78-7.56s-20.348 5.524-21.22 5.524z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/><path d="M411.89 538.73l.29 1.744s20.93-2.616 20.93-2.907c0-.29 0-2.034-.29-2.034-.292 0-20.64 3.488-20.93 3.197zm-.29-18.6l.29 2.034 24.708-6.685s.582-1.745.29-1.745-24.707 7.267-25.288 6.395z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><path d="M414.22 510.83s-.29 1.744 0 1.744 18.313-4.36 18.313-4.65c0-.29 1.744-2.036.29-1.745-1.453.29-18.02 5.522-18.603 4.65zm38.66 33.72l-18.03-28.49m-2.32 19.77c.29-.872 1.163-18.312 1.163-18.312" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M388.93 509.96c1.163.29 3.198 3.197 4.36 2.616 1.163-.58 2.907-2.325 2.907-2.325s-.29 3.49 2.035 2.907c2.325-.58 2.616-2.906 2.616-2.906s1.744.873 3.197 0c1.454-.87 2.907-5.232 2.326-5.232s-16.858 5.233-17.44 4.942zm-.58 8.43c0 .58-2.907 5.232-2.035 9.592s2.616 8.43 2.907 8.43 4.65-4.65 8.43-5.523c3.778-.873 9.3 2.906 9.01 2.906-.29 0-1.453-4.36-1.453-7.558 0-3.198 4.36-13.08 4.36-13.08l-21.22 5.232zm0 20.93c0 .29.872 2.326 2.907 2.326 2.034 0 2.325-2.035 2.325-2.035s-.29 3.49 2.907 3.2c3.196-.292 4.36-3.49 4.36-3.49s.29 1.745 2.906.873c2.616-.873 6.104-3.78 5.813-3.78-.29 0-20.93 3.78-21.22 2.907z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/><use xlink:href="#k" transform="translate(-6.56 7.28)" height="496.063" width="992.126"/><use xlink:href="#k" transform="translate(6.56 3.76)" height="496.063" width="992.126"/><use xlink:href="#k" transform="translate(0 11.03)" height="496.063" width="992.126"/><path id="k" d="M408.98 476.96a1.89 1.89 0 1 1-3.78 0 1.89 1.89 0 0 1 3.78 0z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" transform="matrix(.04 -1.07 1.02 .04 251.6 667.92)" stroke="#512007" stroke-width=".581" fill="#be0f17"/><path d="M398.23 500.07c0-.29 9.01 3.78 9.01 4.07 0 .29 31.975 42.73 32.266 42.73m-15.986-42.73l8.14 3.49 2.615 6.393M372.94 503.56c-.29 0 9.01 6.976 9.01 6.976l1.164 5.814M341.26 546c4.07-1.744 32.265-26.452 32.265-26.452M333.7 541.35c3.49-2.907 31.684-26.742 31.684-26.742m21.216 4.072l29.94 49.706m-3.53-29.156s3.532 11.71 7.02 13.455 7.557 4.65 7.557 4.65" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M412.61 539.48s2.48 13.793 5.97 16.41 6.976 5.522 6.976 5.522" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M390.96 439.03s3.488 19.185 10.465 23.545c6.976 4.36 12.79 8.14 12.79 8.14" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M390.67 438.74s7.557 15.116 13.952 19.767c6.395 4.65 15.115 9.01 15.115 9.01M366.26 439.9c2.034 3.488 1.744 10.174 4.07 12.5 2.324 2.325 5.813 7.557 5.813 7.557" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M366.84 440.19c1.163 1.744 4.406 10.428 6.395 13.08 1.454 2.326 16.278 17.15 16.278 17.15" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M384.57 471.15a2.18 2.18 0 1 1-4.36 0 2.18 2.18 0 0 1 4.36 0zm10.75 4.65a1.89 1.89 0 1 1-3.78 0 1.89 1.89 0 0 1 3.78 0zm13.66 1.16a1.89 1.89 0 1 1-3.78 0 1.89 1.89 0 0 1 3.78 0zm11.92-4.5c0 .963-.716 1.744-1.6 1.744-.882 0-1.597-.78-1.597-1.744 0-.963.715-1.744 1.598-1.744.884 0 1.6.78 1.6 1.744zm9.59-5.67c0 .883-.846 1.6-1.89 1.6s-1.89-.717-1.89-1.6c0-.883.847-1.6 1.89-1.6s1.89.717 1.89 1.6z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475"/><path d="M374.1 404.44c-.872.582-15.406 4.07-13.37 3.78 2.033-.29 13.66 2.906 13.37 2.034s0-5.232 0-5.814zm24.71-4.36c-.582 0-9.012 3.198-8.72 3.198s9.592 2.616 9.3 2.034c-.29-.58-.29-4.36-.58-5.232zm25.29 2.91c-.582.29-10.465 2.616-8.72 2.907s8.43 2.616 8.43 2.035c0-.582 0-4.65.29-4.942z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="red"/><path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 30.223c0-.29 6.686-29.94 6.686-29.94m-3.776 27.62c.29-1.744 4.94-27.614 4.94-27.614m-10.46 27.034c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197l4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 31.413c0-.29 6.686-31.127 6.686-31.127m-4.396 31.177c.29-1.744 5.558-31.175 5.558-31.175M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197l4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(1.25 0 0 1.36 225.31 -323.36)" stroke="#512007" stroke-width=".475" fill="none"/><path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 30.223c0-.29 6.686-29.94 6.686-29.94m-3.776 27.62c.29-1.744 4.94-27.614 4.94-27.614m-10.46 27.034c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197l4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(-1.25 0 0 1.32 1259.2 -307.28)" stroke="#512007" stroke-width=".474" fill="none"/><path d="M426.42 558.5l27.614.582.29-2.035-28.486-.29.582 1.743zm1.17-7.27c3.198 0 27.324-4.65 27.324-4.65s.872-2.907 0-2.907-27.324 5.523-27.324 5.523v2.034z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/><use xlink:href="#k" transform="translate(0 5.52)" height="496.063" width="992.126"/></g></svg> |