app-MAIL-temp/static/assets/images/flags/io.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
35 KiB
XML
Executable File

<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480"><defs><clipPath id="a"><path fill-opacity=".67" d="M0 0h682.67v512H0z"/></clipPath></defs><g clip-path="url(#a)" transform="scale(.9375)"><path fill-rule="evenodd" fill="#fff" d="M0 0h1024v512H0z"/><path d="M1024 445.24c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.715 0 60.955 33.96 121.9 33.96 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 360.32c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286.01 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 275.41c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 190.5c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203V247.5c18.286 0 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 105.59c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.491-.002-39.634 24.2-57.92 24.2v43.727c18.286 0 27.428-24.203 57.905-24.203 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 20.675c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.491 0-39.634 24.203-57.92 24.203v43.727c18.286 0 27.428-24.203 57.905-24.203 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528V20.674z" fill-rule="evenodd" fill="#000063"/><path fill-rule="evenodd" fill="#000063" d="M0 .063h261.31v157.91H0z"/><g stroke-width="1pt"><path d="M0 .063v17.654L232.097 157.97h29.215v-17.654L29.215.064H0zm261.312 0v17.654L29.215 157.968H0v-17.654L232.097.064h29.215z" fill="#fff"/><path d="M108.88.063v157.905h43.552V.063H108.88zM0 52.698v52.635h261.312V52.698H0z" fill="#fff"/><path d="M0 63.225v31.581h261.312v-31.58H0zM117.59.063v157.905h26.132V.063H117.59zM0 157.968l87.104-52.635h19.476l-87.104 52.635H0zM0 .063l87.104 52.635H67.628L0 11.833V.063zm154.732 52.635L241.836.063h19.476l-87.104 52.635h-19.476zm106.58 105.27l-87.104-52.635h19.476l67.628 40.866v11.77z" fill="#c00"/></g><path d="M814.96-301.18l-17.72 708.66c0 37.298 80.097 37.298 88.583 0l-17.717-708.66h-53.149z" fill-rule="evenodd" transform="matrix(.2064 0 0 .4902 211.633 267.436)" stroke="#fff" stroke-width="6.935" fill="#a24300"/><path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#fff" stroke-width="8.25" fill="#006d00"/><path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)" stroke="#000" stroke-width="1pt" fill="none"/><g><path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#fff" stroke-width="8.25" fill="#006d00"/><path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(.17703 -.18126 .22077 .14638 73.835 93.526)" stroke="#000" stroke-width="1pt" fill="none"/></g><g><path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#fff" stroke-width="8.25" fill="#006d00"/><path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)" stroke="#000" stroke-width="1pt" fill="none"/></g><g><path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#fff" stroke-width="8.25" fill="#006d00"/><path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)" stroke="#000" stroke-width="1pt" fill="none"/></g><g><path d="M496.06 549.21l17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#fff" stroke-width="8.25" fill="#006d00"/><path d="M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 797.24l70.866 106.3 70.866-106.3" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 726.38l70.866 106.3 70.866-106.3" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 673.23l70.866 88.583 70.866-88.583" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 620.08l70.866 88.582 70.866-88.582" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M442.91 566.93l53.15 106.3 53.15-106.3" transform="matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)" stroke="#000" stroke-width="1pt" fill="none"/></g><g><path d="M460.63 549.21l28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15.001-70.866z" fill-rule="evenodd" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#fff" stroke-width="8.25" fill="#006d00"/><path d="M467.21 584.65l28.855 124.02v336.62" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M436.23 885.83l59.833 88.582 60.682-88.582" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M434.53 814.96l61.53 88.582 60.682-88.582" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M435.38 744.1l60.682 88.582 59.833-88.582" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M432.84 690.94l63.228 70.866 53.149-70.866" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 637.8l70.866 70.865 45.406-70.865" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M436.12 593.24l53.15 86.886 35.327-95.478" transform="matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)" stroke="#000" stroke-width="1pt" fill="none"/></g><g><path d="M460.63 549.21l28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15.001-70.866z" fill-rule="evenodd" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#fff" stroke-width="8.25" fill="#006d00"/><path d="M467.21 584.65l28.855 124.02v336.62" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M436.23 885.83l59.833 88.582 60.682-88.582" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M434.53 814.96l61.53 88.582 60.682-88.582" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M435.38 744.1l60.682 88.582 59.833-88.582" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M432.84 690.94l63.228 70.866 53.149-70.866" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 637.8l70.866 70.865 45.406-70.865" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M436.12 593.24l53.15 86.886 35.327-95.478" transform="matrix(.27011 .06695 .00989 .24471 240.767 -138.419)" stroke="#000" stroke-width="1pt" fill="none"/></g><g><path d="M354.33 531.5l88.583 88.583 17.716-53.149v88.582l35.433-35.433-17.716 88.583 35.432-35.434-17.716 88.584 35.433-35.433-17.716 106.3 35.433-35.433-35.433 106.3 35.433-35.433-17.717 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-53.15-82.294 35.434 11.429-35.433-106.3 35.433 35.433-53.15-106.3 35.433 35.433-53.15-88.584 53.15 35.434-70.866-88.583 53.149 35.433-70.866-70.866 70.866 35.433-53.149-88.583z" fill-rule="evenodd" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#fff" stroke-width="8.25" fill="#006d00"/><path d="M378.96 560.02l63.952 95.497 17.716 53.15 8.859 45.205 8.858 78.811 9.315 70.866 8.401 141.74" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M425.2 903.54l63.665 70.866 50.749-88.583" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M417.08 814.96l70.579 88.583 50.75-88.583" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M407.48 752.44l70.867 80.235 45.948-88.583M372.05 637.8l88.583 70.866 25.831-70.866" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/><path d="M360.62 602.36l82.296 53.149 10.515-53.149M389.76 690.94l81.095 70.866 33.946-70.866" transform="matrix(.03453 -.23456 .24402 .04167 115.462 229.538)" stroke="#000" stroke-width="1pt" fill="none"/></g><g fill-rule="evenodd"><path d="M541.46 1173.3l-1.7-229.13-61.1-106.94c-15.277-52.618-7.754-78.079 16.973-79.776 24.728-1.698 49.224 13.579 84.868 15.276 35.645 1.697 28.856-59.408 81.474-57.71 52.618 1.697 144.28 32.25 222.36 37.342 78.078 5.092 118.81-27.158 208.77-30.553 89.97-3.395 113.73 42.435 118.82 42.435s30.55-18.672 56.01-22.066c25.46-3.395 33.95 10.184 33.95 10.184s-1.7 57.71-13.58 91.657c-11.88 33.948-54.32 89.961-56.01 89.961-1.7 0-15.28 249.52-15.28 251.21 0 1.7-675.55-6.79-675.55-11.88z" stroke="#000" stroke-width="1pt" fill="#c00" transform="matrix(.13659 0 0 .12573 266.36 208.19)"/><g stroke="#000" stroke-width="1pt"><path d="M531.5 584.65s-67.982-52.097-69.813-177.17c-1.053-71.929 34.38-124.02 122.96-124.02 124.02 0 301.18 53.149 301.18 53.149v17.717s-141.73-53.15-301.18-53.15c-70.866 0-106.3 52.087-106.3 105.24 0 88.583 70.867 178.23 70.867 178.23v141.73h-17.717v-141.73z" fill="#fff100" transform="matrix(-.13659 0 0 .12573 508.357 252.74)"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 506.168 252.526)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 508.588 247.431)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 509.849 242.243)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 510.776 236.694)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 510.545 230.678)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 502.69 257.008)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 508.487 224.996)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 504.082 220.515)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 498.054 217.528)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 492.026 217.1)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 485.535 217.314)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 479.043 218.168)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 472.55 219.022)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 465.596 220.088)" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(-.13659 0 0 .12573 459.568 221.583)" fill="#fff"/></g><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 268.548 252.526)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 266.128 247.432)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 264.867 242.243)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 263.94 236.694)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 264.172 230.678)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 266.23 224.996)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 270.635 220.515)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 276.662 217.527)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 282.69 217.1)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 289.181 217.314)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 295.674 218.168)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 302.166 219.021)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 309.12 220.088)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 315.149 221.583)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 272.026 257.008)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M531.5 584.65s-67.982-52.097-69.813-177.17c-1.053-71.929 34.38-124.02 122.96-124.02 124.02 0 301.18 53.149 301.18 53.149v17.717s-141.73-53.15-301.18-53.15c-70.866 0-106.3 52.087-106.3 105.24 0 88.583 70.867 178.23 70.867 178.23v141.73h-17.717v-141.73z" transform="matrix(.13659 0 0 .12573 266.36 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/><path d="M1240.2 531.5s15.35-35.433 70.86-35.433c37.79 0 70.87 35.433 70.87 70.866v70.866h35.43v-70.866c0-35.47 35.44-70.866 70.87-70.866 53.15 0 70.87 35.433 70.87 35.433s0-106.3-70.87-106.3c-53.15 0-70.87 35.433-70.87 35.433s17.72-53.15 17.72-106.3-35.43-88.583-35.43-88.583c0 6.79-35.44 35.433-35.44 88.583 0 53.149 17.72 106.3 17.72 106.3s-17.72-35.433-70.87-35.433c-70.86 0-70.86 106.3-70.86 106.3z" transform="matrix(.04553 0 0 .0479 299.433 309.064)" stroke="#000" stroke-width="2.991" fill="#fff100"/><path d="M1240.2 531.5s15.35-35.433 70.86-35.433c37.79 0 70.87 35.433 70.87 70.866v70.866h35.43v-70.866c0-35.47 35.44-70.866 70.87-70.866 53.15 0 70.87 35.433 70.87 35.433s0-106.3-70.87-106.3c-53.15 0-70.87 35.433-70.87 35.433s17.72-53.15 17.72-106.3-35.43-88.583-35.43-88.583c0 6.79-35.44 35.433-35.44 88.583 0 53.149 17.72 106.3 17.72 106.3s-17.72-35.433-70.87-35.433c-70.86 0-70.86 106.3-70.86 106.3z" transform="matrix(.04553 0 0 .0479 347.83 309.064)" stroke="#000" stroke-width="2.991" fill="#fff100"/><path d="M531.5 832.68V673.23s35.433 53.15 88.583 53.15c43.489 0 88.582-70.866 88.582-70.866s41.515 53.149 88.583 53.149c42.021 0 88.516-68.572 88.516-68.572s43.207 68.572 88.649 68.572c45.441 0 88.581-53.149 88.581-53.149s46.29 70.866 106.3 70.866c53.15 0 70.87-53.15 70.87-53.15v159.45h-708.66z" transform="matrix(.13659 0 0 .12573 266.36 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/><path d="M708.66 832.68V708.66s106.3 35.433 106.3 124.02h-106.3z" transform="matrix(.13659 0 0 .12573 242.16 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/><path d="M708.66 832.68V708.66s106.3 35.433 106.3 124.02h-106.3z" transform="matrix(-.13659 0 0 .12573 532.547 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/><path d="M602.36 832.68c0-88.583 106.37-144.6 106.37-144.6s106.23 56.016 106.23 144.6h-212.6z" transform="matrix(.13659 0 0 .12573 266.36 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/><path d="M602.36 832.68c0-88.583 106.37-144.6 106.37-144.6s106.23 56.016 106.23 144.6h-212.6z" transform="matrix(.13659 0 0 .12573 314.758 252.74)" stroke="#000" stroke-width="1pt" fill="#fff100"/><path d="M584.65 847.53c0-88.583 124.08-159.45 124.08-159.45s123.95 70.866 123.95 159.45H584.65z" transform="matrix(.13659 0 0 .12573 290.558 250.873)" stroke="#000" stroke-width="1pt" fill="#fff100"/><path d="M1275.6 655.51c-35.43-17.716-166.02-35.433-376.28-35.433s-350.1 17.717-385.53 35.433c-35.434 17.717-35.434 53.149-.001 70.866 35.433 17.716 175.28 35.433 385.54 35.433s340.84-17.716 376.28-35.433c35.43-17.716 35.43-53.149 0-70.866z" transform="matrix(.13505 0 0 .12573 265.898 275.015)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M435.757 366.342c0 4.455-40.256 4.455-48.399 4.455-8.797 0-48.398 1.207-48.398-4.455 0-4.455 39.928-4.455 48.398-4.455 8.47 0 48.399.906 48.399 4.455z" fill="gray"/><path d="M343.797 350.342c0 1.456-1.084 2.636-2.42 2.636-1.337 0-2.42-1.18-2.42-2.636s1.083-2.637 2.42-2.637c1.336 0 2.42 1.18 2.42 2.637zM435.753 350.342c0 1.456-1.083 2.636-2.42 2.636-1.336 0-2.42-1.18-2.42-2.636s1.084-2.637 2.42-2.637c1.337 0 2.42 1.18 2.42 2.637z" fill="#c00"/><path d="M392.195 348.932c0 1.456-2.167 2.636-4.84 2.636s-4.84-1.18-4.84-2.636 2.167-2.636 4.84-2.636 4.84 1.18 4.84 2.636z"/><path d="M415.41 348.932c0 1.456-1.625 2.636-3.63 2.636-2.004 0-3.63-1.18-3.63-2.636s1.626-2.636 3.63-2.636c2.005 0 3.63 1.18 3.63 2.636zM365.576 348.932c0 1.456-1.626 2.636-3.63 2.636-2.005 0-3.63-1.18-3.63-2.636s1.625-2.636 3.63-2.636c2.004 0 3.63 1.18 3.63 2.636z" fill="#006300"/><path d="M1257.9 496.06s35.44-53.15 70.87-53.15h35.43v35.433c0 53.15-53.15 70.867-53.15 70.867h141.74s-53.15-17.717-53.15-70.867V442.91h35.43c35.43 0 70.87 53.15 70.87 53.15V354.33s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-141.74s53.15 17.717 53.15 70.867v35.433h-35.43c-35.43 0-70.87-53.15-70.87-53.15v141.73z" transform="matrix(.07805 0 0 .07185 279.5 297.926)" stroke="#000" stroke-width="2.188" fill="#fff100"/><path d="M1381.9 549.21l70.87.001s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-70.87v248.03z" transform="matrix(.03903 0 0 .06287 285.03 307.314)" stroke="#000" stroke-width="3.307" fill="#fff100"/><path d="M1381.9 549.21l70.87.001s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-70.87v248.03z" transform="matrix(-.03903 0 0 .06287 489.685 307.314)" stroke="#000" stroke-width="3.307" fill="#fff100"/><path d="M903.54 602.36c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 266.36 252.74)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M1257.9 496.06s35.44-53.15 70.87-53.15h35.43v35.433c0 53.15-53.15 70.867-53.15 70.867h141.74s-53.15-17.717-53.15-70.867V442.91h35.43c35.43 0 70.87 53.15 70.87 53.15V354.33s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-141.74s53.15 17.717 53.15 70.867v35.433h-35.43c-35.43 0-70.87-53.15-70.87-53.15v141.73z" transform="matrix(.07805 0 0 .07185 279.5 251.15)" stroke="#000" stroke-width="2.188" fill="#fff100"/><path d="M903.54 602.36c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 266.592 206.336)" stroke="#000" stroke-width="1pt" fill="#fff"/><path stroke="#000" stroke-width="1pt" fill="#fff100" d="M850.39 655.51h70.866v53.15H850.39z" transform="matrix(.13659 0 0 .12573 266.36 208.19)"/><path stroke="#000" stroke-width="1pt" fill="#fff100" d="M850.39 683.3h70.866v202.53H850.39z" transform="matrix(.13659 0 0 .12573 266.36 208.19)"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 324.438 246.057)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 324.438 240.295)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 324.438 234.92)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717-9.785 0-17.717-7.932-17.717-17.717 0-9.785 7.932-17.717 17.717-17.717 9.785 0 17.717 7.932 17.717 17.717z" transform="matrix(.13659 0 0 .12573 324.438 229.372)" stroke="#000" stroke-width="1pt" fill="#fff"/><path d="M392.495 357.482c0 1-2.202 1.81-4.918 1.81s-4.918-.81-4.918-1.81 2.202-1.811 4.918-1.811c2.717 0 4.918.81 4.918 1.81zM437.065 361.903c-.272.685-2.668.742-5.35.127-2.683-.615-4.638-1.67-4.366-2.355.273-.686 2.668-.743 5.35-.128 2.684.616 4.638 1.67 4.366 2.356zM418.437 358.899c-.108.882-2.439 1.44-5.206 1.247-2.768-.194-4.925-1.065-4.817-1.947.108-.882 2.439-1.44 5.206-1.247 2.768.193 4.925 1.065 4.817 1.947zM336.567 361.903c.272.685 2.668.742 5.35.127 2.683-.615 4.638-1.67 4.366-2.355-.273-.686-2.668-.743-5.35-.128-2.684.616-4.638 1.67-4.366 2.356zM356.128 358.472c.108.882 2.439 1.44 5.206 1.247 2.768-.193 4.925-1.065 4.817-1.947-.108-.882-2.439-1.44-5.207-1.247-2.767.193-4.924 1.065-4.816 1.947z"/></g></g></svg>