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

<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480"><g fill-rule="evenodd"><path fill="#6fdcff" d="M0 0h640v480H0z"/><g fill="#ffe400"><path d="M60.235 466.995c3.252 3.184 2.182 8.539 11.225 7.85 13.806 0 14.204-8.445 14.204-14.343 0-5.888-20.571-14.124-21.518-22.789-.96-8.674 4.748-11.096 9.524-11.096 4.748 0 8.082 2.777 8.082 5.198s-2.374 3.122-5.708 3.122 1.427-1.733-1.427-3.122-4.762 2.078-4.762 4.166c0 2.077 7.136 2.766 11.897 1.21.961 4.677 1.428 5.032-5.242 12.997 4.776-3.121 5.229-3.81 10.485-2.077-5.243-4.51-1.318-13.696-1.14-16.035s-1.001-5.115-3.142-6.503c-3.815-3.466-12.145-3.622-17.14-1.388-7.273 3.246-7.63 12.819-5.722 15.95l20.159 20.67c1.427 2.432 1.92 9.186-6.642 9.53-9.044.69-12.145-11.64-13.75-15.742-2.155 4.479-4.557 16.838-13.6 16.15-8.577-.345-10.224-7.1-8.797-9.531l20.708-21.077c1.894-3.131 1.537-12.704-5.736-15.95-4.995-2.234-13.311-2.078-17.126 1.388-2.141 1.388-3.335 4.165-3.156 6.503s4.103 11.525-1.14 16.035c5.256-1.733 5.723-1.044 10.485 2.077-6.67-7.965-6.19-8.32-5.242-12.997 4.762 1.556 11.911.867 11.911-1.21 0-2.088-1.921-5.554-4.775-4.166-2.841 1.389 1.907 3.122-1.414 3.122-3.348 0-5.722-.7-5.722-3.122s3.334-5.198 8.096-5.198 10.47 2.422 9.51 11.096c-.947 8.665-22.053 18.123-22.053 24.01 0 5.898 1.469 13.122 15.274 13.122 9.044.689 10.114-4.666 13.394-7.85z"/><path d="M59.137 343.293c3.252-3.184 5.928-12.621 14.972-11.932 13.805 0 19.034 7.63 19.034 13.529 0 5.887-28.078 54.084-29.024 62.749-.961 8.674 4.748 11.096 9.523 11.096 4.748 0 8.083-2.776 8.083-5.198s-2.374-3.122-5.709-3.122 1.428 1.733-1.427 3.122-4.762-2.078-4.762-4.165c0-2.078 7.136-2.767 11.898-1.211.96-4.677 1.427-5.032-5.242-12.997 4.776 3.121 5.228 3.81 10.484 2.077-5.242 4.51-1.317 13.696-1.139 16.035s-1.001 5.115-3.142 6.503c-3.815 3.466-12.145 3.623-17.14 1.389-7.273-3.247-7.63-12.82-5.723-15.951l27.13-58.594c1.428-2.433-2.373-10.408-10.937-10.752-9.043-.69-12.144 8.79-13.75 12.892l12.323-.898s.48 1.9 0 3.132c-6.367.417-12.323 1.576-12.323 1.576l-.467 6.242h6.08l-.48 2.767s-5.133-.345-5.6 0c-.48.344-.96 6.253-.96 6.253s-.947.344-1.976.344c-1.043 0-1.99-.344-1.99-.344s-.48-5.909-.947-6.253c-.48-.345-5.613 0-5.613 0l-.466-2.767h6.079l-.48-6.242s-5.956-1.159-12.324-1.576c-.466-1.232 0-3.132 0-3.132l12.324.898c-1.606-4.103-4.707-13.581-13.737-12.892-8.577.344-12.378 8.32-10.951 10.752l27.144 58.594c1.894 3.132 1.537 12.704-5.736 15.95-4.995 2.235-13.312 2.078-17.126-1.388-2.141-1.388-3.335-4.165-3.157-6.503s4.103-11.525-1.139-16.035c5.256 1.733 5.723 1.044 10.485-2.077-6.67 7.965-6.19 8.32-5.243 12.997 4.762-1.556 11.912-.867 11.912 1.21 0 2.088-1.921 5.554-4.776 4.166-2.84-1.389 1.908-3.122-1.413-3.122-3.349 0-5.723.7-5.723 3.122s3.335 5.198 8.097 5.198 10.47-2.422 9.51-11.096c-.947-8.665-29.024-56.862-29.024-62.75 0-5.897 5.228-13.528 19.034-13.528 9.043-.69 12.254 8.748 15.534 11.932z"/><path d="M59.137 319.408c3.252 3.184 5.928 12.621 14.972 11.932 13.805 0 19.034-7.63 19.034-13.529 0-5.888-28.078-54.084-29.025-62.749-.96-8.675 4.749-11.096 9.524-11.096 4.748 0 8.083 2.776 8.083 5.198s-2.374 3.121-5.709 3.121 1.427-1.732-1.427-3.12-4.762 2.077-4.762 4.164c0 2.078 7.136 2.767 11.898 1.211.96 4.677 1.427 5.032-5.242 12.997 4.775-3.121 5.228-3.81 10.484-2.077-5.242-4.51-1.317-13.696-1.139-16.035s-1.002-5.115-3.142-6.503c-3.815-3.466-12.145-3.623-17.14-1.389-7.274 3.247-7.63 12.82-5.723 15.951l27.13 58.594c1.428 2.433-2.374 10.408-10.937 10.752-9.043.69-12.145-8.79-13.75-12.892l12.323.898s.48-1.9 0-3.132c-6.367-.417-12.323-1.576-12.323-1.576l-.467-6.243h6.08l-.48-2.766s-5.133.345-5.6 0c-.48-.344-.96-6.253-.96-6.253s-.947-.344-1.977-.344c-1.042 0-1.99.344-1.99.344s-.48 5.909-.946 6.253c-.48.345-5.613 0-5.613 0l-.467 2.766h6.08l-.48 6.243s-5.956 1.159-12.324 1.576c-.466 1.232 0 3.132 0 3.132l12.323-.898c-1.605 4.103-4.707 13.581-13.736 12.892-8.577-.344-12.378-8.32-10.951-10.752l27.144-58.594c1.894-3.132 1.537-12.704-5.736-15.95-4.995-2.235-13.312-2.078-17.127 1.388-2.14 1.388-3.334 4.165-3.156 6.503s4.103 11.525-1.139 16.035c5.256-1.733 5.723-1.044 10.484 2.077-6.669-7.965-6.189-8.32-5.242-12.997 4.762 1.556 11.912.867 11.912-1.21 0-2.088-1.921-5.554-4.776-4.166-2.84 1.389 1.908 3.121-1.413 3.121-3.349 0-5.723-.699-5.723-3.12s3.335-5.2 8.097-5.2 10.47 2.422 9.51 11.097c-.947 8.665-29.024 56.861-29.024 62.75 0 5.897 5.228 13.528 19.034 13.528 9.043.689 12.254-8.748 15.534-11.932z"/><path d="M59.137 160.61c3.252-3.184 5.928-12.62 14.972-11.932 13.805 0 19.034 7.631 19.034 13.53 0 5.887-28.078 54.084-29.024 62.748-.961 8.675 4.748 11.097 9.523 11.097 4.748 0 8.083-2.777 8.083-5.199s-2.374-3.121-5.709-3.121 1.428 1.733-1.427 3.121-4.762-2.077-4.762-4.165c0-2.077 7.136-2.766 11.898-1.21.96-4.678 1.427-5.032-5.242-12.997 4.776 3.12 5.228 3.81 10.484 2.077-5.242 4.51-1.317 13.696-1.139 16.034s-1.001 5.115-3.142 6.504c-3.815 3.465-12.145 3.622-17.14 1.388-7.273-3.246-7.63-12.819-5.723-15.95l27.13-58.595c1.428-2.432-2.373-10.407-10.937-10.752-9.043-.689-12.144 8.79-13.75 12.892l12.323-.898s.48 1.9 0 3.132c-6.367.418-12.323 1.576-12.323 1.576l-.467 6.243h6.08l-.48 2.766s-5.133-.344-5.6 0c-.48.345-.96 6.253-.96 6.253s-.947.345-1.976.345c-1.043 0-1.99-.345-1.99-.345s-.48-5.908-.947-6.253c-.48-.344-5.613 0-5.613 0l-.466-2.766h6.079l-.48-6.243s-5.956-1.158-12.324-1.576c-.466-1.232 0-3.132 0-3.132l12.324.898c-1.606-4.102-4.707-13.58-13.737-12.892-8.577.345-12.378 8.32-10.951 10.752l27.144 58.594c1.894 3.132 1.537 12.705-5.736 15.951-4.995 2.234-13.312 2.077-17.126-1.388-2.141-1.389-3.335-4.165-3.157-6.504s4.103-11.524-1.139-16.034c5.256 1.733 5.723 1.044 10.485-2.077-6.67 7.965-6.19 8.32-5.243 12.996 4.762-1.555 11.912-.866 11.912 1.211 0 2.088-1.921 5.554-4.776 4.165-2.84-1.388 1.908-3.121-1.413-3.121-3.349 0-5.723.7-5.723 3.121s3.335 5.199 8.097 5.199 10.47-2.422 9.51-11.097c-.947-8.664-29.024-56.861-29.024-62.749 0-5.898 5.228-13.529 19.034-13.529 9.043-.689 12.254 8.748 15.534 11.932z"/><path d="M59.137 136.726c3.252 3.184 5.928 12.62 14.972 11.932 13.805 0 19.034-7.631 19.034-13.53 0-5.887-28.078-54.084-29.025-62.748-.96-8.675 4.749-11.097 9.524-11.097 4.748 0 8.083 2.777 8.083 5.199s-2.374 3.121-5.709 3.121 1.427-1.733-1.427-3.121-4.762 2.077-4.762 4.165c0 2.077 7.136 2.766 11.898 1.21.96 4.677 1.427 5.032-5.242 12.997 4.775-3.12 5.228-3.81 10.484-2.077-5.242-4.51-1.317-13.696-1.139-16.034s-1.002-5.115-3.142-6.504c-3.815-3.466-12.145-3.622-17.14-1.388-7.274 3.246-7.63 12.819-5.723 15.95l27.13 58.595c1.428 2.432-2.374 10.407-10.937 10.752-9.043.689-12.145-8.79-13.75-12.892l12.323.897s.48-1.9 0-3.131c-6.367-.418-12.323-1.577-12.323-1.577l-.467-6.242h6.08l-.48-2.766s-5.133.344-5.6 0c-.48-.345-.96-6.253-.96-6.253s-.947-.345-1.977-.345c-1.042 0-1.99.345-1.99.345s-.48 5.908-.946 6.253c-.48.344-5.613 0-5.613 0l-.467 2.766h6.08l-.48 6.242s-5.956 1.16-12.324 1.577c-.466 1.232 0 3.131 0 3.131l12.323-.897c-1.605 4.102-4.707 13.58-13.736 12.892-8.577-.345-12.378-8.32-10.951-10.752l27.144-58.594c1.894-3.132 1.537-12.705-5.736-15.951-4.995-2.234-13.312-2.078-17.127 1.388-2.14 1.389-3.334 4.165-3.156 6.504s4.103 11.524-1.139 16.034c5.256-1.733 5.723-1.044 10.484 2.077-6.669-7.965-6.189-8.32-5.242-12.996 4.762 1.555 11.912.866 11.912-1.211 0-2.088-1.921-5.554-4.776-4.165-2.84 1.388 1.908 3.121-1.413 3.121-3.349 0-5.723-.7-5.723-3.121s3.335-5.199 8.097-5.199 10.47 2.422 9.51 11.097c-.947 8.664-29.024 56.861-29.024 62.749 0 5.898 5.228 13.529 19.034 13.529 9.043.689 12.254-8.748 15.534-11.932z"/><path d="M60.234 13.003c3.253-3.184 2.182-8.54 11.226-7.85 13.805 0 14.203 8.445 14.203 14.343 0 5.887-20.57 14.124-21.518 22.788-.96 8.675 4.749 11.097 9.524 11.097 4.748 0 8.083-2.777 8.083-5.199s-2.374-3.121-5.709-3.121 1.427 1.733-1.427 3.121-4.762-2.077-4.762-4.165c0-2.077 7.136-2.766 11.898-1.21.96-4.678 1.427-5.033-5.242-12.997 4.775 3.12 5.228 3.81 10.484 2.077-5.242 4.51-1.317 13.696-1.139 16.034s-1.002 5.115-3.142 6.504c-3.815 3.465-12.145 3.622-17.14 1.388-7.274-3.246-7.63-12.819-5.723-15.95l20.16-20.67c1.426-2.432 1.92-9.186-6.643-9.53-9.043-.69-12.145 11.639-13.75 15.741-2.155-4.478-4.556-16.838-13.6-16.149-8.576.345-10.223 7.099-8.796 9.53l20.708 21.077c1.894 3.132 1.537 12.705-5.736 15.951-4.995 2.234-13.312 2.077-17.127-1.388-2.14-1.389-3.334-4.165-3.156-6.504s4.103-11.524-1.139-16.034c5.256 1.733 5.723 1.044 10.484-2.077-6.669 7.964-6.189 8.32-5.242 12.996 4.762-1.555 11.912-.866 11.912 1.211 0 2.088-1.921 5.554-4.776 4.165-2.84-1.388 1.908-3.121-1.413-3.121-3.349 0-5.723.7-5.723 3.121s3.335 5.199 8.097 5.199 10.47-2.422 9.51-11.097c-.947-8.664-22.053-18.122-22.053-24.01 0-5.898 1.468-13.121 15.274-13.121 9.043-.69 10.114 4.666 13.393 7.85z"/></g><g fill="#ffe400" transform="translate(-194.73 8.285) scale(1.0673)"><rect rx="85.12" ry="80.648" height="161.3" width="170.24" y="104.45" x="425.9"/><path d="M506.94 56.355c-.708-.007-4.534 26.842-6.013 32.876-1.325 13.43 18.07 12.94 14.897-.532l-8.88-32.344zM513.77 316.21c.706.053 6.49-26.479 8.408-32.401 2.306-13.31-17.078-14.098-14.9-.45l6.492 32.85zM378.17 184.61c-.06.669 27.915 6.277 34.156 8.123 14.037 2.249 14.962-16.113.547-14.115l-34.703 5.992zM649.89 187.8c.03-.67-28.166-5.274-34.483-6.896-14.123-1.745-14.234 16.638.079 14.125l34.404-7.23zM406.79 99.641c-.482.492 17.893 21.249 21.605 26.348 9.588 9.97 22.265-3.945 9.616-10.793l-31.22-15.559zM617.95 270.64c.435-.53-19.772-19.698-23.937-24.472-10.465-9.145-21.819 5.761-8.59 11.543l32.528 12.929zM448.97 70.619c-.644.28 7.966 26.114 9.34 32.171 4.84 12.685 22.167 4.414 13.24-6.493l-22.58-25.678zM571.98 302.96c.663-.237-6.032-26.575-6.96-32.708-3.897-12.973-21.79-5.862-13.682 5.606l20.642 27.101zM602.16 88.602c-.511-.465-22.711 16.61-28.152 20.045-10.676 8.923 3.807 21.156 11.236 9.282l16.916-29.327zM419.24 282.33c.476.497 23.874-15.076 29.553-18.145 11.304-8.199-2.247-21.355-10.528-9.999L419.24 282.33zM384.15 138.16c-.29.612 24.124 14.715 29.362 18.422 12.449 6.543 19.765-10.482 5.47-13.139l-34.832-5.283zM638.07 236.6c.335-.591-22.987-16.266-27.941-20.309-11.939-7.347-20.486 9.156-6.419 12.748l34.36 7.561zM557.37 63.719c-.657-.251-14.571 23.416-18.275 28.521-6.412 12.042 11.831 18.301 14.072 4.662l4.204-33.183zM463.52 307.97c.637.294 16.252-22.401 20.322-27.25 7.28-11.591-10.461-19.035-13.696-5.577l-6.626 32.826zM386.04 238.68c.257.625 27.986-5.986 34.449-6.926 13.652-3.825 5.965-20.703-6.056-12.906L386.04 238.68zM638.13 136.11c-.21-.64-28.357 4.13-34.873 4.643-13.899 2.917-7.468 20.261 5.096 13.273l29.777-17.916z"/><path d="M534.62 58.119c-.692-.141-10.14 25.429-12.87 31.058-4.149 12.903 14.954 16.119 14.705 2.318L534.62 58.12zM486.15 313.97c.68.187 11.979-24.7 15.115-30.136 5.085-12.599-13.736-17.064-14.5-3.28l-.615 33.416zM476.38 60.639c-.692.144 1.918 27.122 1.9 33.317 1.88 13.37 20.668 8.783 14.395-3.675l-16.29-29.642zM544.39 312.46c.7-.098.075-27.183.546-33.362-.895-13.462-19.974-10.121-14.628 2.72l14.082 30.641zM428.16 83.092c-.58.384 12.765 24.345 15.26 30.07 7.154 11.661 22.642.589 11.8-8.63l-27.06-21.44zM593.02 290.86c.607-.345-10.95-25.126-13.019-31.002-6.283-12.104-22.545-2.077-12.404 7.834l25.423 23.168zM393 116.64c-.397.556 21.128 18.39 25.624 22.888 11.091 8.456 21.36-7.142 7.75-12.065L393 116.64zM627.19 256.26c.436-.529-19.729-19.736-23.885-24.519-10.445-9.165-21.832 5.72-8.615 11.526l32.5 12.992zM377.57 158.53c-.181.649 26.336 10.784 32.143 13.63 13.409 4.53 17.693-13.4 3.13-13.809l-35.273.179zM645.04 216.35c.229-.635-25.482-12.49-31.067-15.712-13.045-5.4-18.632 12.204-4.135 13.57l35.202 2.143zM376.7 209.96c.098.665 28.689.262 35.207.752 14.214-.753 10.823-18.853-2.767-13.879L376.7 209.96zM646.91 164.97c-.05-.67-28.601-2.149-35.067-3.067-14.235-.184-12.178 18.095 1.743 14.027l33.324-10.96zM401.18 263.43c.395.557 25.926-11.641 32.015-13.899 12.438-6.562 1.04-21.438-8.89-11.338L401.18 263.43zM623.48 111.1c-.353-.582-26.717 9.907-32.956 11.759-12.889 5.727-2.61 21.318 8.037 11.896l24.92-23.654zM442.83 298.77c.597.362 18.872-20.474 23.505-24.846 8.643-10.718-8.072-20.052-12.925-7.037l-10.58 31.883zM582.54 75.063c-.569-.4-20.327 19.183-25.269 23.239-9.407 10.124 6.583 20.535 12.378 7.87l12.891-31.11z"/><g transform="matrix(2.1824 0 0 2.0629 -405.01 -272.56)"><path d="M360.137 247.889c.625 2.5.781 16.562 14.844 30 14.062 13.437 37.969 16.406 37.969 16.406s.156 1.875-1.563 2.031c-1.719.157-9.844-1.562-13.906-2.812-4.063-1.25-7.656-3.438-8.125-3.281-.469.156-1.25 1.562-2.5 1.406s-7.031-6.25-9.531-7.813c-2.5-1.562-10.938-10.781-13.75-15.312-2.813-4.531-3.438-7.5-4.375-7.5-.938 0-4.219 2.187-4.219 2.187s-2.969-4.531-5.625-11.719c-2.656-7.187-2.344-11.406-1.719-11.718.625-.313.625 5.312 2.656 10.468 2.032 5.157 4.844 6.719 4.844 6.719s-1.875-2.656-3.281-9.375-1.875-13.125-.938-15.156c.938-2.031 1.875-2.656 2.032-2.5.156.156-1.719 3.125-.469 10.781s4.844 14.219 5.625 13.906c.781-.312-.469-1.875-1.094-6.406s.625-7.344 1.719-7.656c.469-.469 1.25 5 1.406 7.344zM350.292 260.699c-2.656-2.5-6.875-11.25-7.812-10.781-.938.469 6.875 12.969 7.031 14.063.156 1.093 1.875 4.531.625 4.062s-10.625-10.312-9.531-8.437 8.125 10.468 7.656 10.937-5.781-4.688-5.937-4.062c-.157.625 5.312 5.781 5.156 6.406s-3.438-3.281-3.438-2.5 3.438 4.687 3.438 5.312-2.969-2.812-2.031-.937c.937 1.875 3.593 3.594 3.437 4.219s-2.187-.782-2.187-.469c0 .312 3.906 1.719 4.843 2.812.938 1.094 7.344 8.438 12.188 12.188s18.594 10.156 19.531 10.156c.938 0 2.344-2.031 2.031-2.812-.312-.782-13.75-5.313-17.5-8.75-3.75-3.438-12.968-11.563-13.75-12.032-.781-.468-2.812-.312-2.812-.781s2.656.313 2.5 0c-.156-.312-3.75-1.875-3.594-2.187.156-.313 2.5.625 2.5.312 0-.312-4.219-2.656-4.062-3.125.156-.469 3.125 1.406 3.125 1.094 0-.313-4.063-3.125-3.907-3.594.157-.469 3.125 2.188 2.969 1.563s-2.344-3.907-2.344-4.375c0-.469 3.594 3.437 3.907 2.656.312-.781-1.25-7.188-1.094-7.344s2.645 1.422 3.114.484c.468-.937-1.837-2.241-4.052-4.078zM396.4 309.9c-1.893.249-2.747-.393-1.672-1.934 1.488-.11 5.449-1.379 6.849-1.96s2.894-1.416 4.137-2.534c1.24-1.22 1.903.782 1.282 1.819-.515.73-2.838 2.044-4.545 2.739-2.479.825-4.61 1.967-6.051 1.87zM408.887 304.769c-1.25-1.407-.156-2.344 1.719-3.438 2.812-1.562 2.032-3.593 5.625-5.312 1.563-.938 23.906-10 31.25-14.844s27.813-20.313 33.281-30.938c5.469-10.625 2.813-11.406 3.594-11.875.781-.468 1.563 1.563 1.406 3.907-.156 2.343-1.875 9.375-1.406 10s8.281-5.469 11.406-12.969 5.625-15.313 7.188-15.313c1.562 0-2.656 12.813-5.313 17.813-2.656 5-5.781 7.5-5 8.594.782 1.093 8.594-5.469 11.25-10.313 2.657-4.844 5.157-9.219 5.625-8.281.469.937-2.5 11.25-6.718 16.094-4.219 4.843-9.219 8.281-8.438 9.062.781.782 6.406 1.563 12.344-2.5 5.937-4.062 6.562-10 7.344-9.687.781.312-.782 8.437-6.407 13.437s-13.281 5.469-12.968 6.563c.312 1.094 16.25-4.531 15.937-3.281-.312 1.25-20.625 9.218-20.782 10 .001.625 3.439.781 8.907-.469 5.469-1.25 10.626-5.468 11.407-4.531.155 1.406-3.907 4.844-10.157 6.406-6.25 1.563-9.375 3.75-9.531 4.219-.156.468 11.094-1.407 11.094-.782s-14.688 3.438-14.844 4.22c-.156.781 14.062-2.813 13.75-2.032-.313.781-19.219 6.406-19.063 6.719.157.312 15.782-3.438 15.469-2.813-.312.625-26.406 7.969-26.562 8.438-.157.468 22.968-5.157 22.812-4.688s-12.031 3.437-12.031 3.75c0 .312 9.531-1.562 9.375-1.094-.156.469-24.063 6.563-24.532 7.5-.468.938 12.344-2.5 12.188-.781s-27.656 11.094-27.813 9.375c-.156-1.719 16.719-6.094 16.563-6.562-.156-.469-9.687 1.093-9.844.156-.156-.938 6.25-2.969 5.782-3.438-.469-.468-5.313 1.406-4.844.313.469-1.094 9.531-5.313 9.375-5.625-.156-.313-3.281 1.093-2.969 0 .313-1.094 19.687-6.719 19.375-7.344-.313-.625-8.906 1.406-9.687 1.562-.313-.624 12.031-5.156 11.718-5.937-.312-.781-6.562 2.656-6.874 1.719-.313-.938 10.781-5.313 10.156-5.938s-5.781 1.719-6.406 1.094 10.468-8.437 8.749-8.594c-1.718-.156-3.75 2.345-4.062.782.313-2.032 8.75-5.313 6.875-6.875-2.969-.938-13.125.625-17.344 3.125s-18.125 16.406-21.563 18.593c-3.437 2.188-15 7.032-17.187 7.969-3.438 1.25-4.063 3.125-7.5 4.844-6.251 1.719-6.25 3.594-9.219 4.687-1.093.313-12.343 5.781-12.5 5.313zM393.107 311.797c-1.875.938-3.593 3.438-2.501 4.375.626 1.25 2.501-2.656 4.063-2.5 1.563.156 3.75.157 7.969.47 4.219.312 6.406-.938 8.75-.782s7.657-1.25 10.157-1.25 2.968.312 3.281-.782c.312-1.093-7.813-.312-11.407-.468-3.593-.156-8.125.781-10.781.781-2.5-.156-6.875-.938-9.531.156z"/><rect rx="1.719" ry="1.484" height="2.969" width="3.438" y="309.14" x="401.7"/><path d="M445.02 307.731c1.718-.313 6.307 1.25 9.478 2.031 5.828 2.188 16.603 1.094 16.603 2.188s-.67 2.5-3.242 2.656-8.758-.937-8.587-.937 4.972 2.187 3.6 2.812-5.486-1.25-6.171-.781 3.771 1.406 3.086 1.719c-.686.312-3.782-.469-4.811-.312-1.028.155.868 1.249-.333 1.718-1.199.469-3.216-.624-4.073-.313-.857.314 1.845 2.032.645 2.188-1.2.156-4.089-.781-5.632-.937-1.543-.156 1.518 1.562.49 1.718-1.03.156-3.827-1.249-4.512-1.249s.054 1.874-.974 1.874c-1.029 0-2.239-1.562-2.753-1.562s.01 1.875-1.018 1.875-1.397-2.031-2.254-1.875c-1.014.157.025 2.656-1.346 2.5-1.371-.157-1.553-2.656-2.581-2.5-1.03.156.182 2.5-.847 2.5-1.028 0-1.195-2.344-2.224-2.5-1.028-.156-.52 2.187-1.205 2.187s-1.195-2.187-1.538-2.187c-.342 0-.004 2.187-1.205 2.031s-1.194-2.5-1.538-2.344c-.342.157-.348 1.719-1.204 1.719s-.853-1.562-1.195-1.406c-.344.156-1.548 2.187-2.405 1.875-.857-.313.206-1.875-.136-1.875-.343 0-1.406 1.093-2.092.937s.035-1.406-.137-1.406c-.171 0-1.75.781-2.435.781s-2.571 1.094-3.086.156c-.513-.937 1.342-.937 1.684-1.875.344-.937-.998-3.593.373-4.531 1.372-.937 5.658 1.25 12-.312 11.656-3.125 20.652-6.718 21.575-6.563z"/></g></g></g></svg>